/* ============================================
   MOROCCAN SPA — Premium Luxury Spa Website
   Theme: Warm, Calm, Moroccan-Inspired
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary Colors — Soft Sandstone */
    --primary: #CBB9A4;
    --primary-light: #D8CBBA;
    --primary-dark: #B5A08A;
    --primary-rgb: 203, 185, 164;

    /* Secondary Colors — Warm Taupe */
    --secondary: #8C7B6B;
    --secondary-light: #A09081;
    --secondary-dark: #6E5F52;
    --secondary-rgb: 140, 123, 107;

    /* Background — Feather White */
    --bg: #FAF9F6;
    --bg-light: #FDFCFA;
    --bg-lighter: #ffffff;
    --bg-dark: #F4F1EA;
    --bg-rgb: 250, 249, 246;

    /* Accent — Creamed Oat */
    --accent: #E6DAC8;
    --accent-light: #EDE4D6;
    --accent-dark: #CBB9A4;
    --accent-rgb: 230, 218, 200;

    /* Highlight — Porcelain Mist */
    --highlight: #F4F1EA;
    --highlight-light: #FAF9F6;
    --highlight-dark: #E6DAC8;
    --highlight-rgb: 244, 241, 234;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #FAF9F6;
    --cream: #F4F1EA;
    --gray-100: #F4F1EA;
    --gray-200: #E6DAC8;
    --gray-300: #D5C8BC;
    --gray-400: #B0A298;
    --gray-500: #887A70;
    --gray-600: #635750;
    --gray-700: #44382F;
    --gray-800: #2E2420;
    --gray-900: #1C1512;
    --black: #110E0C;

    /* Text */
    --text-dark: #2E2420;
    --text-body: #44382F;
    --text-muted: #887A70;
    --text-light: #FAF9F6;

    /* Fonts */
    --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Montserrat', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 4.5rem 0;
    --container-width: 1200px;
    --container-padding: 0 1.5rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.04);
    --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.06);
    --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.08);
    --shadow-xl: 0 16px 60px rgba(44, 36, 32, 0.12);
    --shadow-glow: 0 0 30px rgba(203, 185, 164, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.4s var(--ease);
    --transition-fast: all 0.25s var(--ease);
    --transition-slow: all 0.6s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

html {
    color-scheme: light only;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 400;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ---------- Section ---------- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-cream {
    background-color: var(--bg-lighter);
}

/* Collapse padding between consecutive same-background sections */
.section-cream + .section-cream {
    padding-top: 0;
}

.section-dark {
    background-color: var(--secondary);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark span {
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--text-light);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--text-dark);
}

.section-tag::before {
    left: 0;
}

.section-tag::after {
    right: 0;
}

.section-tag.light {
    color: var(--accent);
}

.section-tag.light::before,
.section-tag.light::after {
    background: var(--accent);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(250, 249, 246, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    transition: height 0.4s cubic-bezier(.4,0,.2,1), background 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    height: 58px;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 44px;      /* fixed container — never changes */
    flex-shrink: 0;
}

.nav-logo img {
    height: 44px;
    width: auto;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), filter 0.4s cubic-bezier(.4,0,.2,1);
    transform-origin: left center;
    filter: brightness(0) invert(13%) sepia(80%) saturate(600%) hue-rotate(345deg);
}

.navbar.scrolled .nav-logo img {
    transform: scale(0.818);   /* 36/44 ≈ 0.818 — visually same as 36px but no reflow */
    filter: brightness(0) invert(13%) sepia(80%) saturate(600%) hue-rotate(345deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.9rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-dark);
}

.navbar.scrolled .nav-link::after {
    background: var(--text-dark);
}

.navbar.scrolled .nav-btn.btn-primary {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--white);
}

.navbar.scrolled .nav-btn.btn-primary:hover {
    background: var(--text-body);
    border-color: var(--text-body);
}

/* Solid navbar for sub-pages (no transparent hero) */
.navbar-solid {
    background: rgba(250, 249, 246, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.navbar-solid .nav-logo img {
    transform: scale(0.818);
    filter: brightness(0) invert(13%) sepia(80%) saturate(600%) hue-rotate(345deg);
}

.navbar-solid .nav-link {
    color: var(--text-dark);
}

.navbar-solid .nav-link:hover,
.navbar-solid .nav-link.active {
    color: var(--primary-dark);
}

.navbar-solid .nav-link::after {
    background: var(--text-dark);
}

.navbar-solid .nav-btn.btn-primary {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--white);
}

.navbar-solid .nav-btn.btn-primary:hover {
    background: var(--text-body);
    border-color: var(--text-body);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--primary-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    padding: 0.6rem 1.6rem;
    font-size: 0.78rem;
}

.nav-btn.btn-primary {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--white);
}

.nav-btn.btn-primary:hover {
    background: var(--text-body);
    border-color: var(--text-body);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--off-white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    height: 36px;
}

.mobile-close {
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-close:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    flex: 1;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.5rem;
}

.mobile-book-btn {
    margin: 0 1.5rem;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.mobile-menu-footer a {
    color: var(--primary);
    font-weight: 400;
    font-size: 1.1rem;
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-body);
    transition: var(--transition-fast);
}

.mobile-socials a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/spa-wellness-experience-lucknow.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    transition: none;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(0, 0, 0, 0.55) 100%
        );
}

.hero-vignette {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-badge {
    display: none;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 0.6rem;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: none;
}

.hero-title-line.accent {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-top: 0;
    letter-spacing: 0.02em;
    text-transform: none;
}

.hero-divider {
    display: none;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin: 0 0 2rem;
    line-height: 1.7;
    white-space: normal;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.hero-buttons .btn-primary {
    background: var(--white);
    border: 1.5px solid var(--white);
    color: var(--text-dark);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--text-dark);
}

.hero-scroll {
    display: none;
}

.hero-decorative {
    display: none;
}

/* ---------- Features / Why Us ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 1.2rem 0.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(203, 185, 164, 0.1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(203, 185, 164, 0.08), rgba(230, 218, 200, 0.08));
    color: var(--primary);
    transition: var(--transition);
}

.feature-icon svg {
    width: 38px;
    height: 38px;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.35;
}

/* ---------- Certifications Section ---------- */
/* --- Certifications marquee --- */
.cert-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.cert-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: cert-scroll 30s linear infinite;
}

.cert-marquee:hover .cert-track {
    animation-play-state: paused;
}

@keyframes cert-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.certification-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    flex-shrink: 0;
    width: 200px;
}

.certification-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.cert-img {
    width: 100%;
    height: 120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.cert-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.certification-card:hover .cert-img img {
    transform: scale(1.05);
}

.certification-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.certification-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 100%;
    margin: 0;
    text-align: left;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
}

.about-images {
    position: relative;
    order: 2;
}

.about-img-main {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 100%;
}

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

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-accent {
    display: none;
}

.about-experience {
    display: none;
}

.about-content {
    order: 1;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .section-tag {
    padding: 0 2rem;
    color: var(--primary);
}

.about-content .section-tag::before {
    display: none;
}

.about-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-content .btn {
    margin: 0;
    align-self: flex-start;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.75;
}

.about-stats {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    margin: 1.8rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(203, 185, 164, 0.15);
    border-bottom: 1px solid rgba(203, 185, 164, 0.15);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-top: 0.4rem;
}

/* ---------- Services Section ---------- */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius-full);
    color: var(--text-body);
    background: var(--white);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), grid-template-rows 0s 0.45s;
    overflow: hidden;
    pointer-events: none;
}

.tab-content > * {
    overflow: hidden;
}

.tab-content.active {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), grid-template-rows 0s 0s;
    pointer-events: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-card:hover .service-img img {
    transform: scale(1.04);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(203, 185, 164, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-info {
    padding: 0.8rem 0.7rem 1rem;
}

.service-info h3 {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.service-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------- Treatments Banner ---------- */
.treatments-banner {
    overflow: hidden;
    background: var(--cream);
}

.treatments-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.treatments-content h2 {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.treatments-content p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.treatments-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.treatment-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.25rem 1.3rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.treatment-item:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.treatment-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    opacity: 0.35;
    margin-bottom: 0.15rem;
}

.treatment-item:hover .treatment-number {
    opacity: 1;
}

.treatment-info h3 {
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.treatment-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ---------- Gallery Section ---------- */
.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

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

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

.gallery-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(203, 185, 164, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-hover span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-hover span {
    transform: translateY(0);
}

/* ---------- Gift Card Section ---------- */
.giftcard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}

/* Gift Card Preview */
.giftcard-preview {
    display: flex;
    flex-direction: column;
}

.giftcard-visual {
    perspective: 800px;
    margin-bottom: 2.5rem;
}

.giftcard-front {
    position: relative;
    background: linear-gradient(145deg, var(--gc-color-1, var(--primary)), var(--gc-color-2, var(--primary-dark)));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--white);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px var(--gc-shadow, rgba(203, 185, 164, 0.35));
    transition: box-shadow 0.6s var(--ease), background 0.5s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
}

.giftcard-front:hover {
    box-shadow:
        -15px 25px 50px var(--gc-shadow, rgba(203, 185, 164, 0.35)),
        0 0 80px rgba(230, 218, 200, 0.08);
}

/* Mouse-follow glow overlay */
.gc-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 1;
}

/* Gift Card Floating Emoji */
.gc-floating-emoji {
    position: absolute;
    bottom: -0.5rem;
    right: -0.3rem;
    font-size: 9rem;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), font-size 0.4s var(--ease);
    line-height: 1;
}

/* Occasion Color Themes */
.giftcard-front[data-theme="birthday"] {
    --gc-color-1: #a13a1e;
    --gc-color-2: #862f17;
    --gc-shadow: rgba(203, 185, 164, 0.3);
}
.giftcard-front[data-theme="anniversary"] {
    --gc-color-1: #6e3d24;
    --gc-color-2: #3d1c0f;
    --gc-shadow: rgba(110, 61, 36, 0.3);
}
.giftcard-front[data-theme="wedding"] {
    --gc-color-1: #b79858;
    --gc-color-2: #8f7540;
    --gc-shadow: rgba(183, 152, 88, 0.3);
}
.giftcard-front[data-theme="valentine"] {
    --gc-color-1: #8b4a4a;
    --gc-color-2: #5e2e2e;
    --gc-shadow: rgba(139, 74, 74, 0.3);
}
.giftcard-front[data-theme="corporate"] {
    --gc-color-1: #542916;
    --gc-color-2: #3d1c0f;
    --gc-shadow: rgba(84, 41, 22, 0.3);
}
.giftcard-front[data-theme="festival"] {
    --gc-color-1: #f1c166;
    --gc-color-2: #d4a44c;
    --gc-shadow: rgba(230, 218, 200, 0.3);
}
.giftcard-front[data-theme="thankyou"] {
    --gc-color-1: #6a9db5;
    --gc-color-2: #4a7e95;
    --gc-shadow: rgba(136, 184, 206, 0.25);
}
.giftcard-front[data-theme="selfcare"] {
    --gc-color-1: #88b8ce;
    --gc-color-2: #6a9db5;
    --gc-shadow: rgba(136, 184, 206, 0.25);
}

.gc-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(230, 218, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.gc-pattern-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.gc-pattern-overlay::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(230, 218, 200, 0.12);
    border-radius: 50%;
}

.gc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.gc-logo {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.gc-type {
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.15);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.gc-body {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1.5rem 0;
}

.gc-amount-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.gc-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: var(--transition-fast);
}

.gc-footer {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1rem;
}

.gc-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.gc-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.gc-value {
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

/* Amount Selector (below card) */
.gc-amount-selector {
    margin-bottom: 1.5rem;
}

.gc-amount-selector h4 {
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Occasions Grid */
.gc-occasions h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.gc-occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.gc-occasion-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.8rem 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gc-occasion-btn:hover {
    background: var(--off-white);
    border-color: var(--primary);
    color: var(--text-dark);
}

.gc-occasion-btn.active {
    background: rgba(203, 185, 164, 0.15);
    border-color: var(--primary);
    color: var(--text-dark);
}

.gc-occasion-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.gc-terms {
    margin-top: 1.5rem;
}

.gc-terms h4 {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.gc-terms ul {
    list-style: none;
    padding: 0;
}

.gc-terms li {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.gc-terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Gift Card Form */
.gc-mobile-toggle {
    display: none;
}

.giftcard-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
}

.giftcard-form {
    width: 100%;
}

.giftcard-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.gc-form-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.gc-form-step:last-of-type {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.gc-step-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 300;
    flex-shrink: 0;
}

.gc-amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.gc-amt-btn {
    padding: 0.75rem 0.5rem;
    background: var(--gray-100);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.gc-amt-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(203, 185, 164, 0.04);
}

.gc-amt-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gc-custom-amount {
    margin-top: 1rem;
}

.gc-custom-amount label {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-custom-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.gc-currency-symbol {
    position: absolute;
    left: 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    pointer-events: none;
}

.gc-custom-input-wrap input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.2rem;
    background: var(--gray-100);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.gc-custom-input-wrap input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(203, 185, 164, 0.08);
}

.gc-custom-input-wrap input::placeholder {
    color: var(--gray-400);
}

.gc-optional {
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--gray-400);
    text-transform: none;
    letter-spacing: 0;
}

.gc-submit-btn {
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.gc-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

/* ---------- Membership Section ---------- */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}

.membership-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.membership-card.featured {
    box-shadow: 0 8px 35px rgba(46, 36, 32, 0.25), 0 0 20px rgba(203, 185, 164, 0.15);
    position: relative;
}

.membership-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(203, 185, 164, 0.4), transparent 40%, transparent 60%, rgba(203, 185, 164, 0.4));
    z-index: -1;
    animation: membershipGlow 3s ease-in-out infinite;
}

@keyframes membershipGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.membership-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(46, 36, 32, 0.3), 0 0 30px rgba(203, 185, 164, 0.25);
}

/* Card Header - Colored top section */
.membership-card-header {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    padding: 2rem 1.8rem 1.6rem;
    text-align: center;
    position: relative;
}

.membership-card.featured .membership-card-header {
    background: linear-gradient(145deg, #2E2420, #1a1410);
}

.membership-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #2E2420 !important;
    background: #fff !important;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.8rem;
}

.membership-card.featured .membership-badge {
    background: #fff !important;
    color: #2E2420 !important;
}

.membership-card-header h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.membership-tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}

.membership-card.featured .membership-tagline {
    color: rgba(255,255,255,0.7);
}

/* Card Body - White section */
.membership-card-body {
    padding: 2rem 1.8rem 2.2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.membership-price {
    margin-bottom: 0.2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
}

.membership-price .currency {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.membership-price .amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.membership-validity {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.membership-features {
    text-align: left;
    margin-bottom: 2rem;
    flex: 1;
}

.membership-features li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 0.55rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.membership-features li:last-child {
    border-bottom: none;
}

.membership-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.85rem;
}

.membership-card .btn-outline {
    border-color: var(--gray-300);
    color: var(--text-body);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
}

.membership-card .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.membership-card .btn-primary {
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

.membership-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ---------- Locations Section ---------- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.location-card:hover::after {
    transform: scaleX(1);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(203, 185, 164, 0.1);
}

.location-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(203, 185, 164, 0.08), rgba(230, 218, 200, 0.08));
    color: var(--primary);
    transition: var(--transition);
}

.location-card:hover .location-icon {
    background: var(--primary);
    color: var(--white);
}

.location-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.location-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition-fast);
}

.location-phone:hover {
    color: var(--primary-dark);
}

/* ---------- Booking Section ---------- */
.section-booking {
    overflow: hidden;
    background: var(--gray-100);
}

.booking-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.booking-info .section-tag {
    padding-left: 0;
}

.booking-info .section-tag::before {
    display: none;
}

.booking-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.booking-info > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-body);
    font-size: 0.85rem;
}

.perk svg {
    color: var(--text-dark);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.booking-contact p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.booking-phone {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark) !important;
    transition: var(--transition-fast);
}

.booking-phone:hover {
    color: var(--primary-dark) !important;
}

/* Booking Form — Fresha-inspired clean card */
.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
}

.booking-form h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--text-dark);
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.72rem 0.85rem;
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--text-dark);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
    font-size: 0.82rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238c7e6e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.booking-form .btn-lg {
    margin-top: 0;
}

/* Booking Summary — clean bordered box */
.booking-summary {
    display: none;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0,0,0,0.06);
}

.booking-summary.visible {
    display: block;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-body);
    padding: 0.25rem 0;
}

.summary-row.summary-total {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 0.4rem;
    padding-top: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pay-icon {
    vertical-align: -3px;
    margin-right: 6px;
}

.booking-btn-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    margin-top: 0.75rem;
}

.booking-btn-row .btn-primary {
    flex: 2;
    background: var(--text-dark);
    border-color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.booking-btn-row .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.booking-btn-row .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-btn-row .btn-counter {
    flex: 1;
    font-size: 0.72rem;
    padding: 0 0.5rem;
    border: 1.5px solid var(--text-dark);
    background: transparent;
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.booking-btn-row .btn-counter:hover {
    background: var(--text-dark);
    color: var(--white);
}

.booking-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    text-align: center;
}

.booking-secure-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* ---------- Contact Section ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    text-align: center;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(203, 185, 164, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(203, 185, 164, 0.08), rgba(230, 218, 200, 0.08));
    color: var(--primary);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.contact-card a {
    display: block;
    color: var(--primary);
    font-weight: 300;
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.visit-locations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit-locations li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
    font-weight: 300;
}

.visit-locations li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(0.85) sepia(0.3) saturate(0.5) hue-rotate(350deg);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-500);
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-500);
    padding: 0.4rem 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.footer-contact-item a,
.footer-contact-item span {
    color: var(--gray-500);
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.footer-credit a {
    color: var(--primary);
    font-weight: 300;
}

.footer-credit a:hover {
    color: var(--accent);
}

/* ---------- Spin Wheel Float & Modals ---------- */

/* --- Right-edge tab trigger --- */
.spin-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.7rem 0.45rem;
    background: #fff;
    color: #2E2420;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    cursor: pointer;
    box-shadow: -2px 2px 12px rgba(0,0,0,0.15);
    transition: right 0.3s var(--ease), background 0.3s var(--ease);
    writing-mode: vertical-rl;
    animation: offerPop 0.5s ease 4;
    animation-delay: 1.5s;
}

@keyframes offerPop {
    0%   { transform: translateY(-50%) scale(1); }
    40%  { transform: translateY(-50%) scale(1.2); box-shadow: -2px 2px 20px rgba(0,0,0,0.25); }
    100% { transform: translateY(-50%) scale(1); }
}

.spin-tab.sw-hide { display: none; }

.spin-tab:hover {
    background: #f5f5f5;
    right: 0;
}

.spin-tab-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* --- Slide-in panel (replaces centered modal) --- */
.sw-panel {
    position: fixed;
    inset: 0;
    z-index: 10000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s 0.45s;
}

.sw-panel.open {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s 0s;
}

.sw-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 8, 4, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.sw-panel.open .sw-panel-backdrop {
    opacity: 1;
}

.sw-panel-body {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    max-width: 92vw;
    background: var(--bg);
    box-shadow: -8px 0 40px rgba(0,0,0,0.2);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.sw-panel.open .sw-panel-body {
    transform: translateX(0);
}

/* --- Offer Tabs --- */
.offer-tabs {
    display: flex;
    gap: 0;
    width: 100%;
    border-bottom: 2px solid #ece8e2;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.offer-tab {
    flex: 1;
    padding: 0.7rem 0.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s;
}

.offer-tab:hover {
    color: var(--text-dark);
}

.offer-tab.active {
    color: var(--text-dark);
    border-bottom-color: var(--primary);
}

.offer-tab-content {
    display: none;
    width: 100%;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-tab-content.active {
    display: flex;
}

/* --- Offers Gallery --- */
.offers-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
}

.offers-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #aaa;
}

.offers-empty p:first-child {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 0.4rem;
}

.offers-empty-sub {
    font-size: 0.85rem;
}

.offer-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.offer-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.offer-card-info {
    padding: 0.8rem 1rem;
}

.offer-card-info h4 {
    margin: 0 0 0.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.offer-card-info p {
    margin: 0;
    font-size: 0.78rem;
    color: #999;
}

.offer-card-highlight {
    border: 1px solid var(--primary);
    background: linear-gradient(135deg, #fefaf4, #fff);
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.offer-card-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.offer-card-highlight h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

/* Happy Hour Countdown */
.happy-hour-countdown {
    display: inline-block;
    background: linear-gradient(135deg, #d4380d, #cf1322);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    font-variant-numeric: tabular-nums;
    animation: happyPulse 2s ease-in-out infinite;
}

@keyframes happyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.offer-card-detail {
    font-size: 0.85rem;
    color: #666;
    margin: 0.15rem 0;
}

.offer-book-btn {
    margin-top: 1rem;
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
}

/* Offer Coupon Box */
.offer-coupon-box {
    margin-top: 0.8rem;
    padding: 0.7rem 0.9rem;
    background: rgba(203,185,164,0.13);
    border: 1px dashed var(--primary);
    border-radius: var(--radius-sm);
    text-align: center;
}
.offer-coupon-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-body);
    margin-bottom: 0.3rem;
}
.offer-coupon-code-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.offer-coupon-code {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-dark);
    padding: 0.25rem 0.6rem;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--gray-300);
    user-select: all;
}
.offer-coupon-copy {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.2rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.offer-coupon-copy:hover {
    opacity: 1;
}
.offer-coupon-hint {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* Coupon Input in Booking Form */
.coupon-group {
    margin-bottom: 0.5rem;
}
.coupon-input-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}
.coupon-input-row input {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Courier New', monospace;
}
.btn-coupon-apply {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-coupon-apply:hover {
    background: var(--primary-dark);
}
.coupon-msg {
    font-size: 0.75rem;
    margin-top: 0.3rem;
    min-height: 1rem;
}
.coupon-msg.success {
    color: #2e7d32;
}
.coupon-msg.error {
    color: #c62828;
}
.summary-row.summary-discount {
    color: #2e7d32;
    font-size: 0.85rem;
}

/* Win / Lose modals (remain centered) */
.sw-win-modal, .sw-lose-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0s 0.35s;
}

.sw-win-modal.open, .sw-lose-modal.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s var(--ease), visibility 0s 0s;
}

.sw-win-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 8, 4, 0.7);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.sw-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--text-body);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.sw-close:hover {
    background: var(--gray-200);
}

.sw-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.sw-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Wheel */
.sw-wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 1.5rem;
}

.sw-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

#spinWheelCanvas {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--secondary), 0 0 0 10px var(--accent), 0 8px 30px rgba(0,0,0,0.15);
}

.sw-spin-btn {
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 0.8rem 3rem;
    border-radius: var(--radius-full);
}

.sw-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sw-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

/* Win modal */
.sw-win-body {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem 2rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s var(--ease);
    overflow: hidden;
}

.sw-win-modal.open .sw-win-body,
.sw-lose-modal.open .sw-win-body {
    transform: translateY(0) scale(1);
}

.sw-win-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: swBounce 0.6s var(--ease-bounce);
}

@keyframes swBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.sw-win-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.sw-win-prize {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.sw-win-code-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 0.7rem 1.2rem;
    margin-bottom: 0.8rem;
}

.sw-win-code {
    font-family: 'Courier New', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    -webkit-user-select: all;
    user-select: all;
}

.sw-copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s;
}

.sw-copy-btn:hover { color: var(--primary); }

.sw-copy-btn.copied { color: #25D366; }

.sw-win-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.sw-lose-text {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sw-win-done {
    border-radius: var(--radius-full);
    padding: 0.7rem 2.5rem;
}

/* Confetti */
.sw-win-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sw-confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    top: -10px;
    animation: swConfettiFall 2.5s ease-in forwards;
}

@keyframes swConfettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(17, 17, 17, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-500);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.modal-icon {
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ---------- Gift Card Success Modal ---------- */
.gc-success-content {
    max-width: 440px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5ede4 100%);
}

.gc-success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: gcBounce 0.6s ease;
}

@keyframes gcBounce {
    0%   { transform: scale(0); opacity: 0; }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

.gc-success-content h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.gc-success-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gc-success-payid {
    font-size: 0.8rem !important;
    color: var(--gray-400) !important;
    margin-bottom: 1.5rem !important;
    font-family: monospace;
}

/* ---------- Buy Modal ---------- */
.buy-modal-content {
    max-width: 420px;
    text-align: left;
    padding: 2rem 2.25rem;
}
.buy-modal-content h3.buy-modal-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-align: left;
}
.buy-modal-content .buy-modal-plan {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.buy-modal-form .form-group {
    margin-bottom: 0.75rem;
}
.buy-modal-form .form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    text-transform: none;
    letter-spacing: 0;
}
.buy-modal-form .form-group input,
.buy-modal-form .form-group select {
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    background: var(--white);
    width: 100%;
    transition: border-color 0.2s ease;
}
.buy-modal-form .form-group input:focus,
.buy-modal-form .form-group select:focus {
    border-color: var(--text-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.buy-modal-submit {
    margin-top: 0.5rem;
    background: var(--text-dark) !important;
    border-color: var(--text-dark) !important;
    border-radius: 50px !important;
    font-size: 0.88rem !important;
    padding: 0.75rem !important;
    font-weight: 500;
}
.buy-modal-submit:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}
@media (max-width: 576px) {
    .buy-modal-content {
        padding: 1.5rem;
    }
    .buy-modal-form .form-group input,
    .buy-modal-form .form-group select {
        font-size: 0.88rem;
        min-height: 42px;
    }
}

/* ---------- Service Booking Modal ---------- */
.service-book-modal-content {
    max-width: 520px;
}
.service-book-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f9f6f1, #f1ece3);
    border: 1px solid rgba(203,185,164,0.25);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
}
.service-book-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}
.service-book-detail {
    font-size: 0.78rem;
    color: var(--primary-dark);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.service-book-detail strong {
    font-weight: 700;
}
.svc-book-row {
    display: flex;
    gap: 0.75rem;
}
.svc-book-row .form-group {
    flex: 1;
    min-width: 0;
}
.buy-modal-form .form-group textarea {
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    background: var(--white);
    width: 100%;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.2s ease;
}
.buy-modal-form .form-group textarea:focus {
    border-color: var(--text-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.buy-modal-form .booking-btn-row {
    margin-top: 0.5rem;
}
.buy-modal-form .booking-btn-row .btn-primary {
    font-size: 0.85rem !important;
    padding: 0.75rem 1rem !important;
}
.buy-modal-form .booking-btn-row .btn-counter {
    font-size: 0.72rem;
}
.buy-modal-form .booking-secure-note {
    margin-top: 0.6rem;
}
@media (max-width: 480px) {
    .service-book-modal-content {
        max-width: 100%;
    }
    .service-book-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .svc-book-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ---------- Scroll Animations ---------- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* Disable all scroll animations on mobile — show everything immediately */
@media (max-width: 768px) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(203, 185, 164, 0.15);
    color: var(--primary-dark);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-lighter);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* ---------- Large Screens (<= 1200px) ---------- */
@media (max-width: 1200px) {
    .membership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
        margin-top: 1rem;
    }
}

/* ---------- Medium Screens (<= 1024px) ---------- */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-content {
        text-align: center;
        padding: 2.5rem 2rem;
        order: 2;
    }

    .about-images {
        order: 1;
        min-height: 300px;
    }

    .about-content .section-tag {
        padding: 0 2rem;
    }

    .about-content .section-tag::before {
        display: block;
    }

    .about-stats {
        justify-content: center;
    }

    .about-content .btn {
        margin: 0 auto;
        align-self: center;
    }

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

    .treatments-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

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

    .booking-info {
        text-align: center;
    }

    .booking-perks {
        align-items: center;
    }

    .booking-contact {
        text-align: center;
    }

    .giftcard-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .giftcard-preview {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ---------- Tablet (<= 768px) ---------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem 0;
    }

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

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .cert-track {
        gap: 1.2rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

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

    .locations-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gc-amount-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .gc-occasion-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .gc-occasion-btn {
        padding: 0.6rem 0.4rem;
        font-size: 0.68rem;
    }

    .gc-occasion-icon {
        font-size: 1.1rem;
    }

    .giftcard-front {
        padding: 2rem;
        min-height: auto;
        aspect-ratio: 5 / 3;
    }

    .gc-amount {
        font-size: 2.5rem;
    }

    .gc-form-step {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .giftcard-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .giftcard-form-wrapper {
        padding: 1.8rem;
    }

    .booking-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    /* Hide booking info body text on mobile — keep heading + form only */
    .booking-info > p {
        display: none;
    }

    .booking-perks {
        display: none;
    }

    .booking-contact {
        display: none;
    }

    .booking-grid {
        gap: 1.5rem;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ---------- Mobile (<= 576px) ---------- */
@media (max-width: 576px) {
    :root {
        --section-padding: 3rem 0;
    }

    .hero-content {
        padding: 0 1.5rem 3rem;
    }

    .hero-title-line {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-title-line.accent {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero {
        max-height: 100vh;
        height: 80vh;
        min-height: -webkit-fill-available;
    }

    .hero-bg {
        will-change: auto;
        transform: none;
    }

    .hero-subtitle {
        max-width: 320px;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .cert-track {
        gap: 1rem;
    }

    .certification-card {
        width: 160px;
        padding: 1.2rem 1rem;
    }

    .cert-img {
        height: 90px;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .about-img-main img {
        height: 300px;
    }

    .about-img-accent {
        display: none;
    }

    .about-experience {
        display: none;
    }

    .exp-number {
        font-size: 2rem;
    }

    .service-tabs {
        gap: 0.4rem;
    }

    .tab-btn {
        font-size: 0.78rem;
        padding: 0.6rem 1.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .services-grid .service-card {
        padding: 0;
    }

    .services-grid .service-img {
        aspect-ratio: 1/1;
    }

    .services-grid .service-overlay {
        display: none;
    }

    .services-grid .service-info {
        padding: 0.5rem 0.4rem 0.6rem;
    }

    .services-grid .service-info h3 {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
        line-height: 1.2;
    }

    .services-grid .service-info p {
        display: none;
    }

    .gc-occasion-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
        overflow: hidden;
    }

    .gc-occasion-btn {
        min-width: 0;
        padding: 0.5rem 0.3rem;
        font-size: 0.65rem;
    }

    .gc-terms {
        display: none;
    }

    .gc-occasion-icon {
        font-size: 0.95rem;
    }

    .gc-amount-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .gc-amt-btn {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }

    /* Gift card form hidden by default on mobile, toggled via JS */
    .giftcard-form-wrapper {
        padding: 1.2rem;
        display: none;
    }

    .giftcard-form-wrapper.gc-form-open {
        display: block;
    }

    /* "Send a Gift" toggle button (mobile only) */
    .gc-mobile-toggle {
        display: block;
        width: 100%;
        margin-top: 1.5rem;
    }

    .giftcard-front {
        padding: 1.5rem;
        min-height: auto;
        aspect-ratio: 5 / 3;
    }

    .gc-amount {
        font-size: 2rem;
    }

    .gc-amount-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .gc-floating-emoji {
        font-size: 6rem;
    }

    .gc-type {
        font-size: 0.68rem;
        padding: 0.25rem 0.6rem;
    }

    .gc-logo {
        height: 26px;
    }

    .gc-label {
        font-size: 0.65rem;
    }

    /* Prevent horizontal scroll on gift card section */
    #giftcard {
        overflow-x: hidden;
    }

    #giftcard .container {
        overflow: hidden;
    }

    .gc-value {
        font-size: 0.78rem;
    }

    .gc-form-step {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .gc-step-label {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        gap: 0.5rem;
    }

    .gc-step-num {
        width: 24px;
        height: 24px;
        font-size: 0.68rem;
    }

    .giftcard-form h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .gc-custom-amount {
        margin-top: 0.7rem;
    }

    .gc-custom-input-wrap input {
        padding: 0.7rem 1rem 0.7rem 2rem;
        font-size: 0.85rem;
    }

    .gc-occasions h4 {
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
    }

    .gc-submit-btn {
        margin-bottom: 0.7rem;
    }

    .gc-note {
        font-size: 0.7rem;
    }

    .giftcard-layout {
        gap: 1.5rem;
    }

    .giftcard-visual {
        margin-bottom: 1.5rem;
    }

    .treatments-list {
        grid-template-columns: 1fr 1fr;
    }

    .treatment-item {
        padding: 1rem 1.1rem;
    }

    .treatment-number {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .booking-form-wrapper {
        padding: 1.25rem;
    }

    .booking-form h3 {
        font-size: 1.1rem;
        padding-bottom: 0.75rem;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-brand p {
        font-size: 0.82rem;
        margin-bottom: 1rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }

    .footer-links a {
        font-size: 0.82rem;
        padding: 0.25rem 0;
    }

    .footer-contact-item {
        font-size: 0.82rem;
    }

    .spin-tab {
        padding: 0.55rem 0.35rem;
        gap: 0.25rem;
    }

    .spin-tab-text {
        font-size: 0.58rem;
        letter-spacing: 2px;
    }

    .sw-panel-body {
        width: 100vw;
        max-width: 100vw;
        padding: 2rem 1.2rem 1.5rem;
    }

    .sw-title {
        font-size: 1.2rem;
    }

    .offer-tab {
        font-size: 0.7rem;
        padding: 0.6rem 0.3rem;
        letter-spacing: 0.5px;
    }

    .offer-card-info h4 {
        font-size: 1rem;
    }

    .offer-card-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.7rem;
    }

    .offer-card-detail {
        font-size: 0.78rem;
    }

    .offer-book-btn {
        width: 100%;
        text-align: center;
    }

    .offer-coupon-code {
        font-size: 0.88rem;
    }

    .offer-coupon-box {
        padding: 0.6rem 0.7rem;
    }

    /* Coupon field in booking form */
    .coupon-input-row {
        flex-direction: column;
        gap: 0.4rem;
    }

    .btn-coupon-apply {
        min-height: 42px;
        padding: 0.6rem 1rem;
        width: 100%;
    }

    .coupon-input-row input {
        min-height: 42px;
    }

    .back-to-top {
        right: 1.5rem;
        bottom: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

/* ---------- Small Mobile (<= 380px) ---------- */
@media (max-width: 380px) {
    .hero-content {
        padding: 0 1.2rem 2.5rem;
    }

    .certification-card {
        width: 150px;
    }

    .certification-card h4 {
        font-size: 0.85rem;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .membership-price .amount {
        font-size: 2rem;
    }

    .giftcard-front {
        padding: 1.2rem;
        min-height: auto;
        aspect-ratio: 5 / 3;
    }

    .gc-amount {
        font-size: 1.8rem;
    }

    .gc-body {
        padding: 1rem 0;
    }

    .gc-amount-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }

    .gc-amt-btn {
        padding: 0.5rem 0.2rem;
        font-size: 0.75rem;
    }

    .giftcard-form-wrapper {
        padding: 1rem;
    }

    .gc-occasion-btn {
        min-width: 64px;
    }
}

/* ==========================================
   MOBILE-FIRST THUMB OPTIMISATIONS
   Targeting 80 % mobile traffic — bigger tap
   targets, comfortable spacing, sticky CTA.
   Scoped behind max-width so desktop is untouched.
   ========================================== */

/* --- Sticky bottom Book Now bar (mobile only) --- */
.mobile-sticky-cta {
    display: none;
}

.footer-legal-link {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0.65rem 1rem;
        padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
        gap: 0.6rem;
        transform: translateY(100%);
        transition: transform 0.35s ease;
    }

    .mobile-sticky-cta.visible {
        transform: translateY(0);
    }

    .mobile-sticky-cta .btn-primary {
        flex: 1;
        min-height: 48px;
        font-size: 0.88rem;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }

    .back-to-top {
        bottom: 5.5rem;
    }

    .spin-tab {
        top: 45%;
    }
}

/* --- Touch-friendly tap targets on mobile --- */
@media (max-width: 576px) {

    /* Buttons — min 48px height, comfortable thumb press */
    .btn {
        min-height: 48px;
        padding: 0.85rem 1.6rem;
        font-size: 0.82rem;
    }

    .btn-lg {
        min-height: 52px;
        padding: 0.95rem 2rem;
        font-size: 0.88rem;
    }

    .btn-sm {
        min-height: 44px;
        padding: 0.65rem 1.2rem;
    }

    /* Tab buttons — bigger for thumbs */
    .service-tabs {
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        min-height: 44px;
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Mobile nav links — taller rows for easy tapping */
    .mobile-nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0.9rem 1rem;
        font-size: 1.05rem;
    }

    .mobile-book-btn {
        min-height: 52px;
        margin: 0.5rem 1.5rem 0;
    }

    /* Form inputs — taller for fat-finger tapping */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }

    .form-group select {
        padding-right: 2.5rem;
    }

    .form-group label {
        margin-bottom: 0.4rem;
        font-size: 0.78rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    /* Gift card amount buttons — bigger targets */
    .gc-amt-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gc-occasion-btn {
        min-height: 44px;
    }

    /* Gift card submit button */
    .gc-submit-btn {
        min-height: 52px;
        font-size: 0.88rem;
    }

    /* Membership buy buttons — full-width, tall */
    .membership-buy-btn {
        min-height: 48px;
        font-size: 0.85rem;
    }

    /* Treatment items — comfortable tap */
    .treatment-item {
        padding: 1.1rem 1.2rem;
        min-height: 48px;
    }

    /* Service cards — more generous padding */
    .service-card {
        padding: 1.5rem 1.2rem;
    }

    .service-card .btn-sm {
        min-height: 44px;
        width: 100%;
    }

    /* Gallery items — bigger on mobile */
    .gallery-grid {
        gap: 0.6rem;
    }

    /* Section spacing — roomier for scrolling */
    .section-header {
        margin-bottom: 2rem;
    }

    /* Booking summary rows — comfortable reading */
    .booking-summary {
        padding: 1rem 1rem;
    }

    /* Booking form — compact on mobile */
    .booking-form .form-group input,
    .booking-form .form-group select,
    .booking-form .form-group textarea {
        min-height: 42px;
        padding: 0.6rem 0.8rem;
        font-size: 0.88rem;
    }

    .booking-form .form-group label {
        font-size: 0.72rem;
        margin-bottom: 0.25rem;
    }

    .booking-form .form-group {
        margin-bottom: 0.5rem;
    }

    .booking-form h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .booking-form-wrapper {
        padding: 1.2rem;
    }

    .booking-btn-row .btn {
        min-height: 44px;
        font-size: 0.8rem;
    }

    .booking-btn-row .btn-counter {
        font-size: 0.72rem;
    }

    .booking-summary {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .booking-secure-note {
        font-size: 0.65rem;
        margin-top: 0.5rem;
    }

    /* Footer links — tappable */
    .footer-links a {
        min-height: 40px;
        display: flex;
        align-items: center;
        padding: 0.3rem 0;
    }

    .footer-contact-item {
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    /* Social icons — bigger circles */
    .footer-socials a,
    .mobile-socials a {
        width: 44px;
        height: 44px;
    }

    /* Contact grid items */
    .contact-card {
        padding: 1.5rem 1.2rem;
    }

    /* Hero — buttons stack full width for easy thumb press */
    .hero-buttons {
        gap: 0.75rem;
        width: 100%;
        padding: 0;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        min-height: 52px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
    }
}

/* ---------- Blog Section ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(203, 185, 164, 0.12);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-tag {
    background: rgba(203, 185, 164, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
}

.blog-card-body h3 {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-body h3 a:hover {
    color: var(--primary);
}

.blog-card-body p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

.blog-read-more {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.25s ease;
}

.blog-read-more:hover {
    gap: 0.7rem;
}

.blog-view-all {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .blog-card-img {
        height: 120px;
    }
}

/* ---------- Explore Services CTA ---------- */
.explore-services-cta {
    text-align: center;
    padding-top: 2.5rem;
}

/* ---------- Service Menu Page (Fresha-inspired) ---------- */

/* Hero — clean, minimal */
.menu-hero {
    padding: 8rem 0 2rem;
    background: var(--white);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.menu-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}
.menu-hero .breadcrumb a {
    color: var(--primary-dark);
    text-decoration: none;
}
.menu-hero .breadcrumb a:hover {
    text-decoration: underline;
}
.menu-hero .section-tag {
    display: inline-block;
    margin-bottom: 0.5rem;
}
.menu-hero h1 {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.menu-hero-sub {
    font-size: 0.92rem;
    color: var(--secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Quick Nav — Fresha-style category pills */
.menu-quick-nav {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0.6rem 0;
    z-index: 90;
    transition: box-shadow 0.3s ease;
}
.menu-quick-nav.stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.menu-nav-scroll {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.2rem 0;
    justify-content: center;
}
.menu-nav-scroll::-webkit-scrollbar { display: none; }
.menu-nav-link {
    white-space: nowrap;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
    letter-spacing: 0;
    text-transform: none;
}
.menu-nav-link:hover {
    color: var(--text-dark);
    background: var(--gray-100);
}
.menu-nav-link.active {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* Main body */
.menu-main {
    padding: 2rem 0 3rem;
    background: var(--gray-100);
}

/* Category */
.menu-category {
    margin-bottom: 2.5rem;
    scroll-margin-top: 120px;
}
.menu-category-header {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0;
}
.menu-cat-number {
    display: none;
}
.menu-category-header h2 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.menu-category-header p {
    font-size: 0.82rem;
    color: var(--secondary);
}
.menu-category-header::after {
    display: none;
}

/* Highlight category */
.menu-category-highlight {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
}

/* Items — Fresha-style stacked cards */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-bottom: none;
    transition: background 0.2s ease;
}
.menu-item:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.menu-item:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.menu-item:only-child {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
}
.menu-item:hover {
    background: var(--gray-100);
}
.menu-item-content {
    flex: 1;
    min-width: 0;
}
.menu-item-content h3 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.menu-item-content > p {
    font-size: 0.82rem;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.menu-item-prices {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.menu-item-prices-wrap {
    gap: 0.4rem;
}
.menu-price strong {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}
.menu-price em {
    font-style: normal;
    font-size: 0.72rem;
    color: var(--secondary);
    margin-left: 0.15rem;
}
.menu-price-sep {
    color: var(--gray-300);
    font-size: 0.75rem;
}

/* Book Now button — muted brown, reduced contrast */
.menu-book-btn {
    flex-shrink: 0;
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
    font-size: 0.75rem !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    min-height: auto !important;
}
.menu-book-btn:hover {
    background: var(--text-dark) !important;
    border-color: var(--text-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Featured item */
.menu-item-featured {
    background: rgba(203,185,164,0.05);
    border-radius: var(--radius-lg) !important;
    padding: 1.5rem;
    border: 1px solid rgba(203,185,164,0.2) !important;
}

/* Membership cards */
.menu-membership-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
}
.menu-membership-card:last-child {
    margin-bottom: 0;
}
.menu-membership-header h3 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}
.menu-membership-header p {
    font-size: 0.82rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.menu-membership-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}
.menu-plan {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: 1.5px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.menu-plan:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.menu-plan-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-dark);
}
.menu-plan strong {
    font-size: 1.05rem;
    color: var(--text-dark);
}
.menu-plan em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--secondary);
}
.menu-plan .btn {
    margin-top: 0.3rem;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    font-size: 0.72rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
}
.menu-plan .btn:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
}

/* CTA Banner */
.menu-cta {
    background: var(--text-dark);
    padding: 3.5rem 0;
    text-align: center;
}
.menu-cta h2 {
    font-family: var(--font-accent);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.menu-cta p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}
.menu-cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ----- Service Menu Responsive ----- */
@media (max-width: 768px) {
    .menu-hero {
        padding: 6.5rem 0 1.5rem;
    }
    .menu-category-header h2 {
        font-size: 1.1rem;
    }
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 1.1rem;
    }
    .menu-book-btn {
        align-self: stretch;
        text-align: center;
        display: block !important;
    }
    .menu-category-highlight {
        padding: 0;
    }
    .menu-item-featured {
        padding: 1rem;
    }
    .menu-membership-card {
        padding: 1.2rem;
    }
    .menu-membership-plans {
        grid-template-columns: 1fr;
    }
    .menu-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .menu-nav-link {
        font-size: 0.78rem;
        padding: 0.45rem 0.9rem;
    }
    .menu-nav-scroll {
        justify-content: flex-start;
    }
    .menu-item-prices {
        gap: 0.35rem;
    }
    .menu-price strong {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .menu-hero {
        padding: 5.5rem 0 1.2rem;
    }
    .menu-hero h1 {
        font-size: 1.5rem;
    }
    .menu-hero-sub {
        font-size: 0.82rem;
    }
    .menu-item {
        padding: 0.9rem 1rem;
    }
    .menu-item-content h3 {
        font-size: 0.92rem;
    }
    .menu-item-content > p {
        font-size: 0.78rem;
        margin-bottom: 0.4rem;
    }
}

/* ---------- Duration Pills ---------- */
.menu-dur-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}
.dur-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.45rem 1rem;
    border: 1.5px solid rgba(203,185,164,0.35);
    border-radius: var(--radius-sm);
    background: var(--bg-lighter);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}
.dur-pill:hover {
    border-color: var(--primary);
    background: rgba(203,185,164,0.08);
}
.dur-pill.active {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.dur-pill-time {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.dur-pill-price {
    font-size: 0.88rem;
    font-weight: 600;
}

/* ---------- Category Visual Separation ---------- */
.menu-category {
    padding: 0;
    border-radius: 0;
    margin-bottom: 2.5rem;
    scroll-margin-top: 120px;
}
.menu-category:nth-child(even):not(.menu-category-highlight) {
    background: transparent;
    border: none;
    box-shadow: none;
}

.menu-item {
    transition: background 0.2s ease;
}

@media (max-width: 768px) {
    .menu-category {
        padding: 0;
    }
    .dur-pill {
        padding: 0.4rem 0.75rem;
    }
    .dur-pill-time {
        font-size: 0.65rem;
    }
    .dur-pill-price {
        font-size: 0.8rem;
    }
}

/* =============================================
   SERVICE MENU V2 — Fresha-inspired design
   ============================================= */
.sm-header-section {
    padding: 6.5rem 0 0;
    background: #fff;
}
.sm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.75rem;
}
.sm-breadcrumb a { color: #1a1a1a; text-decoration: none; font-weight: 500; }
.sm-bc-sep { color: #ccc; font-size: 0.7rem; }
.sm-page-title {
    font-family: var(--font-accent);
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}
.sm-tabs-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.sm-tabs-wrap::-webkit-scrollbar { display: none; }
.sm-tabs {
    display: flex;
    gap: 0.45rem;
    padding-bottom: 1.25rem;
}
.sm-tab {
    white-space: nowrap;
    padding: 0.5rem 1.15rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #444;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}
.sm-tab:hover { border-color: #aaa; }
.sm-tab.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Layout */
.sm-main {
    padding: 0 0 3rem;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}
.sm-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
    padding-top: 2rem;
}
.sm-cat-heading {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* --- Service Cards --- */
.sm-cards { display: flex; flex-direction: column; }
.sm-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.35rem;
    border: 1.5px solid #efefef;
    border-bottom: none;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.sm-card:first-child { border-radius: 12px 12px 0 0; }
.sm-card:last-child {
    border-bottom: 1.5px solid #efefef;
    border-radius: 0 0 12px 12px;
}
.sm-card:only-child {
    border-bottom: 1.5px solid #efefef;
    border-radius: 12px;
}
.sm-card:hover { background: #fafafa; }
.sm-card.selected {
    border-color: var(--primary-dark);
    border-bottom: 1.5px solid var(--primary-dark);
    background: rgba(203,185,164,0.04);
    z-index: 1;
}
.sm-card.selected + .sm-card { border-top-color: transparent; }

.sm-card-info { flex: 1; min-width: 0; }
.sm-card-info h3 {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.1rem;
    line-height: 1.35;
}
.sm-card-dur {
    display: block;
    font-size: 0.76rem;
    color: #999;
    margin-bottom: 0.3rem;
}
.sm-card-info > p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.55;
    margin-bottom: 0.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sm-card-price {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* + / ✓ button */
.sm-card-add {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 1.25rem;
    line-height: 1;
    color: #bbb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-top: 0.5rem;
    padding: 0;
}
.sm-card-add:hover { border-color: var(--primary-dark); color: var(--primary-dark); }
.sm-card-add.checked {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    font-size: 1rem;
}

/* --- Sidebar --- */
.sm-sidebar {
    position: sticky;
    top: 90px;
}
.sm-sidebar-inner {
    border: 1.5px solid #efefef;
    border-radius: 14px;
    overflow: hidden;
}
.sm-sidebar-biz {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}
.sm-biz-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}
.sm-cart-empty {
    padding: 2.5rem 1.25rem;
    text-align: center;
    color: #ccc;
    font-size: 0.85rem;
}
.sm-cart-items { padding: 0; }
.sm-cart-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f5f5f5;
}
.sm-cart-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
}
.sm-cart-dur {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.15rem;
}
.sm-cart-price {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}
.sm-cart-remove {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #ccc;
    cursor: pointer;
    padding: 0 0 0 0.5rem;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}
.sm-cart-remove:hover { color: #e55; }
.sm-cart-footer {
    padding: 1rem 1.25rem 1.25rem;
}
.sm-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}
.sm-continue-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-body);
}
.sm-continue-btn:hover { background: #333; }

/* --- Detail Modal --- */
.sm-detail-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.sm-detail-overlay.active { display: flex; }
.sm-detail-modal {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 1.75rem 1.5rem 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.sm-detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sm-detail-close:hover { color: #333; }
.sm-detail-name {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}
.sm-detail-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.sm-detail-readmore {
    color: var(--primary-dark);
    cursor: pointer;
    font-weight: 500;
}
.sm-detail-opt-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}
.sm-detail-opt-title span { color: #999; }
.sm-detail-options { display: flex; flex-direction: column; }
.sm-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border: 1.5px solid #efefef;
    border-bottom: none;
    cursor: pointer;
    transition: background 0.15s;
}
.sm-opt:first-child { border-radius: 10px 10px 0 0; }
.sm-opt:last-child {
    border-bottom: 1.5px solid #efefef;
    border-radius: 0 0 10px 10px;
}
.sm-opt:only-child {
    border-bottom: 1.5px solid #efefef;
    border-radius: 10px;
}
.sm-opt:hover { background: #fafafa; }
.sm-opt.selected {
    border-color: var(--primary-dark);
    background: rgba(203,185,164,0.04);
    z-index: 1;
    position: relative;
}
.sm-opt.selected + .sm-opt { border-top-color: transparent; }
.sm-opt-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}
.sm-opt-info span {
    display: block;
    font-size: 0.76rem;
    color: #999;
    margin-top: 0.15rem;
}
.sm-opt-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 0.75rem;
}
.sm-opt-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}
.sm-opt.selected .sm-opt-radio {
    border-color: var(--primary-dark);
}
.sm-opt.selected .sm-opt-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    background: var(--primary-dark);
}
.sm-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
    position: sticky;
    bottom: 0;
    background: #fff;
    padding-bottom: 1.5rem;
}
.sm-detail-summary strong {
    display: block;
    font-size: 0.92rem;
    color: #1a1a1a;
}
.sm-detail-summary span {
    font-size: 0.76rem;
    color: #999;
}
.sm-detail-add-btn {
    padding: 0.65rem 2rem;
    background: #f0f0f0;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}
.sm-detail-add-btn.ready {
    background: #1a1a1a;
    color: #fff;
}
.sm-detail-add-btn.ready:hover { background: #333; }

/* --- Mobile bottom bar --- */
.sm-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 0.9rem 1.25rem;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.sm-mobile-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.sm-mobile-bar-info strong {
    display: block;
    font-size: 0.88rem;
    color: #1a1a1a;
}
.sm-mobile-bar-info span {
    font-size: 0.75rem;
    color: #999;
}
.sm-mobile-bar .sm-continue-btn {
    width: auto;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .sm-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sm-sidebar { display: none; }
    .sm-mobile-bar.visible { display: block; }
    .sm-main { padding-bottom: 5rem; }
}
@media (max-width: 576px) {
    .sm-header-section { padding-top: 5.5rem; }
    .sm-page-title { font-size: 1.5rem; }
    .sm-tab { font-size: 0.78rem; padding: 0.4rem 0.9rem; }
    .sm-card { padding: 1rem; }
    .sm-card-info h3 { font-size: 0.9rem; }
    .sm-detail-modal { width: 95%; padding: 1.25rem 1.1rem 0; }
}
