/* ═══════════════════════════════════════
   SHOP.CSS — shop pages only
   Depends on: base.css + header.css
   Does NOT contain: :root, body, reset,
   header, drawer — those live in base/header
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.shop-hero {
    min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    padding-top: var(--header-h);
    overflow: hidden;
    position: relative;
}

.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; will-change: transform; }
.hero-blob--orange {
    width: 650px; height: 550px;
    background: radial-gradient(circle, rgba(232,101,26,0.45) 0%, transparent 70%);
    top: -15%; left: -10%; filter: blur(70px);
    animation: blobDrift 12s ease-in-out infinite;
}
.hero-blob--green {
    width: 550px; height: 500px;
    background: radial-gradient(circle, rgba(74,124,89,0.38) 0%, transparent 70%);
    bottom: -10%; right: -8%; filter: blur(80px);
    animation: blobDrift 15s ease-in-out infinite 2s reverse;
}
.hero-blob--gold {
    width: 400px; height: 380px;
    background: radial-gradient(circle, rgba(150,122,25,0.30) 0%, transparent 70%);
    top: 35%; left: 40%; filter: blur(90px);
    animation: blobDrift 18s ease-in-out infinite 1s;
}
.hero-blob--gray {
    width: 300px; height: 280px;
    background: radial-gradient(circle, rgba(200,200,200,0.20) 0%, transparent 70%);
    top: 20%; right: 25%; filter: blur(60px);
    animation: blobDrift 10s ease-in-out infinite 3s;
}
@keyframes blobDrift {
    0%,100% { transform: translate(0,0)       scale(1);    }
    33%     { transform: translate(30px,-20px) scale(1.04); }
    66%     { transform: translate(-20px,25px) scale(0.97); }
}

.hero-mirror-panel {
    position: absolute;
    right: -5%; top: 10%;
    width: 52%; height: 80%;
    background: var(--c-glass-bg);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--c-glass-border);
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    z-index: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(255,255,255,0.2), 0 20px 60px rgba(0,0,0,0.08);
    pointer-events: none;
    animation: panelMorph 10s ease-in-out infinite;
}
@keyframes panelMorph {
    0%,100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
    33%     { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
    66%     { border-radius: 45% 55% 60% 40% / 55% 60% 40% 45%; }
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 1280px; width: 100%;
    margin: 0 auto; padding: 40px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: .12em;
    color: var(--c-orange);
    background: rgba(232,101,26,0.12);
    border: 1px solid rgba(232,101,26,0.25);
    padding: 6px 16px; border-radius: 20px;
    margin-bottom: 22px;
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800; line-height: 1.04;
    margin-bottom: 18px;
}
.hero-title--accent { color: var(--c-primary); }
.hero-desc {
    font-size: 1.1rem; color: var(--c-text-muted);
    line-height: 1.72; margin-bottom: 18px; max-width: 460px;
}

/* ── Hero buttons + location picker ── */
.hero-btns           { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero-location-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em;
    text-transform: uppercase; color: var(--c-text-muted); margin: 0;
}
.hero-location-label svg { color: var(--c-primary); }
.hero-location-toggle    { display: none; }
.hero-chips              { display: flex; flex-wrap: wrap; gap: 9px; }
.hero-chips-wrap         { display: contents; }

.hero-chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 11px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--c-glass-border);
    background: var(--c-glass-bg);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    text-decoration: none; color: var(--c-text);
    white-space: nowrap; cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-chip svg    { color: var(--c-primary); flex-shrink: 0; transition: color 0.18s ease; }
.hero-chip strong { font-size: 0.92rem; font-weight: 700; line-height: 1; }
.hero-chip span   { font-size: 0.80rem; font-weight: 400; color: var(--c-text-muted); transition: color 0.18s ease; }
.hero-chip:hover  { background: var(--c-primary); border-color: var(--c-primary); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,101,26,0.35); }
.hero-chip:hover svg,
.hero-chip:hover span { color: rgba(255,255,255,0.85); }
.hero-chip:active { transform: translateY(0); box-shadow: none; }

/* ═══════════════════════════════════════
   HERO DISH COLUMN
═══════════════════════════════════════ */
.dish-bg-plate {
    position: absolute;
    width: 640px; height: 640px;
    object-fit: contain; object-position: center;
    left: 45%; top: 60%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none; user-select: none; opacity: 0.92;
}
.hero-dish-col  { display: flex; flex-direction: column; align-items: center; gap: 0; position: relative; z-index: 1; }
.hero-dishes    { position: relative; width: 100%; height: 420px; display: flex; align-items: center; justify-content: center; overflow: visible; }

.dish-ring {
    position: absolute; width: 380px; height: 380px;
    display: flex; align-items: center; justify-content: center;
    will-change: transform, opacity;
    background: none !important; backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important; border: none !important;
    box-shadow: none !important; border-radius: 0 !important;
}

.dish-img {
    width: 340px; height: 340px;
    object-fit: contain; object-position: center;
    display: block; position: relative; z-index: 5;
    will-change: transform;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.26)) drop-shadow(0 4px 12px rgba(0,0,0,0.18));
}
[data-theme="dark"] .dish-img {
    filter: drop-shadow(0 20px 44px rgba(0,0,0,0.55)) drop-shadow(0 4px 14px rgba(0,0,0,0.40));
}

.dish-glow { position: absolute; width: 260px; height: 60px; bottom: 8px; left: 50%; transform: translateX(-50%); border-radius: 50%; filter: blur(28px); opacity: 0.38; pointer-events: none; z-index: 1; }
.dish-glow--orange { background: rgba(232,101,26,0.70); }
.dish-glow--green  { background: rgba(74,124,89,0.70);  }
.dish-glow--gold   { background: rgba(150,122,25,0.70); }

.ing {
    position: absolute; object-fit: contain; pointer-events: none;
    will-change: transform, opacity;
    border-radius: 0 !important; background: none !important; box-shadow: none !important;
    opacity: 0; transform: scale(0.25);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.28)) drop-shadow(0 2px 5px rgba(0,0,0,0.16));
}
[data-theme="dark"] .ing {
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.55)) drop-shadow(0 2px 8px rgba(0,0,0,0.38));
}

/* naturally scattered — not grid-aligned */
.ing-b1 { z-index: 3; width: 80px; height: 80px; top: -10%;  left: 2%;   }
.ing-b2 { z-index: 3; width: 66px; height: 66px; top: -18%;  left: 42%;  }
.ing-f4 { z-index: 7; width: 62px; height: 62px; top: 4%; right: 35%; }

.ing-b3 { z-index: 3; width: 74px; height: 74px; top: 28%;   left: -14%; }
.ing-f2 { z-index: 7; width: 68px; height: 68px; top: 58%;   left: -10%; }

.ing-f1 { z-index: 7; width: 78px; height: 78px; bottom: -6%; left: 8%;  }
.ing-f3 { z-index: 7; width: 86px; height: 86px; bottom: -8%; left: 28%; }



.dish-flash {
    position: absolute; inset: -30px; border-radius: 50%;
    opacity: 0; pointer-events: none; z-index: 50;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, transparent 68%);
}
[data-theme="dark"] .dish-flash {
    background: radial-gradient(circle, rgba(25,25,25,0.95) 0%, transparent 68%);
}

.hero-dish-name-strip {
    width: 100%; min-height: 52px;
    display: flex; align-items: center; justify-content: center;
    padding: 10px 0 4px; position: relative; z-index: 20;
}
.dish-name-wrap {
    display: inline-flex; align-items: center; gap: 10px;
    white-space: nowrap;
    background: var(--c-glass-bg);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid var(--c-glass-border);
    border-radius: 40px; padding: 10px 22px 10px 16px;
    box-shadow: var(--shadow-sm);
}
.dish-name-bar    { display: block; width: 4px; height: 24px; background: var(--c-primary); border-radius: 3px; flex-shrink: 0; }
.dish-name-text   { font-size: 1.3rem; font-weight: 800; color: var(--c-text); letter-spacing: 0.01em; min-width: 2px; }
.dish-name-cursor { font-size: 1.3rem; font-weight: 300; color: var(--c-primary); animation: cursorBlink .65s step-end infinite; line-height: 1; margin-left: -6px; }
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-dish-dots { display: flex; gap: 9px; padding: 8px 0 0; position: relative; z-index: 20; }
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%; border: none;
    background: rgba(255,95,31,0.28); cursor: pointer; padding: 0;
    transition: background .22s, transform .22s;
}
.hero-dot.active { background: var(--c-primary); transform: scale(1.45); }

.hero-scroll-btn {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    background: none; border: none; color: var(--c-text-muted); cursor: pointer;
    font: 12px/1 var(--font); animation: bounce 2.2s ease-in-out infinite; z-index: 10;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0);  }
    50%     { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 768px) {
    .dish-img {
        width: 200px; height: 200px;
    }
    .hero-dishes {
        height: 300px;
    }
    .dish-ring {
        width: 220px; height: 220px;
    }
}
@media (max-width: 768px) {
    /* shrink all ingredients */
    .ing { width: 44px !important; height: 44px !important; }

    /* re-scatter away from dish */
    .ing-b1 { top: -22%;  left: -4%;  }
    .ing-b2 { top: -24%;  left: 38%;  }
    .ing-f4 { top:  2%;   right: 35%;  }

    .ing-b3 { top:  24%;  left: -20%; }
    .ing-f2 { top:  54%;  left: -18%; }

    .ing-f1 { bottom: -14%; left: 4%;  }
    .ing-f3 { bottom: -16%; left: 26%; }
}

/* ═══════════════════════════════════════
   TOP LIST SECTION
═══════════════════════════════════════ */
.toplist-section          { position: relative; overflow: hidden; }
.toplist-section .section-header { margin-bottom: 16px; }
.toplist-bg-ings          { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.tl-ing                   { position: absolute; will-change: transform; }

.tl-ing--1  { width:70px; top:8%;  left:1%;   animation: ingF1 10s ease-in-out infinite; }
.tl-ing--2  { width:55px; top:55%; left:2%;   animation: ingF2 13s ease-in-out infinite 1s; }
.tl-ing--3  { width:80px; top:78%; left:5%;   animation: ingF3 11s ease-in-out infinite 2s; }
.tl-ing--4  { width:38px; top:20%; left:7%;   animation: ingF1 9s  ease-in-out infinite 0.5s; }
.tl-ing--5  { width:48px; top:85%; left:14%;  animation: ingF2 14s ease-in-out infinite 3s; }
.tl-ing--6  { width:68px; top:5%;  right:2%;  animation: ingF3 12s ease-in-out infinite 1.5s; }
.tl-ing--7  { width:55px; top:40%; right:1%;  animation: ingF1 10s ease-in-out infinite 2.5s; }
.tl-ing--8  { width:50px; top:70%; right:4%;  animation: ingF2 8s  ease-in-out infinite 0.8s; }
.tl-ing--9  { width:36px; top:88%; right:10%; animation: ingF3 15s ease-in-out infinite 1.2s; }
.tl-ing--10 { width:52px; top:22%; right:7%;  animation: ingF1 11s ease-in-out infinite 3.5s; }

@keyframes ingF1 { 0%,100% { transform: translateY(0)     rotate(0deg);  } 50% { transform: translateY(-16px) rotate(7deg);  } }
@keyframes ingF2 { 0%,100% { transform: translateY(0)     rotate(0deg);  } 50% { transform: translateY(12px)  rotate(-9deg); } }
@keyframes ingF3 { 0%,100% { transform: translateY(0)     rotate(0deg);  } 33% { transform: translateY(-9px)  rotate(5deg);  } 66% { transform: translateY(9px) rotate(-6deg); } }

.toplist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px; padding-top: 90px;
    position: relative; z-index: 1;
    align-items: stretch;
}

/* ── Product Card ── */
.product-card {
    background: rgba(255,255,255,0.68);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.80);
    border-radius: 22px;
    display: flex; flex-direction: column;
    position: relative; overflow: visible;
    cursor: pointer; isolation: isolate;
    height: 100%; transition: box-shadow .35s ease;
}
[data-theme="dark"] .product-card,
.dark-mode .product-card {
    background: rgba(30,30,32,0.78);
    border-color: rgba(255,255,255,0.07);
    box-shadow: 0 6px 24px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.04);
}
.product-card:hover {
    box-shadow: 0 24px 56px rgba(255,95,31,0.16), 0 6px 16px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(255,95,31,0.25), inset 0 1px 0 rgba(255,255,255,0.80);
}
[data-theme="dark"] .product-card:hover,
.dark-mode .product-card:hover {
    box-shadow: 0 24px 56px rgba(255,95,31,0.26), 0 6px 16px rgba(0,0,0,0.50), 0 0 0 1.5px rgba(255,95,31,0.38), inset 0 1px 0 rgba(255,255,255,0.05);
}

.pc-img-wrap {
    position: absolute; top: -85px; left: 0; right: 0; height: 170px;
    display: flex; align-items: flex-end; justify-content: center;
    z-index: 10; pointer-events: none;
}
.pc-img-glow {
    position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
    width: 130px; height: 70px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,95,31,0.40) 0%, rgba(255,95,31,0.08) 60%, transparent 75%);
    filter: blur(18px); z-index: 0;
    transition: transform .5s ease, opacity .5s ease; pointer-events: none;
}
.product-card:hover .pc-img-glow { transform: translateX(-50%) scale(1.50); }

.pc-dish-img {
    position: relative; z-index: 3;
    width: 155px; height: 155px;
    object-fit: contain; object-position: center;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.40));
    transform: rotate(-8deg) rotateX(10deg);
    transform-origin: center; will-change: transform;
}
.pc-body      { margin-top: 98px; padding: 0 16px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pc-top-row   { display: flex; align-items: flex-start; }
.pc-name      { font-size: 1.02rem; font-weight: 800; color: var(--c-text); line-height: 1.25; width: 100%; }
.pc-heart     { display: none !important; }
.pc-ingredients { font-size: 0.78rem; color: var(--c-text-muted); line-height: 1.5; margin: 0; }
.pc-tags      { display: flex; flex-wrap: wrap; gap: 5px; }

.product-tag {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 700; letter-spacing: .03em;
    padding: 3px 9px; border-radius: 20px; white-space: nowrap;
    background: rgba(255,95,31,0.08); color: var(--c-primary);
    border: 1px solid rgba(255,95,31,0.20);
    transition: transform .18s ease, background .18s ease; line-height: 1;
}
.product-tag:hover { transform: scale(1.07); background: rgba(255,95,31,0.15); }
[data-theme="dark"] .product-tag,
.dark-mode .product-tag { background: rgba(255,95,31,0.12); border-color: rgba(255,95,31,0.28); color: #ff8c5f; }

.tag-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 0; }
.tag-icon svg { color: inherit; stroke: currentColor; fill: currentColor; display: block; }
.tag-icon svg[fill="none"] { fill: none; }

.pc-meta-row { display: flex; align-items: center; gap: 10px; }
.pc-rating   { display: flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; color: var(--c-primary); }
.pc-kcal     { display: flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 600; color: var(--c-text-muted); }
.pc-kcal svg { color: var(--c-primary); opacity: .75; }

.pc-footer   { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 8px; }
.pc-price    { font-size: 1.22rem; font-weight: 800; color: var(--c-primary); white-space: nowrap; }

.btn-add-cart {
    display: flex; align-items: center; gap: 5px;
    background: var(--c-primary); color: #fff;
    border: none; padding: 9px 14px; border-radius: 40px;
    font: 600 12px/1 var(--font); cursor: pointer;
    transition: background .22s, transform .18s, box-shadow .22s;
    white-space: nowrap; position: relative; overflow: hidden; flex-shrink: 0;
}
.btn-add-cart::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.18); transform: translateX(-110%);
    transition: transform .28s ease; border-radius: inherit;
}
.btn-add-cart:hover::after  { transform: translateX(0); }
.btn-add-cart:hover { background: var(--c-primary-dark); transform: scale(1.05); box-shadow: 0 5px 16px rgba(255,95,31,0.38); }

/* ═══════════════════════════════════════
   PROMO
═══════════════════════════════════════ */
.promo-section { overflow: hidden; }
.promo-blob    { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.promo-blob--1 { width: 450px; height: 450px; background: rgba(232,101,26,0.18); top: -10%; right: -5%; }
.promo-blob--2 { width: 350px; height: 350px; background: rgba(74,124,89,0.15);  bottom: -5%; left: -5%; }

.promo-inner       { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; position: relative; z-index: 1; }
.promo-image-wrap  { position: relative; display: flex; align-items: center; justify-content: center; height: 480px; }
.promo-dish-glow   { position: absolute; width: 340px; height: 340px; background: radial-gradient(circle, rgba(232,101,26,0.28) 0%, rgba(150,122,25,0.18) 50%, transparent 70%); border-radius: 50%; filter: blur(40px); z-index: 0; animation: promoPulse 4s ease-in-out infinite; }
@keyframes promoPulse { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.1); opacity: 1; } }

.promo-main-img {
    height: 340px;
    object-fit: cover; border-radius: 50%;
    position: relative; z-index: 2;
    box-shadow: 0 0 0 10px var(--c-glass-bg), 0 0 0 14px var(--c-glass-border), 0 24px 56px rgba(0,0,0,0.18);
}

.promo-ing { position: absolute; border-radius: 50%; pointer-events: none; will-change: transform; box-shadow: 0 4px 14px rgba(0,0,0,0.2); z-index: 3; }
.promo-ing--1 { width:55px; height:55px; top:5%;    left:8%;   animation: floatA 4.0s ease-in-out infinite; }
.promo-ing--2 { width:40px; height:40px; top:8%;    right:8%;  animation: floatB 5.0s ease-in-out infinite .5s; }
.promo-ing--3 { width:48px; height:48px; top:38%;   left:-2%;  animation: floatA 6.0s ease-in-out infinite 1s; }
.promo-ing--4 { width:44px; height:44px; top:42%;   right:-3%; animation: floatB 4.5s ease-in-out infinite 1.5s; }
.promo-ing--5 { width:52px; height:52px; bottom:8%; left:12%;  animation: floatA 5.5s ease-in-out infinite .3s; }
.promo-ing--6 { width:36px; height:36px; bottom:8%; right:12%; animation: floatB 4.8s ease-in-out infinite .8s; }
.promo-ing--7 { width:60px; height:60px; top:20%;   left:30%;  animation: floatA 7.0s ease-in-out infinite 2s; }
.promo-ing--8 { width:34px; height:34px; bottom:25%; right:30%; animation: floatB 5.2s ease-in-out infinite 1.2s; }
@keyframes floatA { 0%,100% { transform: translateY(0)     rotate(0deg);  } 40% { transform: translateY(-16px) rotate(6deg);  } 70% { transform: translateY(-7px)  rotate(-3deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0)     rotate(0deg);  } 40% { transform: translateY(-20px) rotate(-7deg); } 70% { transform: translateY(-9px)  rotate(4deg);  } }

.promo-text .section-title,
.promo-text .section-sub  { text-align: left; }
.promo-text .section-sub  { margin: 0 0 28px; }
.promo-price-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.promo-price     { font-size: 2rem; font-weight: 800; color: var(--c-primary); }

/* ═══════════════════════════════════════
   CLUB / APP SECTION
═══════════════════════════════════════ */
.club-section {
    background: linear-gradient(135deg, rgba(150,122,25,0.06) 0%, rgba(74,124,89,0.06) 50%, rgba(232,101,26,0.06) 100%);
}
.club-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 80px; }
.club-text .section-title,
.club-text .section-sub { text-align: left; }
.club-text .section-sub { margin: 0 0 28px; }
.club-features          { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.club-features li       { display: flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 500; }
.club-features li svg   { color: var(--c-primary); flex-shrink: 0; }
.club-btns              { display: flex; gap: 12px; flex-wrap: wrap; }

.club-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-shrink: 0; }
.club-phone {
    width: 230px; height: 460px;
    background: var(--c-glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    border: 2px solid var(--c-glass-border);
    border-radius: 42px; position: relative; overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.55);
}
.phone-notch    { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 82px; height: 22px; background: var(--c-bg); border-radius: 12px; z-index: 10; }
.phone-home-bar { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--c-border); border-radius: 4px; z-index: 10; }
.phone-screen   { position: absolute; inset: 40px 12px 22px; overflow: hidden; }
.phone-slide    { position: absolute; inset: 0; opacity: 0; transform: translateX(28px); transition: opacity .5s ease, transform .5s ease; display: flex; flex-direction: column; gap: 10px; }
.phone-slide.active { opacity: 1; transform: translateX(0); }
.phone-slide.exit   { opacity: 0; transform: translateX(-28px); }

.phone-slide__header { display: flex; align-items: center; gap: 10px; }
.ps-avatar  { width: 34px; height: 34px; border-radius: 50%; background: var(--c-primary); flex-shrink: 0; }
.ps-name    { width: 70px; height: 9px; background: var(--c-border); border-radius: 5px; margin-bottom: 4px; }
.ps-level   { font-size: 10px; font-weight: 700; color: var(--c-primary); }
.ps-points-card {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    border-radius: 14px; padding: 14px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.ps-pts-label    { font-size: 10px; color: rgba(255,255,255,0.72); }
.ps-pts-val      { font-size: 24px; font-weight: 800; color: #fff; }
.ps-pts-bar-wrap { width: 100%; height: 5px; background: rgba(255,255,255,0.25); border-radius: 3px; overflow: hidden; }
.ps-pts-bar      { height: 100%; background: rgba(255,255,255,0.7); border-radius: 3px; }
.ps-bars         { display: flex; flex-direction: column; gap: 7px; }
.ps-bar          { height: 8px; background: var(--c-border); border-radius: 4px; }
.ps-bar--sm      { width: 60% !important; }

.ps-qr-wrap      { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.ps-qr-label     { font-size: 13px; font-weight: 700; }
.ps-qr-sub       { font-size: 10px; color: var(--c-text-muted); }
.ps-section-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--c-text-muted); }
.ps-promo-list   { display: flex; flex-direction: column; gap: 7px; }
.ps-promo-item   { display: flex; align-items: center; gap: 9px; background: var(--c-border); border-radius: 10px; padding: 8px 10px; }
.ps-promo-badge  { font-size: 11px; font-weight: 800; color: var(--c-primary); min-width: 34px; text-align: center; background: rgba(150,122,25,0.12); border-radius: 6px; padding: 2px 4px; }
.ps-promo-badge--green  { color: var(--c-green);  background: rgba(74,124,89,0.12); }
.ps-promo-badge--orange { color: var(--c-orange); background: rgba(232,101,26,0.12); }
.ps-promo-title  { width: 100%; height: 9px; background: var(--c-bg); border-radius: 5px; margin-bottom: 4px; }
.ps-promo-sub    { width: 65%;  height: 7px; background: var(--c-bg); border-radius: 5px; }

.phone-dots { display: flex; gap: 8px; }
.phone-dot  { width: 7px; height: 7px; border-radius: 50%; background: var(--c-border); cursor: pointer; transition: background var(--tr), transform var(--tr); }
.phone-dot.active { background: var(--c-primary); transform: scale(1.3); }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--c-glass-bg);
    backdrop-filter: blur(14px); border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr);
}
.blog-card:hover            { transform: translateY(-8px); box-shadow: 0 24px 52px var(--c-shadow); }
.blog-card__thumb           { position: relative; height: 210px; overflow: hidden; }
.blog-thumb-img             { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-thumb-img { transform: scale(1.06); }

.yt-hover-wrap       { position: relative; width: 100%; height: 100%; }
.yt-play-overlay     { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: opacity var(--tr); pointer-events: none; }
.yt-hover-iframe     { position: absolute; inset: 0; width: 100%; height: 100%; border: none; opacity: 0; pointer-events: none; transition: opacity .3s; }
.yt-hover-wrap.playing .yt-hover-iframe  { opacity: 1; pointer-events: all; }
.yt-hover-wrap.playing .yt-play-overlay  { opacity: 0; }

.blog-card__body    { padding: 20px; }
.blog-card__cat     { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--c-primary); text-transform: uppercase; margin-bottom: 8px; display: block; }
.blog-card__title   { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.blog-card__excerpt { font-size: 0.87rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card__link    { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--c-primary); transition: gap var(--tr); }
.blog-card__link:hover { gap: 10px; }

/* ═══════════════════════════════════════
   SOCIAL
═══════════════════════════════════════ */
.social-section {
    overflow: hidden;
    background: linear-gradient(135deg, rgba(232,101,26,0.06) 0%, rgba(150,122,25,0.08) 50%, rgba(74,124,89,0.06) 100%);
}
.social-float-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sfi                { position: absolute; color: var(--c-primary); opacity: 0.15; will-change: transform; }
.sfi--1 { top:10%;   left:4%;   animation: sfiFloat 7s   ease-in-out infinite; }
.sfi--2 { top:20%;   right:7%;  animation: sfiFloat 9s   ease-in-out infinite 1s; }
.sfi--3 { top:55%;   left:2%;   animation: sfiFloat 6s   ease-in-out infinite 2s; }
.sfi--4 { top:65%;   right:4%;  animation: sfiFloat 8s   ease-in-out infinite .5s; }
.sfi--5 { bottom:12%; left:14%; animation: sfiFloat 7.5s ease-in-out infinite 1.5s; }
.sfi--6 { bottom:18%; right:13%; animation: sfiFloat 6.5s ease-in-out infinite .8s; }
@keyframes sfiFloat { 0%,100% { transform: translateY(0)     rotate(0deg);  } 50% { transform: translateY(-22px) rotate(16deg); } }

.social-embeds { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; position: relative; z-index: 1; }
.social-embed-wrap {
    background: var(--c-glass-bg);
    backdrop-filter: blur(16px); border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr);
}
.social-embed-wrap:hover { transform: translateY(-5px); box-shadow: 0 20px 50px var(--c-shadow); }
.social-embed__label { display: flex; align-items: center; gap: 8px; padding: 14px 20px; font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--c-glass-border); }
.yt-embed-frame iframe { width: 100%; aspect-ratio: 16/9; display: block; }
.ig-embed-frame        { padding: 16px; min-height: 320px; }

/* ═══════════════════════════════════════
   RESERVATION
═══════════════════════════════════════ */
.reserve-section  { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; padding: 100px 0; }
.reserve-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.reserve-overlay  { position: absolute; inset: 0; background: rgba(0,0,0,0.60); backdrop-filter: blur(2px); z-index: 1; }
.reserve-inner    { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.reserve-occasions { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.occasion-item    { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.80); font-size: 13px; font-weight: 500; transition: color var(--tr), transform var(--tr); }
.occasion-item:hover { color: #fff; transform: translateY(-6px); }

/* ═══════════════════════════════════════
   RESPONSIVE — TOPLIST
═══════════════════════════════════════ */
@media (max-width: 1140px) {
    .toplist-grid { gap: 16px; }
    .pc-dish-img  { width: 130px; height: 130px; }
    .pc-img-wrap  { top: -65px; height: 140px; }
    .pc-body      { margin-top: 82px; }
}
@media (max-width: 900px) {
    .toplist-grid { grid-template-columns: repeat(2, 1fr); padding-top: 80px; gap: 18px; }
    .pc-dish-img  { width: 130px; height: 130px; }
    .pc-img-wrap  { top: -65px; height: 145px; }
    .pc-body      { margin-top: 88px; }
}
@media (max-width: 540px) {
    .toplist-grid   { grid-template-columns: repeat(2, 1fr); padding-top: 70px; gap: 12px; }
    .pc-dish-img    { width: 105px; height: 105px; }
    .pc-img-wrap    { top: -52px; height: 120px; }
    .pc-body        { margin-top: 74px; padding: 0 10px 14px; }
    .pc-name        { font-size: 0.87rem; }
    .pc-ingredients { font-size: 0.73rem; }
    .pc-price       { font-size: 1.02rem; }
    .pc-rating,
    .pc-kcal        { font-size: 10px; }
    .btn-add-cart   { padding: 7px 10px; font-size: 11px; }
    .product-tag    { font-size: 9px; padding: 2px 7px; }
}
@media (max-width: 360px) {
    .toplist-grid   { grid-template-columns: repeat(2, 1fr); padding-top: 62px; gap: 9px; }
    .pc-dish-img    { width: 88px; height: 88px; }
    .pc-img-wrap    { top: -44px; height: 100px; }
    .pc-body        { margin-top: 62px; padding: 0 8px 12px; }
    .pc-name        { font-size: 0.78rem; }
    .pc-ingredients { font-size: 0.68rem; }
    .pc-price       { font-size: 0.95rem; }
    .btn-add-cart   { padding: 6px 8px; font-size: 10px; gap: 3px; }
    .btn-add-cart svg { width: 10px; height: 10px; }
    .product-tag    { font-size: 9px; padding: 2px 6px; }
    .pc-meta-row    { gap: 6px; }
}
@media (max-width: 280px) {
    .toplist-grid { grid-template-columns: 1fr; padding-top: 80px; gap: 14px; }
    .pc-dish-img  { width: 120px; height: 120px; }
    .pc-img-wrap  { top: -60px; height: 135px; }
    .pc-body      { margin-top: 82px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — HERO DISH
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-content       { grid-template-columns: 1fr; text-align: center; gap: 0; }
    .hero-text          { order: 1; }
    .hero-dish-col      { order: 2; }
    .hero-btns          { justify-content: center; }
    .hero-desc          { margin-left: auto; margin-right: auto; }
    .hero-mirror-panel  { width: 90%; right: 5%; top: auto; bottom: 0; height: 55%; }
}
@media (max-width: 768px) {
    .hero-btns          { align-items: stretch; }
    .hero-location-label { display: none; }
    .hero-location-toggle {
        display: inline-flex; align-items: center; gap: 10px;
        justify-content: space-between; padding: 13px 22px;
        border-radius: var(--radius-full);
        border: 1px solid var(--c-glass-border);
        background: var(--c-glass-bg);
        backdrop-filter: blur(14px) saturate(160%);
        -webkit-backdrop-filter: blur(14px) saturate(160%);
        color: var(--c-text); font: 700 0.95rem/1 var(--font);
        cursor: pointer; width: 100%;
    }
    .hero-location-toggle svg      { color: var(--c-primary); flex-shrink: 0; }
    .hero-location-toggle-chevron  { flex-shrink: 0; margin-left: auto; transition: transform 0.25s ease; }
    .hero-chips-wrap {
        display: block; border: 1px solid var(--c-glass-border);
        border-radius: var(--radius-lg); overflow: hidden;
        backdrop-filter: blur(14px) saturate(160%);
        -webkit-backdrop-filter: blur(14px) saturate(160%);
        box-shadow: 0 12px 40px rgba(0,0,0,0.14); margin-bottom: 4px;
    }
    .hero-chips { flex-direction: column; gap: 0; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.34s ease, opacity 0.24s ease; }
    .hero-chips-wrap.open .hero-chips { max-height: 480px; opacity: 1; }
    .hero-chips-wrap.open             { border-bottom: 2px solid var(--c-primary); }
    .hero-chip { width: 100%; border-radius: 0; border: none; border-bottom: 1px solid var(--c-glass-border); backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--c-glass-bg); padding: 13px 18px; justify-content: flex-start; gap: 10px; white-space: normal; }
    .hero-chip:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .hero-chip:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-bottom: none; }
    .hero-chip:hover       { transform: none; box-shadow: none; background: rgba(232,101,26,0.10); color: var(--c-text); }
    .hero-chip:hover svg,
    .hero-chip:hover span  { color: var(--c-primary); }

    .hero-dishes       { height: 340px; }
    .dish-ring         { width: 300px; height: 300px; }
    .dish-img          { width: 260px; height: 260px; }
    .hero-dish-dots    { display: none; }
    .dish-bg-plate     { width: 100%; height: 100%; }
    .dish-name-text,
    .dish-name-cursor  { font-size: 1.1rem; }
    .dish-name-wrap    { padding: 8px 18px 8px 14px; }
    .hero-scroll-btn   { bottom: 14px; }
}
@media (max-width: 480px) {
    .hero-chip strong  { font-size: 0.88rem; }
    .hero-chip span    { font-size: 0.76rem; }
    .hero-dishes       { height: 280px; }
    .dish-ring         { width: 240px; height: 240px; }
    .dish-img          { width: 205px; height: 205px; }
    .hero-dish-dots    { display: none; }
    .dish-bg-plate     { width: 100%; height: 100%; }
    .dish-name-text,
    .dish-name-cursor  { font-size: 1rem; }
    .hero-dish-name-strip { padding: 8px 0 2px; }
    .hero-scroll-btn   { bottom: 10px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — GLOBAL MOBILE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .toplist-grid       { grid-template-columns: repeat(2, 1fr); }
    .club-inner         { grid-template-columns: 1fr; }
    .club-phone-wrap    { order: -1; }
    .blog-grid          { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text    { order: 1; } .hero-dishes { order: 2; }
    .hero-mirror-panel  { width: 90%; right: 5%; top: auto; bottom: 0; height: 55%; }
    .dish-ring    { width: 260px; height: 260px; } .dish-img { width: 220px; height: 220px; }
    .hero-btns    { justify-content: center; } .hero-desc { margin: 0 auto 32px; }
    .promo-inner              { grid-template-columns: 1fr; gap: 40px; }
    .promo-image-wrap         { height: 320px; order: -1; }
    .promo-main-img           { width: 250px; height: 250px; }
    .promo-text .section-title,
    .promo-text .section-sub  { text-align: center; }
    .promo-price-row          { justify-content: center; }
    .blog-grid          { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .social-embeds      { grid-template-columns: 1fr; }
    .reserve-occasions  { gap: 24px; }
    .shop-section       { padding: 35px 0; }
}
@media (max-width: 480px) {
    .toplist-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .blog-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .blog-card__thumb   { height: 140px; }
    .blog-card__body    { padding: 12px; }
    .blog-card__title   { font-size: 0.88rem; }
    .blog-card__excerpt { display: none; }
    .hero-dishes { height: 280px; }
    .dish-ring   { width: 220px; height: 220px; }
    .dish-img    { width: 190px; height: 190px; }
}
@media (max-width: 320px) {
    .toplist-grid { grid-template-columns: 1fr !important; }
    .blog-grid    { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   MOBILE — kill background animations only
   scroll-triggered animations still work
═══════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Drawer mirror blobs ── */
    .dmb--1, .dmb--2, .dmb--3 {
        animation: none !important;
    }

    /* ── Any element using these common background animation classes ── */
    .bg-anim,
    .bg-blob,
    .bg-particle,
    .bg-float,
    .bg-pulse,
    .bg-glow,
    .mirror-blob,
    .hero-bg-anim,
    .parallax-bg {
        animation: none !important;
        transition: none !important;
    }

    /* ── CSS keyframe animations applied to pseudo-elements ── */
    *::before,
    *::after {
        animation-duration:        0.01ms !important;
        animation-iteration-count: 1      !important;
        animation-delay:           0ms    !important;
    }

    /* ── Elements with inline infinite animations (blobs, glows, pulses) ──
       Target by animation-iteration-count via JS instead — see below      */
}




/* ═══════════════════════════════════════
   BLOG SECTION - Instagram Style Cards
   Theme-aware shadows matching Social Section
═══════════════════════════════════════ */

/* Blog Grid */
.blog-ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* ═══════════════════════════════════════
   INSTAGRAM-STYLE BLOG CARD
═══════════════════════════════════════ */
.blog-ig-card {
    background: var(--c-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Light mode shadows */
.blog-ig-card {
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
}

.blog-ig-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Dark mode shadows (white/light) */
[data-theme="dark"] .blog-ig-card,
.dark-mode .blog-ig-card {
    box-shadow: 
        0 4px 20px rgba(255, 255, 255, 0.04),
        0 8px 32px rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .blog-ig-card:hover,
.dark-mode .blog-ig-card:hover {
    box-shadow: 
        0 16px 48px rgba(255, 255, 255, 0.08),
        0 8px 24px rgba(255, 255, 255, 0.04);
}

/* Featured card - larger shadow */
.blog-ig-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.blog-ig-card--featured {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 16px 48px rgba(232, 101, 26, 0.08);
}

.blog-ig-card--featured:hover {
    box-shadow: 
        0 24px 64px rgba(0, 0, 0, 0.18),
        0 16px 48px rgba(232, 101, 26, 0.15);
}

[data-theme="dark"] .blog-ig-card--featured,
.dark-mode .blog-ig-card--featured {
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.06),
        0 16px 48px rgba(232, 101, 26, 0.12);
}

[data-theme="dark"] .blog-ig-card--featured:hover,
.dark-mode .blog-ig-card--featured:hover {
    box-shadow: 
        0 24px 64px rgba(255, 255, 255, 0.10),
        0 16px 48px rgba(232, 101, 26, 0.20);
}

/* ═══════════════════════════════════════
   CARD HEADER - User Info
═══════════════════════════════════════ */
.blog-ig-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 15px;
    border-bottom: 1px solid var(--c-glass-border);
}

.blog-ig-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-ig-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--c-orange), var(--c-gold), var(--c-green));
    padding: 1px;
    flex-shrink: 0;
}

.blog-ig-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-bg);
}

.blog-ig-card__user-info {
    display: flex;
    flex-direction: column;
}

.blog-ig-card__user-info strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.2;
}

.blog-ig-card__user-info span {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.blog-ig-card__more {
    background: none;
    border: none;
    color: var(--c-text);
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.blog-ig-card__more:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════
   CARD IMAGE
═══════════════════════════════════════ */
.blog-ig-card__image-link {
    display: block;
    text-decoration: none;
}

.blog-ig-card__image {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 5;  
      overflow: hidden;
      border-radius: 12px;
      background: #000;
}
.blog-ig-card--featured .blog-ig-card__image {
    aspect-ratio: 1 / 1;
}
.ig-cover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;         
  display: block;
}
.blog-ig-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-ig-card:hover .blog-ig-card__image img {
    transform: scale(1.05);
}

.blog-ig-card__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-ig-card:hover .blog-ig-card__image-overlay {
    opacity: 1;
}

.blog-ig-card__view-btn {
    padding: 12px 24px;
    background: var(--c-primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.blog-ig-card:hover .blog-ig-card__view-btn {
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   CARD ACTIONS - Like, Comment, Share, Save
═══════════════════════════════════════ */
.blog-ig-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.blog-ig-card__actions-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-ig-card__action-btn {
    background: none;
    border: none;
    color: var(--c-text);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.blog-ig-card__action-btn:hover {
    transform: scale(1.1);
}

/* Like button animation */
.blog-ig-card__like-btn.liked .icon-heart-outline {
    display: none;
}

.blog-ig-card__like-btn.liked .icon-heart-filled {
    display: block !important;
    animation: likeHeartPop 0.4s ease;
}

@keyframes likeHeartPop {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Save button */
.blog-ig-card__save-btn.saved .icon-bookmark-outline {
    display: none;
}

.blog-ig-card__save-btn.saved .icon-bookmark-filled {
    display: block !important;
}

/* ═══════════════════════════════════════
   CARD BODY - Likes, Caption, Comments
═══════════════════════════════════════ */
.blog-ig-card__body {
    padding: 0 16px 16px;
}

.blog-ig-card__likes {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px;
}

.blog-ig-card__likes .likes-count {
    transition: transform 0.2s ease;
    display: inline-block;
}

.blog-ig-card__caption {
    margin-bottom: 8px;
}

.blog-ig-card__caption strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-text);
    margin-right: 6px;
}

.blog-ig-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-text);
    display: block;
    margin-top: 4px;
    margin-bottom: 4px;
}

.blog-ig-card__excerpt {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-ig-card__comments-link {
    display: block;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.blog-ig-card__comments-link:hover {
    color: var(--c-text);
}

.blog-ig-card__time {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   VIEW ALL BUTTON
═══════════════════════════════════════ */
.blog-view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--c-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}

/* Light mode shadow */
.blog-view-all-btn {
    box-shadow: 0 8px 24px rgba(232, 101, 26, 0.3);
}

.blog-view-all-btn:hover {
    transform: translateY(-3px);
    gap: 14px;
    box-shadow: 0 16px 40px rgba(232, 101, 26, 0.4);
}

/* Dark mode shadow */
[data-theme="dark"] .blog-view-all-btn,
.dark-mode .blog-view-all-btn {
    box-shadow: 0 8px 24px rgba(232, 101, 26, 0.4);
}

[data-theme="dark"] .blog-view-all-btn:hover,
.dark-mode .blog-view-all-btn:hover {
    box-shadow: 0 16px 40px rgba(232, 101, 26, 0.5);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .blog-ig-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-ig-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .blog-ig-card--featured .blog-ig-card__image {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .blog-ig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .blog-ig-card--featured {
        grid-column: span 2;
    }
    
    .blog-ig-card__header {
        padding: 10px 12px;
    }
    
    .blog-ig-card__avatar {
        width: 32px;
        height: 32px;
    }
    
    .blog-ig-card__actions {
        padding: 10px 12px;
    }
    
    .blog-ig-card__actions-left {
        gap: 12px;
    }
    
    .blog-ig-card__body {
        padding: 0 12px 12px;
    }
    
    .blog-ig-card__excerpt {
        display: none;
    }
}

@media (max-width: 500px) {
    .blog-ig-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-ig-card--featured {
        grid-column: span 1;
    }
    
    .blog-ig-card__image {
        aspect-ratio: 4 / 3;
    }
}
/* ═══════════════════════════════════════
   SOCIAL SECTION - Modern Styles
   Theme-aware shadows + Creative Typography
═══════════════════════════════════════ */

/* Main Grid Layout */
.social-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

/* Social Media Blocks */
.social-media-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ═══════════════════════════════════════
   CREATIVE TYPOGRAPHY - Big/Small Letters
═══════════════════════════════════════ */
.social-creative-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 16px 0;
    font-family: var(--font);
    line-height: 1.1;
}

.sct-word {
    display: inline-flex;
    align-items: baseline;
}

.sct-big {
    font-size: clamp(2.5rem, 5vw, 1.5rem);
    font-weight: 900;
    color: var(--c-text);
    text-transform: uppercase;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sct-small {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--c-text-muted);
    text-transform: lowercase;
    line-height: 1;
    transition: color 0.3s ease;
}

/* Platform-specific colors */
.sct-platform--yt .sct-big,
.sct-platform--yt .sct-small {
    color: #FF0000;
}

.sct-platform--ig .sct-big {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sct-platform--ig .sct-small {
    color: #dc2743;
}

/* Hover animation on title words */
.social-media-block:hover .sct-big {
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   THEME-AWARE SHADOWS
═══════════════════════════════════════ */

/* Light theme shadows (black/dark) */
.social-embed-wrap {
    background: var(--c-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* YouTube card shadow - light mode */
.social-embed--yt {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 16px 48px rgba(255, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.social-embed--yt:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.18),
        0 24px 80px rgba(255, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Instagram card shadow - light mode */
.social-embed--ig {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 16px 48px rgba(225, 48, 108, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.social-embed--ig:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.18),
        0 24px 80px rgba(225, 48, 108, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Dark theme shadows (white/light) */
[data-theme="dark"] .social-embed--yt,
.dark-mode .social-embed--yt {
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.06),
        0 16px 48px rgba(255, 0, 0, 0.12),
        0 4px 12px rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .social-embed--yt:hover,
.dark-mode .social-embed--yt:hover {
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.10),
        0 24px 80px rgba(255, 0, 0, 0.20),
        0 8px 24px rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .social-embed--ig,
.dark-mode .social-embed--ig {
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.06),
        0 16px 48px rgba(225, 48, 108, 0.12),
        0 4px 12px rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .social-embed--ig:hover,
.dark-mode .social-embed--ig:hover {
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.10),
        0 24px 80px rgba(225, 48, 108, 0.20),
        0 8px 24px rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════
   YOUTUBE EMBED STYLES
═══════════════════════════════════════ */
.yt-embed-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.yt-thumbnail-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.yt-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yt-thumbnail-wrap:hover .yt-thumbnail {
    transform: scale(1.05);
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.yt-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.yt-play-bg {
    transition: fill 0.3s ease;
}

.yt-play-btn:hover .yt-play-bg {
    fill: #cc0000;
}

.yt-iframe-container {
    position: absolute;
    inset: 0;
    display: none;
}

.yt-iframe-container.active {
    display: block;
}

.yt-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════════════════════════════════
   INSTAGRAM EMBED STYLES
═══════════════════════════════════════ */
.ig-embed-frame {
    padding: 20px;
    min-height: 400px;
    max-height: 550px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ig-embed-frame .instagram-media {
    max-width: 400px !important;
    min-width: 280px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Scrollbar styling for Instagram frame */
.ig-embed-frame::-webkit-scrollbar {
    width: 6px;
}

.ig-embed-frame::-webkit-scrollbar-track {
    background: transparent;
}

.ig-embed-frame::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 3px;
}

.ig-embed-frame::-webkit-scrollbar-thumb:hover {
    background: var(--c-primary);
}

/* ═══════════════════════════════════════
   SOCIAL SECTION - Modern Styles
   Instagram + Flowing Water Cards
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   MAIN LAYOUT - Instagram Left, Cards Right
═══════════════════════════════════════ */
.social-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Social Media Block (Instagram) */
.social-media-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ═══════════════════════════════════════
   CREATIVE TYPOGRAPHY - Big/Small Letters
═══════════════════════════════════════ */
.social-creative-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 16px 0;
    font-family: var(--font);
    line-height: 1.1;
}

.sct-word {
    display: inline-flex;
    align-items: baseline;
}

.sct-big {
    font-size: clamp(2.2rem, 4vw, 1.5rem);
    font-weight: 900;
    color: var(--c-text);
    text-transform: uppercase;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sct-small {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    font-weight: 500;
    color: var(--c-text-muted);
    text-transform: lowercase;
    line-height: 1;
    transition: color 0.3s ease;
}

/* Platform-specific colors - Instagram */
.sct-platform--ig .sct-big {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sct-platform--ig .sct-small {
    color: #dc2743;
}

/* Hover animation on title words */
.social-media-block:hover .sct-big {
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   THEME-AWARE SHADOWS - Instagram Card
═══════════════════════════════════════ */
.social-embed-wrap {
    background: var(--c-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Instagram card shadow - light mode (black shadow) */
.social-embed--ig {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 16px 48px rgba(225, 48, 108, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-embed--ig:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 24px 80px rgba(225, 48, 108, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Dark theme shadows (white/light) */
[data-theme="dark"] .social-embed--ig,
.dark-mode .social-embed--ig {
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.08),
        0 16px 48px rgba(225, 48, 108, 0.15),
        0 4px 12px rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .social-embed--ig:hover,
.dark-mode .social-embed--ig:hover {
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.12),
        0 24px 80px rgba(225, 48, 108, 0.22),
        0 8px 24px rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════
   INSTAGRAM EMBED STYLES
═══════════════════════════════════════ */
.social-embed__label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(188, 24, 136, 0.05));
    border-bottom: 1px solid var(--c-glass-border);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-text);
}

.social-embed__label svg {
    color: #E1306C;
}

.ig-embed-frame {
    padding: 20px;
    min-height: 400px;
    max-height: 550px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ig-embed-frame .instagram-media {
    max-width: 400px !important;
    min-width: 280px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Scrollbar styling */
.ig-embed-frame::-webkit-scrollbar {
    width: 6px;
}

.ig-embed-frame::-webkit-scrollbar-track {
    background: transparent;
}

.ig-embed-frame::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 3px;
}

.ig-embed-frame::-webkit-scrollbar-thumb:hover {
    background: var(--c-primary);
}

/* ═══════════════════════════════════════
   SOCIAL CARDS CONTAINER (Right Side)
═══════════════════════════════════════ */
.social-cards-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social-cards-head {
    text-align: left;
}

.social-cards-head h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--c-text);
}

.social-cards-head p {
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

/* ═══════════════════════════════════════
   FLOWING WATER ANIMATION CARDS
═══════════════════════════════════════ */
.social-flow-cards {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.social-flow-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--c-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--c-text);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease, 
                border-color 0.3s ease;
    animation: flowIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    animation-delay: var(--flow-delay, 0s);
}

/* Flow-in animation */
@keyframes flowIn {
    0% {
        opacity: 0;
        transform: translateX(60px) translateY(20px) rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

/* Water wave element inside cards */
.social-flow-card__wave {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-flow-card:hover .social-flow-card__wave {
    opacity: 1;
    animation: waveFlow 1.2s ease-in-out infinite;
}

@keyframes waveFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Continuous subtle floating animation */
.social-flow-card {
    animation: flowIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards,
               floatWater 4s ease-in-out infinite;
    animation-delay: var(--flow-delay, 0s), calc(var(--flow-delay, 0s) + 0.8s);
}

@keyframes floatWater {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-4px) translateX(2px);
    }
    50% {
        transform: translateY(-2px) translateX(-2px);
    }
    75% {
        transform: translateY(-6px) translateX(1px);
    }
}

/* Light mode shadow for cards (black) */
.social-flow-card {
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.social-flow-card:hover {
    transform: translateY(-6px) translateX(0) scale(1.02);
}

/* Dark mode shadow for cards (white) */
[data-theme="dark"] .social-flow-card,
.dark-mode .social-flow-card {
    box-shadow: 
        0 4px 16px rgba(255, 255, 255, 0.06),
        0 2px 8px rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .social-flow-card__wave,
.dark-mode .social-flow-card__wave {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 100%
    );
}

/* Platform-specific hover colors & shadows */
.social-flow-card--fb:hover {
    border-color: #1877F2;
    box-shadow: 0 12px 32px rgba(24, 119, 242, 0.3), 0 4px 12px rgba(0,0,0,0.1);
}
.social-flow-card--fb .social-flow-card__icon { color: #1877F2; }

.social-flow-card--ig:hover {
    border-color: #E1306C;
    box-shadow: 0 12px 32px rgba(225, 48, 108, 0.3), 0 4px 12px rgba(0,0,0,0.1);
}
.social-flow-card--ig .social-flow-card__icon { color: #E1306C; }

.social-flow-card--tt:hover {
    border-color: #000000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0,0,0,0.1);
}
.social-flow-card--tt .social-flow-card__icon { color: #000000; }
[data-theme="dark"] .social-flow-card--tt .social-flow-card__icon,
.dark-mode .social-flow-card--tt .social-flow-card__icon { color: #ffffff; }
[data-theme="dark"] .social-flow-card--tt:hover,
.dark-mode .social-flow-card--tt:hover {
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15), 0 4px 12px rgba(255,255,255,0.05);
}

.social-flow-card--yt:hover {
    border-color: #FF0000;
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.3), 0 4px 12px rgba(0,0,0,0.1);
}
.social-flow-card--yt .social-flow-card__icon { color: #FF0000; }

.social-flow-card--li:hover {
    border-color: #0A66C2;
    box-shadow: 0 12px 32px rgba(10, 102, 194, 0.3), 0 4px 12px rgba(0,0,0,0.1);
}
.social-flow-card--li .social-flow-card__icon { color: #0A66C2; }

.social-flow-card--x:hover {
    border-color: #000000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0,0,0,0.1);
}
.social-flow-card--x .social-flow-card__icon { color: #000000; }
[data-theme="dark"] .social-flow-card--x:hover,
.dark-mode .social-flow-card--x:hover {
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15), 0 4px 12px rgba(255,255,255,0.05);
}
[data-theme="dark"] .social-flow-card--x .social-flow-card__icon,
.dark-mode .social-flow-card--x .social-flow-card__icon { color: #ffffff; }

/* Icon container */
.social-flow-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-bg);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-flow-card:hover .social-flow-card__icon {
    transform: scale(1.15) rotate(8deg);
}

/* Content area */
.social-flow-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.social-flow-card__content strong {
    font-size: 1rem;
    font-weight: 700;
}

.social-flow-card__content small {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

/* Follow button */
.social-flow-card__btn {
    padding: 8px 18px;
    background: var(--c-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    opacity: 0;
    transform: translateX(15px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.social-flow-card:hover .social-flow-card__btn {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* ═══════════════════════════════════════
   FLOATING BACKGROUND ICONS
═══════════════════════════════════════ */
.social-float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sfi {
    position: absolute;
    opacity: 0.08;
    color: var(--c-primary);
    animation: floatBg 15s ease-in-out infinite;
}

.sfi--1 { top: 10%; left: 5%; animation-delay: 0s; }
.sfi--2 { top: 20%; right: 10%; animation-delay: 2s; }
.sfi--3 { top: 60%; left: 15%; animation-delay: 4s; }
.sfi--4 { bottom: 20%; right: 5%; animation-delay: 6s; }
.sfi--5 { bottom: 10%; left: 50%; animation-delay: 8s; }

@keyframes floatBg {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-25px) rotate(3deg); }
}

/* ═══════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--c-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--c-text);
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .social-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-cards-container {
        order: -1; /* Cards first on mobile */
    }
    
    .sct-big {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .sct-small {
        font-size: clamp(0.75rem, 2.5vw, 1rem);
    }
}

@media (max-width: 600px) {
    .social-flow-card__btn {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    
    .social-creative-title {
        gap: 4px;
    }
    
    .sct-big {
        font-size: 1.0rem;
    }
    
    .sct-small {
        font-size: 0.7rem;
    }
    
    .social-flow-card {
        padding: 14px 16px;
    }
    
    .social-flow-card__icon {
        width: 42px;
        height: 42px;
    }
}


/* ── Overlay ── */
.reservation-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 16px;
}

.reservation-modal-overlay.open {
    display: flex;
}

/* ── Box ── */
.reservation-modal-box {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: auto;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ── Close button ── */
.reservation-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--c-bg-secondary);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    cursor: pointer;
    transition: background var(--tr), color var(--tr);
}
.reservation-modal-close:hover {
    background: var(--c-border);
    color: var(--c-text);
}

/* ── Icon ── */
.reservation-modal-box__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: rgba(232, 101, 26, 0.10);
    border: 1px solid rgba(232, 101, 26, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    margin-bottom: 6px;
}

/* ── Title & msg ── */
.reservation-modal-box__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-text);
    line-height: 1.2;
}
.reservation-modal-box__msg {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

/* ── Form ── */
.reservation-form {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reservation-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.reservation-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reservation-field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reservation-field input,
.reservation-field select,
.reservation-field textarea {
    background: var(--c-bg-secondary);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    font-size: 14px;
    color: var(--c-text);
    width: 100%;
    transition: border-color var(--tr), box-shadow var(--tr);
    font-family: var(--font);
}

.reservation-field input:focus,
.reservation-field select:focus,
.reservation-field textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(232, 101, 26, 0.12);
}

.reservation-field textarea {
    resize: vertical;
    min-height: 90px;
}

/* ── Actions ── */
.reservation-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 4px;
}

.reservation-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background var(--tr), color var(--tr), transform var(--tr);
}

.reservation-btn--primary {
    background: var(--c-primary);
    color: #fff;
}
.reservation-btn--primary:hover {
    background: var(--c-primary-dark);
    transform: translateY(-1px);
}

.reservation-btn--ghost {
    background: transparent;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
}
.reservation-btn--ghost:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

/* ── Guest banner ── */
.reservation-guest-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--c-bg-secondary);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.reservation-guest-banner__text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
    flex: 1;
}
.reservation-guest-banner__text svg { color: var(--c-primary); flex-shrink: 0; }
.reservation-guest-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }

.reservation-banner-btn {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.reservation-banner-btn--login {
    border: 1px solid var(--c-border);
    color: var(--c-text);
    background: transparent;
}
.reservation-banner-btn--login:hover { border-color: var(--c-primary); color: var(--c-primary); }
.reservation-banner-btn--signup {
    background: var(--c-primary);
    border: 1px solid var(--c-primary);
    color: #fff;
}
.reservation-banner-btn--signup:hover { background: var(--c-primary-dark); }

/* ── Divider ── */
.reservation-guest-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 4px 0;
}
.reservation-guest-divider::before,
.reservation-guest-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--c-border);
}
.reservation-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-bg-secondary);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin-bottom: 4px;
}

.reservation-user-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232, 101, 26, 0.12);
    border: 1px solid rgba(232, 101, 26, 0.2);
    color: var(--c-primary);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reservation-user-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.reservation-user-card__info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text);
}

.reservation-user-card__info span {
    font-size: 12px;
    color: var(--c-text-muted);
}

.reservation-user-card__badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-success, #437a22);
    background: rgba(67, 122, 34, 0.10);
    border: 1px solid rgba(67, 122, 34, 0.18);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
/* ── Responsive ── */
@media (max-width: 480px) {
    .reservation-modal-box { padding: 28px 18px 20px; }
    .reservation-form-grid { grid-template-columns: 1fr; }
    .reservation-guest-banner { flex-direction: column; align-items: flex-start; }
    .reservation-form-actions { flex-direction: column-reverse; }
    .reservation-btn { width: 100%; text-align: center; }
}


/* ─── SECTION WRAPPER ─────────────────────── */
/* Matches the dark blurred bg aesthetic of the existing site */
.ck-section {
  --rise-dur: 760ms;
  --interval: 3000ms;
  --rise-ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  position: relative;
  width: 100%;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 44px);
  overflow: hidden;
}

/* ambient glows — same as existing site hero */
.ck-section::before,
.ck-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.ck-section::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,95,31,0.13) 0%, transparent 70%);
  top: -80px; left: -80px;
}
.ck-section::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(74,124,89,0.10) 0%, transparent 70%);
  bottom: -60px; right: -60px;
}

/* ─── TITLE ABOVE CARD ────────────────────── */
.ck-header {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ck-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-primary);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .7s ease forwards .1s;
}
.ck-eyebrow::before,
.ck-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-primary);
  opacity: .5;
}

.ck-title {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .9s ease forwards .25s;
}
.ck-title span {
  color: var(--c-primary);
}

.ck-subtitle {
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  color: var(--c-muted);
  max-width: 420px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .8s ease forwards .4s;
}

/* ─── CARD ────────────────────────────────── */
.ck-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  /* Height: 58% of its own width — cinematic 16:10-ish */
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-bg);
  /* glass border */
  box-shadow:
    0 0 0 5px rgba(255,255,255,0.06),
    0 10px 20px rgba(0,0,0,0.65),
    0 6px 10px rgba(0,0,0,0.4);
}

/* progress bar at top of card */
.ck-progress {
  position: absolute;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--c-primary);
  z-index: 30;
  transition: none;
}

/* counter top-right inside card */
.ck-counter {
  position: absolute;
  top: 16px; right: 18px;
  z-index: 20;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(240,237,232,0.45);
  pointer-events: none;
  line-height: 1;
}
.ck-counter b { color: var(--c-text); font-style: normal; font-size: 1.1em; }

/* ─── SLIDES ──────────────────────────────── */
.ck-slide {
  position: absolute;
  inset: 0;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path, transform, opacity;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.ck-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: scale(1.12);
  backface-visibility: hidden;
}

.ck-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  isolation: isolate;
}

/* dark gradient overlay */
.ck-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.60) 100%
  );
  pointer-events: none;
}

/* ── States ── */
.ck-slide.state-rise {
  animation: slideRise var(--rise-dur) var(--rise-ease) forwards;
  z-index: 4;
}
.ck-slide.state-rise img {
  animation: imgRise var(--rise-dur) var(--rise-ease) forwards;
}

.ck-slide.state-hold {
  clip-path: inset(0% 0 0 0);
  z-index: 3;
}
.ck-slide.state-hold img {
  animation: imgHold var(--interval) linear forwards;
}

.ck-slide.state-leave {
  clip-path: inset(0% 0 0 0);
  z-index: 2;
}
.ck-slide.state-leave img {
  animation: imgLeave var(--rise-dur) var(--rise-ease) forwards;
}

@keyframes slideRise {
  from { clip-path: inset(100% 0 0% 0); }
  to   { clip-path: inset(0%   0 0% 0); }
}
@keyframes imgRise {
  from { transform: scale(1.15); }
  to   { transform: scale(1.0);  }
}
@keyframes imgHold {
  from { transform: scale(1.0);  }
  to   { transform: scale(1.12); }
}
@keyframes imgLeave {
  from { transform: scale(1.0);  }
  to   { transform: scale(1.22); }
}

/* ─── META: name + tags inside card (bottom) ── */
.ck-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
}

.ck-name {
  display: block;
  width: 100%;
  max-width: 220px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0;
}

.ck-texts {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.ck-tags {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  max-width: 180px;
}

.ck-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(240,237,232,0.7);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ck-tag.ot { border-color: rgba(255,95,31,.5);  color: #ff8a57; }
.ck-tag.gr { border-color: rgba(74,124,89,.6);  color: #6fcf97; }
.ck-tag.gd { border-color: rgba(180,148,30,.5); color: #e0c84a; }

.ck-slide.state-hold .ck-name,
.ck-slide.state-hold .ck-tags {
  opacity: 1;
  transform: translateY(0);
}

/* ─── DESCRIPTION BELOW CARD ─────────────── */
.ck-desc-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
}
.ck-desc-in {
  display: block;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.35;
  max-width: 420px;
}
.ck-desc-text {
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  line-height: 1.85;
  color: var(--c-text);
  max-width: 560px;
  transition: opacity .4s ease, transform .4s ease;
}
.ck-desc-text strong { var(--c-primary); font-weight: 500; }

.ck-desc-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  color: var(--c-text);
  user-select: none;
  flex-shrink: 0;
}
.ck-meta .ck-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
  will-change: opacity, transform;
}

.ck-slide.state-rise .ck-reveal,
.ck-slide.state-hold .ck-reveal {
  opacity: 1;
  transform: translateY(0);
}

.ck-slide.state-rise .ck-reveal--name,
.ck-slide.state-hold .ck-reveal--name {
  transition-delay: 0.06s;
}

.ck-slide.state-rise .ck-reveal--desc,
.ck-slide.state-hold .ck-reveal--desc {
  transition-delay: 0.18s;
}

.ck-slide.state-rise .ck-reveal--tags,
.ck-slide.state-hold .ck-reveal--tags {
  transition-delay: 0.28s;
}
/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MOBILE ─────────────────────────────── */
@media (max-width: 600px) {
  .ck-card { border-radius: 14px; }
  .ck-desc-num { display: none; }
  .ck-desc-wrap { min-height: auto; }
  .ck-meta { padding: 14px 14px; }
}
@media (max-width: 768px) {
  .ck-card,
  .ck-slides,
  .ck-slide {
    border-radius: 22px;
    overflow: hidden;
  }

  .ck-slide img {
    transform: scale(1.01);
  }

  .ck-slide::after {
    inset: -1px -1px -3px -1px;
  }
}

@media (max-width: 768px) {
  .ck-meta {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .ck-texts {
    width: 100%;
  }

  .ck-name {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.1;
  }

  .ck-desc-in,
  .ck-tags {
    display: none !important;
  }
}
/* Base ring */
.story-ring {
  position: relative;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Instagram gradient ring */
.story-ring__border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1px;  /* thin ring */
  background: conic-gradient(#f58529, #feda77, #dd2a7b, #dd4814, #dd8615, #f58529);
  animation: storyRingSpin 4s linear infinite;
}

/* avatar image */
.story-ring img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* small avatar size */
.story-ring--small {
  width: 42px;       
  height: 42px;
}

/* inner avatar inset inside ring */
.story-ring--small img {
  width: 88%;
  height: 88%;
}

/* avoid double keyframes */
@keyframes storyRingSpin {
  to {
    transform: rotate(360deg);
  }
}