:root {
    --primary-color: #C9A227;
    --secondary-color: #1C1C1C;
    --text-color: #1C1C1C;
    --text-light: #666666;
    --bg-color: #F5F0E8;
    --bg-light: #ffffff;
    --border-color: #C8B8A5;
    --white: #ffffff;
    
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-color);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: #b08d1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.top-bar-msg i {
    margin-right: 6px;
    color: var(--primary-color);
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: var(--transition);
}

.main-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.35rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--secondary-color);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.mobile-menu-toggle:hover {
    background: var(--bg-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
    display: block;
    background: transparent;
}

.logo-img-footer {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name,
.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--secondary-color);
    margin: 0;
}

.logo .subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: var(--text-light);
    text-transform: uppercase;
    font-family: var(--font-main);
    font-weight: 500;
}

.search-bar {
    flex: 1;
    max-width: 480px;
    position: relative;
    display: flex;
}

.search-bar input {
    width: 100%;
    padding: 11px 44px 11px 18px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    background-color: var(--bg-color);
    min-height: 44px;
}

.search-bar input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.search-bar button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.search-bar button:hover {
    color: var(--primary-color);
    background: rgba(201, 162, 39, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-book-btn {
    padding: 10px 18px !important;
    font-size: 0.78rem !important;
    border-radius: 999px !important;
    min-height: 40px;
}

.action-icon {
    font-size: 1.15rem;
    position: relative;
    color: var(--secondary-color);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.action-icon:hover {
    color: var(--primary-color);
    background: var(--bg-color);
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count[hidden] {
    display: none !important;
}

/* Desktop nav */
.desktop-nav {
    border-top: 1px solid var(--border-color);
}

.nav-links {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    padding: 12px 20px;
}

.nav-links li a {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.nav-active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.sale-link {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

/* Mobile drawer */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 88vw);
    height: 100%;
    background: #fff;
    z-index: 310;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

body.nav-open .mobile-drawer {
    transform: translateX(0);
}

.mobile-drawer[hidden] {
    display: flex !important;
    visibility: hidden;
}

body.nav-open .mobile-drawer[hidden] {
    visibility: visible;
}

.mobile-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-drawer-head .logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.mobile-drawer-head button {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-color);
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
}

.mobile-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
}

.mobile-drawer-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 52px;
}

.mobile-drawer-nav a i {
    width: 22px;
    color: var(--primary-color);
    text-align: center;
}

.mobile-drawer-nav a.mobile-cta {
    margin: 8px 16px 16px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    justify-content: center;
}

.mobile-drawer-nav a.mobile-cta i {
    color: var(--primary-color);
}

.mobile-drawer-foot {
    padding: 16px 20px 28px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-color);
}

.mobile-drawer-foot p {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.4;
}

.drawer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hide-mobile {
    display: inline;
}

body.nav-open {
    overflow: hidden;
}

/* Hero Section + hair slideshow */
.hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-slideshow {
    background: #111;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(100deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 640px;
    color: var(--white);
    animation: fadeIn 1s ease-out;
}

.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.7);
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.hero-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-nav:hover {
    background: rgba(201, 162, 39, 0.9);
}

.hero-prev { left: 14px; }
.hero-next { right: 14px; }

@media (max-width: 640px) {
    .hero-nav { display: none; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Brand strip */
.brand-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 16px;
    overflow: hidden;
}

.brand-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    align-items: center;
}

.brand-strip-inner span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.85;
}

/* Categories Section */
.categories {
    padding: 64px 20px;
    background-color: var(--bg-color);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

@media (min-width: 1100px) {
    .category-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.category-card {
    background-color: var(--white);
    border-radius: 14px;
    padding: 0 0 18px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.cat-image {
    width: 100%;
    height: 140px;
    margin: 0 0 14px;
    background-color: #faf8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.cat-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    display: block;
}

.category-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-card p {
    font-size: 0.78rem;
    color: var(--text-light);
    padding: 0 10px;
}

/* Products Section */
.products-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.view-all {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

.view-all:hover {
    color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

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

.product-image {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: #f0f0f0;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    background: #faf8f5;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.sale {
    background-color: var(--primary-color);
}

.quick-add {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: var(--transition);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.quick-add:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.brand {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.product-title {
    font-size: 0.98rem;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title .size {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85em;
}

.product-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    margin-right: 6px;
}

.quick-add.added {
    background: #2e7d32 !important;
    color: #fff !important;
    opacity: 1 !important;
    transform: none !important;
}

.product-card:hover .quick-add,
.quick-add {
    opacity: 1;
    transform: none;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 64px 20px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-logo .logo-mark {
    background: rgba(255,255,255,0.08);
}

.footer-logo .logo-img {
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.footer-logo h2 {
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-col p {
    color: #aaa;
    font-size: 0.88rem;
    margin-bottom: 18px;
    max-width: 320px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    font-family: var(--font-main);
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 3px;
}

.newsletter-form {
    display: flex;
    margin-top: 16px;
    max-width: 280px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    background-color: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 8px 0 0 8px;
    outline: none;
    font-family: var(--font-main);
    min-height: 44px;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 12px 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: var(--transition);
    min-height: 44px;
}

.newsletter-form button:hover {
    background-color: #b08d1f;
}

/* Tech Aid credit (same pattern as bmentertainment.com.au) */
.footer-powered {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 0 4px;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-powered {
        justify-content: flex-start;
    }
}

.tech-aid-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 1.15rem 0.7rem 0.7rem;
    border-radius: 999px;
    border: 1.5px solid rgba(62, 187, 0, 0.45);
    background: #fff;
    text-decoration: none;
    color: #3ebb00;
    box-shadow: 0 4px 14px rgba(62, 187, 0, 0.14);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-aid-badge:hover,
.tech-aid-badge:focus-visible {
    background: rgba(62, 187, 0, 0.08);
    border-color: #3ebb00;
    box-shadow: 0 10px 28px rgba(62, 187, 0, 0.22);
    transform: translateY(-1px);
    color: #3ebb00;
}

.tech-aid-badge__mark {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.tech-aid-badge__text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    line-height: 1.15;
    text-align: left;
}

.tech-aid-badge__kicker {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3ebb00;
    opacity: 0.9;
    font-family: var(--font-main);
}

.tech-aid-badge__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #3ebb00;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 0 28px;
    color: #888;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 8px;
}

.footer-bottom a {
    color: #ddd;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

.footer-credits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.65rem;
    align-items: center;
}

.footer-credits__sep {
    opacity: 0.4;
}

.footer-credits__tech-aid {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #3ebb00 !important;
    font-weight: 600;
}

.footer-credits__tech-aid img {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 50%;
}

.footer-credits__tech-aid strong {
    font-weight: 800;
    color: #3ebb00;
}

.footer-credits__tech-aid:hover,
.footer-credits__tech-aid:hover strong {
    color: #6fd63a !important;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.footer-legal a {
    color: #aaa;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-credits {
        justify-content: flex-end;
    }
}

/* Shop page */
.shop-page {
    padding: 28px 16px 64px;
    background: var(--bg-color);
}

.shop-layout {
    display: grid;
    gap: 28px;
}

@media (min-width: 900px) {
    .shop-layout {
        grid-template-columns: 260px 1fr;
        align-items: start;
    }
}

.shop-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.shop-sub {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 22px;
}

.filter-block {
    margin-bottom: 22px;
}

.filter-block h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    font-family: var(--font-main);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    min-height: 36px;
}

.chip.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.shop-toolbar select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: var(--font-main);
    min-height: 44px;
    background: #fff;
}

.bag-list {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    font-size: 0.85rem;
}

.bag-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bag-row button {
    border: none;
    background: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
    width: 32px;
    height: 32px;
}

.bag-total {
    margin-top: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.bag-checkout {
    width: 100%;
    margin-top: 10px;
}

.muted {
    color: var(--text-light);
    font-size: 0.85rem;
}

.upsell-img {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #f3eee6;
}

.upsell-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #faf8f5;
    padding: 6px;
}

.upsell-body .size {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        gap: 12px;
    }
    
    .nav-links {
        gap: 6px 18px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .search-bar {
        display: none;
    }

    .header-book-btn {
        display: none;
    }

    .hide-mobile {
        display: none !important;
    }
    
    .hero {
        min-height: 420px;
        height: 58vh;
        padding: 0 6%;
    }

    .hero-content h2 {
        font-size: 2.15rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 12px;
    }

    .product-desc {
        display: none;
    }

    .quick-add {
        opacity: 1;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .logo .subtitle {
        display: none;
    }

    .logo-name {
        font-size: 1.05rem;
    }

    .top-bar {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Header book CTA */
.header-book-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 12px !important;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-secondary {
    border-color: var(--secondary-color);
    color: var(--white);
    background: var(--secondary-color);
}

.hero-secondary:hover {
    background: #fff;
    color: var(--secondary-color);
}

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

/* Booking Section — Fresha-style */
.booking-section {
    position: relative;
    z-index: 1;
    isolation: isolate;
    padding: 72px 20px 100px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-color) 100%);
    overflow: visible;
}

.booking-intro .section-title {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.booking-intro .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.booking-subtitle {
    max-width: 640px;
    margin: 0 auto 36px;
    color: var(--text-light);
    font-size: 1rem;
    padding: 0 4px;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
    width: 100%;
    min-width: 0;
}

@media (min-width: 900px) {
    .booking-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 24px;
    }
    .booking-summary-panel {
        order: 2;
        position: sticky;
        top: 100px;
        z-index: 2;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    .booking-container {
        order: 1;
        min-width: 0;
    }
}

.booking-container {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px 16px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .booking-container {
        padding: 36px 40px 40px;
    }
}

/* Live summary panel */
.booking-summary-panel {
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.booking-summary-panel h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.summary-empty {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}

.summary-lines {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-lines li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 8px;
}

.summary-lines li span {
    color: rgba(255,255,255,0.6);
}

.summary-lines li strong {
    text-align: right;
    font-weight: 600;
    max-width: 60%;
}

.summary-lines .sum-price strong,
.summary-lines .sum-deposit strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.summary-policy-chip {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 10px;
    padding: 12px;
    font-size: 0.8rem;
    line-height: 1.35;
    color: #f5e6b8;
}

.summary-policy-chip i {
    color: var(--primary-color);
    margin-top: 2px;
}

/* Step indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    -webkit-overflow-scrolling: touch;
}

.step-indicator .step {
    flex: 1;
    min-width: 64px;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    background: #fff;
}

.step.active .step-num {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.step.active {
    color: var(--secondary-color);
}

.step.current .step-label {
    color: var(--primary-color);
}

@media (max-width: 560px) {
    .step-label {
        display: none;
    }
    .step.current .step-label,
    .step.active.current .step-label {
        display: block;
        font-size: 0.65rem;
    }
}

.form-step {
    display: none;
    animation: fadeIn 0.35s ease-out;
}

.form-step.active {
    display: block;
}

.form-step h4 {
    margin-bottom: 8px;
    font-size: 1.45rem;
    text-align: left;
}

.step-hint {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: #fff;
    min-height: 48px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 520px) {
    .options-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.option-card {
    background-color: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--secondary-color);
    min-height: 48px;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.option-card.active {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Category tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.cat-tab {
    flex: 0 0 auto;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    color: var(--secondary-color);
    white-space: nowrap;
    transition: var(--transition);
}

.cat-tab i {
    margin-right: 4px;
    color: var(--primary-color);
}

.cat-tab.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.cat-tab.active i {
    color: var(--primary-color);
}

.recommended-service-banner {
    background-color: rgba(201, 162, 39, 0.12);
    color: #8a6d12;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: left;
    font-family: var(--font-main);
    color: inherit;
}

.service-card:hover {
    border-color: var(--primary-color);
}

.service-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.25);
    background: #fffdf6;
}

.rec-pill {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.service-info h5 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.service-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.svc-meta {
    font-size: 0.78rem;
    color: var(--text-light);
}

.service-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Add-ons */
.addons-block {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}

.addons-block h5 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-chip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    font-size: 0.9rem;
}

.addon-chip.active {
    border-color: var(--primary-color);
    background: #fffdf6;
}

.addon-chip em {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* Stylists */
.stylist-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stylist-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    transition: var(--transition);
    width: 100%;
}

.stylist-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}

.stylist-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary-color);
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.stylist-card strong {
    display: block;
    font-size: 1rem;
}

.stylist-card span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.match-tag {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.slots-label {
    font-weight: 500;
    margin: 18px 0 10px;
    font-size: 0.9rem;
}

.no-slots {
    color: var(--text-light);
    padding: 16px;
    background: var(--bg-color);
    border-radius: 10px;
}

.time-slots {
    grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 520px) {
    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Aftercare upsell */
.upsell-kit-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, rgba(201,162,39,0.12), rgba(201,162,39,0.04));
    border: 1px solid rgba(201,162,39,0.35);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.upsell-kit-banner p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 2px 0 0;
}

.product-upsell-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 600px) {
    .product-upsell-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.upsell-card {
    position: relative;
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    display: block;
}

.upsell-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.upsell-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
    background: #fffdf8;
}

.upsell-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.upsell-body .brand {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

.upsell-body h5 {
    font-size: 0.95rem;
    margin: 4px 0 8px;
    font-family: var(--font-heading);
}

.upsell-body p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 2.8em;
}

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

.toggle-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-color);
}

.skip-link {
    display: block;
    width: 100%;
    text-align: center;
    margin: 16px 0 0;
    background: none;
    border: none;
    color: var(--text-light);
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.88rem;
    padding: 10px;
}

/* Confirm + policy */
.confirm-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 760px) {
    .confirm-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.policy-panel {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px;
}

.policy-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.policy-header i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2px;
}

.policy-header strong {
    display: block;
    font-size: 0.95rem;
}

.policy-header span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.policy-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.policy-highlights li {
    font-size: 0.82rem;
    line-height: 1.4;
    display: flex;
    gap: 8px;
}

.policy-highlights i {
    color: #2e7d32;
    margin-top: 3px;
    flex-shrink: 0;
}

.policy-full {
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.policy-full summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 8px 0;
}

.policy-full-body {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.55;
    max-height: 220px;
    overflow-y: auto;
    padding: 8px 4px 4px;
    border-top: 1px solid var(--border-color);
}

.policy-full-body p {
    margin-bottom: 10px;
}

.policy-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.82rem;
    line-height: 1.4;
    cursor: pointer;
    margin-bottom: 14px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.policy-check input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.deposit-box {
    background: var(--secondary-color);
    color: #fff;
    border-radius: 12px;
    padding: 16px;
}

.deposit-box > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.deposit-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

.deposit-amount {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.deposit-note {
    margin-top: 8px;
    font-size: 0.78rem;
    opacity: 0.75;
    line-height: 1.4;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.form-actions .btn {
    min-height: 48px;
    min-width: 120px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Success */
.success-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.success-card {
    text-align: left;
    background: var(--bg-color);
    border-radius: 12px;
    padding: 18px;
    margin: 20px auto;
    max-width: 360px;
    border: 1px solid var(--border-color);
    font-size: 0.92rem;
    line-height: 1.5;
}

.success-card .deadline {
    margin-top: 10px;
    color: #8a6d12;
    font-weight: 600;
}

.acl-foot {
    font-size: 0.78rem;
    color: var(--text-light);
    max-width: 420px;
    margin: 0 auto 20px;
    line-height: 1.45;
}

/* Services overview SEO section */
.services-overview {
    padding: 72px 20px;
    background: var(--bg-light);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 12px;
}

@media (min-width: 640px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overview-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.overview-card h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.overview-card h4 i {
    color: var(--primary-color);
    margin-right: 6px;
}

.overview-card ul {
    list-style: none;
    margin-bottom: 14px;
}

.overview-card li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.overview-card li strong {
    white-space: nowrap;
    color: var(--secondary-color);
}

.linkish {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: var(--font-main);
    padding: 0;
    text-decoration: underline;
}

/* Homepage SEO hub */
.seo-hub-section {
    padding: 72px 20px;
    background: var(--bg-color);
}

.seo-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

@media (min-width: 700px) {
    .seo-hub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.seo-hub-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 16px;
    transition: var(--transition);
}

.seo-hub-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.seo-hub-card strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.seo-hub-card span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Mobile booking — no sticky overlay fighting the header */
@media (max-width: 899px) {
    .booking-section {
        padding: 40px 12px 48px;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
        padding-bottom: max(48px, env(safe-area-inset-bottom));
        z-index: 1;
    }

    .booking-layout {
        gap: 12px;
        display: flex;
        flex-direction: column;
    }

    /* Summary first, compact, never sticky over form */
    .booking-summary-panel {
        order: -1;
        position: relative !important;
        top: auto !important;
        z-index: 1 !important;
        padding: 14px 14px 12px;
        border-radius: 12px;
        max-height: none;
        overflow: visible;
    }

    .booking-summary-panel h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .summary-lines {
        gap: 6px;
    }

    .summary-lines li {
        font-size: 0.82rem;
        padding-bottom: 6px;
        flex-wrap: wrap;
    }

    .summary-lines li strong {
        max-width: 100%;
        text-align: left;
        word-break: break-word;
    }

    .booking-container {
        order: 1;
        position: relative;
        z-index: 2;
        padding: 18px 12px 24px;
        border-radius: 12px;
        overflow: visible;
    }

    .step-indicator {
        gap: 2px;
        margin-bottom: 18px;
        padding-bottom: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .step-indicator::-webkit-scrollbar {
        display: none;
    }

    .step-indicator .step {
        min-width: 44px;
        flex: 0 0 auto;
    }

    .form-step {
        max-width: 100%;
        overflow: visible;
    }

    .form-step h4 {
        font-size: 1.25rem;
        text-align: left;
    }

    .options-grid,
    .services-list,
    .stylist-grid,
    .product-upsell-grid,
    .category-tabs,
    .time-slots {
        max-width: 100%;
        min-width: 0;
    }

    .service-card {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px;
    }

    .service-price {
        width: 100%;
        text-align: left;
    }

    .form-actions {
        position: sticky;
        bottom: 0;
        z-index: 5;
        margin-top: 20px;
        margin-left: -12px;
        margin-right: -12px;
        margin-bottom: -12px;
        padding: 12px;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 28%);
        border-top: 1px solid var(--border-color);
        gap: 8px;
        flex-wrap: nowrap;
    }

    .form-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        min-height: 48px;
        padding: 12px 10px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .confirm-grid {
        grid-template-columns: 1fr !important;
    }

    .policy-panel {
        padding: 14px;
    }

    .product-upsell-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .header-book-btn {
        display: none;
    }
    .booking-container {
        padding: 16px 10px 20px;
        border-radius: 12px;
    }
    .form-actions {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: -8px;
    }
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .cat-image {
        height: 110px;
    }
}
