/* ============================================
   SpicyLinks — Block Styles (Public Profile)
   ============================================ */

/* ── Shared ── */
.blk {
    margin-bottom: 3px;
    width: 100%;
    animation: blkFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Staggered entrance for blocks */
.blk:nth-child(1) { animation-delay: 0.1s; }
.blk:nth-child(2) { animation-delay: 0.18s; }
.blk:nth-child(3) { animation-delay: 0.26s; }
.blk:nth-child(4) { animation-delay: 0.34s; }
.blk:nth-child(5) { animation-delay: 0.42s; }
.blk:nth-child(6) { animation-delay: 0.50s; }
.blk:nth-child(7) { animation-delay: 0.56s; }
.blk:nth-child(8) { animation-delay: 0.62s; }
.blk:nth-child(n+9) { animation-delay: 0.68s; }

@keyframes blkFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Disable staggered animation in editor (only for public profile) */
.eb-canvas-frame .blk,
.eb-block .blk {
    animation: none;
}

/* Hide empty placeholders on public profile pages (only visible in editor) */
.profile-page:not(.eb-canvas-frame .profile-page) .blk-placeholder {
    display: none;
}

/* ── Heading Block ── */
.blk-heading-text {
    margin: 0;
    padding: 8px 0;
}
.blk-heading-text.h1 { font-size: 1.8rem; }
.blk-heading-text.h2 { font-size: 1.4rem; }
.blk-heading-text.h3 { font-size: 1.15rem; }
.blk-heading-text.h4 { font-size: 0.95rem; }

/* ── Paragraph Block ── */
.blk-paragraph p {
    margin: 0;
    padding: 4px 0;
}

/* ── Big Link Block ── */
.blk-big-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    padding: 16px;
    text-decoration: none;
    color: var(--profile-text, #f5f5f7);
    transition: all 0.2s;
    overflow: hidden;
}
.blk-big-link-card:hover {
    border-color: var(--profile-border-hover, rgba(255,255,255,0.14));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.blk-big-link-image {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.blk-big-link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blk-big-link-content {
    flex: 1;
    min-width: 0;
}
.blk-big-link-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px;
}
.blk-big-link-desc {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.blk-big-link-arrow {
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.blk-big-link-card:hover .blk-big-link-arrow {
    opacity: 0.8;
}

/* ── Image Block ── */
.blk-image-caption {
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.5;
    margin: 8px 0 0;
}

/* ── List Block ── */
.blk-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blk-list--bullet .blk-list-items li::before {
    content: '•';
    margin-right: 8px;
    opacity: 0.5;
}
.blk-list--numbered .blk-list-items {
    list-style: decimal;
    padding-left: 24px;
}
.blk-list-items li {
    padding: 6px 0;
    font-size: 0.9rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
}
.blk-list-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* ── File Block ── */
.blk-file-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    padding: 14px 18px;
    text-decoration: none;
    color: var(--profile-text, #f5f5f7);
    transition: all 0.2s;
}
.blk-file-card:hover {
    border-color: var(--profile-border-hover);
    transform: translateY(-1px);
}
.blk-file-icon {
    font-size: 1.5rem;
}
.blk-file-info {
    flex: 1;
    min-width: 0;
}
.blk-file-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
}
.blk-file-size {
    display: block;
    font-size: 0.72rem;
    opacity: 0.4;
    margin-top: 2px;
}

/* ── Audio Block ── */
.blk-audio-player {
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    padding: 14px;
    overflow: hidden;
}
.blk-audio-info {
    margin-bottom: 10px;
}
.blk-audio-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}
.blk-audio-artist {
    display: block;
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 2px;
}
.blk-audio-player audio {
    width: 100%;
}

/* ── Opening Hours Block ── */
.blk-hours-card {
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    padding: 18px;
}
.blk-hours-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    font-weight: 600;
}
.blk-hours-status {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}
.blk-hours-status--open {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}
.blk-hours-status--closed {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}
.blk-hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blk-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.82rem;
    opacity: 0.7;
}
.blk-hours-row--today {
    opacity: 1;
    font-weight: 600;
    color: var(--profile-accent, #7A2041);
}
.blk-hours-day {
    min-width: 90px;
}

/* ── Modal Text Block ── */
/* ── Accordion / Collapsible Text ── */
.blk-accordion {
    border-radius: var(--profile-radius, 14px);
    overflow: hidden;
    background: var(--profile-card, #14141A);
    border: var(--profile-card-border-width, 1px) solid var(--profile-border, rgba(255,255,255,0.08));
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.blk-accordion:hover {
    border-color: var(--profile-border-hover, rgba(255,255,255,0.14));
}
.blk-accordion.open {
    box-shadow: 0 4px 24px var(--profile-shadow-color, rgba(0,0,0,0.15));
}
.blk-accordion-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: none;
    border: none;
    color: var(--profile-text, #f5f5f7);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    text-align: left;
    transition: background 0.15s;
}
.blk-accordion-trigger:hover {
    background: var(--profile-card-hover, rgba(255,255,255,0.03));
}
.blk-accordion-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--profile-icon-bg, rgba(255,255,255,0.06));
    border-radius: 8px;
}
.blk-accordion-title {
    flex: 1;
    font-weight: 600;
}
.blk-accordion-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 0.35;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}
.blk-accordion.open .blk-accordion-chevron {
    transform: rotate(180deg);
    opacity: 0.6;
}
.blk-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.blk-accordion.open .blk-accordion-content {
    grid-template-rows: 1fr;
}
.blk-accordion-inner {
    overflow: hidden;
}
.blk-accordion-heading {
    margin: 0 16px 6px;
    padding-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--profile-text, #f5f5f7);
    border-top: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    letter-spacing: -0.01em;
}
.blk-accordion-body {
    padding: 0 16px 14px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--profile-text, #f5f5f7);
    opacity: 0.65;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.blk-accordion-body br {
    display: block;
    content: "";
    margin-top: 4px;
}
/* When no heading, add top border to body */
.blk-accordion-inner > .blk-accordion-body:first-child {
    padding-top: 12px;
    border-top: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    margin: 0 16px;
    padding-left: 0;
    padding-right: 0;
}

/* ── Socials Grid Variant ── */
.blk-socials--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
    gap: 10px;
    justify-items: center;
    max-width: 100%;
}
/* Grid: limit to max 4 columns so items actually wrap */
.blk-socials--grid {
    grid-template-columns: repeat(4, 1fr);
}
/* Pill grid needs wider columns */
.blk-socials--pill .blk-socials--grid {
    grid-template-columns: repeat(2, 1fr);
}

/* ── Iframe Block ── */
.blk-iframe-title {
    font-size: 0.8rem;
    opacity: 0.5;
    margin: 0 0 8px;
    text-align: center;
}

/* ── Avatar Block ── */
.blk-avatar .avatar-card {
    position: relative;
    display: inline-block;
}

.blk-avatar .profile-avatar-wrap {
    perspective: 400px;
}
.blk-avatar .profile-avatar,
.blk-avatar .profile-avatar-placeholder {
    box-shadow: 0 6px 20px rgba(0,0,0,.25), 0 2px 6px rgba(0,0,0,.15);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.5s ease;
}
.blk-avatar .profile-avatar:hover,
.blk-avatar .profile-avatar-placeholder:hover {
    transform: scale(1.06) rotateY(6deg) rotateX(-3deg);
    box-shadow: 0 10px 32px rgba(0,0,0,.35), 0 4px 10px rgba(0,0,0,.2);
}

/* ── Avatar Block Shape Variants ── */
.blk-avatar--square .profile-avatar,
.blk-avatar--square .profile-avatar-placeholder {
    border-radius: 0 !important;
}
.blk-avatar--square .profile-avatar-glow,
.blk-avatar--square .profile-avatar-glow::after {
    border-radius: 0;
}
.blk-avatar--rounded .profile-avatar,
.blk-avatar--rounded .profile-avatar-placeholder {
    border-radius: 16px !important;
}
.blk-avatar--rounded .profile-avatar-glow,
.blk-avatar--rounded .profile-avatar-glow::after {
    border-radius: 16px;
}
/* ── Heart shape ── */
.blk-avatar--heart .profile-avatar-wrap {
    position: relative;
}
.blk-avatar--heart .profile-avatar-wrap {
    width: 116px !important;
    height: 110px !important;
}
.blk-avatar--heart .profile-avatar,
.blk-avatar--heart .profile-avatar-placeholder {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    clip-path: url(#heart-clip);
    object-fit: cover;
    position: relative;
    z-index: 1;
}
/* Heart border via drop-shadow on wrap (clip-path on img would clip it) */
.blk-avatar--heart .profile-avatar-wrap {
    filter: drop-shadow(0 0 1.5px rgba(255,255,255,.5));
}
/* Scale with avatar size setting */
.blk-avatar--heart .profile-avatar-wrap.avatar-size--small {
    width: 68px !important;
    height: 64px !important;
}
.blk-avatar--heart .profile-avatar-wrap.avatar-size--medium {
    width: 93px !important;
    height: 88px !important;
}
/* Shape-aware glow: clip-path prevents visible GPU layer rectangle */
.blk-avatar--circle .avatar-ring::before,
.blk-avatar--circle .avatar-ring::after {
    border-radius: 50%;
    clip-path: circle(50%);
}
.blk-avatar--rounded .avatar-ring::before,
.blk-avatar--rounded .avatar-ring::after {
    border-radius: 18%;
    clip-path: inset(0 round 18%);
}
.blk-avatar--square .avatar-ring::before,
.blk-avatar--square .avatar-ring::after {
    border-radius: 6px;
    clip-path: inset(0 round 6px);
}
.blk-avatar--heart .avatar-ring::before,
.blk-avatar--heart .avatar-ring::after {
    border-radius: 0;
    clip-path: url(#heart-clip);
}
/* Pulse: remove clip-path for non-heart so blur flows outward */
.blk-avatar--circle .avatar-ring--pulse::before,
.blk-avatar--rounded .avatar-ring--pulse::before,
.blk-avatar--square .avatar-ring--pulse::before {
    clip-path: none;
}
/* Heart pulse: glow div approach (blur on parent, clip-path on child) */
.blk-avatar--heart .avatar-ring--pulse::before {
    display: none;
}
.blk-avatar--heart .avatar-ring--pulse .profile-avatar-glow {
    display: block;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 105%; height: 105%;
    filter: blur(14px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: none;
    animation: ringBreathe 2.5s ease-in-out infinite;
}
.blk-avatar--heart .avatar-ring--pulse .profile-avatar-glow::before {
    content: '';
    display: block;
    width: 100%; height: 100%;
    clip-path: url(#heart-clip);
    background: var(--ring-color, var(--profile-accent, #4DA6FF));
}

/* Ring keyframes (also in profile.css, duplicated for builder preview) */
@keyframes ringBreathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: .15; }
    50%      { transform: translate(-50%, -50%) scale(1.12);  opacity: .6; }
}
@property --ring-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes ringGlowRotate {
    to { --ring-angle: 360deg; }
}

/* ── CTA / Aktion Block ── */
.blk-cta {
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blk-cta-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}
.blk-cta-subtitle {
    font-size: 0.9rem;
    margin: 0 0 20px;
    opacity: 0.8;
}
.blk-cta-btn {
    display: inline-block;
    padding: 11px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.blk-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* Gradient */
.blk-cta--gradient {
    background: var(--cta-gradient);
}
.blk-cta--gradient .blk-cta-title,
.blk-cta--gradient .blk-cta-subtitle {
    color: #fff;
}
.blk-cta--gradient .blk-cta-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.blk-cta--gradient .blk-cta-btn:hover {
    background: rgba(255,255,255,0.3);
}
/* Glass */
.blk-cta--glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
}
.blk-cta--glass .blk-cta-title {
    color: rgba(255,255,255,0.95);
}
.blk-cta--glass .blk-cta-subtitle {
    color: rgba(255,255,255,0.6);
}
.blk-cta--glass .blk-cta-btn {
    background: var(--cta-gradient);
    color: #fff;
    border: none;
}
/* Outline */
.blk-cta--outline {
    background: transparent;
    border: 2px solid transparent;
    border-image: var(--cta-gradient) 1;
    border-radius: 0;
}
.blk-cta--outline .blk-cta-title {
    color: rgba(255,255,255,0.95);
}
.blk-cta--outline .blk-cta-subtitle {
    color: rgba(255,255,255,0.6);
}
.blk-cta--outline .blk-cta-btn {
    background: var(--cta-gradient);
    color: #fff;
    border: none;
}
/* Minimal */
.blk-cta--minimal {
    background: transparent;
    padding: 24px 16px;
}
.blk-cta--minimal .blk-cta-title {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
}
.blk-cta--minimal .blk-cta-subtitle {
    color: rgba(255,255,255,0.5);
}
.blk-cta--minimal .blk-cta-btn {
    background: var(--cta-gradient);
    color: #fff;
    border: none;
}

/* ── Spotify Block ── */
.blk-spotify iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}

/* ── FAQ/Accordion Block ── */
.blk-faq-item {
    overflow: hidden;
}
.blk-faq--bordered .blk-faq-item {
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: 12px;
    margin-bottom: 8px;
}
.blk-faq--minimal .blk-faq-item {
    border-bottom: 1px solid var(--profile-border, rgba(255,255,255,0.08));
}
.blk-faq--minimal .blk-faq-item:last-child {
    border-bottom: none;
}
.blk-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: none;
    border: none;
    color: var(--profile-text, #F5F5F7);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 12px;
    transition: background 0.15s;
}
.blk-faq-question:hover {
    background: rgba(255,255,255,0.04);
}
.blk-faq-q-text {
    flex: 1;
    min-width: 0;
}
.blk-faq-chevron {
    flex-shrink: 0;
    opacity: 0.4;
    transition: transform 0.25s ease;
}
.blk-faq-item.open .blk-faq-chevron {
    transform: rotate(180deg);
    opacity: 0.8;
}
.blk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.blk-faq-item.open .blk-faq-answer {
    max-height: 500px;
}
.blk-faq-a-inner {
    padding: 0 16px 14px;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--profile-text, #F5F5F7);
    opacity: 0.7;
}

/* ── Countdown Block ── */
.blk-countdown {
    text-align: center;
}
.blk-countdown-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--profile-text, #F5F5F7);
    margin-bottom: 14px;
    opacity: 0.8;
}
.blk-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.blk-countdown--boxes .blk-countdown-unit {
    background: var(--profile-card, rgba(255,255,255,0.06));
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: 12px;
    padding: 14px 16px;
    min-width: 64px;
}
.blk-countdown--inline .blk-countdown-unit {
    padding: 4px 0;
}
.blk-countdown-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--profile-text, #F5F5F7);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.blk-countdown-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--profile-text, #F5F5F7);
    opacity: 0.4;
    margin-top: 4px;
}
.blk-countdown-sep {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--profile-text, #F5F5F7);
    opacity: 0.2;
}
.blk-countdown--boxes .blk-countdown-sep {
    display: none;
}
.blk-countdown-expired {
    font-size: 1rem;
    font-weight: 600;
    color: var(--profile-accent, #7A2041);
    padding: 20px 0;
}
@media (max-width: 400px) {
    .blk-countdown--boxes .blk-countdown-unit {
        min-width: 52px;
        padding: 10px 8px;
    }
    .blk-countdown-num { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════════
   New Block Types
   ═══════════════════════════════════════════════ */

/* ── Newsletter ── */
.blk-newsletter-card {
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    padding: 20px;
    text-align: center;
}
.blk-newsletter-title { font-size: 1rem; font-weight: 700; margin: 0 0 4px; }
.blk-newsletter-desc { font-size: 0.8rem; opacity: 0.6; margin: 0 0 14px; }
.blk-newsletter-form { display: flex; gap: 8px; }
.blk-newsletter-input {
    flex: 1; padding: 10px 14px; border-radius: 10px;
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    background: rgba(255,255,255,0.04); color: var(--profile-text, #fff);
    font-size: 0.85rem;
}
.blk-newsletter-input:focus { outline: none; border-color: var(--profile-accent, #7A2041); }
.blk-newsletter-btn {
    padding: 10px 20px; border-radius: 10px; border: none;
    background: var(--profile-accent, #7A2041); color: #fff;
    font-weight: 600; font-size: 0.85rem; cursor: pointer;
    transition: opacity 0.2s;
}
.blk-newsletter-btn:hover { opacity: 0.85; }
.blk-newsletter-success { color: #00d68f; font-weight: 600; padding: 12px 0; font-size: 0.9rem; }
.blk-style-minimal .blk-newsletter-card { background: transparent; border: none; padding: 10px 0; }

/* ── Music Player ── */
.blk-music { border-radius: 12px; overflow: hidden; }
.blk-music iframe { display: block; }
.blk-music-placeholder {
    background: var(--profile-card, #14141A);
    border: 1px dashed var(--profile-border, rgba(255,255,255,0.12));
    border-radius: var(--profile-radius, 14px);
    padding: 28px 16px;
}
.blk-music-placeholder-inner {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    text-align: center; opacity: 0.4;
}
.blk-music-placeholder-inner span { font-size: 0.85rem; font-weight: 500; }
.blk-music-placeholder-inner small { font-size: 0.7rem; opacity: 0.6; }

/* ── Booking ── */
.blk-booking-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    padding: 16px; text-decoration: none; color: var(--profile-text, #fff);
    transition: all 0.25s;
}
.blk-booking-card:hover { border-color: var(--profile-border-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.blk-booking-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(77,166,255,0.1); color: #4da6ff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.blk-booking-body { flex: 1; min-width: 0; }
.blk-booking-title { font-weight: 600; font-size: 0.95rem; }
.blk-booking-desc { font-size: 0.75rem; opacity: 0.55; margin-top: 2px; }
.blk-booking-arrow { opacity: 0.3; flex-shrink: 0; transition: transform 0.2s; }
.blk-booking-card:hover .blk-booking-arrow { opacity: 0.6; transform: translateX(4px); }

/* ── Tipping / Donation ── */
.blk-tipping-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    padding: 16px; text-decoration: none; color: var(--profile-text, #fff);
    transition: all 0.25s;
}
.blk-tipping-card:hover { border-color: var(--profile-border-hover); transform: translateY(-2px); }
.blk-tipping-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,107,107,0.1); color: #ff6b6b;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.blk-tipping-body { flex: 1; min-width: 0; }
.blk-tipping-title { font-weight: 600; font-size: 0.95rem; }
.blk-tipping-desc { font-size: 0.75rem; opacity: 0.55; margin-top: 2px; }
.blk-tipping-platform { font-size: 0.65rem; opacity: 0.4; display: block; margin-top: 4px; }
.blk-tipping-btn {
    padding: 8px 16px; border-radius: 8px;
    background: var(--profile-accent, #7A2041); color: #fff;
    font-weight: 600; font-size: 0.8rem; white-space: nowrap; flex-shrink: 0;
}
.blk-style-highlighted .blk-tipping-card { background: linear-gradient(135deg, rgba(255,107,107,0.08), rgba(255,107,107,0.02)); border-color: rgba(255,107,107,0.15); }
.blk-style-minimal .blk-tipping-card { background: transparent; border: none; padding: 10px 0; }

/* ── Poll / Umfrage ── */
.blk-poll-card {
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    padding: 20px;
}
.blk-poll-question { font-size: 1rem; font-weight: 700; margin: 0 0 14px; }
.blk-poll-options { display: flex; flex-direction: column; gap: 8px; }
.blk-poll-option {
    width: 100%; padding: 12px 16px; border-radius: 10px;
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    background: rgba(255,255,255,0.03); color: var(--profile-text, #fff);
    font-size: 0.9rem; font-weight: 500; cursor: pointer;
    text-align: left; transition: all 0.2s;
}
.blk-poll-option:hover { border-color: var(--profile-accent, #7A2041); background: rgba(122,32,65,0.08); }
.blk-poll-result {
    position: relative; padding: 12px 16px; border-radius: 10px;
    background: rgba(255,255,255,0.02); overflow: hidden;
}
.blk-poll-result-bar {
    position: absolute; top: 0; left: 0; height: 100%;
    background: rgba(122,32,65,0.15); border-radius: 10px;
    transition: width 0.6s ease;
}
.blk-poll-result-text { position: relative; font-size: 0.85rem; font-weight: 500; }
.blk-poll-result-pct { position: relative; float: right; font-size: 0.8rem; font-weight: 700; opacity: 0.6; }
.blk-poll-total { text-align: center; font-size: 0.7rem; opacity: 0.4; margin-top: 10px; }

/* ── Product ── */
.blk-product-card {
    background: var(--profile-card, #14141A);
    border: 1px solid var(--profile-border, rgba(255,255,255,0.08));
    border-radius: var(--profile-radius, 14px);
    overflow: hidden; transition: all 0.25s;
}
.blk-product-card:hover { border-color: var(--profile-border-hover); transform: translateY(-2px); }
.blk-product-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.blk-product-image img { width: 100%; height: 100%; object-fit: cover; }
.blk-product-image--empty {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.02); aspect-ratio: 16/9;
}
.blk-product-body { padding: 16px; }
.blk-product-title { font-size: 1rem; font-weight: 700; margin: 0 0 4px; }
.blk-product-desc { font-size: 0.8rem; opacity: 0.6; margin: 0 0 12px; }
.blk-product-footer { display: flex; align-items: center; justify-content: space-between; }
.blk-product-price { font-size: 1.1rem; font-weight: 800; color: var(--profile-accent, #7A2041); }
.blk-product-btn {
    padding: 8px 18px; border-radius: 8px;
    background: var(--profile-accent, #7A2041); color: #fff;
    font-weight: 600; font-size: 0.85rem; text-decoration: none;
    transition: opacity 0.2s;
}
.blk-product-btn:hover { opacity: 0.85; }
.blk-style-featured .blk-product-card { border-color: var(--profile-accent, #7A2041); box-shadow: 0 0 20px rgba(122,32,65,0.15); }
.blk-style-minimal .blk-product-card { background: transparent; border: none; }

/* ── Map ── */
.blk-map { border-radius: 12px; overflow: hidden; }
.blk-map iframe { display: block; }

@media (max-width: 480px) {
    .blk-newsletter-form { flex-direction: column; }
    .blk-newsletter-btn { width: 100%; }
}
