@import url("https://fonts.googleapis.com/css2?family=Podkova:wght@400;500;600;700;800&display=swap");

/* ─────────────────────────────────────────
   Chick-Flick — Global Stylesheet
   ───────────────────────────────────────── */

:root {
    --black: #181818;
    --yellow: #fff1ec;
    --orange: #8e1b1b;
    --red: #b52424;
    --white: #ffd87a47;
    --dark: #f5f0e8;
    --card-bg: #ffd87a47;
}

* {
    box-sizing: border-box;
}

html {
    background-color: var(--white);
}

body {
    background-color: transparent;
    color: var(--black);
    font-family: "Podkova", serif;
    margin: 0;
}

/* ── Particle canvas ── */
#cf-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

img {
    max-width: 100%;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Podkova", serif;
    font-weight: 900;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f0ece4;
}
::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar-fixed {
    position: fixed !important;
}
.navbar {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.navbar-brand img {
    height: 72px;
}
.navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.7) !important;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px !important;
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active-nav {
    color: var(--red) !important;
}
.navbar-toggler-icon {
    filter: none;
}
.btn-nav-order {
    background: linear-gradient(135deg, #b52424 0%, #8e1b1b 100%);
    color: #fff;
    font-weight: 800;
    padding: 9px 22px;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(181, 36, 36, 0.3);
}
.btn-nav-order:hover {
    background: linear-gradient(135deg, #c42828 0%, #a01f1f 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(181, 36, 36, 0.45);
    animation: cfNavPop 0.36s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-cf {
    display: inline-block;
    background: linear-gradient(135deg, #c42828 0%, #8e1b1b 100%);
    color: #fff;
    font-weight: 800;
    padding: 14px 34px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    font-family: "Podkova", serif;
    box-shadow: 0 4px 18px rgba(181, 36, 36, 0.32);
    position: relative;
    overflow: hidden;
    animation: cfBtnGlow 2.8s ease-in-out infinite;
}
.btn-cf::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.14),
        transparent
    );
    transition: left 0.55s ease;
}
.btn-cf:hover::before {
    left: 100%;
}
.btn-cf:hover {
    background: linear-gradient(135deg, #d42e2e 0%, #a01f1f 100%);
    color: #fff;
    transform: translateY(-3px);
    animation: cfRingPulse 0.85s ease-out infinite;
}
.btn-cf:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(181, 36, 36, 0.35);
}

.btn-cf-outline {
    display: inline-block;
    background: transparent;
    color: var(--red);
    font-weight: 700;
    padding: 12px 32px;
    border: 2px solid rgba(181, 36, 36, 0.35);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: "Podkova", serif;
    position: relative;
    overflow: hidden;
}
.btn-cf-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(181, 36, 36, 0.06);
    transition: width 0.35s ease;
    z-index: 0;
}
.btn-cf-outline:hover::before {
    width: 100%;
}
.btn-cf-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
    letter-spacing: 2.6px;
    box-shadow: 0 5px 18px rgba(181, 36, 36, 0.14);
}

.btn-add {
    background: linear-gradient(135deg, #b52424 0%, #8e1b1b 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 7px 16px;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(181, 36, 36, 0.25);
}
.btn-add:hover {
    background: linear-gradient(135deg, #c42828 0%, #a01f1f 100%);
    color: #fff;
    box-shadow: 0 5px 16px rgba(181, 36, 36, 0.4);
    animation: cfAddBounce 0.38s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
section {
    padding: 96px 0;
}

.sec-tag {
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}
.sec-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--black);
}
.sec-sub {
    font-size: 1rem;
    color: #666;
    max-width: 560px;
    line-height: 1.8;
}
.divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(181, 36, 36, 0.2),
        transparent
    );
}

/* ══════════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════════ */
.page-banner {
    background: var(--red);
    padding: 100px 0 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}
/* Split page banner: text left, image right — fixed height for consistency */

.page-banner-split {
    width: 100% !important;
}

.page-banner-split img {
    width: 100% !important;
}

.page-banner-split::after {
    display: none;
}
/* .pb-split-left {
    flex: 0 0 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    padding: 0 64px;
    position: relative;
    overflow: hidden;
} */
.pb-split-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 80% 50%,
        rgba(0, 0, 0, 0.18) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.pb-split-left > div {
    position: relative;
    z-index: 1;
}
.pb-split-right {
    flex: 0 0 50%;
    height: 520px;
    overflow: hidden;
}
.pb-split-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 80% 50%,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.page-banner .container {
    position: relative;
    z-index: 1;
}
.page-banner-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: #fff;
}
.breadcrumb-cf {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}
.breadcrumb-cf a {
    color: var(--yellow);
    text-decoration: none;
}
.breadcrumb-cf a:hover {
    color: #fff;
}
.breadcrumb-cf .sep {
    color: rgba(255, 255, 255, 0.35);
    margin: 0 6px;
}

/* ══════════════════════════════════════════
   HERO (Home)
══════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#hero::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    max-width: 600px;
    max-height: 600px;
    /* background-image: url("../images/logo.png"); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}
#hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(
        ellipse at 70% 50%,
        rgba(181, 36, 36, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}
.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--black);
}
.hero-title span {
    color: var(--red);
}
.hero-sub {
    font-size: 1.05rem;
    color: #555;
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 34px;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #666;
}
.hero-video-box {
    width: 100%;
    /* max-width: 640px; */
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(181, 36, 36, 0.18);
}
.hero-video-box video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero-video-play {
    width: 64px;
    height: 64px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    padding-left: 4px;
}
.hero-video-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin: 0;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}
@keyframes cfPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}
@keyframes cfBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ── Button animation keyframes ── */
@keyframes cfBtnGlow {
    0%,
    100% {
        box-shadow: 0 4px 18px rgba(181, 36, 36, 0.32);
    }
    50% {
        box-shadow:
            0 6px 26px rgba(181, 36, 36, 0.55),
            0 0 0 5px rgba(181, 36, 36, 0.07);
    }
}
@keyframes cfRingPulse {
    0% {
        box-shadow:
            0 10px 32px rgba(181, 36, 36, 0.48),
            0 0 0 0 rgba(181, 36, 36, 0.32);
    }
    70% {
        box-shadow:
            0 10px 32px rgba(181, 36, 36, 0.48),
            0 0 0 14px rgba(181, 36, 36, 0);
    }
    100% {
        box-shadow:
            0 10px 32px rgba(181, 36, 36, 0.48),
            0 0 0 0 rgba(181, 36, 36, 0);
    }
}
@keyframes cfAddBounce {
    0% {
        transform: scale(1) translateY(0);
    }
    28% {
        transform: scale(1.13) translateY(-5px);
    }
    55% {
        transform: scale(0.95) translateY(-2px);
    }
    78% {
        transform: scale(1.04) translateY(-3px);
    }
    100% {
        transform: scale(1) translateY(-2px);
    }
}
@keyframes cfLuxuryGlow {
    0%,
    100% {
        box-shadow:
            0 14px 36px rgba(229, 169, 59, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 18px 50px rgba(229, 169, 59, 0.72),
            inset 0 1px 0 rgba(255, 255, 255, 0.28),
            0 0 0 5px rgba(229, 169, 59, 0.1);
    }
}
@keyframes cfNavPop {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.07) translateY(-2px);
    }
    70% {
        transform: scale(0.97);
    }
    100% {
        transform: scale(1) translateY(-1px);
    }
}
@keyframes cfTabPop {
    0% {
        transform: scale(1) translateY(0);
    }
    45% {
        transform: scale(1.09) translateY(-3px);
    }
    72% {
        transform: scale(0.97) translateY(-1px);
    }
    100% {
        transform: scale(1.04) translateY(-2px);
    }
}

/* ══════════════════════════════════════════
   CATEGORIES (LUXURY REDESIGN)
   ══════════════════════════════════════════ */
.categories-luxury-sec {
    /* background: radial-gradient(circle at 50% 50%, #200508 0%, #0d0102 100%); */
    background-color: var(--red);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.categories-luxury-sec::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(181, 36, 36, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.categories-luxury-sec::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(229, 169, 59, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.text-gold {
    color: #e5a93b !important;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.luxury-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -1px;
}

.luxury-cat-card {
    position: relative;
    display: block;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.luxury-cat-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luxury-cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.luxury-cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 1, 2, 0.1) 0%,
        rgba(13, 1, 2, 0.4) 40%,
        rgba(13, 1, 2, 0.95) 90%
    );
    transition: background 0.5s ease;
    z-index: 2;
}

.luxury-cat-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(229, 169, 59, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 169, 59, 0.3);
    color: #e5a93b;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    transition: all 0.3s ease;
}

.luxury-cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.luxury-cat-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.luxury-cat-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease,
        margin 0.5s ease;
}

.luxury-cat-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #e5a93b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.luxury-cat-link i {
    transition: transform 0.3s ease;
}

/* Hover Effects */
.luxury-cat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 169, 59, 0.5);
    box-shadow:
        0 20px 40px rgba(181, 36, 36, 0.25),
        0 0 30px rgba(229, 169, 59, 0.15);
}

.luxury-cat-card:hover .luxury-cat-img-wrapper img {
    transform: scale(1.12) rotate(1deg);
}

.luxury-cat-card:hover .luxury-cat-overlay {
    background: linear-gradient(
        to bottom,
        rgba(13, 1, 2, 0.05) 0%,
        rgba(13, 1, 2, 0.3) 30%,
        rgba(13, 1, 2, 0.98) 85%
    );
}

.luxury-cat-card:hover .luxury-cat-badge {
    background: rgba(181, 36, 36, 0.3);
    border-color: rgba(181, 36, 36, 0.6);
    color: #ffffff;
}

.luxury-cat-card:hover .luxury-cat-desc {
    max-height: 60px;
    opacity: 1;
    margin-bottom: 5px;
}

.luxury-cat-card:hover .luxury-cat-link {
    opacity: 1;
    transform: translateY(0);
}

.luxury-cat-card:hover .luxury-cat-link i {
    transform: translateX(5px);
}

.btn-cf-luxury {
    display: inline-block;
    background: linear-gradient(135deg, #c42828 0%, #8e1b1b 100%);
    color: #fff;
    font-weight: 800;
    padding: 15px 40px;
    border: 1px solid rgba(229, 169, 59, 0.5);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 6px 22px rgba(181, 36, 36, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-family: "Podkova", serif;
    position: relative;
    overflow: hidden;
}
.btn-cf-luxury::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: left 0.6s ease;
}
.btn-cf-luxury:hover::before {
    left: 100%;
}
.btn-cf-luxury:hover {
    background: linear-gradient(135deg, #e5a93b 0%, #c48e2e 100%);
    color: #120303;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
    animation: cfLuxuryGlow 1.2s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   NUMBERS / STATS STRIP
══════════════════════════════════════════ */
.num-strip {
    background: var(--dark);
    padding: 72px 0;
}
.num-item {
    text-align: center;
}
.num-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    font-family: "Podkova", serif;
}
.num-label {
    font-size: 0.82rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ══════════════════════════════════════════
   SOCIAL PROOF — REDESIGNED
══════════════════════════════════════════ */
.social-proof-wrap {
    overflow: hidden;
}

/* Heading accent */
.sp-heading-accent {
    color: var(--red);
}

/* Platform cards */
.sp-platform-card {
    background: var(--white);
    border-radius: 22px;
    padding: 40px 28px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.sp-platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}
.sp-platform-logo-wrap {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}
.sp-platform-icon {
    font-size: 2.5rem;
    color: #fff;
}
.sp-logo-instagram {
    background: linear-gradient(
        135deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}
.sp-logo-facebook {
    background: #1877f2;
}
.sp-logo-google {
    background: #f8f9fa;
    border: 1px solid #e8eaed;
}
.sp-platform-name {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #b0b0b0;
    margin-bottom: 10px;
}
.sp-platform-stat {
    font-size: 2.9rem;
    font-weight: 900;
    font-family: "Podkova", serif;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}
.sp-star-accent {
    color: var(--yellow);
}
.sp-platform-stat-lbl {
    font-size: 0.68rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.sp-platform-desc {
    font-size: 0.84rem;
    color: rgba(0, 0, 0, 0.48);
    line-height: 1.7;
    margin-bottom: 26px;
    flex: 1;
}
.sp-platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition:
        opacity 0.25s,
        transform 0.2s;
    border: none;
}
.sp-platform-btn:hover {
    opacity: 0.88;
    transform: scale(1.04);
}
.sp-btn-instagram {
    background: linear-gradient(
        135deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: #fff;
}
.sp-btn-facebook {
    background: #1877f2;
    color: #fff;
}
.sp-btn-google {
    background: var(--white);
    color: #3c4043;
    border: 1.5px solid #dadce0;
}
.sp-btn-google:hover {
    background: #f8f9fa;
}

/* Bottom CTA buttons */
.sp-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        opacity 0.25s,
        transform 0.2s;
}
.sp-cta-btn:hover {
    opacity: 0.88;
    transform: scale(1.04);
}
.sp-cta-instagram {
    background: linear-gradient(
        135deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: #fff;
}
.sp-cta-facebook {
    background: #1877f2;
    color: #fff;
}
.sp-cta-google {
    background: var(--white);
    color: #3c4043;
    border: 1.5px solid #dadce0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Platform stat pills */
.sp-stats-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.sp-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--black);
    color: #ffffff;
    border-radius: 100px;
    padding: 12px 24px;
    min-width: 150px;
}
.sp-pill-icon {
    font-size: 1.3rem;
    color: #aaa;
}
.sp-pill-icon--yellow {
    color: var(--yellow);
}
.sp-pill-icon--red {
    color: var(--red);
}
.sp-pill-val {
    font-size: 1.05rem;
    font-weight: 900;
    font-family: "Podkova", serif;
    color: var(--yellow);
    line-height: 1;
}
.sp-pill-lbl {
    font-size: 0.65rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Reel cards row */
.sp-reels-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual reel card */
.sp-reel {
    width: 162px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition:
        transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.35s;
    position: relative;
}
.sp-reel:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 24px 52px rgba(24, 24, 24, 0.22);
}
.sp-reel--dark {
    background: var(--black);
    color: #fff;
}
.sp-reel--red {
    background: linear-gradient(170deg, #3a0005, var(--red));
    color: #fff;
}
.sp-reel--yellow {
    background: var(--yellow);
    color: var(--black);
}
.sp-reel--charcoal {
    background: #1e1e1e;
    color: #fff;
}

.sp-reel-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px 0;
}
.sp-reel-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    flex-shrink: 0;
}
.sp-reel-user {
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
}
.sp-reel-plat {
    font-size: 0.58rem;
    opacity: 0.6;
    margin-top: 1px;
}

.sp-reel-media {
    flex: 1;
    min-height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    padding: 12px 0;
}
.sp-reel-play {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.sp-reel--yellow .sp-reel-play {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--black);
}

.sp-reel-caption {
    padding: 0 12px 8px;
    font-size: 0.66rem;
    line-height: 1.45;
    font-style: italic;
    opacity: 0.85;
}
.sp-reel-foot {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px 12px;
    font-size: 0.64rem;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sp-reel--yellow .sp-reel-foot {
    border-top-color: rgba(0, 0, 0, 0.1);
}

/* Review quote strip */
.sp-quote-strip {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-radius: 16px;
    overflow: hidden;
}
.sp-quote {
    flex: 1;
    padding: 28px 30px;
    text-align: center;
}
.sp-quote-stars {
    font-size: 0.9rem;
    color: var(--yellow);
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.sp-quote-text {
    font-size: 0.88rem;
    color: #ddd;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}
.sp-quote-author {
    font-size: 0.72rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.sp-quote-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    margin: 20px 0;
}

/* Legacy proof-reel (kept for other pages if used) */
.proof-reel {
    background: var(--card-bg);
    border: 1px solid rgba(255, 229, 0, 0.08);
    border-radius: 12px;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s;
    max-width: 180px;
}
.proof-reel:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}
.proof-reel-label {
    font-size: 0.7rem;
    color: #888;
    margin-top: 8px;
    text-align: center;
    padding: 0 10px;
}

/* ══════════════════════════════════════════
   EXPERIENCE / ABOUT
══════════════════════════════════════════ */
.stat-box {
    border-left: 3px solid var(--red);
    padding-left: 18px;
    margin-bottom: 28px;
}
.stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    font-family: "Podkova", serif;
}
.stat-lbl {
    font-size: 0.78rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 18px;
    padding: 0;
    text-align: center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    box-shadow: 0 2px 12px rgba(24, 24, 24, 0.05);
    overflow: hidden;
    height: 100%;
}
.founder-card:hover {
    transform: translateY(-8px);
    border-color: rgba(181, 36, 36, 0.2);
    box-shadow: 0 22px 45px rgba(181, 36, 36, 0.15);
}
.founder-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--dark);
}
.founder-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(24, 24, 24, 0) 55%,
        rgba(24, 24, 24, 0.35) 100%
    );
}
.founder-body {
    padding: 22px 22px 28px;
}
.founder-name {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.18rem;
    color: var(--black);
    letter-spacing: 0.2px;
}
.founder-title {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(181, 36, 36, 0.08);
}
.founder-bio {
    font-size: 0.85rem;
    color: #666;
    margin: 16px auto 0;
    max-width: 260px;
    line-height: 1.7;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.value-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(181, 36, 36, 0.08);
    border: 1px solid rgba(181, 36, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   MENU
══════════════════════════════════════════ */
.menu-tab {
    background: #fff;
    border: 1.5px solid rgba(24, 24, 24, 0.11);
    color: #555;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
    line-height: 1.4;
}
.menu-tab.active {
    background: linear-gradient(135deg, #c42828 0%, #8e1b1b 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(181, 36, 36, 0.35);
    transform: translateY(-1px) scale(1.05);
}
.menu-tab:hover:not(.active) {
    background: linear-gradient(135deg, #c42828 0%, #8e1b1b 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(181, 36, 36, 0.28);
    transform: translateY(-1px);
}

.menu-card {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(24, 24, 24, 0.06);
}
.menu-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(181, 36, 36, 0.1);
}
.menu-img {
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #f5f0e8, #ede8de);
}
.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.menu-card:hover .menu-img img {
    transform: scale(1.06);
}
.menu-body {
    padding: 18px;
}
.menu-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: "Podkova", serif;
    color: var(--black);
}
.menu-desc {
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 10px;
}
.spice {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    margin-right: 2px;
}
.spice.off {
    background: #ddd;
}
.menu-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--red);
    font-family: "Podkova", serif;
}
.menu-price-sizes {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.menu-price-sizes span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--red);
    background: rgba(229, 57, 53, 0.08);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 5px;
    padding: 2px 7px;
    font-family: "Podkova", serif;
    white-space: nowrap;
}
.menu-price-sizes span b {
    font-size: 0.65rem;
    font-weight: 800;
    opacity: 0.6;
    margin-right: 2px;
    text-transform: uppercase;
}
.menu-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-spice-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-spice-row {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* ══════════════════════════════════════════
   APP REWARDS
══════════════════════════════════════════ */

/* Light hero section */
.app-hero-section {
    background: transparent;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.app-hero-section::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 480px;
    height: 480px;
    background: radial-gradient(
        circle,
        rgba(181, 36, 36, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.app-hero-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(
        circle,
        rgba(181, 36, 36, 0.04) 0%,
        transparent 65%
    );
    pointer-events: none;
}

/* Features list */
.app-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.app-feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(181, 36, 36, 0.08);
    border: 1px solid rgba(181, 36, 36, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}
.app-feat h6 {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 3px;
    color: var(--black);
}
.app-feat p {
    font-size: 0.78rem;
    color: #666;
    margin: 0;
}

/* App store buttons (same as default) */
.app-store-btn {
    background: var(--dark);
    border-color: rgba(24, 24, 24, 0.12);
    color: var(--black);
}
.app-store-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ── Phone mockup ── */
.phone-frame {
    width: 268px;
    background: #111;
    border-radius: 44px;
    border: 7px solid #2a2a2a;
    box-shadow:
        0 0 0 1px #3a3a3a,
        0 50px 100px rgba(0, 0, 0, 0.75),
        0 0 80px rgba(181, 36, 36, 0.12);
    position: relative;
    overflow: hidden;
}
.phone-notch {
    width: 88px;
    height: 24px;
    background: #111;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.phone-content {
    background: #161616;
    padding: 6px 16px 14px;
}
.phone-app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.phone-app-header img {
    height: 22px;
}
.phone-app-header span {
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    font-family: "Podkova", serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.phone-banner {
    background: linear-gradient(135deg, #b52424 0%, #7a1515 100%);
    border-radius: 16px;
    padding: 18px 16px;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.phone-banner::before {
    content: "";
    position: absolute;
    top: -24px;
    right: -24px;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}
.phone-banner-label {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 2px;
    font-family: "Podkova", serif;
}
.phone-banner-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    font-family: "Podkova", serif;
    line-height: 1;
    margin-bottom: 2px;
}
.phone-banner-sub {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}
.phone-points-bar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.ppb-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.ppb-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--yellow);
    font-family: "Podkova", serif;
}
.ppb-tier {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}
.phone-section-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-family: "Podkova", serif;
}
.phone-offer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
}
.poc-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}
.poc-title {
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    font-family: "Podkova", serif;
    margin-bottom: 1px;
}
.poc-sub {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.38);
}
.poc-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 0.48rem;
    font-weight: 800;
    background: var(--red);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-family: "Podkova", serif;
}
.poc-hot {
    background: #e67e00;
}
.poc-free {
    background: #27a34a;
}
.phone-home-bar {
    height: 20px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-home-bar::before {
    content: "";
    width: 64px;
    height: 4px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
}

/* ══════════════════════════════════════════
   APP PAGE — COMING SOON
══════════════════════════════════════════ */

/* Coming soon label / badge */
.cs-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(181, 36, 36, 0.07);
    border: 1px solid rgba(181, 36, 36, 0.2);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 16px;
    border-radius: 100px;
    font-family: "Podkova", serif;
}

.cs-label-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    display: inline-block;
    animation: cs-pulse 1.6s ease-in-out infinite;
}

@keyframes cs-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

/* Feature pills */
.cs-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 32px;
}

.cs-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #444;
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.1);
    border-radius: 100px;
    padding: 14px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.cs-pill i {
    color: var(--red);
    font-size: 1.05rem;
}

.cs-pill:hover {
    border-color: rgba(181, 36, 36, 0.35);
    box-shadow: 0 4px 14px rgba(181, 36, 36, 0.1);
    transform: translateY(-2px);
}

/* Launch progress bar */
.cs-progress-wrap {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 28px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.04);
}

.cs-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cs-progress-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
}

.cs-progress-pct {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--red);
    font-family: "Podkova", serif;
}

.cs-progress-track {
    height: 8px;
    background: rgba(181, 36, 36, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.cs-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
    border-radius: 4px;
    position: relative;
    animation: cs-fill-in 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

@keyframes cs-fill-in {
    from {
        width: 0 !important;
    }
}

.cs-progress-fill::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 24px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35));
    border-radius: 0 4px 4px 0;
    animation: cs-shimmer 2s ease-in-out infinite 1.4s;
}

@keyframes cs-shimmer {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.cs-progress-note {
    font-size: 0.73rem;
    color: #888;
    margin: 0;
}

/* How Rewards Work steps */
.cs-steps {
    display: flex;
    align-items: stretch;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 14px;
}

.cs-step {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff8f0;
    border: 1px solid rgba(181, 36, 36, 0.12);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
}

.cs-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cs-step-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.cs-step-arrow {
    color: rgba(181, 36, 36, 0.35);
    font-size: 0.85rem;
    flex-shrink: 0;
    align-self: center;
}

/* Notify form */
.cs-notify-heading {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.cs-notify-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin-bottom: 6px;
}

.cs-cta-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto 6px;
}

.cs-notify-input {
    flex: 1;
    border: 1.5px solid rgba(24, 24, 24, 0.15);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.85rem;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.25s ease;
    font-family: inherit;
}

.cs-notify-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(181, 36, 36, 0.08);
}

.cs-notify-btn {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: "Podkova", serif;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cs-notify-btn:hover {
    background: var(--orange);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(181, 36, 36, 0.3);
}

.cs-notify-sub {
    font-size: 0.78rem;
    min-height: 1.2em;
    margin: 0;
}

/* Disabled / coming soon store buttons */
.cs-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f0ede7;
    border: 1.5px dashed rgba(24, 24, 24, 0.2);
    border-radius: 12px;
    cursor: not-allowed;
    opacity: 0.7;
    user-select: none;
}

.cs-store-btn div {
    display: flex;
    flex-direction: column;
}
.cs-store-btn small {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    display: block;
}
.cs-store-btn span {
    font-size: 0.88rem;
    font-weight: 700;
    color: #555;
    display: block;
}

/* Phone wrap with glow */
.cs-phone-wrap {
    position: relative;
    display: inline-block;
}

.cs-phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(
        circle,
        rgba(181, 36, 36, 0.12) 0%,
        transparent 65%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: cs-glow-pulse 3s ease-in-out infinite;
}

@keyframes cs-glow-pulse {
    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* What's inside feature grid */
.cs-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .cs-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .cs-feat-grid {
        grid-template-columns: 1fr;
    }
    .cs-notify-form,
    .cs-cta-form {
        flex-direction: column;
    }
    .cs-notify-btn {
        width: 100%;
    }
}

.cs-feat-card {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cs-feat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(181, 36, 36, 0.22);
    box-shadow: 0 14px 36px rgba(181, 36, 36, 0.09);
}

.cs-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(181, 36, 36, 0.07);
    border: 1px solid rgba(181, 36, 36, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.1rem;
    margin-bottom: 16px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cs-feat-card:hover .cs-feat-icon {
    background: var(--red);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(181, 36, 36, 0.28);
    transform: scale(1.08) rotate(4deg);
}

.cs-feat-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: "Podkova", serif;
}

.cs-feat-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* Legacy (kept for other pages) */
.app-mockup {
    background: linear-gradient(160deg, #f5f0e8, #ede8de);
    border: 2px solid rgba(181, 36, 36, 0.15);
    border-radius: 28px;
    padding: 36px 28px;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}
.app-promo {
    background: rgba(181, 36, 36, 0.07);
    border: 1px solid rgba(181, 36, 36, 0.2);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
}
.app-promo-title {
    font-size: 0.78rem;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 3px;
}
.app-promo-sub {
    font-size: 0.74rem;
    color: #666;
}

.reward-card {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(24, 24, 24, 0.06);
}
.reward-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(181, 36, 36, 0.1);
}
.reward-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.store-btn {
    background: var(--dark);
    border: 1.5px solid rgba(24, 24, 24, 0.1);
    border-radius: 12px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(24, 24, 24, 0.06);
}
.store-btn:hover {
    border-color: rgba(181, 36, 36, 0.4);
    color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 36, 36, 0.12);
}
.store-btn i {
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.store-btn:hover i {
    transform: scale(1.18) rotate(-8deg);
    color: var(--red);
}
.store-btn i {
    font-size: 1.4rem;
}
.store-btn svg {
    display: block;
}
.store-btn small {
    font-size: 0.6rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.65;
}
.store-btn span {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
}

/* ══════════════════════════════════════════
   FRANCHISE
══════════════════════════════════════════ */

/* Format section background */
.fr-formats-section {
    background: var(--red);
    padding: 80px 0;
}

/* Full-image overlay format card */
.fr-format-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    box-shadow: 0 16px 48px rgba(24, 24, 24, 0.2);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.fr-format-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(24, 24, 24, 0.3);
}

.fr-format-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fr-format-card:hover .fr-format-img {
    transform: scale(1.06);
}

.fr-format-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(24, 24, 24, 0.9) 0%,
        rgba(24, 24, 24, 0.3) 55%,
        transparent 100%
    );
    transition: background 0.35s ease;
}

.fr-format-card:hover .fr-format-overlay {
    background: linear-gradient(
        to top,
        rgba(142, 27, 27, 0.88) 0%,
        rgba(24, 24, 24, 0.4) 60%,
        transparent 100%
    );
}

/* Large number badge top-left */
.fr-format-num {
    position: absolute;
    top: 20px;
    left: 22px;
    font-family: "Podkova", serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(181, 36, 36, 0.35);
    line-height: 1;
    transition: color 0.3s ease;
}

.fr-format-card:hover .fr-format-num {
    color: rgba(181, 36, 36, 0.7);
}

/* Bottom content */
.fr-format-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 24px 22px;
}

.fr-format-title {
    color: var(--yellow);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: "Podkova", serif;
}

.fr-format-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.fr-format-list li {
    color: rgba(255, 241, 236, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
}

.fr-format-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.fr-format-invest {
    display: inline-block;
    background: var(--red);
    border: 1px solid var(--orange);
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.fr-card {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(24, 24, 24, 0.06);
}
.fr-card:hover {
    border-color: var(--red);
    box-shadow: 0 12px 32px rgba(181, 36, 36, 0.1);
}
.fr-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   DARK FORM (shared)
══════════════════════════════════════════ */
.dark-form .form-control,
.dark-form select,
.dark-form textarea {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.15);
    color: var(--black);
    padding: 13px 16px;
    border-radius: 8px;
    width: 100%;
    font-family: "Podkova", serif;
    font-size: 0.9rem;
}
.dark-form .form-control:focus,
.dark-form select:focus,
.dark-form textarea:focus {
    background: var(--white);
    border-color: var(--red);
    color: var(--black);
    box-shadow: 0 0 0 3px rgba(181, 36, 36, 0.1);
    outline: none;
}
.dark-form .form-control::placeholder,
.dark-form textarea::placeholder {
    color: #aaa;
}
.dark-form select option {
    background: var(--white);
    color: var(--black);
}
.dark-form textarea {
    resize: none;
}

/* ══════════════════════════════════════════
   LOCATIONS
══════════════════════════════════════════ */
.loc-card {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(24, 24, 24, 0.06);
}
.loc-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(181, 36, 36, 0.1);
}
.loc-badge {
    font-size: 0.7rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.map-placeholder {
    background: var(--dark);
    border: 1px solid rgba(24, 24, 24, 0.1);
    border-radius: 12px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* ══════════════════════════════════════════
   BLOG / STORIES
══════════════════════════════════════════ */
.blog-card {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(24, 24, 24, 0.06);
}
.blog-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(181, 36, 36, 0.1);
}
.blog-img {
    height: 190px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-body {
    padding: 22px;
}
.blog-tag {
    font-size: 0.7rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.blog-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    font-family: "Podkova", serif;
    color: var(--black);
}
.blog-excerpt {
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 14px;
}
.read-more {
    font-size: 0.78rem;
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.read-more:hover {
    color: var(--orange);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(181, 36, 36, 0.06) 0%,
        transparent 50%,
        rgba(181, 36, 36, 0.04) 100%
    );
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(181, 36, 36, 0.22) 0%,
        rgba(181, 36, 36, 0.08) 45%,
        transparent 70%
    );
    pointer-events: none;
}

.contact-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(181, 36, 36, 0.18) 0%,
        rgba(181, 36, 36, 0.06) 45%,
        transparent 70%
    );
    pointer-events: none;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(181, 36, 36, 0.08);
    border: 1px solid rgba(181, 36, 36, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SOCIAL LINKS
══════════════════════════════════════════ */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(24, 24, 24, 0.15);
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}
.social-link:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
    background: var(--red);
    padding: 80px 0;
    border-top: none;
    border-bottom: none;
}
.cta-banner .sec-tag {
    color: var(--yellow);
}
.cta-banner .sec-title {
    color: #fff;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.75) !important;
}
.cta-banner .btn-cf {
    background: linear-gradient(135deg, #fff1ec 0%, #ffe0d0 100%);
    color: var(--black);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.cta-banner .btn-cf:hover {
    background: linear-gradient(135deg, #fff 0%, #fff1ec 100%);
    color: var(--red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.cta-banner .btn-cf-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}
.cta-banner .btn-cf-outline:hover {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
    box-shadow: 0 5px 18px rgba(255, 255, 255, 0.12);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    position: relative;
    background: url("./../img/footer-bg.png") no-repeat center center;
    background-size: cover;
    border-top: 3px solid var(--red);
    padding: 60px 0 28px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(255, 255, 255, 0.3); */
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}
.footer-logo {
    height: 180px;
    margin-bottom: 14px;
}
.footer-tagline {
    font-size: 1.2rem;
    color: rgba(0, 0, 0);
    font-style: italic;
    margin-bottom: 14px;
    font-weight: bold;
}
.footer-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 18px;
    font-family: "Podkova", serif;
    font-weight: bold;
}
.footer-link {
    display: block;
    font-size: 1.2rem;
    color: rgba(0, 0, 0);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.3s;
    font-weight: bold;
}
.footer-link:hover {
    color: #181818;
}
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    padding-top: 22px;
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.4);
}
.footer .store-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.75);
}
.footer .store-btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.footer .social-link {
    border-color: rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.5);
}
.footer .social-link:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ══════════════════════════════════════════
   LIGHT SECTION — white bg marker (now the site default)
══════════════════════════════════════════ */
.sec-light {
    background: transparent;
    color: var(--black);
}

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.text-yellow {
    color: var(--yellow) !important;
}
.bg-dark-cf {
    background-color: var(--dark);
}
.border-yellow-faint {
    border: 1px solid rgba(255, 229, 0, 0.12);
}

/* ══════════════════════════════════════════
   MENU SECTION LABELS & TYPE INDICATORS
══════════════════════════════════════════ */
.menu-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0 4px;
    margin-top: 8px;
}
.menu-section-label-text {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    white-space: nowrap;
    font-family: "Podkova", serif;
}
.menu-section-label-line {
    flex: 1;
    height: 1px;
    background: rgba(24, 24, 24, 0.1);
}
.menu-section-label-badge {
    font-size: 0.6rem;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.menu-section-label-badge.non-veg {
    background: rgba(181, 36, 36, 0.1);
    color: var(--red);
}
.menu-section-label-badge.veg {
    background: rgba(34, 139, 34, 0.1);
    color: #228b22;
}
.menu-section-label-badge.both {
    background: rgba(24, 24, 24, 0.07);
    color: #555;
}

/* Veg / Non-veg dot indicator */
.menu-type {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    margin-right: 5px;
    vertical-align: middle;
    flex-shrink: 0;
}
.menu-type.veg {
    background: #228b22;
}
.menu-type.nv {
    background: var(--red);
}

/* ── Unified Menu Filter Bar ── */
.menu-filter-bar {
    position: sticky;
    top: 0;
    z-index: 90;
    background: transparent;
    padding: 16px 0 14px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* Row 1 — diet type pills */
.diet-filter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.diet-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1.5px solid rgba(24, 24, 24, 0.14);
    background: transparent;
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.diet-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    flex-shrink: 0;
}
.diet-dot.veg {
    background: #228b22;
}
.diet-dot.nv {
    background: #c42828;
}
.diet-btn.active {
    background: #ece9e1;
    border-color: #c5bfb0;
    color: #222;
}
.diet-btn.veg.active {
    background: rgba(34, 139, 34, 0.1);
    border-color: #228b22;
    color: #228b22;
}
.diet-btn.nv.active {
    background: rgba(196, 40, 40, 0.1);
    border-color: #c42828;
    color: #c42828;
}
.diet-btn.combo.active {
    background: rgba(196, 40, 40, 0.1);
    border-color: #c42828;
    color: #c42828;
}
.diet-btn:hover {
    opacity: 0.8;
}

/* Thin separator between diet row and category row */
.filter-sep {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin: 0 0 11px;
}

/* Row 2 — category tabs (wraps to next row when full) */
.menu-tabs-scroll {
    display: flex;
    justify-content: center;
}

.menu-tabs-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 2px 4px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 767px) {
    .sp-quote-strip {
        flex-direction: column;
    }
    .sp-quote-divider {
        width: auto;
        height: 1px;
        margin: 0 20px;
    }
    .sp-reels-row {
        gap: 12px;
    }
    .sp-reel {
        width: 140px;
    }
    .sp-reel-media {
        min-height: 120px;
        font-size: 3rem;
    }
    .sp-stats-row {
        gap: 8px;
    }
    .sp-stat-pill {
        padding: 10px 16px;
        min-width: 130px;
    }
}

/* ══════════════════════════════════════════
   EXPERIENCE PAGE - REVIEW SLIDER SECTION
══════════════════════════════════════════ */
.review-slider-section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.review-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.review-slider-track-outer {
    flex: 1;
    overflow: hidden;
}

.review-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

@media (max-width: 1023px) {
    .review-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 639px) {
    .review-slide {
        flex: 0 0 100%;
    }
}

.review-card {
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(181, 36, 36, 0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(181, 36, 36, 0.25);
    box-shadow: 0 16px 40px rgba(181, 36, 36, 0.1);
}

.review-stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.87rem;
    color: #444;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--red) 0%,
        var(--orange, #e8591e) 100%
    );
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.review-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.review-source {
    font-size: 0.73rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(181, 36, 36, 0.3);
    background: var(--white);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.review-slider-btn:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 6px 18px rgba(181, 36, 36, 0.25);
}

.review-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(181, 36, 36, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

.review-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px 36px;
    background: var(--white);
    border: 1px solid rgba(24, 24, 24, 0.07);
    border-radius: 16px;
    max-width: 340px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-rating-score {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--black);
    font-family: "Podkova", serif;
    line-height: 1;
}

.review-rating-stars {
    color: #f5a623;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.review-rating-label {
    font-size: 0.73rem;
    color: #888;
}

/* ══════════════════════════════════════════
   HERO PROMO BANNERS
══════════════════════════════════════════ */
.hero-promo-banner-row {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-promo-card {
    flex: 1;
    min-width: 130px;
    max-width: 170px;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(24, 24, 24, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.hero-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 12px 28px rgba(181, 36, 36, 0.2);
}

@media (max-width: 575px) {
    .hero-promo-banner-row {
        justify-content: center;
        gap: 12px;
    }
    .hero-promo-card {
        max-width: 140px;
    }
}

.banner-image img {
    margin-top: -28px;
    width: 100%;
    height: 318px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px 0 0 20px;
}

@media (max-width: 991px) {
    .page-banner-split {
        flex-direction: column;
        height: auto;
    }
    .pb-split-left {
        flex: none;
        width: 100%;
        height: auto;
        padding: 20px 24px 20px;
    }
    .pb-split-right {
        flex: none;
        width: 100%;
        height: 300px;
    }
    .page-banner {
        background: var(--red);
        padding: 100px 0 20px 0;
        border-bottom: none;
        position: relative;
        overflow: hidden;
    }
    .banner-image img {
        margin-top: -10px;
        width: 100%;
        height: 200px;
        object-fit: contain;
        object-position: center;
        border-radius: 0;
    }
}

/* ══════════════════════════════════════════
   INSTAGRAM FEED SECTION
   ══════════════════════════════════════════ */
.instagram-feed-sec {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(229, 169, 59, 0.1);
    border-bottom: 1px solid rgba(229, 169, 59, 0.1);
}

.instagram-feed-sec::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    /* background: radial-gradient(
        circle,
        rgba(181, 36, 36, 0.12) 0%,
        transparent 70%
    ); */
    pointer-events: none;
}

.instagram-feed-sec::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(229, 169, 59, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

@media (min-width: 992px) {
    .instagram-feed-sec .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.instagram-post-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    aspect-ratio: 1 / 1;
}

.instagram-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.instagram-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 1, 2, 0.2) 0%,
        rgba(13, 1, 2, 0.85) 80%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

.instagram-overlay-content {
    width: 100%;
}

.instagram-overlay-icon {
    font-size: 1.8rem;
    color: #e5a93b;
    margin-bottom: 12px;
    display: inline-block;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
}

.instagram-caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}

.instagram-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e5a93b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instagram-likes i {
    color: #b52424;
    margin-right: 4px;
}

.instagram-date {
    color: rgba(255, 255, 255, 0.5);
}

/* Hover effects */
.instagram-post-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 169, 59, 0.5);
    box-shadow:
        0 20px 40px rgba(181, 36, 36, 0.25),
        0 0 30px rgba(229, 169, 59, 0.15);
}

.instagram-post-card:hover .instagram-img-wrapper img {
    transform: scale(1.1) rotate(1deg);
}

.instagram-post-card:hover .instagram-overlay {
    opacity: 1;
    transform: translateY(0);
}

.instagram-post-card:hover .instagram-overlay-icon {
    transform: scale(1);
}

/* Skeleton loader styling */
.instagram-loading-card {
    aspect-ratio: 1 / 1;
}

.instagram-skeleton-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(90deg, #1b0709 25%, #2a0b0e 37%, #1b0709 63%);
    background-size: 400% 100%;
    animation: instagram-skeleton-shimmer 1.4s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

@keyframes instagram-skeleton-shimmer {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.app-video {
    width: auto;
    text-align: center;
}
.app-video video {
    width: 60%;
    border-radius: 20px;
}

/* .landing-page {
    background: url("./../img/hero.jpeg");
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
} */

.landing-page {
    height: 100vh;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: url("./../img/hero-3-bg.jpeg");
}

.landing-page video {
    margin-top: 8%;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
}

/* .landing-page h1 {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    margin: 0;
    font-size: 10rem;
    color: #fff;
    z-index: 2;
} */
.landing-page .hero-description p {
    position: absolute;
    top: 70%;
    left: 5%;
    transform: translate(5%, -70%);
    margin: 0;
    font-size: 9rem;
    color: #fff;
    z-index: 2;
}

.landing-page .hero-description img {
    position: absolute;
    bottom: 0%;
    left: 70%;
    transform: translate(70%, 10%);
    margin: 0;
}

/* ── TICKER ── */
.ticker {
    background-color: var(--red);
    color: #fff;
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    animation: ticker 26s linear infinite;
}
.ticker-item {
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 2.5rem;
}
.ticker-sep {
    color: var(--sand);
}
@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section2-red {
    background-color: var(--red);
}

.franchise-section2 .sec-title {
    font-size: 4rem;
}

.menu-item:hover .menu-name {
    color: var(--red);
}
.menu-item:hover .btn-add {
    background: linear-gradient(135deg, #c42828 0%, #a01f1f 100%);
    box-shadow: 0 6px 20px rgba(181, 36, 36, 0.45);
    transform: translateY(-1px);
}

.section-img img {
    width: 100%;
}

.experience-hero {
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-hero img {
    width: 100%;
    border-radius: 20px;
}

.founder-section .founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}
.founder-card:hover .founder-photo img {
    transform: scale(1.06);
}
