/* ============================================================
   SALON - GLOBAL STYLESHEET
   Modern, Feminine, Premium - Inspired by GlossGenius & Fresha
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS TOKENS --- */
:root {
    /* Brand Colors (Updated according to the example template) */
    --brand-rose: #d63384;
    /* Example primary color */
    --brand-rose-l: #f08cb3;
    /* Lighter primary */
    --brand-rose-xl: #fcf0f5;
    /* Very light primary */
    --brand-gold: #f1c40f;
    /* Gold for ratings */
    --brand-dark: #1E1A18;
    /* Original */
    --brand-mid: #4A3F3A;
    /* Original */
    --brand-muted: #8B7D78;
    /* Original */
    --brand-line: #EDE5E3;
    /* Original */

    /* UI */
    --bg: #FAF7F6;
    --surface: #FFFFFF;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    /* Shadows */
    --shadow-xs: 0 1px 4px rgba(30, 26, 24, .06);
    --shadow-sm: 0 4px 16px rgba(30, 26, 24, .08);
    --shadow-md: 0 8px 32px rgba(30, 26, 24, .10);
    --shadow-lg: 0 20px 60px rgba(30, 26, 24, .14);

    /* Typography */
    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
}

/* --- RESET --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--brand-dark);
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#main-content {
    flex: 1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-sans);
}

/* --- TYPOGRAPHY --- */
.serif {
    font-family: var(--font-serif);
}

h1,
h2,
h3 {
    line-height: 1.2;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brand-dark);
    margin-bottom: .5rem;
}

.page-sub {
    font-size: 1.05rem;
    color: var(--brand-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* --- SECTION WRAPPER --- */
.section {
    padding: 80px 20px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .3px;
    border: none;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-dark);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-rose {
    background: var(--brand-rose);
    color: #fff;
}

.btn-rose:hover {
    background: var(--brand-rose-l);
    color: var(--brand-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--brand-dark);
    border: 1.5px solid var(--brand-line);
}

.btn-outline:hover {
    background: var(--surface);
    border-color: var(--brand-rose);
    color: var(--brand-rose);
}

.btn-ghost {
    background: var(--brand-rose-xl);
    color: var(--brand-rose);
}

.btn-ghost:hover {
    background: var(--brand-rose);
    color: #fff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: .82rem;
}


/* --- CARD --- */
.card {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--brand-line);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* --- BADGE --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .3px;
}

.badge-rose {
    background: var(--brand-rose-xl);
    color: var(--brand-rose);
}

.badge-gold {
    background: rgba(181, 152, 112, .12);
    color: var(--brand-gold);
}

.badge-green {
    background: rgba(16, 185, 129, .1);
    color: #059669;
}

.badge-red {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
}

.badge-blue {
    background: rgba(59, 130, 246, .1);
    color: #2563eb;
}

.badge-gray {
    background: rgba(107, 114, 128, .1);
    color: #4b5563;
}


/* --- FORM ELEMENTS --- */
.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand-mid);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--brand-line);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--brand-dark);
    background: var(--surface);
    transition: border-color .2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--brand-rose);
    box-shadow: 0 0 0 3px rgba(201, 147, 139, .12);
}

.form-control::placeholder {
    color: var(--brand-muted);
    opacity: .7;
}

select.form-control {
    cursor: pointer;
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(250, 247, 246, .9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--brand-line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    gap: 20px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brand-dark);
    letter-spacing: -.5px;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--brand-rose);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--brand-mid);
    transition: .2s;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--brand-rose-xl);
    color: var(--brand-rose);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .nav-actions .btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--brand-rose-xl);
    color: var(--brand-rose);
    font-weight: 600;
    font-size: .88rem;
    border: none;
    transition: .2s;
}

.nav-user-btn:hover {
    background: var(--brand-rose);
    color: #fff;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand-dark);
    border-radius: 2px;
    transition: .3s;
}

/* Mobile Nav */
/* Mobile Bottom Nav */
.customer-bottom-nav {
    display: none;
}

@media (max-width: 900px) {
    .customer-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
        z-index: 999;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.03);
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    .cbn-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--brand-muted);
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        gap: 6px;
        text-decoration: none;
        flex: 1;
        transition: all 0.3s;
    }

    .cbn-item i {
        font-size: 1.3rem;
        transition: 0.3s;
    }

    .cbn-item.active,
    .cbn-item:hover {
        color: var(--brand-rose);
    }

    .cbn-item.active i,
    .cbn-item:hover i {
        transform: translateY(-3px);
    }

    .cbn-action-wrap {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .cbn-action {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--brand-rose), #ff6b6b);
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transform: translateY(-28px);
        box-shadow: 0 10px 20px rgba(214, 51, 132, 0.4);
        border: 6px solid var(--bg);
        transition: 0.3s;
    }
}

.mobile-more-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1000;
    padding: 20px 24px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s cubic-bezier(0.1, 0.9, 0.2, 1);
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.mobile-more-menu.open {
    bottom: 0;
}

.m-more-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--brand-line);
}

.m-more-header h4 {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    margin: 0;
    color: var(--brand-dark);
}

.m-more-close {
    background: var(--brand-rose-xl);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-rose);
    font-size: 1rem;
    cursor: pointer;
}

.m-more-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.m-more-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 0.95rem;
    text-decoration: none;
}

.m-more-list a i {
    color: var(--brand-rose);
    width: 20px;
    text-align: center;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: none;
    }

    body {
        padding-bottom: 90px;
    }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: calc(100vh - 68px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    gap: 60px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--brand-rose-xl);
    color: var(--brand-rose);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--brand-rose);
}

.hero p {
    font-size: 1.05rem;
    color: var(--brand-muted);
    margin-bottom: 36px;
    max-width: 440px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--brand-line);
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--brand-dark);
    display: block;
    line-height: 1;
}

.hero-stat-lbl {
    font-size: .82rem;
    color: var(--brand-muted);
    font-weight: 500;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    position: relative;
    border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--brand-rose-xl);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-card.top-left {
    top: 10%;
    left: -10%;
}

.hero-float-card.bot-right {
    bottom: 12%;
    right: -8%;
}

.hero-float-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-float-icon.rose {
    background: var(--brand-rose-xl);
    color: var(--brand-rose);
}

.hero-float-icon.gold {
    background: rgba(181, 152, 112, .15);
    color: var(--brand-gold);
}

.hero-float-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
}

.hero-float-text span {
    font-size: .78rem;
    color: var(--brand-muted);
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .hero-float-card.top-left {
        top: -5%;
        left: -5%;
    }

    .hero-float-card.bot-right {
        bottom: -5%;
        right: -5%;
    }
}


/* ============================================================
   SERVICES GRID (MODERN)
   ============================================================ */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
}

.service-card-modern {
    background: var(--surface);
    width: min(100%, 300px);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-rose);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: var(--brand-rose-xl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--brand-rose);
    font-size: 1.5rem;
    transition: .3s;
}

.service-card-modern:hover .service-icon-box {
    background: var(--brand-rose);
    color: #fff;
    transform: scale(1.05) rotate(5deg);
}

.service-card-modern h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: var(--font-serif);
}

.service-card-modern p {
    font-size: 0.9rem;
    color: var(--brand-muted);
    line-height: 1.5;
}

.service-price {
    margin-top: auto;
    font-weight: 700;
    color: var(--brand-rose);
    background: var(--brand-rose-xl);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
}



/* ============================================================
   PACKAGES / PRICING
   ============================================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    align-items: start;
}

.pkg-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-line);
    overflow: hidden;
    transition: all .35s ease;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pkg-card.popular {
    background: var(--brand-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.pkg-popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-rose);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pkg-header {
    padding: 36px 28px 24px;
}

.pkg-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.pkg-price {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.pkg-price span {
    font-size: .9rem;
    font-weight: 400;
    color: var(--brand-muted);
}

.pkg-card.popular .pkg-name,
.pkg-card.popular .pkg-price {
    color: #fff;
}

.pkg-card.popular .pkg-price span {
    color: rgba(255, 255, 255, .6);
}

.pkg-divider {
    height: 1px;
    background: var(--brand-line);
    margin: 0 28px;
}

.pkg-card.popular .pkg-divider {
    background: rgba(255, 255, 255, .12);
}

.pkg-features {
    padding: 24px 28px;
    list-style: none;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: .9rem;
    border-bottom: 1px solid var(--brand-line);
}

.pkg-features li:last-child {
    border-bottom: none;
}

.pkg-card.popular .pkg-features li {
    color: rgba(255, 255, 255, .85);
    border-color: rgba(255, 255, 255, .08);
}

.pkg-features li i {
    color: var(--brand-rose);
    margin-top: 3px;
    flex-shrink: 0;
}

.pkg-footer {
    padding: 8px 28px 32px;
}


/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--brand-line);
    transition: all .35s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-rose-l);
}

.team-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--brand-rose-xl);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 26, 24, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-role {
    font-size: .8rem;
    color: var(--brand-rose);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.team-stat {
    margin-top: 12px;
    font-size: .78rem;
    color: var(--brand-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery-masonry {
    columns: 4;
    column-gap: 16px;
}

.gallery-item {
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 26, 24, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
    color: #fff;
    font-size: 1.6rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 100px;
    border: 1.5px solid var(--brand-line);
    background: var(--surface);
    color: var(--brand-mid);
    font-size: .85rem;
    font-weight: 600;
    transition: .25s;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

@media (max-width: 900px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 500px) {
    .gallery-masonry {
        columns: 1;
    }
}


/* ============================================================
   CAMPAIGNS
   ============================================================ */
.campaign-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    border: 1px solid var(--brand-line);
    margin-bottom: 28px;
    transition: all .35s;
}

.campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-rose-l);
}

.campaign-img {
    width: 35%;
    min-height: 250px;
    background-color: transparent;
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

.campaign-label {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--brand-rose);
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.campaign-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.campaign-body h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.campaign-body p {
    color: var(--brand-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.campaign-countdown {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.cd {
    text-align: center;
}

.cd-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--brand-rose);
    line-height: 1;
}

.cd-lbl {
    font-size: .68rem;
    color: var(--brand-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-box {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border: 2px dashed var(--brand-rose-l);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: .2s;
}

.coupon-box:hover {
    border-color: var(--brand-rose);
    background: var(--brand-rose-xl);
}

.coupon-code {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1rem;
    color: var(--brand-dark);
}

.coupon-copy {
    font-size: .78rem;
    color: var(--brand-rose);
    font-weight: 600;
}

@media (max-width: 700px) {
    .campaign-card {
        flex-direction: column;
    }

    .campaign-img {
        width: 100%;
        min-height: 220px;
        background-position: center center;
    }
}


/* ============================================================
   BOOKING WIZARD
   ============================================================ */
.wizard-wrap {
    max-width: 860px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-line);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.wizard-steps {
    display: flex;
    background: var(--brand-dark);
    padding: 24px 32px;
    gap: 0;
}

.wizard-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    cursor: default;
}

.wizard-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .15);
    transform: translateX(50%);
    z-index: 0;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
    flex-shrink: 0;
    z-index: 1;
    transition: .3s;
}

.wizard-step.active .step-num {
    background: var(--brand-rose);
    color: #fff;
}

.wizard-step.done .step-num {
    background: #22c55e;
    color: #fff;
}

.step-label {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    z-index: 1;
}

.wizard-step.active .step-label {
    color: #fff;
    font-weight: 600;
}

.wizard-step.done .step-label {
    color: rgba(255, 255, 255, .7);
}

.wizard-body {
    padding: 40px;
}

.wizard-panel {
    display: none;
    animation: fadeUp .4s ease;
}

.wizard-panel.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-top: 1px solid var(--brand-line);
    background: var(--bg);
}

.wiz-total {
    display: flex;
    flex-direction: column;
}

.wiz-total-lbl {
    font-size: .75rem;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.wiz-total-val {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--brand-rose);
}

/* Booking option cards */
.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid var(--brand-line);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    cursor: pointer;
    transition: all .25s;
    user-select: none;
}

.option-card:hover {
    border-color: var(--brand-rose-l);
    background: var(--brand-rose-xl);
}

.option-card.selected {
    border-color: var(--brand-rose);
    background: var(--brand-rose-xl);
}

.option-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--brand-line);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.option-card.selected .option-check {
    background: var(--brand-rose);
    border-color: var(--brand-rose);
}

.option-card.selected .option-check::after {
    content: '✓';
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.option-info h4 {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 2px;
}

.option-info span {
    font-size: .8rem;
    color: var(--brand-muted);
}

.option-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--brand-rose);
    font-size: 1rem;
}

/* Staff cards */
.staff-pick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}

.staff-pick {
    text-align: center;
    padding: 20px 12px;
    border: 1.5px solid var(--brand-line);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: .25s;
}

.staff-pick:hover {
    border-color: var(--brand-rose-l);
    transform: translateY(-4px);
}

.staff-pick.selected {
    border-color: var(--brand-rose);
    background: var(--brand-rose-xl);
}

.staff-pick-img {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 2px solid var(--brand-line);
}

.staff-pick.selected .staff-pick-img {
    border-color: var(--brand-rose);
}

.staff-pick-name {
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 2px;
}

.staff-pick-role {
    font-size: .72rem;
    color: var(--brand-rose);
    font-weight: 600;
    text-transform: uppercase;
}

/* Time slots */
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.time-slot {
    padding: 11px;
    text-align: center;
    border: 1.5px solid var(--brand-line);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: .2s;
}

.time-slot:hover {
    border-color: var(--brand-rose);
    color: var(--brand-rose);
}

.time-slot.selected {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

.time-slot.unavailable {
    opacity: .35;
    pointer-events: none;
}


/* ============================================================
   PROFILE (Customer)
   ============================================================ */
.profile-hero {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
    padding: 50px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9938b' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: var(--brand-rose);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 4px solid rgba(255, 255, 255, .2);
    position: relative;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 4px;
}

.profile-phone {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
}

.profile-chips {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.profile-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 100px;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.profile-tabs-wrap {
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(-24px);
}

.profile-tabs {
    display: flex;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--brand-line);
    overflow: hidden;
}

.p-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 10px;
    gap: 5px;
    border: none;
    background: none;
    font-size: .8rem;
    font-weight: 600;
    color: var(--brand-muted);
    cursor: pointer;
    transition: .2s;
    text-transform: uppercase;
    letter-spacing: .4px;
    position: relative;
}

.p-tab i {
    font-size: 1.2rem;
}

.p-tab.active {
    color: var(--brand-rose);
}

.p-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--brand-rose);
    border-radius: 3px 3px 0 0;
}

.p-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.p-panel.active {
    display: block;
    animation: fadeUp .35s ease;
}

/* Appointment card */
.appt-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--brand-line);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
    transition: .2s;
    position: relative;
}

.appt-card-border-l {
    border-left-width: 4px;
    border-left-style: solid;
}

.appt-card:hover {
    box-shadow: var(--shadow-sm);
}

.appt-date-box {
    min-width: 62px;
    height: 68px;
    border-radius: var(--radius-sm);
    background: var(--brand-rose-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.appt-day {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--brand-dark);
    line-height: 1;
}

.appt-mon {
    font-size: .7rem;
    font-weight: 700;
    color: var(--brand-rose);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.appt-info {
    flex: 1;
}

.appt-info h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.appt-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.appt-meta span {
    font-size: .8rem;
    color: var(--brand-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.appt-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-left: auto;
    flex-shrink: 0;
}

/* ============================================================
   PAGE HEADERS (inner pages)
   ============================================================ */
.page-banner {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2d2520 100%);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-banner h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.page-banner p {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, .65);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--brand-rose);
}

.footer-desc {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: .2s;
}

.social-btn:hover {
    background: var(--brand-rose);
    color: #fff;
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    transition: .2s;
}

.footer-links a:hover {
    color: var(--brand-rose);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   UTILITIES
   ============================================================ */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--brand-muted);
}

.text-rose {
    color: var(--brand-rose);
}

.text-dark {
    color: var(--brand-dark);
}

.mt-auto {
    margin-top: auto;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: .5rem;
}

.gap-3 {
    gap: .75rem;
}

.gap-4 {
    gap: 1rem;
}

.w-full {
    width: 100%;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: .25rem;
}

.mb-2 {
    margin-bottom: .5rem;
}

.mb-3 {
    margin-bottom: .75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-line);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-rose-l);
}