/* ═══════════════════════════════════════════════
   AROMA SPA — International Luxury Design System
   ═══════════════════════════════════════════════ */
:root {
    --gold: #C8A951;
    --gold-light: #E8D5A3;
    --dark: #0C0C0C;
    --dark-2: #161616;
    --dark-3: #1E1E1E;
    --cream: #F5F0E8;
    --cream-2: #EDE7DC;
    --white: #FFFFFF;
    --text: #A0A0A0;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Jost', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--sans);
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* ─── Preloader ─── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}

#preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-inner span {
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: 6px;
    color: var(--white);
}

.preloader-inner em {
    color: var(--gold);
    font-style: normal;
}

.loader-line {
    width: 120px;
    height: 1px;
    background: var(--dark-3);
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: var(--gold);
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% {
        left: -40%
    }

    100% {
        left: 100%
    }
}


/* ─── Navbar ─── */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.8rem 0;
    transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
    will-change: padding, background-color;
}

#navbar.scrolled {
    background: rgba(12, 12, 12, 0.97);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200, 169, 81, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 55px;
    width: auto;
    display: block;
}

.preloader-logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem;
    animation: preloaderFade 1.5s ease-in-out infinite alternate;
}

@keyframes preloaderFade {
    0% {
        opacity: 0.5;
        transform: scale(0.97);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--dark);
    padding: 0.38rem 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--gold);
    background: var(--gold);
    transition: all 0.35s var(--ease);
    display: inline-block;
}

.nav-links a:hover {
    background: var(--gold-light);
    color: var(--dark);
    border-color: var(--gold-light);
    box-shadow: 0 4px 14px rgba(200, 169, 81, 0.35);
    transform: translateY(-2px);
}

.nav-cta {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--dark);
    padding: 0.38rem 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--gold);
    background: var(--gold);
    transition: all 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--dark);
    border-color: var(--gold-light);
    box-shadow: 0 4px 14px rgba(200, 169, 81, 0.35);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 2rem 0;
}

.mobile-menu a {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ─── Hero ─── */
#hero {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.1) 0%, rgba(12, 12, 12, 0.3) 60%, var(--dark) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(200, 169, 81, 0.4);
    border-radius: 50%;
    animation: float-particle 12s infinite linear;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.hero-particles span:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.hero-particles span:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.hero-particles span:nth-child(4) {
    left: 55%;
    animation-delay: 1s;
    animation-duration: 12s;
}

.hero-particles span:nth-child(5) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.hero-particles span:nth-child(6) {
    left: 85%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.hero-particles span:nth-child(7) {
    left: 15%;
    animation-delay: 6s;
    animation-duration: 15s;
}

.hero-particles span:nth-child(8) {
    left: 50%;
    animation-delay: 7s;
    animation-duration: 13s;
}

.hero-particles span:nth-child(9) {
    left: 75%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.hero-particles span:nth-child(10) {
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 19s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-left: 8%;
    max-width: 800px;
}

.hero-branches-content {
    padding-left: 0;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 800px;
}

.hero-branches-grid .branch-card {
    opacity: 1;
    transform: translateZ(0);
}

.hero-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 300;
}

h1 {
    font-family: var(--serif);
    font-weight: 300;
    line-height: 1;
}

h1 .line {
    display: block;
    font-size: clamp(3.5rem, 9vw, 7rem);
    overflow: hidden;
}

h1 .accent {
    color: var(--gold);
    font-style: italic;
    font-size: clamp(4rem, 10vw, 8rem);
}

.hero-content p {
    margin: 2.5rem 0 3rem;
    max-width: 480px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-weight: 200;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--dark);
    padding: 1.1rem 2.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    overflow: hidden;
    position: relative;
}

.cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease);
}

.cta-primary:hover::before {
    transform: translateX(0);
}

.cta-primary span,
.cta-primary svg {
    position: relative;
    z-index: 1;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(200, 169, 81, 0.2);
}

.cta-secondary {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -50%
    }

    100% {
        top: 100%
    }
}

.hero-scroll span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    writing-mode: vertical-lr;
}

/* ─── Hero Branch Cards ─── */
.branch-card {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.branch-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(200, 169, 81, 0.3);
}

.branch-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.branch-card-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
    display: block;
}

.branch-card:hover .branch-card-img>img {
    transform: scale(1.07);
}

/* Gradient overlay — no blur */
.branch-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 1.6rem 1.6rem;
    background: linear-gradient(0deg,
            rgba(10, 8, 5, 0.88) 0%,
            rgba(18, 14, 8, 0.72) 50%,
            transparent 100%);
    border-top: 1px solid rgba(200, 169, 81, 0.12);
    transform: translateY(4px);
    transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}

.branch-card:hover .branch-card-overlay {
    transform: translateY(0);
    background: linear-gradient(0deg,
            rgba(10, 8, 5, 0.96) 0%,
            rgba(18, 14, 8, 0.82) 55%,
            transparent 100%);
}

.branch-card-num {
    font-family: var(--serif);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    display: block;
    margin-bottom: 0.4rem;
    opacity: 0.75;
}

.branch-card-overlay h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.branch-card-overlay p {
    display: block !important;
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase !important;
    letter-spacing: 3.5px !important;
    font-weight: 500 !important;
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
    padding-left: 0.2rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.branch-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-weight: 500;
    border-bottom: 1px solid rgba(200, 169, 81, 0.4);
    padding-bottom: 2px;
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s;
}

.branch-card:hover .branch-card-cta {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .hero-branches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .branch-card-img {
        aspect-ratio: 4 / 3;
    }

    .branch-card-overlay h3 {
        font-size: 1.6rem;
    }

    .branch-card-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero-branches-content {
        padding: 0 1.2rem;
    }

    .branch-card-img {
        aspect-ratio: 3 / 2;
    }
}

/* ─── Stats Ticker ─── */
.stats-ticker {
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding: 1.5rem 0;
}

.ticker-track {
    display: flex;
    gap: 5rem;
    animation: tickerScroll 25s linear infinite;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes tickerScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-33.33%, 0, 0);
    }
}

.ticker-item {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text);
    font-weight: 300;
}

.ticker-num {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 1.3rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

/* ─── Treatment Carousel ─── */
.treatment-carousel {
    padding: 4rem 0 2rem;
    overflow: hidden;
    position: relative;
    background: var(--dark);
}

.treatment-carousel::before,
.treatment-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.treatment-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.treatment-carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark) 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 3rem;
    animation: carouselScroll 35s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    width: max-content;
}

@keyframes carouselScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    cursor: default;
}

.carousel-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(200, 169, 81, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(200, 169, 81, 0.06);
    transition: all 0.4s var(--ease);
    position: relative;
}

.carousel-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(200, 169, 81, 0.08), transparent 60%);
    pointer-events: none;
}

.carousel-item:hover .carousel-circle {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(200, 169, 81, 0.25), 0 0 0 6px rgba(200, 169, 81, 0.1);
}

.carousel-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.carousel-item:hover .carousel-circle img {
    transform: scale(1.1);
}

.carousel-label {
    font-family: var(--sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}

.carousel-item:hover .carousel-label {
    color: var(--gold);
}

@media (max-width: 768px) {
    .treatment-carousel {
        padding: 3rem 0 1.5rem;
    }

    .carousel-track {
        gap: 2rem;
        animation-duration: 25s;
    }

    .carousel-circle {
        width: 100px;
        height: 100px;
    }

    .carousel-label {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }

    .treatment-carousel::before,
    .treatment-carousel::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .carousel-circle {
        width: 80px;
        height: 80px;
    }

    .carousel-track {
        gap: 1.5rem;
        animation-duration: 20s;
    }

    .carousel-label {
        font-size: 0.6rem;
    }
}

/* ─── Menu ─── */
#menu {
    padding: 10rem 0 4rem 0;
    position: relative;
    z-index: 10;
}

.menu-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 4rem;
    margin-top: 5rem;
}

.menu-group-title {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.menu-group-title h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 1px;
}

.mg-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.4s var(--ease), padding 0.4s var(--ease), background 0.4s var(--ease);
}

.menu-list li:hover {
    border-bottom-color: rgba(200, 169, 81, 0.3);
    padding-left: 10px;
    padding-right: 10px;
    background: rgba(255, 255, 255, 0.01);
}

.ml-info h4 {
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--white);
    transition: color 0.3s;
}

.menu-list li:hover .ml-info h4 {
    color: var(--gold);
}

.ml-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.5;
}

.ml-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.ml-dur {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
}

.ml-price {
    font-family: var(--sans);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* ─── Membership ─── */
#membership {
    padding: 6rem 0 10rem 0;
    position: relative;
    z-index: 10;
    background: var(--dark);
}

.membership-list {
    list-style: none;
    max-width: 1100px;
    margin: 4rem auto 0;
}

.membership-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}

.membership-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 30px;
    padding-right: 30px;
}

.mem-info-wrap {
    flex: 1;
}

.mem-info-wrap h3 {
    font-family: var(--sans);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mem-features {
    list-style: none;
}

.mem-features li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mem-features li::before {
    content: "✦";
    color: var(--gold);
    font-size: 0.8rem;
    opacity: 0.7;
}

.mem-price-wrap {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mem-price-tag {
    font-family: var(--sans);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    margin-bottom: 1rem;
}

.mem-badge-price {
    background: rgba(200, 169, 81, 0.06);
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(200, 169, 81, 0.2);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .membership-item {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3rem 0;
    }

    .mem-price-wrap {
        text-align: left;
        align-items: flex-start;
        width: 100%;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* ─── Membership WhatsApp Button ─── */
.mem-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.mem-wa-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ─── Membership Branch Modal ─── */
.mem-branch-panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    width: 90%;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.mem-branch-label {
    font-family: var(--sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.4rem !important;
    font-weight: 500;
}

.mem-branch-choice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.9rem 1.2rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 81, 0.25);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.mem-branch-choice:hover {
    background: rgba(200, 169, 81, 0.12);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

#mem-branch-cancel {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--sans);
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 0.4rem;
    transition: color 0.3s;
}

#mem-branch-cancel:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ─── About ─── */
#about {
    padding: 12rem 0 4rem 0;
}

.label-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    border: 1px solid rgba(200, 169, 81, 0.3);
    padding: 0.5rem 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

#about h2,
.section-intro h2 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2.5rem;
}

#about h2 em,
.section-intro h2 em,
.cta-banner h2 em {
    font-style: italic;
    color: var(--gold);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.img-stack {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
}

.img-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s var(--ease);
}

.img-stack:hover img {
    transform: scale(1.05);
}

.img-1 {
    width: 55%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.img-2 {
    width: 55%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(200, 169, 81, 0.15);
}

#about p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1rem;
}

.about-features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feat span {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    min-width: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.feat p {
    font-family: var(--sans) !important;
    font-size: 0.92rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ─── Treatments ─── */
#treatments {
    padding: 4rem 0 10rem 0;
    overflow: hidden;
}

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
}

/* Circle Thumbnails */
.ritual-circles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: nowrap;
    margin-bottom: 3rem;
}

.ritual-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    opacity: 1 !important;
}

.ritual-circle:hover {
    transform: translateY(-8px);
}

.rc-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.rc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s var(--ease);
    filter: brightness(1) saturate(1.2);
}

.ritual-circle:hover .rc-img {
    border-color: rgba(200, 169, 81, 0.5);
    box-shadow: 0 10px 40px rgba(200, 169, 81, 0.15);
}

.ritual-circle:hover .rc-img img {
    transform: scale(1.1);
}

.ritual-circle.active .rc-img {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.1), 0 15px 40px rgba(200, 169, 81, 0.25);
}

.ritual-circle.active .rc-img img {
    transform: scale(1.05);
}

.rc-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    text-align: center;
}

.ritual-circle:hover .rc-name,
.ritual-circle.active .rc-name {
    color: var(--gold);
}

/* Detail Panel */
.ritual-detail {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-2);
    border: 1px solid rgba(200, 169, 81, 0.12);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    display: none;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.ritual-detail.open {
    display: block;
}

.rd-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
}

.rd-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.rd-body {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 3rem;
    align-items: center;
}

.rd-number {
    font-family: var(--serif);
    font-size: 3rem;
    color: rgba(200, 169, 81, 0.15);
    font-weight: 300;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.rd-text h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.rd-text p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.rd-pricing {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.rd-price-tag {
    background: rgba(200, 169, 81, 0.1);
    border: 1px solid rgba(200, 169, 81, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
}

.rd-price-tag span {
    font-family: var(--sans);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    font-style: normal;
}

.rd-dur-tag span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
}

.rd-book {
    font-size: 0.7rem;
    padding: 0.9rem 1.8rem;
}

.rd-image {
    width: 240px;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.rd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* ─── Promo Gallery Section ─── */
.promo-gallery-section {
    padding: 5rem 0 3rem;
    background: var(--dark);
}

.promo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.promo-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid rgba(200, 169, 81, 0.1);
    cursor: pointer;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.promo-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(200, 169, 81, 0.15);
}

.promo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-gallery-del {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ff4d4d;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.promo-gallery-item:hover .promo-gallery-del {
    opacity: 1;
}

.promo-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(200, 169, 81, 0.4);
    border-radius: 50px;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.promo-add-btn:hover {
    background: rgba(200, 169, 81, 0.1);
    border-color: var(--gold);
}

@media (max-width: 600px) {
    .promo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}

/* ─── Franchise Form Section ─── */
.franchise-form-section {
    padding: 6rem 0 4rem;
    background: var(--dark);
}

.franchise-quick-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.franchise-quick-form input,
.franchise-quick-form select {
    width: 100%;
    padding: 1rem 1.3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s;
}

.franchise-quick-form input:focus,
.franchise-quick-form select:focus {
    border-color: var(--gold);
}

.franchise-quick-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.franchise-quick-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C8A951' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.franchise-quick-form select option {
    background: #1a1a1a;
    color: #fff;
}

/* ─── CTA Banner ─── */
.cta-banner {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(12, 12, 12, 0.85) 50%, var(--dark) 100%);
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    color: var(--text);
    max-width: 500px;
    margin: 0 auto 3rem;
    font-weight: 300;
    font-size: 1rem;
}

/* ─── Footer ─── */
#contact {
    padding: 8rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.fl-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.fl-col a,
.fl-col p {
    display: block;
    color: var(--text);
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    transition: color 0.3s;
}

.fl-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── Modal ─── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.modal-content.split-modal {
    background: var(--dark-2);
    width: 95%;
    max-width: min(1000px, 95vw);
    max-height: 90vh;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(200, 169, 81, 0.1);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    overflow-y: auto;
}

.modal-left {
    flex: 1;
    position: relative;
    display: none;
}

@media (min-width: 900px) {
    .modal-left {
        display: block;
    }
}

.modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.2) 60%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.modal-left-overlay h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.modal-left-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.modal-right {
    flex: 1;
    padding: 4rem;
    background: var(--dark-2);
    overflow-y: auto;
    max-height: 90vh;
}

#partnership-modal .modal-right {
    padding: 3rem;
}

#partnership-modal .form-grid {
    gap: 1.5rem 1.2rem;
    margin-bottom: 2rem;
}

#partnership-modal .form-float textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(200, 169, 81, 0.05);
}

#partnership-modal .form-float textarea:not(:placeholder-shown)~label,
#partnership-modal .form-float textarea:focus~label {
    top: -12px;
    font-size: 0.6rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
}

.close-modal:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 3rem;
}

.modal-header h2 {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    margin-bottom: 2.5rem;
}

.form-float {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-instruction {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 1;
}

.form-float input,
.form-float select {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--sans);
    font-size: 0.9rem;
    transition: all 0.4s var(--ease);
    border-radius: 50px;
    color: var(--white);
}


.form-float {
    position: relative;
    width: 100%;
}

.form-float select {
    cursor: pointer;
}

.form-float select option {
    background: var(--dark-2);
    color: var(--white);
}

.form-float input:focus,
.form-float select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(200, 169, 81, 0.05);
}

.form-float label {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-float input:focus~label,
.form-float input:not(:placeholder-shown)~label,
.form-float select:focus~label,
.form-float select:valid~label,
.form-float label.active-label {
    top: -12px;
    font-size: 0.6rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.full-w {
    width: 100%;
    justify-content: center;
}

/* ─── WhatsApp Float ─── */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
    background: #25D366;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.4s var(--ease);
}

.wa-float span {
    display: none;
}

.wa-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

#branches {
    padding: 0;
}

.branches-subtitle {
    color: var(--text);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.branch-card {
    cursor: pointer;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
    backface-visibility: hidden;
    transform: translateZ(0);
}

.branch-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(200, 169, 81, 0.15);
}

.branch-card-img {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 81, 0.15);
}

.branch-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}

.branch-card:hover .branch-card-img img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.branch-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(12, 12, 12, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    padding-bottom: 2.5rem;
    border-radius: 16px;
}

.branch-card-num {
    display: none;
}

.branch-card:hover .branch-card-num {
    color: rgba(200, 169, 81, 0.35);
    transform: translateY(-8px);
}

.branch-card-overlay h3 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    color: #0a0700;
    margin-bottom: 0.2rem;
    display: inline-block;
    background: linear-gradient(135deg, #C8A951 0%, #E8C96A 50%, #C8A951 100%);
    border: none;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(200, 169, 81, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
    line-height: 1;
    text-align: center;
}

.branch-card:hover .branch-card-overlay h3 {
    background: linear-gradient(135deg, #E8C96A 0%, #C8A951 50%, #F0D87A 100%);
    box-shadow: 0 10px 36px rgba(200, 169, 81, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.branch-card-overlay p {
    display: block !important;
    font-size: 0.6rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    font-weight: 500 !important;
    margin-top: 0.3rem !important;
    text-align: center !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.branch-card-cta {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid rgba(200, 169, 81, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.branch-card:hover .branch-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.branch-card-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ─── Branch Popup ─── */
#branch-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

#branch-popup.active {
    display: block;
}

.branch-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    opacity: 0;
    transition: opacity 0.25s ease;
}

#branch-popup.active .branch-popup-backdrop {
    opacity: 1;
}

.branch-popup-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: min(750px, 95vw);
    height: auto;
    max-height: min(550px, 90vh);
    background: var(--dark-2);
    border: 1px solid rgba(200, 169, 81, 0.2);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.9);
    border-radius: 30px;
    overflow: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    display: flex;
    z-index: 3001;
}

#branch-popup.active .branch-popup-panel {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
}

.branch-popup-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(12, 12, 12, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-popup-close:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.branch-popup-inner {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
}

/* Auto-stack the popup grid when it gets narrow */
@media (max-width: 600px) {
    .branch-popup-inner {
        grid-template-columns: 1fr;
    }

    .branch-popup-left {
        min-height: 180px;
        max-height: 180px;
    }

    .branch-popup-panel {
        max-height: 90vh;
        border-radius: 16px;
        flex-direction: column;
    }

    .branch-popup-right {
        padding: 1.5rem 1.2rem;
    }
}

.branch-popup-left {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.branch-popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.branch-popup-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.2) 0%, rgba(12, 12, 12, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.bp-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: rgba(200, 169, 81, 0.2);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.branch-popup-left-overlay h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.branch-popup-left-overlay p {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
}

.branch-popup-right {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

.bp-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bp-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bp-info-item svg {
    flex-shrink: 0;
}

.bp-info-item span {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
}

.bp-add-img-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 169, 81, 0.1);
    border: 1px solid rgba(200, 169, 81, 0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.bp-add-img-btn:active {
    background: rgba(200, 169, 81, 0.25);
}

.bp-services h3,
.bp-booking h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.bp-services ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.bp-services li {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 300;
    padding: 0.8rem 1rem;
    background: rgba(200, 169, 81, 0.05);
    border: 1px solid rgba(200, 169, 81, 0.1);
    border-radius: 6px;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s var(--ease);
}

.bp-services li::before {
    content: '✦';
    position: absolute;
    left: 0.8rem;
    color: var(--gold);
    font-size: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
}

.bp-services li:hover {
    background: rgba(200, 169, 81, 0.1);
    border-color: rgba(200, 169, 81, 0.25);
    color: var(--white);
}

.bp-booking {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 1.2rem;
    margin-bottom: 1.5rem;
}

.bp-treat-wrap {
    margin-bottom: 2rem;
}

.bp-submit-btn {
    background: #25D366;
    gap: 10px;
}

.bp-submit-btn::before {
    background: #128C7E;
}

.bp-submit-btn:hover {
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.25);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-images {
        height: 400px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 3rem;
    }

    .ritual-circles {
        gap: 2rem;
    }

    .rc-img {
        width: 100px;
        height: 100px;
    }

    .rd-body {
        grid-template-columns: 1fr 180px;
        gap: 2rem;
    }

    .rd-image {
        width: 180px;
        height: 220px;
    }

    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .branch-card-img {
        height: 350px;
    }

    .branch-popup-inner {
        grid-template-columns: 1fr;
    }

    .branch-popup-left {
        min-height: 200px;
        max-height: 200px;
    }

    .branch-popup-panel {
        width: 95%;
        max-width: 95%;
        height: auto;
        max-height: 90vh;
        border-radius: 16px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .branch-popup-inner {
        display: flex;
        flex-direction: column;
    }

    /* Menu grid responsive for tablets */
    .menu-list[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 .line {
        font-size: 3rem;
    }

    h1 .accent {
        font-size: 3.5rem;
    }

    .hero-content {
        padding-left: 5%;
    }

    /* Hero must NOT clip branch cards on mobile */
    #hero {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 90px;
        padding-bottom: 2rem;
        overflow: visible;
    }

    .hero-branches-content {
        padding: 0 1rem;
    }

    .hero-branches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
    }

    .hero-branches-grid .branch-card-img {
        height: 280px;
    }

    .hero-scroll {
        display: none;
    }

    .ritual-circles {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rc-img {
        width: 70px;
        height: 70px;
    }

    .rc-name {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .ritual-detail {
        padding: 1.5rem;
    }

    .rd-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rd-image {
        width: 100%;
        height: 200px;
        order: -1;
    }

    .rd-text h3 {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.2rem;
    }

    .modal-content.split-modal {
        width: 98%;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal-right {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }

    .modal-header h2 {
        font-size: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-images {
        height: 300px;
    }

    .img-1 {
        width: 60%;
        height: 75%;
    }

    .img-2 {
        width: 55%;
        height: 55%;
    }

    #about,
    #treatments {
        padding: 5rem 0;
    }

    #about h2,
    .section-intro h2 {
        font-size: 2.2rem;
    }

    .branches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .branch-card-img {
        height: 200px;
    }

    .branch-card-overlay {
        padding: 1.5rem;
    }

    .branch-card-overlay h3 {
        font-size: 1.5rem;
    }

    .branch-card-num {
        font-size: 2.5rem;
    }

    /* Branch popup — fullscreen on mobile */
    .branch-popup-panel {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none !important;
        overflow-y: auto;
    }

    #branch-popup.active .branch-popup-panel {
        transform: none !important;
    }

    .branch-popup-left {
        min-height: 180px;
        max-height: 180px;
    }

    .branch-popup-left-overlay {
        padding: 1.5rem;
    }

    .branch-popup-left-overlay h2 {
        font-size: 2rem;
    }

    .bp-num {
        font-size: 2.5rem;
    }

    .branch-popup-right {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
    }

    .bp-info {
        gap: 0.8rem;
        padding-bottom: 1rem;
    }

    .bp-info-item {
        gap: 0.6rem;
        flex-wrap: wrap;
    }

    .bp-info-item span {
        font-size: 0.85rem;
    }

    .bp-add-img-btn {
        margin-left: 0;
        margin-top: 0.3rem;
    }

    .bp-services ul {
        grid-template-columns: 1fr;
    }

    .bp-form-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .bp-booking h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .bp-gallery-stack {
        height: 120px;
    }

    #branches {
        padding: 5rem 0 2rem;
    }

    /* Menu grid — single column on mobile */
    .menu-list[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr !important;
    }

    .menu-list[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }

    .menu-group-title h3 {
        font-size: 2rem !important;
    }

    #menu {
        padding: 5rem 0 3rem 0;
    }

    /* Membership responsive */
    .mem-info-wrap h3 {
        font-size: 1.8rem;
    }

    .mem-price-tag {
        font-size: 2.4rem;
    }

    .mem-features li {
        font-size: 0.95rem;
    }

    #membership {
        padding: 4rem 0 6rem;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 6rem 0;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    #contact {
        padding: 5rem 0 2rem;
    }

    /* Stats ticker */
    .ticker-item {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .ticker-num {
        font-size: 1.1rem;
    }
}

/* ─── Extra small screens (below 480px) ─── */
@media (max-width: 480px) {
    h1 .line {
        font-size: 2.4rem;
    }

    h1 .accent {
        font-size: 2.8rem;
    }

    .hero-content {
        padding-left: 4%;
        padding-right: 4%;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin: 1.5rem 0 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cta-primary {
        padding: 0.9rem 2rem;
        font-size: 0.72rem;
    }

    .rc-img {
        width: 58px;
        height: 58px;
    }

    .rc-name {
        font-size: 0.55rem;
    }

    .ritual-circles {
        gap: 0.6rem;
    }

    .branch-card-img {
        height: 160px;
    }

    .hero-branches-grid .branch-card-img {
        height: 240px;
    }

    .hero-branches-grid {
        gap: 0.6rem;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .form-instruction {
        font-size: 0.9rem;
    }

    .about-images {
        height: 250px;
    }

    .admin-pin-panel {
        padding: 2rem 1.2rem;
        border-radius: 18px;
    }

    .pin-digit {
        width: 44px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .admin-pin-content h2 {
        font-size: 1.5rem;
    }

    .admin-pin-icon {
        width: 52px;
        height: 52px;
    }

    .offers-admin-panel {
        width: 96%;
        padding: 1.2rem;
        border-radius: 14px;
    }

    .offers-admin-header h2 {
        font-size: 1.8rem;
    }

    .offer-input {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .gallery-lb-prev,
    .gallery-lb-next {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .gallery-lb-prev {
        left: 6px;
    }

    .gallery-lb-next {
        right: 6px;
    }

    .gallery-lb-close {
        top: 12px;
        right: 12px;
        font-size: 2rem;
    }

    .gallery-lb-content img {
        max-width: 96vw;
        max-height: 75vh;
    }

    .gallery-lb-counter {
        bottom: 16px;
        font-size: 0.8rem;
    }

    .gallery-lb-delete {
        width: 32px;
        height: 32px;
    }
}

/* ─── Offers Banner ─── */
.offers-banner {
    position: fixed;
    top: 80px;
    right: 24px;
    left: auto;
    z-index: 998;
    background: linear-gradient(135deg, rgba(200, 169, 81, 0.15) 0%, rgba(12, 12, 12, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    max-width: 380px;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 169, 81, 0.1);
    animation: offerSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.4s, transform 0.4s;
}

.offers-banner.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.offers-banner-inner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex: 1;
    overflow: hidden;
}

.offers-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    animation: offerPulse 2s ease-in-out infinite;
}

.offers-text {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.4;
    animation: offerFadeText 0.5s ease forwards;
}

.offers-banner-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 0.2rem;
    transition: color 0.3s;
    flex-shrink: 0;
}

.offers-banner-close:hover {
    color: var(--gold);
}

@keyframes offerSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes offerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes offerFadeText {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Offers Banner Image & Timer ─── */
.offers-banner-inner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex: 1;
    overflow: hidden;
}

.offers-banner-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.offers-banner-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(200, 169, 81, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

.offers-banner-img:hover {
    transform: scale(1.1);
}

/* Offer Image Lightbox */
.offer-img-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.offer-img-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.offer-img-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.offer-img-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-timer {
    font-family: var(--sans);
    font-size: 0.65rem;
    color: var(--gold);
    background: #000;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ─── Offer Image Upload Label ─── */
.offer-img-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(200, 169, 81, 0.35);
    border-radius: 12px;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}

.offer-img-label:hover {
    background: rgba(200, 169, 81, 0.1);
    border-color: var(--gold);
}

.offer-img-label.has-image {
    border-color: #25D366;
    color: #25D366;
}

/* ─── Offer List Thumbnails ─── */
.offer-list-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(200, 169, 81, 0.2);
}

.offer-list-timer-badge {
    font-size: 0.6rem;
    color: var(--gold);
    background: rgba(200, 169, 81, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
    margin-left: 0.4rem;
}

/* ─── Offers Navbar Button ─── */
.nav-offers-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #E8D5A3 100%);
    color: var(--dark) !important;
    border: none !important;
    font-weight: 600 !important;
    border-radius: 50px;
    padding: 0.6rem 1.4rem !important;
    font-size: 0.72rem !important;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

.nav-offers-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.4);
    background: linear-gradient(135deg, #E8D5A3 0%, var(--gold) 100%);
}

/* ─── Offers Admin Modal ─── */
.offers-admin-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 550px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.offers-admin-overlay {
    z-index: 10001;
}

.offers-admin-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offers-admin-header h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

.offers-admin-header em {
    color: var(--gold);
    font-style: italic;
}

.offers-admin-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

.offers-admin-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    z-index: 10;
}

.offers-add-row {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.offer-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.offer-input:focus {
    border-color: var(--gold);
}

.offer-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

select.offer-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C8A951' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.offer-input option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
}

.offer-add-btn {
    padding: 0.9rem 1.5rem !important;
    border-radius: 12px !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
}

.offers-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.offers-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s;
}

.offers-list li:hover {
    border-color: rgba(200, 169, 81, 0.2);
    background: rgba(200, 169, 81, 0.04);
}

.offers-list .offer-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 300;
}

.offers-list .offer-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.offers-list .offer-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.offers-list .offer-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.offers-list .offer-btn.delete-btn:hover {
    border-color: #ff4d4d;
    color: #ff4d4d;
}

.offers-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    padding: 2rem 0;
    font-weight: 300;
}

.offers-empty.hide {
    display: none;
}

@media (max-width: 768px) {
    .offers-banner {
        top: 70px;
        right: 12px;
        left: 12px;
        max-width: none;
        min-width: 0;
    }

    .offers-admin-panel {
        width: 95%;
        padding: 1.5rem;
        border-radius: 16px;
    }

    .nav-offers-btn {
        display: none !important;
    }

    .offers-add-row {
        flex-direction: column;
        gap: 0.6rem;
    }

    .offer-add-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ─── Branch Gallery ─── */
/* Upload button */
.bp-add-img-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 1px solid rgba(200, 169, 81, 0.4);
    color: var(--gold);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.78rem;
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
    margin-left: 0.6rem;
    flex-shrink: 0;
}

.bp-add-img-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.bp-add-img-btn svg {
    width: 14px;
    height: 14px;
}

.bp-gallery-preview {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
}

.bp-gallery-preview.has-images {
    display: block;
}

/* Stacked gallery */
.bp-gallery-stack {
    position: relative;
    width: 100%;
    height: 140px;
    cursor: pointer;
    perspective: 600px;
}

.bp-gallery-stack-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(200, 169, 81, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bp-gallery-stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stack layering */
.bp-gallery-stack-item:nth-child(1) {
    z-index: 5;
    transform: rotate(0deg);
}

.bp-gallery-stack-item:nth-child(2) {
    z-index: 4;
    transform: rotate(2deg) translate(6px, -4px) scale(0.97);
    opacity: 0.7;
}

.bp-gallery-stack-item:nth-child(3) {
    z-index: 3;
    transform: rotate(-2deg) translate(-6px, -8px) scale(0.94);
    opacity: 0.5;
}

.bp-gallery-stack-item:nth-child(n+4) {
    display: none;
}

.bp-gallery-stack:hover .bp-gallery-stack-item:nth-child(1) {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(200, 169, 81, 0.25);
}

.bp-gallery-stack-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: 8px;
    padding: 0.35rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.bp-gallery-stack-delete {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    background: rgba(255, 60, 60, 0.85);
    border: none;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.bp-gallery-stack:hover .bp-gallery-stack-delete {
    opacity: 1;
}

/* ─── Gallery Lightbox ─── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.gallery-lb-content {
    position: relative;
    z-index: 2;
    max-width: 85vw;
    max-height: 80vh;
}

.gallery-lb-content img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 3;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.gallery-lb-close:hover {
    color: var(--gold);
}

.gallery-lb-prev,
.gallery-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gallery-lb-prev {
    left: 20px;
}

.gallery-lb-next {
    right: 20px;
}

.gallery-lb-prev:hover,
.gallery-lb-next:hover {
    background: rgba(200, 169, 81, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-lb-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-lb-delete {
    background: rgba(255, 60, 60, 0.15);
    border: 1px solid rgba(255, 60, 60, 0.4);
    color: #ff6b6b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gallery-lb-delete:hover {
    background: rgba(255, 60, 60, 0.4);
    color: white;
    border-color: #ff4d4d;
}

@media (max-width: 768px) {
    .gallery-lb-content img {
        max-width: 95vw;
    }

    .gallery-lb-prev {
        left: 8px;
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .gallery-lb-next {
        right: 8px;
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .gallery-lb-counter {
        bottom: 16px;
        gap: 0.6rem;
    }
}

/* ─── Admin PIN Modal ─── */
.admin-pin-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
    border: 1px solid rgba(200, 169, 81, 0.25);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(200, 169, 81, 0.08);
    text-align: center;
}

.admin-pin-overlay {
    z-index: 10001;
}

.admin-pin-content h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.admin-pin-icon {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(200, 169, 81, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.admin-pin-sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.admin-pin-inputs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.pin-digit {
    width: 52px;
    height: 58px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    outline: none;
    transition: all 0.3s var(--ease);
    caret-color: var(--gold);
}

.pin-digit:focus {
    border-color: var(--gold);
    background: rgba(200, 169, 81, 0.06);
    box-shadow: 0 0 20px rgba(200, 169, 81, 0.15);
}

.admin-pin-error {
    font-size: 0.85rem;
    min-height: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.admin-pin-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    z-index: 10;
}

@keyframes pinShake {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    15% {
        transform: translate(calc(-50% + 12px), -50%);
    }

    30% {
        transform: translate(calc(-50% - 10px), -50%);
    }

    45% {
        transform: translate(calc(-50% + 8px), -50%);
    }

    60% {
        transform: translate(calc(-50% - 6px), -50%);
    }

    75% {
        transform: translate(calc(-50% + 3px), -50%);
    }
}

/* ─── Image Download Protection ─── */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
    -webkit-touch-callout: none;
}

@media (max-width: 768px) {
    .admin-pin-panel {
        width: 92%;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .pin-digit {
        width: 48px;
        height: 54px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .admin-pin-inputs {
        gap: 0.6rem;
    }
}