/* ================================================================
   Wig Galore – Stylesheet v2
   Refined dusty-rose + warm neutral palette. High contrast.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
    /* Brand */
    --blush:        #D4909A;
    --blush-light:  #EABEC4;
    --blush-pale:   #F9EEF0;
    --blush-deep:   #B8606C;
    --mauve:        #8C4A54;
    --mauve-dark:   #6B3039;
    --rose:         #C4747E;

    /* Neutrals */
    --cream:        #F7F3EF;
    --warm-white:   #FFFCFA;
    --sand:         #E2D8D0;
    --sand-mid:     #C8B9AF;
    --taupe:        #7A6A62;
    --bark:         #5C4E48;
    --charcoal:     #2E2420;
    --ink:          #1A1210;

    /* Semantic */
    --success:      #3D7A5A;
    --success-bg:   #D0EAD9;
    --success-border:#A8D5B8;
    --danger:       #A63030;
    --danger-bg:    #F4DADA;
    --danger-border:#D4A0A0;
    --warning:      #8A5E1A;
    --warning-bg:   #F5E8C8;
    --warning-border:#D4B87A;
    --info-bg:      #EAF2FB;
    --info-border:  #A8CBEC;
    --info-text:    #1A5288;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', 'Segoe UI', sans-serif;

    /* Radii */
    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  16px;
    --r-xl:  22px;

    /* Shadow */
    --shadow-sm: 0 1px 4px rgba(30,10,10,.08);
    --shadow-md: 0 4px 16px rgba(30,10,10,.10);
    --shadow-lg: 0 8px 32px rgba(30,10,10,.13);

    --transition: .18s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--mauve); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blush-deep); }
img { max-width: 100%; display: block; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: var(--shadow-sm);
}
.navbar-brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; }
.brand-icon::after { content: ''; display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--warm-white); }
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-main { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--mauve-dark); letter-spacing: .02em; }
.brand-sub  { font-size: .62rem; color: var(--taupe); letter-spacing: .14em; text-transform: uppercase; }
.navbar-nav { display: flex; align-items: center; gap: .2rem; list-style: none; }
.navbar-nav a {
    padding: .4rem .9rem;
    border-radius: var(--r-md);
    font-size: .84rem;
    font-weight: 500;
    color: var(--bark);
    transition: all var(--transition);
    letter-spacing: .01em;
}
.navbar-nav a:hover, .navbar-nav a.active { background: var(--blush-pale); color: var(--mauve-dark); text-decoration: none; }
.navbar-nav .nav-cta {
    background: var(--mauve);
    color: var(--warm-white) !important;
    border-radius: 20px;
    padding: .4rem 1.1rem;
    font-weight: 600;
    font-size: .82rem;
}
.navbar-nav .nav-cta:hover { background: var(--mauve-dark); }
.nav-toggle { display: none; background: none; border: 1px solid var(--sand); border-radius: var(--r-sm); padding: .35rem .55rem; font-size: 1rem; color: var(--bark); cursor: pointer; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(160deg, #F5E8EB 0%, var(--cream) 55%, var(--warm-white) 100%);
    padding: 96px 2.5rem 80px;
    text-align: center;
    border-bottom: 1px solid var(--sand);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,144,154,.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-eyebrow { font-size: .72rem; color: var(--blush-deep); letter-spacing: .28em; text-transform: uppercase; margin-bottom: .9rem; font-weight: 600; }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-style: italic;
    color: var(--mauve-dark);
    line-height: 1.08;
    margin-bottom: 1rem;
    letter-spacing: .01em;
}
.hero p { font-size: 1.05rem; color: var(--taupe); max-width: 500px; margin: 0 auto 2.2rem; font-weight: 400; }
.hero-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem 1.8rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .03em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1;
}
.btn-primary { background: var(--mauve); color: var(--warm-white); }
.btn-primary:hover { background: var(--mauve-dark); color: var(--warm-white); text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(140,74,84,.35); }
.btn-outline { background: transparent; color: var(--mauve); border: 1.5px solid var(--blush-light); }
.btn-outline:hover { border-color: var(--mauve); background: var(--blush-pale); color: var(--mauve-dark); text-decoration: none; }
.btn-sm { padding: .45rem 1.1rem; font-size: .78rem; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #8a2828; color: #fff; text-decoration: none; }
.btn-success { background: var(--success); color: #fff; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ── Section layout ──────────────────────────────────────────── */
.section { padding: 80px 2.5rem; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-eyebrow { font-size: .7rem; color: var(--blush-deep); letter-spacing: .28em; text-transform: uppercase; margin-bottom: .5rem; font-weight: 600; }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); font-style: italic; color: var(--mauve-dark); margin-bottom: .35rem; }
.section-sub { font-size: .88rem; color: var(--taupe); margin-bottom: 2.5rem; }
.page-header { padding: 48px 2.5rem 32px; background: var(--warm-white); border-bottom: 1px solid var(--sand); }
.page-header-inner { max-width: 1120px; margin: 0 auto; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 2.5rem; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* ── Service Cards ───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.service-card {
    background: var(--warm-white);
    border: 1.5px solid var(--sand);
    border-radius: var(--r-lg);
    padding: 1.6rem 1.5rem;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blush-light); }
.service-card.selected { border-color: var(--mauve); background: var(--blush-pale); box-shadow: 0 0 0 3px rgba(140,74,84,.12); }
.service-marker { width: 32px; height: 3px; background: var(--blush); border-radius: 2px; margin-bottom: 1rem; transition: background var(--transition); }
.service-card:hover .service-marker, .service-card.selected .service-marker { background: var(--mauve); }
.service-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--charcoal); margin-bottom: .3rem; font-weight: 600; }
.service-price { font-size: 1.35rem; font-weight: 700; color: var(--mauve-dark); margin-bottom: .2rem; letter-spacing: -.02em; }
.service-duration { font-size: .75rem; color: var(--taupe); letter-spacing: .04em; text-transform: uppercase; }

/* ── Product Grid ─────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.product-card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-img-wrap { width: 100%; aspect-ratio: 4/3; background: var(--blush-pale); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { width: 48px; height: 48px; border-radius: 50%; background: var(--blush-light); display: flex; align-items: center; justify-content: center; }
.product-img-placeholder::after { content: ''; display: block; width: 16px; height: 16px; border-radius: 50%; background: var(--warm-white); }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--mauve); color: #fff; font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase; }
.badge-out { background: var(--bark); }
.product-info { padding: 1.1rem 1.2rem 1.3rem; }
.product-cat { font-size: .68rem; color: var(--taupe); text-transform: uppercase; letter-spacing: .14em; margin-bottom: .35rem; font-weight: 600; }
.product-name { font-family: var(--font-display); font-size: 1.08rem; color: var(--charcoal); margin-bottom: .4rem; line-height: 1.3; font-weight: 600; }
.product-desc { font-size: .8rem; color: var(--taupe); margin-bottom: .75rem; line-height: 1.55; }
.product-price { font-size: 1.18rem; font-weight: 700; color: var(--mauve-dark); letter-spacing: -.01em; }

/* ── Filter bar ──────────────────────────────────────────────── */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
    padding: .38rem 1rem;
    border-radius: 20px;
    border: 1.5px solid var(--sand-mid);
    background: transparent;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    color: var(--bark);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .02em;
}
.filter-btn:hover, .filter-btn.active { background: var(--mauve); border-color: var(--mauve); color: #fff; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-wrap { background: var(--warm-white); border: 1px solid var(--sand); border-radius: var(--r-lg); padding: 2.2rem 2.4rem; }
.form-group { margin-bottom: 1.15rem; }
.form-label { display: block; font-size: .78rem; font-weight: 600; color: var(--bark); margin-bottom: .38rem; letter-spacing: .04em; text-transform: uppercase; }
.form-control {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--sand-mid);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--charcoal);
    background: var(--warm-white);
    transition: border var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--mauve); box-shadow: 0 0 0 3px rgba(140,74,84,.14); }
.form-control::placeholder { color: var(--sand-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-text { font-size: .73rem; color: var(--taupe); margin-top: .25rem; }
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C4E48' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 90px; }

/* ── Alerts ─────────────────────────────────────────────────── */
.alert { padding: .85rem 1.1rem; border-radius: var(--r-md); margin-bottom: 1.1rem; font-size: .87rem; font-weight: 500; border-width: 1px; border-style: solid; }
.alert-success { background: var(--success-bg); color: #1F4D35; border-color: var(--success-border); }
.alert-danger  { background: var(--danger-bg);  color: #6B1A1A; border-color: var(--danger-border); }
.alert-warning { background: var(--warning-bg); color: #5A3A0A; border-color: var(--warning-border); }
.alert-info    { background: var(--info-bg);    color: var(--info-text); border-color: var(--info-border); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge { display: inline-block; padding: .22rem .65rem; border-radius: 10px; font-size: .7rem; letter-spacing: .05em; font-weight: 700; text-transform: uppercase; }
.badge-confirmed  { background: var(--success-bg); color: var(--success); }
.badge-cancelled  { background: var(--danger-bg);  color: var(--danger); }
.badge-rescheduled{ background: var(--warning-bg); color: var(--warning); }
.badge-completed  { background: var(--sand); color: var(--bark); }

/* ── Booking progress steps ──────────────────────────────────── */
.steps { display: flex; align-items: flex-start; margin-bottom: 2.5rem; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.step-line { position: absolute; top: 15px; left: 50%; width: 100%; height: 2px; background: var(--sand); z-index: 0; transition: background var(--transition); }
.step:last-child .step-line { display: none; }
.step-circle {
    width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--sand); color: var(--bark); font-size: .78rem; font-weight: 700;
    position: relative; z-index: 1; border: 2px solid var(--sand-mid); transition: all var(--transition);
}
.step.done .step-circle   { background: var(--mauve); color: #fff; border-color: var(--mauve); }
.step.active .step-circle { background: var(--mauve-dark); color: #fff; border-color: var(--mauve-dark); }
.step.done .step-line, .step.active .step-line { background: var(--blush-light); }
.step-label { font-size: .7rem; color: var(--taupe); margin-top: .45rem; letter-spacing: .04em; text-align: center; font-weight: 500; text-transform: uppercase; }
.step.active .step-label { color: var(--mauve-dark); font-weight: 700; }

/* ── Calendar — Teams-style ──────────────────────────────────── */
.calendar-wrap {
    background: var(--warm-white);
    border: 1.5px solid var(--sand);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.4rem;
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand);
}
.cal-month { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--mauve-dark); font-weight: 600; letter-spacing: .01em; }
.cal-nav {
    width: 32px; height: 32px; border-radius: 50%;
    background: transparent; border: 1.5px solid var(--sand-mid);
    cursor: pointer; color: var(--bark); font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); font-weight: 700;
}
.cal-nav:hover { border-color: var(--mauve); color: var(--mauve); background: var(--blush-pale); }
.cal-body { padding: 1rem 1.2rem 1.2rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day-header {
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    color: var(--taupe);
    padding: .35rem 0;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--transition);
    position: relative;
    user-select: none;
    color: var(--charcoal);
}
.cal-day:hover:not(.disabled):not(.blocked) { background: var(--blush-pale); border-color: var(--blush-light); color: var(--mauve-dark); }
.cal-day.today { color: var(--mauve-dark); font-weight: 800; }
.cal-day.today::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--mauve); }
.cal-day.selected { background: var(--mauve); color: #fff; border-color: var(--mauve); font-weight: 700; }
.cal-day.selected::after { display: none; }
.cal-day.disabled { color: var(--sand-mid); cursor: default; }
.cal-day.blocked { background: var(--danger-bg); color: var(--danger); cursor: not-allowed; border-color: var(--danger-border); font-weight: 600; }
.cal-day.has-booking::before { content: ''; position: absolute; top: 3px; right: 3px; width: 5px; height: 5px; border-radius: 50%; background: var(--blush-deep); }
.cal-count { font-size: .6rem; font-weight: 700; background: var(--mauve); color: #fff; border-radius: 6px; padding: 1px 4px; margin-top: 1px; }

/* ── Time slots ─────────────────────────────────────────────── */
.slots-header {
    padding: .9rem 1.4rem .6rem;
    border-top: 1px solid var(--sand);
    background: var(--cream);
}
.slots-header p { font-size: .78rem; font-weight: 600; color: var(--bark); text-transform: uppercase; letter-spacing: .06em; }
.slots-header strong { color: var(--mauve-dark); }
.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
    padding: .8rem 1.2rem 1.2rem;
    background: var(--warm-white);
}
.time-slot {
    padding: .58rem .3rem;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--sand-mid);
    background: var(--warm-white);
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    color: var(--charcoal);
    letter-spacing: .01em;
}
.time-slot:hover:not(.unavailable) { border-color: var(--mauve); background: var(--blush-pale); color: var(--mauve-dark); }
.time-slot.selected { background: var(--mauve); border-color: var(--mauve); color: #fff; }
.time-slot.unavailable { background: var(--cream); color: var(--sand-mid); cursor: not-allowed; border-color: var(--sand); font-weight: 500; }
.availability-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.2rem;
    font-size: .82rem;
    font-weight: 500;
    border-top: 1px solid var(--sand);
}
.availability-badge.available { background: var(--success-bg); color: #1F4D35; border-top-color: var(--success-border); }
.availability-badge.unavailable { background: var(--danger-bg); color: #6B1A1A; border-top-color: var(--danger-border); }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.avail-dot.yes { background: var(--success); }
.avail-dot.no  { background: var(--danger); }

/* ── Summary panel ───────────────────────────────────────────── */
.summary-panel { background: var(--blush-pale); border: 1.5px solid var(--blush-light); border-radius: var(--r-lg); padding: 1.2rem 1.4rem; margin-bottom: 1.2rem; }
.summary-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid rgba(212,144,154,.25); font-size: .875rem; }
.summary-row:last-child { border: none; }
.summary-label { color: var(--taupe); font-weight: 500; }
.summary-val { font-weight: 600; color: var(--charcoal); text-align: right; max-width: 60%; }
.summary-total .summary-val { font-size: 1.1rem; color: var(--mauve-dark); font-family: var(--font-display); font-style: italic; }

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner { background: var(--warm-white); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); padding: 72px 2.5rem; text-align: center; }

/* ── Social links ────────────────────────────────────────────── */
.social-links { display: flex; gap: .55rem; flex-wrap: wrap; }
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .42rem .9rem;
    border-radius: 20px;
    font-size: .77rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: 1.5px solid;
    letter-spacing: .02em;
}
.social-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.social-wa  { background: #E8F6EE; color: #1A5C35; border-color: #A8D5B8; }
.social-wa:hover  { background: #1FAD53; color: #fff; border-color: #1FAD53; text-decoration: none; }
.social-ig  { background: var(--blush-pale); color: var(--mauve-dark); border-color: var(--blush-light); }
.social-ig:hover  { background: var(--mauve); color: #fff; border-color: var(--mauve); text-decoration: none; }
.social-fb  { background: #EAF0FB; color: #1A3A80; border-color: #B0C4EC; }
.social-fb:hover  { background: #1877F2; color: #fff; border-color: #1877F2; text-decoration: none; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #1E1614; padding: 64px 2.5rem 0; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--blush-light); display: block; margin-bottom: .5rem; letter-spacing: .02em; }
.footer-tagline { font-size: .8rem; color: #7A6A62; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-family: var(--font-display); font-size: .95rem; font-style: italic; color: var(--blush-light); margin-bottom: .85rem; letter-spacing: .02em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .38rem; }
.footer-col ul li a { font-size: .8rem; color: #7A6A62; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--blush-light); text-decoration: none; }
.footer-contact-text { font-size: .8rem; color: #7A6A62; margin-bottom: .6rem; }
.footer-bottom { max-width: 1120px; margin: 0 auto; padding: 1.4rem 0; text-align: center; font-size: .75rem; color: #5A4A46; }

/* ── ======================================================= ── */
/* ── ADMIN STYLES                                            ── */
/* ── ======================================================= ── */

.admin-body { background: #F0EBE8; }

.admin-nav {
    background: #1E1614;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.admin-brand { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--blush-light); text-decoration: none; letter-spacing: .02em; display: flex; align-items: center; gap: .6rem; }
.admin-brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blush); }
.admin-nav-links { display: flex; gap: .3rem; list-style: none; align-items: center; }
.admin-nav-links a { color: rgba(255,255,255,.55); font-size: .8rem; padding: .35rem .85rem; border-radius: var(--r-md); transition: all var(--transition); text-decoration: none; font-weight: 500; }
.admin-nav-links a:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }

.admin-layout { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - 60px); }

.admin-sidebar {
    background: var(--warm-white);
    border-right: 1px solid var(--sand);
    padding: 1.5rem 0;
}
.sidebar-group { margin-bottom: 1.8rem; }
.sidebar-group-title {
    font-size: .64rem;
    font-weight: 800;
    color: var(--sand-mid);
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: .25rem 1.4rem .6rem;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .58rem 1.4rem;
    color: var(--bark);
    font-size: .84rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    border-left: 3px solid transparent;
    margin: 1px 0;
}
.sidebar-link:hover { background: var(--blush-pale); color: var(--mauve-dark); text-decoration: none; }
.sidebar-link.active { background: var(--blush-pale); color: var(--mauve-dark); border-left-color: var(--mauve); font-weight: 600; }
.sidebar-icon { width: 16px; text-align: center; color: var(--sand-mid); flex-shrink: 0; }
.sidebar-link.active .sidebar-icon, .sidebar-link:hover .sidebar-icon { color: var(--mauve); }

.admin-main { padding: 2.2rem 2.4rem; background: #F0EBE8; }
.admin-page-title { font-family: var(--font-display); font-size: 1.7rem; font-style: italic; color: var(--mauve-dark); margin-bottom: .2rem; }
.admin-page-sub { font-size: .82rem; color: var(--taupe); margin-bottom: 2rem; font-weight: 400; }

/* Stats */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--warm-white); border: 1px solid var(--sand); border-radius: var(--r-lg); padding: 1.3rem 1.5rem; }
.stat-label { font-size: .68rem; font-weight: 700; color: var(--taupe); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.stat-value { font-size: 1.85rem; font-weight: 800; color: var(--mauve-dark); letter-spacing: -.03em; line-height: 1; }
.stat-sub { font-size: .75rem; color: var(--taupe); margin-top: .3rem; }
.stat-bar { height: 3px; background: var(--sand); border-radius: 2px; margin-top: .8rem; }
.stat-bar-fill { height: 100%; background: var(--blush); border-radius: 2px; }

/* Admin cards */
.admin-card { background: var(--warm-white); border: 1px solid var(--sand); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; margin-bottom: 1.2rem; }
.admin-card-title { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--mauve-dark); margin-bottom: 1rem; font-weight: 600; }

/* Table */
.table-wrap { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--sand); }
table { width: 100%; border-collapse: collapse; font-size: .84rem; }
thead tr { background: #F7F2EF; }
th { padding: .7rem 1rem; color: var(--bark); font-weight: 700; text-align: left; border-bottom: 1.5px solid var(--sand); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
td { padding: .8rem 1rem; border-bottom: 1px solid var(--sand); color: var(--charcoal); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #FBF7F5; }

/* Action buttons */
.action-btn {
    padding: .28rem .75rem; border-radius: var(--r-sm); font-size: .74rem; font-weight: 600;
    border: 1.5px solid; cursor: pointer; font-family: var(--font-body);
    transition: all var(--transition); text-decoration: none; display: inline-block; letter-spacing: .02em;
}
.action-btn:hover { text-decoration: none; opacity: .85; transform: translateY(-1px); }
.action-edit    { background: var(--blush-pale); color: var(--mauve-dark); border-color: var(--blush-light); }
.action-delete  { background: var(--danger-bg); color: var(--danger); border-color: var(--danger-border); }
.action-view    { background: #F0EBE8; color: var(--bark); border-color: var(--sand-mid); }
.action-complete{ background: var(--success-bg); color: var(--success); border-color: var(--success-border); }

/* Image upload */
.img-preview { width: 120px; height: 90px; object-fit: cover; border-radius: var(--r-md); border: 1.5px solid var(--sand-mid); margin-top: .5rem; display: none; }
.img-preview.show { display: block; }
.img-placeholder { width: 120px; height: 90px; background: var(--blush-pale); border-radius: var(--r-md); border: 1.5px dashed var(--blush-light); display: flex; align-items: center; justify-content: center; margin-top: .5rem; }
.img-placeholder-inner { width: 32px; height: 32px; border-radius: 50%; background: var(--blush-light); }

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; }
.align-center { align-items: center; } .justify-between { justify-content: space-between; } .flex-wrap { flex-wrap: wrap; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}
@media (max-width: 768px) {
    .navbar { padding: 0 1.2rem; }
    .navbar-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--sand); padding: 1rem 1.2rem; gap: .2rem; box-shadow: var(--shadow-md); }
    .navbar-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .time-grid { grid-template-columns: repeat(3, 1fr); }
    .hero { padding: 72px 1.5rem 60px; }
    .section { padding: 60px 1.5rem; }
}
@media (max-width: 480px) {
    .time-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-links { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fade-in { animation: fadeIn .3s ease; }

/* ================================================================
   ADDITIONS v3 — Carousel, Appointment cards, Mobile admin,
   Hamburger menu, Favicon brand dot
   ================================================================ */

/* ── Brand dot in navbar ──────────────────────────────────────── */
.brand-icon {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blush) 0%, var(--mauve) 100%);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.brand-icon::after {
    content: '';
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
}

/* ── Hamburger menu ───────────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px; height: 38px;
    background: none;
    border: 1.5px solid var(--sand-mid);
    border-radius: var(--r-sm);
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 18px; height: 1.8px;
    background: var(--bark);
    border-radius: 2px;
    transition: all .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ── Product Carousel ─────────────────────────────────────────── */
.carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.carousel-track-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: var(--r-lg);
}
.carousel-track {
    display: flex;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.carousel-slide {
    flex-shrink: 0;
    padding: .4rem;
}
.carousel-btn {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--sand-mid);
    background: var(--warm-white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    color: var(--bark);
    box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { border-color: var(--mauve); color: var(--mauve); background: var(--blush-pale); }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 1.2rem;
}
.carousel-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: none;
    background: var(--sand-mid);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.carousel-dot.active { background: var(--mauve); transform: scale(1.3); }

/* ── Appointment cards ────────────────────────────────────────── */
.appt-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1.1rem;
    background: var(--warm-white);
    border: 1.5px solid var(--sand);
    border-radius: var(--r-md);
    text-decoration: none;
    transition: all var(--transition);
}
.appt-card:hover {
    border-color: var(--blush-light);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    text-decoration: none;
}
.appt-card-left { flex: 1; min-width: 0; }
.appt-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.appt-duration { font-size: .73rem; color: var(--taupe); text-transform: uppercase; letter-spacing: .06em; }
.appt-price { font-size: .95rem; font-weight: 700; color: var(--mauve-dark); white-space: nowrap; }

/* ── FULL MOBILE ADMIN ────────────────────────────────────────── */

/* Top nav collapses nicely */
@media (max-width: 900px) {
    .admin-nav { padding: 0 1.2rem; }
    .admin-nav-links { gap: .2rem; }
    .admin-nav-links a { font-size: .75rem; padding: .3rem .6rem; }

    /* Sidebar becomes a horizontal tab bar at top */
    .admin-layout { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
    .admin-sidebar {
        display: block;
        border-right: none;
        border-bottom: 1px solid var(--sand);
        padding: 0;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .sidebar-group { display: inline-flex; margin: 0; padding: .5rem .4rem; }
    .sidebar-group-title { display: none; }
    .sidebar-link {
        display: inline-flex;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 0;
        padding: .55rem .8rem;
        font-size: .78rem;
        white-space: nowrap;
        margin: 0;
    }
    .sidebar-link.active {
        background: var(--blush-pale);
        border-bottom-color: var(--mauve);
        border-left: none;
    }
    .sidebar-icon { display: none; }

    /* Admin main gets proper padding */
    .admin-main { padding: 1.4rem 1rem; }
    .admin-page-title { font-size: 1.3rem; }

    /* Stats wrap to 2 cols on tablet */
    .stat-grid { grid-template-columns: 1fr 1fr; }

    /* Tables scroll horizontally */
    .table-wrap { border-radius: var(--r-sm); }
    td, th { font-size: .78rem; padding: .6rem .7rem; }

    /* Admin cards full width */
    .admin-card { padding: 1.1rem 1rem; }

    /* Two-col grids collapse */
    div[style*="grid-template-columns:1fr 1fr"] {
        display: block !important;
    }
    div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }
}

@media (max-width: 600px) {
    /* Stat grid 2 cols on phone */
    .stat-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
    .stat-value { font-size: 1.4rem; }

    /* Action buttons stack */
    .d-flex.gap-1 { flex-wrap: wrap; }
    .action-btn { font-size: .7rem; }

    /* Admin nav — hide secondary links */
    .admin-nav-links li:not(:last-child) { display: none; }

    /* Table — hide less important cols on mobile */
    table th:nth-child(3),
    table td:nth-child(3),
    table th:nth-child(6),
    table td:nth-child(6) { display: none; }
}

/* ── Homepage appointments section — responsive ────────────────── */
@media (max-width: 860px) {
    /* Stack the two-col appointments layout */
    #appointments .section-inner > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* ── Carousel responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
    .carousel-btn { display: none; }
    .carousel-outer { gap: 0; }
}

/* ── Navbar mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .navbar-nav {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--warm-white);
        border-bottom: 1px solid var(--sand);
        padding: .8rem 1.2rem 1.2rem;
        flex-direction: column;
        gap: .15rem;
        box-shadow: var(--shadow-md);
        z-index: 199;
    }
    .navbar-nav.open { display: flex; }
    .navbar-nav a { padding: .7rem 1rem; border-radius: var(--r-md); }
    .navbar-nav .nav-cta { text-align: center; margin-top: .4rem; }
}
