/* ═══════════════════════════════════════════════════
   BARBERÍA — Theme CSS
   Oscuro y urbano: carbón · dorado viejo · hueso
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Variables ──────────────────────────── */
:root {
    /* Tema OSCURO: los nombres de variables se mantienen del esqueleto
       común de themes (--black=fondo, --charcoal/--dark-gray=superficies,
       --cream=texto, --sand=acento). */
    --black: #141414;        /* fondo carbón */
    --charcoal: #1e1e1e;     /* superficie (tarjetas) */
    --dark-gray: #292929;    /* superficie 2 */
    --mid-gray: #3a3a3a;     /* bordes */
    --gray: #9a948a;         /* texto secundario */
    --light-gray: #b8b1a5;   /* texto secundario claro */
    --cream: #ece7df;        /* texto principal (hueso) */
    --sand: #c9a227;         /* dorado viejo — acento primario */
    --sand-dark: #a8861f;
    --white: #f5f1e8;        /* blanco hueso */
    --red: #c05b4a;
    --green: #6f8f5a;

    --font-display: 'Oswald', 'Arial Narrow', sans-serif;
    --font-serif: 'Oswald', 'Arial Narrow', sans-serif;
    --font-script: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', sans-serif;

    --header-height: 72px;
    --container: 1280px;
    --container-narrow: 780px;
    --radius: 4px;
    --radius-lg: 6px;
    --transition: 0.3s ease;

    /* Franja diagonal sutil tipo poste de barbero (detalle de marca) */
    --pole-stripes: repeating-linear-gradient(135deg,
        var(--sand) 0 8px, rgba(20,20,20,0.92) 8px 16px,
        var(--white) 16px 24px, rgba(20,20,20,0.92) 24px 32px);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--cream);
    background: var(--black);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); }

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 400; line-height: 1.2; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.section-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.5rem; }
.section-link { color: var(--sand); font-size: 0.9rem; letter-spacing: 0.05em; transition: opacity var(--transition); }
.section-link:hover { opacity: 0.7; }
.section { padding: 4rem 0; }

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 2rem; font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: var(--radius); transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary { background: var(--sand); color: var(--black); }
.btn-primary:hover { background: var(--sand-dark); }
.btn-outline { border: 1px solid var(--cream); color: var(--cream); background: transparent; }
.btn-outline:hover { background: var(--cream); color: var(--black); }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.9rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── Announcement Bar ───────────────────────────── */
.announcement-bar {
    background: var(--sand); color: var(--black); text-align: center;
    padding: 0.5rem 0; font-size: 0.8rem; letter-spacing: 0.08em;
    text-transform: uppercase; font-weight: 500;
}
.announcement-code { font-weight: 700; margin-left: 0.5rem; }

/* ─── Header ─────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,10,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: var(--header-height);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header-logo { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.2em; color: var(--cream); }
.logo-text { display: block; }

.header-nav { display: flex; gap: 2rem; }
.nav-link { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 0; position: relative; transition: color var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--sand); }
.nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--sand); }
.nav-link-sub { color: var(--gray); }
.nav-link-sub:hover, .nav-link-sub.active { color: var(--sand); }

.header-nav { gap: 1.5rem; }
.header-nav .nav-link:not(.nav-link-sub) + .nav-link-sub { margin-left: 0.5rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.1); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 200px; background: var(--charcoal); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 0.75rem 0;
    opacity: 0; visibility: hidden;
    transition: all var(--transition); box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-link, .nav-dropdown-link { display: block; padding: 0.55rem 1.5rem; font-size: 0.8rem; letter-spacing: 0.05em; transition: all var(--transition); color: var(--light-gray); }
.dropdown-link:hover, .nav-dropdown-link:hover { background: rgba(255,255,255,0.05); color: var(--sand); padding-left: 1.75rem; }
.dropdown-link-all { font-weight: 600; color: var(--cream); border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 0.25rem; padding-bottom: 0.65rem; }
.has-dropdown { display: inline-flex; align-items: center; gap: 4px; }
.nav-link-parent { display: inline-flex; align-items: center; gap: 4px; }
.nav-chevron { transition: transform var(--transition); opacity: 0.5; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }
.has-dropdown svg { transition: transform var(--transition); }
.nav-dropdown:hover .has-dropdown svg { transform: rotate(180deg); }

.header-actions { display: flex; gap: 1rem; align-items: center; }
.header-action-btn { position: relative; color: var(--cream); transition: color var(--transition); padding: 4px; }
.header-action-btn:hover { color: var(--sand); }

.cart-count {
    position: absolute; top: -6px; right: -8px; width: 18px; height: 18px;
    background: var(--sand); color: var(--black); font-size: 0.65rem; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: all var(--transition); }

/* Search overlay */
.search-overlay {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--charcoal);
    padding: 1rem 0; transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: all var(--transition); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.search-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-form { display: flex; align-items: center; gap: 0.75rem; }
.search-input { flex: 1; background: transparent; border: none; border-bottom: 1px solid var(--gray); padding: 0.75rem 0; font-size: 1rem; color: var(--cream); outline: none; }
.search-input::placeholder { color: var(--gray); }
.search-submit { color: var(--cream); }
.search-close { font-size: 1.5rem; color: var(--gray); }

/* ─── Flash Messages ─────────────────────────────── */
.flash-message { padding: 0.75rem 0; font-size: 0.85rem; }
.flash-message .container { display: flex; align-items: center; justify-content: space-between; }
.flash-success { background: var(--green); color: var(--white); }
.flash-error { background: var(--red); color: var(--white); }
.flash-info { background: var(--sand); color: var(--black); }
.flash-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: inherit; }

/* ─── Hero ───────────────────────────────────────── */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg-default { background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%); }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: 0.06em; line-height: 0.95; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1rem; color: var(--light-gray); max-width: 480px; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Marquee ────────────────────────────────────── */
.marquee-strip { overflow: hidden; background: var(--charcoal); padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.marquee-track { display: flex; gap: 2rem; animation: marquee 30s linear infinite; white-space: nowrap; font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.marquee-dot { color: var(--sand); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.33%); } }

/* ─── Collections ────────────────────────────────── */
.collections-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.collection-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; background: var(--charcoal); }
.collection-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collection-card:hover .collection-card-img { transform: scale(1.05); }
.collection-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--dark-gray), var(--charcoal)); }
.collection-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background: linear-gradient(transparent 40%, rgba(0,0,0,0.7)); }
.collection-card-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.1em; text-transform: uppercase; }
.collection-card-count { font-size: 0.75rem; color: var(--gray); margin-top: 0.25rem; }

/* ─── Product Grid ───────────────────────────────── */
.product-grid { display: grid; gap: 1.5rem; }
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }

.product-card { position: relative; }
.product-card-image-wrap { position: relative; display: block; aspect-ratio: 3/4; background: var(--charcoal); border-radius: var(--radius-lg); overflow: hidden; }
.product-card-img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; }
.product-card-img-hover { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-card-img-hover { opacity: 1; }
.product-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--dark-gray); }

.product-badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; padding: 0.3rem 0.6rem; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); }
.badge-new { background: var(--sand); color: var(--black); }
.badge-sale { background: var(--red); color: var(--white); }
.badge-best { background: var(--charcoal); color: var(--cream); border: 1px solid rgba(255,255,255,0.15); }

.product-card-quick-add {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.9); color: var(--cream); padding: 0.75rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    transform: translateY(100%); transition: transform var(--transition);
}
.product-card:hover .product-card-quick-add { transform: translateY(0); }

.product-card-info { padding: 0.75rem 0.25rem; }
.product-card-colors { display: flex; gap: 0.35rem; margin-bottom: 0.5rem; }
.color-dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2); }
.color-more { font-size: 0.7rem; color: var(--gray); line-height: 14px; }

.product-card-title { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.25rem; }
.product-card-title a:hover { color: var(--sand); }

.product-card-rating { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.35rem; }
.star { color: var(--mid-gray); font-size: 0.8rem; }
.star-filled { color: var(--sand); }
.rating-count { font-size: 0.7rem; color: var(--gray); margin-left: 0.25rem; }

.product-card-price { display: flex; align-items: center; gap: 0.5rem; }
.price-current { font-weight: 600; font-size: 0.95rem; }
.price-compare { text-decoration: line-through; color: var(--gray); font-size: 0.85rem; }
.price-save { font-size: 0.75rem; color: var(--sand); }

/* ─── Value Props ────────────────────────────────── */
.value-props { background: var(--charcoal); }
.value-props-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.value-prop-icon { margin-bottom: 0.75rem; color: var(--sand); display: flex; justify-content: center; }
.value-prop h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-prop p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ─── Mid Banner ─────────────────────────────────── */
.mid-banner { position: relative; min-height: 50vh; display: flex; align-items: center; background-size: cover; background-position: center; text-align: center; }
.mid-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.mid-banner-content { position: relative; z-index: 1; }
.mid-banner-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); letter-spacing: 0.08em; margin-bottom: 1rem; }
.mid-banner-text { color: var(--light-gray); margin-bottom: 2rem; font-size: 1rem; }

/* ─── Reviews Section ────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--charcoal); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid rgba(255,255,255,0.06); }
.review-stars { margin-bottom: 0.75rem; }
.review-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.review-body { font-size: 0.85rem; color: var(--light-gray); line-height: 1.6; margin-bottom: 0.75rem; }
.review-meta { display: flex; gap: 0.75rem; align-items: center; font-size: 0.75rem; }
.review-author { font-weight: 600; }
.review-verified { color: var(--green); }
.review-product { display: block; margin-top: 0.5rem; font-size: 0.75rem; color: var(--sand); }
.review-date { font-size: 0.75rem; color: var(--gray); }

/* ─── Collection Header ──────────────────────────── */
.collection-header { padding: 3rem 0 1rem; }
.collection-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: 0.08em; text-transform: uppercase; }
.collection-description { color: var(--gray); margin-top: 0.5rem; max-width: 600px; }

.breadcrumbs { font-size: 0.75rem; color: var(--gray); margin-bottom: 1rem; }
.breadcrumbs a:hover { color: var(--sand); }
.breadcrumb-sep { margin: 0 0.4rem; }

/* ─── Catalog Toolbar ────────────────────────────── */
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.catalog-count { font-size: 0.8rem; color: var(--gray); }
.catalog-filters { display: flex; gap: 0.75rem; }
.filter-select { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 0.5rem 0.75rem; font-size: 0.8rem; color: var(--cream); cursor: pointer; }
.catalog-empty { text-align: center; padding: 4rem 0; color: var(--gray); }

/* ─── Product Page ───────────────────────────────── */
.product-page { padding: 2rem 0 4rem; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.product-gallery-main { aspect-ratio: 3/4; background: var(--charcoal); border-radius: var(--radius-lg); overflow: hidden; }
.product-main-img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.gallery-thumb { width: 64px; height: 80px; border-radius: var(--radius); overflow: hidden; border: 2px solid transparent; transition: border-color var(--transition); cursor: pointer; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--sand); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-title { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.product-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.rating-link { font-size: 0.8rem; color: var(--gray); text-decoration: underline; }
.product-price { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; display: flex; align-items: baseline; gap: 0.75rem; }
.product-short-desc { color: var(--light-gray); margin-bottom: 1.5rem; line-height: 1.7; }

/* Options */
.product-option { margin-bottom: 1.25rem; }
.option-label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.option-selected { font-weight: 400; color: var(--gray); margin-left: 0.5rem; text-transform: none; }

.option-swatches { display: flex; gap: 0.5rem; }
.swatch-color { width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent; transition: all var(--transition); }
.swatch-color:hover, .swatch-color.active { border-color: var(--cream); transform: scale(1.1); }

.option-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-btn { padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); font-size: 0.8rem; font-weight: 500; transition: all var(--transition); min-width: 48px; text-align: center; }
.size-btn:hover { border-color: var(--cream); }
.size-btn.active { background: var(--cream); color: var(--black); border-color: var(--cream); }

.option-select { width: 100%; background: var(--charcoal); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 0.65rem 0.75rem; font-size: 0.85rem; color: var(--cream); }

/* Quantity */
.qty-selector { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); }
.qty-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background var(--transition); }
.qty-btn:hover { background: rgba(255,255,255,0.05); }
.qty-input { width: 48px; text-align: center; border: none; background: transparent; font-size: 0.9rem; }
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-selector-sm .qty-btn { width: 32px; height: 32px; font-size: 0.9rem; }
.qty-selector-sm .qty-display { width: 36px; text-align: center; font-size: 0.85rem; }

.btn-add-to-cart { margin-top: 0.5rem; }
.stock-status { font-size: 0.8rem; margin-top: 0.5rem; }
.stock-in { color: var(--green); }
.stock-low { color: var(--sand); }
.stock-out { color: var(--red); }

/* Accordion */
.product-details-accordion { margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.accordion-header { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1rem 0; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.accordion-icon { font-size: 1.2rem; transition: transform var(--transition); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 0.85rem; color: var(--light-gray); line-height: 1.7; }
.accordion-item.open .accordion-body { max-height: 500px; padding-bottom: 1rem; }

/* Reviews on product page */
.product-reviews { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08); }
.reviews-summary { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.reviews-avg { font-family: var(--font-display); font-size: 3rem; }
.reviews-total { font-size: 0.85rem; color: var(--gray); }
.reviews-list { display: grid; gap: 1.5rem; }
.review-item { padding: 1.5rem; background: var(--charcoal); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.06); }
.review-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.review-footer { display: flex; gap: 0.75rem; margin-top: 0.75rem; font-size: 0.75rem; }

/* ─── Review Form & Interactivity ─── */
.reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.review-form-wrap { background: var(--charcoal); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.08); }
.review-form { display: flex; flex-direction: column; gap: 1rem; }
.review-form-rating label { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; display: block; }
.rating-input { display: flex; gap: 0.25rem; }
.rating-star { font-size: 1.75rem; color: var(--gray); cursor: pointer; transition: color 0.1s, transform 0.1s; }
.rating-star:hover, .rating-star.star-hover { color: #f1c40f; transform: scale(1.15); }
.rating-star.star-filled { color: #f1c40f; }
.review-helpful { margin-left: auto; display: flex; align-items: center; gap: 0.35rem; color: var(--gray); }
.review-vote-btn { background: none; border: 1px solid rgba(255,255,255,0.1); color: var(--light-gray, #ccc); padding: 2px 8px; border-radius: 3px; cursor: pointer; font-size: 0.7rem; transition: all 0.15s; }
.review-vote-btn:hover { border-color: var(--accent); color: var(--accent); }
.review-admin-reply { margin-top: 0.75rem; padding: 0.75rem 1rem; background: rgba(200,168,130,0.06); border-left: 3px solid var(--accent); border-radius: 4px; }
.review-admin-reply strong { font-size: 0.75rem; color: var(--accent); }
.review-admin-reply p { margin: 0.25rem 0 0; font-size: 0.85rem; color: var(--light-gray, #ccc); }

/* Related products */
.related-products { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08); }

/* ─── Cart Page ──────────────────────────────────── */
.cart-page { padding: 2rem 0 4rem; }
.cart-title { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 0.08em; margin-bottom: 1.5rem; }

.cart-empty { text-align: center; padding: 4rem 0; }
.cart-empty svg { margin: 0 auto 1rem; color: var(--gray); }
.cart-empty p { color: var(--gray); margin-bottom: 1.5rem; }

.shipping-bar { text-align: center; padding: 1rem; background: var(--charcoal); border-radius: var(--radius-lg); margin-bottom: 2rem; font-size: 0.85rem; }
.shipping-progress { height: 3px; background: var(--dark-gray); border-radius: 2px; margin-top: 0.5rem; }
.shipping-progress-fill { height: 100%; background: var(--sand); border-radius: 2px; transition: width var(--transition); }

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }

.cart-header-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1rem; padding: 0.75rem 0; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); border-bottom: 1px solid rgba(255,255,255,0.08); }

.cart-item { display: grid; grid-template-columns: 80px 1fr 100px 120px 100px 32px; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cart-item-image img { width: 80px; height: 100px; object-fit: cover; border-radius: var(--radius); }
.cart-item-name { font-weight: 500; font-size: 0.9rem; display: block; }
.cart-item-name:hover { color: var(--sand); }
.cart-item-variant { font-size: 0.75rem; color: var(--gray); }
.cart-item-price { font-size: 0.9rem; }
.cart-item-total { font-weight: 600; }
.cart-item-remove { font-size: 1.2rem; color: var(--gray); transition: color var(--transition); }
.cart-item-remove:hover { color: var(--red); }

.cart-summary { background: var(--charcoal); border-radius: var(--radius-lg); padding: 1.5rem; align-self: start; position: sticky; top: calc(var(--header-height) + 1rem); }
.cart-summary-title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.08em; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9rem; }
.cart-summary-total { font-size: 1.1rem; font-weight: 600; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.08); }

.cart-coupon { margin: 1rem 0; }
.coupon-form { display: flex; gap: 0.5rem; }
.coupon-input { flex: 1; background: var(--dark-gray); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 0.5rem 0.75rem; font-size: 0.85rem; color: var(--cream); }

.cart-summary .btn { margin-top: 0.5rem; }
.cart-continue-link { display: block; text-align: center; margin-top: 1rem; font-size: 0.8rem; color: var(--gray); }
.cart-continue-link:hover { color: var(--sand); }

/* ─── Cart Drawer ────────────────────────────────── */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; visibility: hidden; transition: all var(--transition); }
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 90vw;
    background: var(--charcoal); z-index: 201; transform: translateX(100%);
    transition: transform 0.4s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cart-drawer-header h3 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.08em; }
.cart-drawer-close { font-size: 1.5rem; color: var(--gray); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cart-drawer-empty { text-align: center; padding: 3rem 0; }
.cart-drawer-empty svg { margin: 0 auto 1rem; color: var(--gray); }
.cart-drawer-empty p { color: var(--gray); margin-bottom: 1.5rem; }
.cart-drawer-footer { padding: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); }
.cart-drawer-shipping { text-align: center; font-size: 0.8rem; color: var(--gray); margin-bottom: 0.75rem; }
.cart-drawer-subtotal { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 1rem; }

/* Drawer item */
.drawer-item { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.drawer-item-img { width: 64px; height: 80px; border-radius: var(--radius); object-fit: cover; }
.drawer-item-info { flex: 1; }
.drawer-item-name { font-size: 0.85rem; font-weight: 500; }
.drawer-item-variant { font-size: 0.7rem; color: var(--gray); }
.drawer-item-price { font-size: 0.85rem; margin-top: 0.25rem; }
.drawer-item-remove { font-size: 0.7rem; color: var(--gray); text-decoration: underline; cursor: pointer; }
.drawer-item-remove:hover { color: var(--red); }

/* ─── Search Page ────────────────────────────────── */
.search-page { padding: 3rem 0 4rem; }
.search-title { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.search-page-form { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.search-page-input { flex: 1; background: var(--charcoal); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 1rem; color: var(--cream); }
.search-count { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; }
.search-empty { text-align: center; padding: 3rem 0; color: var(--gray); }
.search-empty p { margin-bottom: 0.5rem; }
.search-empty .btn { margin-top: 1rem; }

/* ─── Static Page ────────────────────────────────── */
.static-page { padding: 3rem 0 4rem; }
.page-title { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 0.06em; margin-bottom: 2rem; }
.rich-text { font-size: 0.95rem; line-height: 1.8; color: var(--light-gray); }
.rich-text p { margin-bottom: 1rem; }
.rich-text h2 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.06em; color: var(--cream); margin: 2rem 0 1rem; }
.rich-text h3 { font-size: 1.1rem; font-weight: 600; color: var(--cream); margin: 1.5rem 0 0.75rem; }
.rich-text ul, .rich-text ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.rich-text li { margin-bottom: 0.5rem; }
.rich-text a { color: var(--sand); text-decoration: underline; }
.rich-text table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.rich-text th, .rich-text td { padding: 0.75rem; border: 1px solid rgba(255,255,255,0.1); text-align: left; }
.rich-text th { background: var(--charcoal); font-weight: 600; }

/* ─── Error Page ─────────────────────────────────── */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.error-content { text-align: center; }
.error-code { font-family: var(--font-display); font-size: 8rem; color: var(--sand); line-height: 1; }
.error-message { font-size: 1.1rem; color: var(--gray); margin: 1rem 0 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; }

/* ─── Pagination ─────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination-btn { padding: 0.5rem 1rem; font-size: 0.8rem; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); transition: all var(--transition); }
.pagination-btn:hover { border-color: var(--sand); color: var(--sand); }
.pagination-numbers { display: flex; gap: 0.25rem; }
.pagination-num { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-size: 0.85rem; transition: all var(--transition); }
.pagination-num:hover { background: rgba(255,255,255,0.05); }
.pagination-num.active { background: var(--sand); color: var(--black); font-weight: 600; }
.pagination-dots { width: 36px; text-align: center; color: var(--gray); }

/* ─── Footer ─────────────────────────────────────── */
.site-footer { background: var(--charcoal); padding: 4rem 0 2rem; margin-top: 4rem; border-top: 1px solid rgba(255,255,255,0.06); }

.footer-newsletter { text-align: center; max-width: 480px; margin: 0 auto 3rem; }
.footer-newsletter-title { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.footer-newsletter-text { font-size: 0.85rem; color: var(--gray); margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-input { flex: 1; background: var(--dark-gray); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--cream); }
.newsletter-input::placeholder { color: var(--gray); }
.newsletter-btn { padding: 0.75rem 1.5rem; background: var(--sand); color: var(--black); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius); transition: background var(--transition); }
.newsletter-btn:hover { background: var(--sand-dark); }
.newsletter-status { margin-top: 0.5rem; font-size: 0.8rem; color: var(--green); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.15em; display: block; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link { color: var(--gray); transition: color var(--transition); }
.social-link:hover { color: var(--sand); }

.footer-heading { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--gray); transition: color var(--transition); }
.footer-links a:hover { color: var(--cream); }

.footer-bottom { text-align: center; padding-top: 1.5rem; font-size: 0.75rem; color: var(--mid-gray); }

/* ─── Responsive ─────────────────────────────────── */

/* MOBILE FIRST - Base mobile styles */
@media (max-width: 1024px) {
    .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .value-props-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Container padding */
    .container { padding: 0 16px; }
    
    /* Header - CRITICAL mobile fix */
    .site-header { height: auto; min-height: var(--header-height); }
    .header-inner { flex-wrap: wrap; padding: 12px 0; }
    
    /* Hide desktop nav, show hamburger */
    .header-nav { 
        display: none !important;
        order: 3;
        width: 100%;
    }
    .header-nav.open {
        display: flex !important; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0;
        background: var(--charcoal); 
        padding: 1rem 16px 1.5rem; 
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        z-index: 100;
        max-height: 70vh;
        overflow-y: auto;
    }
    .header-nav.open .nav-link { 
        padding: 0.75rem 0; 
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .header-nav.open .nav-link:last-child { border-bottom: none; }
    .header-nav.open .nav-dropdown-menu { 
        position: static; 
        transform: none; 
        opacity: 1; 
        visibility: visible; 
        display: none; 
        background: rgba(255,255,255,0.03); 
        border: none; 
        border-radius: 0; 
        box-shadow: none; 
        padding: 0.5rem 0; 
        min-width: auto;
        margin: 0.5rem 0;
    }
    .header-nav.open .nav-dropdown-menu.mobile-open { display: block; }
    .header-nav.open .dropdown-link, 
    .header-nav.open .nav-dropdown-link { 
        padding: 0.5rem 1rem; 
        font-size: 0.85rem;
    }
    .mobile-menu-toggle { display: flex !important; }
    
    /* Hide sub-nav links on mobile or stack them */
    .nav-link-sub { display: none; }
    .header-nav.open .nav-link-sub { 
        display: block;
        color: var(--gray);
        font-size: 0.8rem;
    }
    
    /* Header actions */
    .header-actions { gap: 0.75rem; }
    
    /* Hero */
    .hero { min-height: 80vh; min-height: 80svh; }
    .hero-content { padding: 0 8px; max-width: 100%; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); margin-bottom: 1rem; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; max-width: 300px; }
    
    /* Marquee */
    .marquee-track { font-size: 0.75rem; gap: 1rem; }
    
    /* Products */
    .product-grid-4, .product-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card-info { padding: 0.5rem 0; }
    .product-card-title { font-size: 0.8rem; }
    .product-card-price { font-size: 0.85rem; }
    .product-card-colors { margin-bottom: 0.25rem; }
    .color-dot { width: 12px; height: 12px; }
    
    /* Collections */
    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .collection-card-title { font-size: 1.1rem; }
    
    /* Value props */
    .value-props-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .value-prop h3 { font-size: 0.85rem; }
    .value-prop p { font-size: 0.75rem; }
    
    /* Section titles */
    .section { padding: 3rem 0; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 1rem; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    
    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
    .review-card { padding: 1.25rem; }
    
    /* Product page */
    .product-layout { grid-template-columns: 1fr; gap: 2rem; }
    .product-title { font-size: 1.6rem; }
    .product-gallery-thumbs { gap: 0.35rem; }
    .gallery-thumb { width: 48px; height: 60px; }
    
    /* Cart */
    .cart-item { 
        grid-template-columns: 64px 1fr; 
        gap: 0.75rem; 
        font-size: 0.85rem;
        position: relative;
        padding-right: 24px;
    }
    .cart-header-row { display: none; }
    .cart-item-price { display: none; }
    .cart-item-remove { 
        position: absolute; 
        top: 1rem; 
        right: 0; 
    }
    .cart-item-qty { margin-top: 0.5rem; }
    .cart-item-total { margin-top: 0.25rem; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-newsletter { padding: 0 16px; }
    .newsletter-form { flex-direction: column; gap: 0.75rem; }
    .newsletter-input, .newsletter-btn { width: 100%; }
    
    /* Mid banner */
    .mid-banner { min-height: 40vh; }
    .mid-banner-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container { padding: 0 12px; }
    
    .hero { min-height: 70vh; min-height: 70svh; }
    .hero-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
    .hero-eyebrow { font-size: 0.65rem; }
    
    .product-grid-4, .product-grid-3 { gap: 8px; }
    .product-card-title { font-size: 0.75rem; }
    .price-current { font-size: 0.8rem; }
    
    .value-props-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .value-prop { padding: 0 1rem; }
    
    .section { padding: 2.5rem 0; }
    .section-title { font-size: 1.4rem; }
    
    .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
    .btn-lg { padding: 0.85rem 2rem; font-size: 0.85rem; }
    
    /* Collection cards */
    .collection-card { aspect-ratio: 1; }
    .collection-card-overlay { padding: 1rem; }
    .collection-card-title { font-size: 1rem; }
    
    /* Footer */
    .site-footer { padding: 3rem 0 1.5rem; margin-top: 2rem; }
    .footer-newsletter-title { font-size: 1.3rem; }
    .footer-heading { margin-bottom: 0.75rem; }
    
    /* Cart drawer */
    .cart-drawer { width: 100%; max-width: 100%; }
}

/* ═══════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════ */

.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
.auth-box { width: 100%; max-width: 420px; }
.auth-title { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.auth-subtitle { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }
.auth-form { display: flex; flex-direction: column; gap: 1.25rem; }
.auth-extras { display: flex; justify-content: flex-end; }
.auth-link { color: var(--sand); font-size: 0.85rem; text-decoration: none; }
.auth-link:hover { text-decoration: underline; }
.auth-switch { margin-top: 1.5rem; font-size: 0.9rem; color: var(--gray); text-align: center; }
.auth-switch a { color: var(--sand); text-decoration: none; }

.alert { padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.85rem; margin-bottom: 1rem; }
.alert-error { background: rgba(220,50,50,0.1); border: 1px solid rgba(220,50,50,0.3); color: #f66; }
.alert-success { background: rgba(50,180,80,0.1); border: 1px solid rgba(50,180,80,0.3); color: #6c6; }

/* Forms */
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray); }
.form-field input, .form-field select, .form-field textarea {
    background: var(--charcoal); border: 1px solid var(--dark-gray); color: var(--cream);
    padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-family: var(--font-body);
    transition: border-color var(--transition);
}
.form-field input:focus, .form-field select:focus { border-color: var(--sand); outline: none; }
.form-field input::placeholder { color: #555; }
.field-error { color: #f66; font-size: 0.8rem; }
.form-input {
    width: 100%; background: var(--charcoal); border: 1px solid var(--dark-gray); color: var(--cream);
    padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-family: var(--font-body);
    transition: border-color var(--transition); box-sizing: border-box;
}
.form-input:focus { border-color: var(--sand); outline: none; }
.form-input::placeholder { color: #555; }
select.form-input { appearance: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* ═══════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════ */

.checkout-page { padding-bottom: 4rem; }
.checkout-header { text-align: center; padding: 1.5rem 0; border-bottom: 1px solid var(--dark-gray); margin-bottom: 2rem; }
.checkout-logo { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.1em; color: var(--cream); text-decoration: none; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 2rem; }
.checkout-section { border: 1px solid var(--dark-gray); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.checkout-section-title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.06em; }
.checkout-login-hint { font-size: 0.85rem; color: var(--gray); }
.checkout-login-hint a { color: var(--sand); }
.checkout-secure-hint { font-size: 0.8rem; color: var(--gray); display: flex; align-items: center; gap: 0.4rem; }

/* Shipping methods */
.shipping-methods { display: flex; flex-direction: column; gap: 0.5rem; }
.shipping-method {
    display: flex; align-items: center; gap: 0.75rem; padding: 1rem;
    border: 1px solid var(--dark-gray); border-radius: var(--radius-sm); cursor: pointer;
    transition: border-color var(--transition);
}
.shipping-method:hover, .shipping-method.active { border-color: var(--sand); }
.shipping-method input { accent-color: var(--sand); }
.shipping-method-info { flex: 1; display: flex; flex-direction: column; }
.shipping-method-name { font-size: 0.9rem; font-weight: 600; }
.shipping-method-days { font-size: 0.8rem; color: var(--gray); }
.shipping-method-price { font-weight: 600; }
.price-free { color: var(--sand); font-weight: 700; margin-right: 0.5rem; }
.price-original { text-decoration: line-through; color: var(--gray); font-size: 0.85rem; font-weight: 400; }

/* Payment */
.payment-card-box { border: 1px solid var(--dark-gray); border-radius: var(--radius-sm); padding: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.payment-card-label { display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.sandbox-notice { background: rgba(200,168,130,0.1); border: 1px solid rgba(200,168,130,0.3); border-radius: var(--radius-sm); padding: 0.75rem 1rem; font-size: 0.8rem; color: var(--sand); margin-top: 0.5rem; }
.sandbox-notice code { background: rgba(255,255,255,0.1); padding: 0.15rem 0.4rem; border-radius: 3px; }

.checkout-submit { margin-top: 0.5rem; }
.checkout-error { background: rgba(220,50,50,0.1); border: 1px solid rgba(220,50,50,0.3); color: #f66; padding: 0.75rem 1rem; border-radius: var(--radius-sm); margin-top: 0.75rem; font-size: 0.85rem; }

.spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(0,0,0,0.2); border-top-color: #000; border-radius: 50%; animation: spin 0.6s linear infinite; vertical-align: middle; margin-right: 0.5rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Checkout sidebar */
.checkout-sidebar { position: sticky; top: 2rem; }
.checkout-summary { background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem; }
.checkout-summary-title { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.06em; margin-bottom: 1rem; }
.checkout-items { display: flex; flex-direction: column; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--dark-gray); }
.checkout-item { display: flex; align-items: center; gap: 0.75rem; }
.checkout-item-img { position: relative; width: 56px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; background: var(--dark-gray); flex-shrink: 0; }
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-qty { position: absolute; top: -6px; right: -6px; background: var(--gray); color: var(--black); width: 20px; height: 20px; border-radius: 50%; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.checkout-item-info { flex: 1; display: flex; flex-direction: column; }
.checkout-item-name { font-size: 0.85rem; font-weight: 600; }
.checkout-item-variant { font-size: 0.75rem; color: var(--gray); }
.checkout-item-price { font-size: 0.85rem; font-weight: 600; }

.checkout-totals { padding-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.checkout-total-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.checkout-total-row.discount { color: var(--sand); }
.checkout-total-row.store-credit-row { color: var(--sand); }

/* ─── Shipping Progress Promo Bar ────────────────── */
.shipping-promo { text-align:center; padding:0.85rem 1rem; background:var(--charcoal); border-radius:var(--radius-lg); margin-bottom:1.25rem; }
.shipping-promo-message { font-size:0.82rem; margin-bottom:0.6rem; color:var(--cream); }
.shipping-promo-text { transition:color 0.3s; }
.shipping-promo-text strong { color:var(--sand); }
.shipping-promo-close { color:var(--gold); font-weight:500; }
.shipping-promo-close strong { color:#e8c56d; }
.shipping-promo-unlocked { color:var(--sand); font-weight:600; }
.shipping-promo-bar { position:relative; height:4px; background:var(--dark-gray); border-radius:2px; margin:0 auto; }
.shipping-promo-fill { height:100%; background:linear-gradient(90deg, var(--sand), var(--gold)); border-radius:2px; transition:width 0.6s ease; min-width:2px; }
.shipping-promo-full { background:var(--sand) !important; }
.shipping-promo-pulse { animation:promoPulse 1.8s ease-in-out infinite; }
@keyframes promoPulse { 0%,100% { opacity:1; } 50% { opacity:0.6; } }
.shipping-promo-marker { position:absolute; top:50%; transform:translate(-50%,-50%); }
.shipping-promo-marker-dot { display:block; width:8px; height:8px; border-radius:50%; background:var(--dark-gray); border:1.5px solid var(--medium-gray); transition:all 0.3s; }
.shipping-promo-marker-dot.reached { background:var(--sand); border-color:var(--sand); box-shadow:0 0 4px rgba(200,168,130,0.4); }
.shipping-promo-labels { display:flex; justify-content:space-between; margin-top:0.35rem; font-size:0.65rem; color:var(--medium-gray); letter-spacing:0.02em; }

/* Compact mode (checkout) */
.shipping-promo-compact { text-align:center; padding:0.5rem; font-size:0.78rem; color:var(--cream); }
.shipping-promo-compact .shipping-promo-close { color:#e8c56d; }
.shipping-promo-compact .shipping-promo-unlocked { color:var(--sand); }
.shipping-promo-compact strong { color:var(--sand); }

/* Cart drawer shipping promo */
.drawer-shipping-promo { padding:0 1rem 0.5rem; }
.drawer-shipping-promo .shipping-promo { margin-bottom:0; padding:0.7rem 0.8rem; }
.checkout-total-row.total { font-size: 1.1rem; font-weight: 700; padding-top: 0.75rem; border-top: 1px solid var(--dark-gray); margin-top: 0.25rem; }

/* ═══════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════ */

.thankyou-page { padding: 3rem 0; }
.thankyou-check { text-align: center; margin-bottom: 1rem; }
.thankyou-ordernumber { text-align: center; font-size: 0.8rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }
.thankyou-title { text-align: center; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.thankyou-subtitle { text-align: center; color: var(--gray); margin-bottom: 2rem; }
.thankyou-box { background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem; }
.thankyou-items { display: flex; flex-direction: column; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--dark-gray); }
.thankyou-item { display: flex; align-items: center; gap: 1rem; }
.thankyou-item-img { width: 56px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; background: var(--dark-gray); flex-shrink: 0; }
.thankyou-item-img img { width: 100%; height: 100%; object-fit: cover; }
.thankyou-item-info { flex: 1; display: flex; flex-direction: column; }
.thankyou-item-name { font-weight: 600; font-size: 0.9rem; }
.thankyou-item-variant { font-size: 0.8rem; color: var(--gray); }
.thankyou-item-qty { font-size: 0.8rem; color: var(--gray); }
.thankyou-item-price { font-weight: 600; }
.thankyou-totals { padding-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.thankyou-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.thankyou-row.total { font-weight: 700; font-size: 1.1rem; padding-top: 0.75rem; border-top: 1px solid var(--dark-gray); }
.thankyou-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.thankyou-addresses h4 { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.thankyou-addresses p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.payment-status { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 3px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.payment-status.paid { background: rgba(50,180,80,0.15); color: #6c6; }
.thankyou-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

/* ═══════════════════════════════════════
   ACCOUNT
   ═══════════════════════════════════════ */

.account-page { padding: 2rem 0 4rem; }
.account-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.account-card { background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.account-card h3 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.06em; }
.account-card-header { display: flex; justify-content: space-between; align-items: center; }
.text-muted { color: var(--gray); font-size: 0.9rem; }

.orders-list, .orders-table { display: flex; flex-direction: column; gap: 0.5rem; }
.order-row { display: flex; align-items: center; gap: 1rem; padding: 0.75rem; border: 1px solid var(--dark-gray); border-radius: var(--radius-sm); text-decoration: none; color: var(--cream); transition: border-color var(--transition); }
.order-row:hover { border-color: var(--sand); }
.order-number { font-weight: 600; font-size: 0.85rem; flex: 1; }
.order-date { font-size: 0.8rem; color: var(--gray); }
.order-status { font-size: 0.75rem; padding: 0.15rem 0.5rem; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.status-confirmed, .status-paid { background: rgba(50,180,80,0.15); color: #6c6; }
.status-pending { background: rgba(200,168,130,0.15); color: var(--sand); }
.status-shipped, .status-processing { background: rgba(100,140,255,0.15); color: #88f; }
.status-cancelled, .status-failed { background: rgba(220,50,50,0.15); color: #f66; }
.order-total { font-weight: 600; }
.order-arrow { color: var(--gray); }
.order-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 2rem; font-size: 0.9rem; color: var(--gray); }
.empty-state { text-align: center; padding: 3rem; color: var(--gray); }

/* ═══════════════════════════════════════
   RESPONSIVE ADDITIONS
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-sidebar { position: static; order: -1; }
    .form-row { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }
    .account-grid { grid-template-columns: 1fr; }
    .thankyou-addresses { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   BLOG
   ═══════════════════════════════════════ */

.blog-page { padding: 3rem 0 5rem; }
.blog-header { text-align: center; margin-bottom: 3rem; }

/* Tag pill */
.blog-tag { display: inline-block; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); border: 1px solid rgba(200,168,130,0.3); padding: 0.15rem 0.5rem; border-radius: 2px; }
.blog-date, .blog-read { font-size: 0.75rem; color: var(--gray); }

/* List layout */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-list-item {
    display: grid; grid-template-columns: 160px 1fr; gap: 1.5rem; align-items: center;
    padding: 1.75rem 0; border-bottom: 1px solid var(--dark-gray);
    text-decoration: none; color: var(--cream); transition: opacity var(--transition);
}
.blog-list-item:first-child { border-top: 1px solid var(--dark-gray); }
.blog-list-item:hover { opacity: 0.85; }
.blog-list-item:hover .blog-list-cta { color: var(--sand); }

/* Featured (first item) — slightly larger */
.blog-list-item--featured { grid-template-columns: 200px 1fr; padding: 2rem 0; }
.blog-list-item--featured .blog-list-title { font-size: 1.5rem; }

/* Thumbnail */
.blog-list-thumb { aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; background: var(--charcoal); }
.blog-list-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-list-item:hover .blog-list-thumb img { transform: scale(1.04); }

/* Content */
.blog-list-content { display: flex; flex-direction: column; gap: 0.4rem; }
.blog-list-meta { display: flex; align-items: center; gap: 0.75rem; }
.blog-list-title { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.04em; line-height: 1.2; }
.blog-list-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-list-cta { font-size: 0.8rem; color: var(--gray); letter-spacing: 0.05em; transition: color var(--transition); margin-top: 0.25rem; }

/* Grid fallback for related posts */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { text-decoration: none; color: var(--cream); background: var(--charcoal); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-content { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card-title { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.04em; line-height: 1.25; }
.blog-card-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Article */
.blog-article { padding: 3rem 0 2rem; }
.blog-article-header { text-align: center; margin-bottom: 2rem; }
.blog-article-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 0.04em; line-height: 1.15; margin: 0.75rem 0; }
.blog-article-meta { font-size: 0.85rem; color: var(--gray); display: flex; justify-content: center; gap: 0.5rem; }
.blog-article-hero { margin: 2rem 0; border-radius: var(--radius); overflow: hidden; }
.blog-article-hero img { width: 100%; height: auto; max-height: 420px; object-fit: cover; display: block; }

/* Prose styling */
.blog-article-body.prose { font-size: 1rem; line-height: 1.8; color: var(--light-gray); }
.blog-article-body.prose h2 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; color: var(--cream); margin: 2.5rem 0 1rem; }
.blog-article-body.prose h3 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; color: var(--cream); margin: 2rem 0 0.75rem; }
.blog-article-body.prose p { margin-bottom: 1.25rem; }
.blog-article-body.prose strong { color: var(--cream); }
.blog-article-body.prose a { color: var(--sand); text-decoration: underline; text-underline-offset: 3px; }

.blog-article-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--dark-gray); }
.blog-tags-list { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.blog-related { padding: 3rem 0 5rem; border-top: 1px solid var(--dark-gray); }

@media (max-width: 768px) {
    .blog-list-item, .blog-list-item--featured { grid-template-columns: 100px 1fr; gap: 1rem; }
    .blog-list-item--featured .blog-list-title { font-size: 1.2rem; }
    .blog-list-excerpt { display: none; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BRAND ETHOS — BENTO GRID
   ============================================================ */
.brand-ethos { background: var(--black); padding: 5rem 0 4rem; }

/* Hero split header */
.ethos-hero { display: flex; align-items: flex-end; gap: 4rem; margin-bottom: 3rem; }
.ethos-hero-left { flex: 0 0 auto; }
.ethos-eyebrow { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.5rem; }
.ethos-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.8rem); letter-spacing: 0.06em; line-height: 1; color: var(--cream); }
.ethos-title-accent { color: var(--sand); }
.ethos-hero-right { max-width: 420px; padding-bottom: 0.25rem; }
.ethos-intro { font-size: 0.88rem; line-height: 1.7; color: var(--gray); margin-bottom: 0.75rem; }
.ethos-link { font-size: 0.8rem; color: var(--sand); letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: color var(--transition); }
.ethos-link:hover { color: var(--cream); }
.ethos-link span { display: inline-block; transition: transform var(--transition); }
.ethos-link:hover span { transform: translateX(4px); }

/* Bento grid layout */
.ethos-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
}
.ethos-bento-hero { grid-row: 1 / 3; } /* tall left card spans 2 rows */
.ethos-bento-seamless { grid-column: 2; grid-row: 1; }
.ethos-bento-modal { grid-column: 2; grid-row: 2; }
.ethos-bento-wide { grid-column: 1 / -1; grid-row: 3; } /* full width bottom */

/* Shared bento number */
.ethos-bento-num {
    font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.15em;
    color: var(--sand); display: inline-block; margin-bottom: 0.75rem;
    padding: 0.2rem 0.6rem; border: 1px solid rgba(200,168,130,0.25); border-radius: 2px;
}

/* Hero card — large left */
.ethos-bento-hero {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    min-height: 360px; display: flex; align-items: flex-end;
}
.ethos-bento-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 20%;
    filter: saturate(0.3) brightness(0.6);
    transition: filter 0.6s ease, transform 0.6s ease;
}
.ethos-bento-hero:hover .ethos-bento-hero-bg {
    filter: saturate(0.4) brightness(0.5);
    transform: scale(1.03);
}
.ethos-bento-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.2) 70%, rgba(10,10,10,0.3) 100%),
        linear-gradient(to right, rgba(10,10,10,0.4) 0%, transparent 50%);
}
.ethos-bento-hero-content {
    position: relative; z-index: 2; padding: 2rem;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
    width: 100%;
}
.ethos-bento-hero-content h3 {
    font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    letter-spacing: 0.06em; color: var(--cream); margin-bottom: 0.6rem; line-height: 1.15;
}
.ethos-bento-hero-content p { font-size: 0.85rem; line-height: 1.65; color: var(--light-gray); max-width: 340px; }
.ethos-bento-hero-stat {
    display: flex; align-items: center; gap: 0.75rem;
    margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(200,168,130,0.15);
}
.ethos-bento-hero-stat-val {
    font-family: var(--font-display); font-size: 2.8rem; letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--sand) 0%, #e8d5b8 50%, var(--sand) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.ethos-bento-hero-stat-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); line-height: 1.4; }

/* Right column cards */
.ethos-bento-card {
    background-color: var(--charcoal); border: 1px solid rgba(200,168,130,0.08);
    border-radius: var(--radius-lg); padding: 1.75rem;
    transition: border-color var(--transition), transform var(--transition);
    position: relative; overflow: hidden;
}
.ethos-bento-card:hover { border-color: rgba(200,168,130,0.2); transform: translateY(-1px); }
.ethos-bento-card h3 { position: relative; z-index: 2; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.35rem; }
.ethos-bento-card p { position: relative; z-index: 2; font-size: 0.82rem; line-height: 1.6; color: var(--gray); }
.ethos-bento-card .ethos-bento-num { position: relative; z-index: 2; }

/* Seamless card — model background faded */
.ethos-bento-seamless {
    background-size: cover; background-position: center 15%;
}
.ethos-bento-seamless::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.85) 50%, rgba(26,26,26,0.75) 100%);
    z-index: 1;
}
.ethos-bento-card-icon {
    position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(200,168,130,0.2); z-index: 2;
}

/* Modal card — badge */
.ethos-bento-card-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gray); margin-bottom: 0.75rem; position: relative; z-index: 2;
}
.ethos-bento-card-badge span {
    font-family: var(--font-display); font-size: 1.6rem; color: var(--sand); line-height: 1; letter-spacing: 0.04em;
}

/* Wide bottom card */
.ethos-bento-wide {
    background: linear-gradient(135deg, rgba(200,168,130,0.06) 0%, rgba(200,168,130,0.02) 100%);
    border: 1px solid rgba(200,168,130,0.1);
    border-radius: var(--radius-lg); padding: 2rem;
}
.ethos-bento-wide-inner { display: flex; align-items: center; gap: 3rem; }
.ethos-bento-wide-left { flex: 1; }
.ethos-bento-wide-left h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.4rem; }
.ethos-bento-wide-left p { font-size: 0.82rem; line-height: 1.6; color: var(--gray); max-width: 400px; }

.ethos-bento-wide-stats { display: flex; gap: 2.5rem; flex-shrink: 0; }
.ethos-mini-stat { text-align: center; }
.ethos-mini-val {
    display: block; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; color: var(--sand); line-height: 1;
}
.ethos-mini-val small { font-size: 0.8em; }
.ethos-mini-lbl { display: block; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 0.3rem; }

/* Responsive */
@media (max-width: 900px) {
    .ethos-hero { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .ethos-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
    .ethos-bento-hero { grid-row: auto; min-height: 280px; }
    .ethos-bento-seamless, .ethos-bento-modal { grid-column: 1; grid-row: auto; }
    .ethos-bento-wide { grid-column: 1; }
    .ethos-bento-wide-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .ethos-bento-wide-stats { gap: 2rem; }
}
@media (max-width: 600px) {
    .brand-ethos { padding: 3rem 0; }
    .ethos-hero { margin-bottom: 2rem; }
    .ethos-bento-hero { min-height: 240px; }
    .ethos-bento-wide-stats { gap: 1.5rem; flex-wrap: wrap; }
    .ethos-mini-val { font-size: 1.3rem; }
}

/* ============================================================
   ABOUT PAGE — IMAGE-RICH LAYOUT
   ============================================================ */

/* ─── Hero ─── */
.about-hero {
    position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center 20%;
    text-align: center; overflow: hidden;
}
.about-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.85) 100%);
}
.about-hero-content { position: relative; z-index: 2; padding: 4rem 0; }
.about-hero-title {
    font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: 0.08em; line-height: 1.05; margin-bottom: 1.25rem; color: var(--cream);
}
.about-hero-subtitle { font-size: 1.1rem; color: rgba(240,235,228,0.7); max-width: 460px; margin: 0 auto 2rem; line-height: 1.6; }
.about-hero-scroll {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid rgba(200,168,130,0.3); border-radius: 50%;
    color: var(--sand); animation: aboutBounce 2s ease infinite;
}
@keyframes aboutBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.about-eyebrow {
    font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--sand); margin-bottom: 0.6rem;
}
.about-section-header { text-align: center; margin-bottom: 3.5rem; }
.about-section-title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: 0.06em; color: var(--cream); line-height: 1.1;
}

/* ─── Origin — Image + Text split ─── */
.about-origin { background: var(--black); padding: 6rem 0; }
.about-origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-origin-img { position: relative; }
.about-origin-img img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg);
    filter: saturate(0.5) brightness(0.85);
}
.about-origin-img-accent {
    position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px;
    border: 1px solid rgba(200,168,130,0.2); border-radius: var(--radius-lg);
    z-index: -1;
}
.about-origin-text { }
.about-lead {
    font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.6;
    color: var(--cream); margin-bottom: 1.5rem; font-style: italic;
}
.about-origin-text p { font-size: 0.9rem; line-height: 1.75; color: var(--light-gray); margin-bottom: 1.1rem; }
.about-origin-highlight {
    font-size: 0.95rem; color: var(--cream); font-weight: 500;
    padding-left: 1rem; border-left: 2px solid var(--sand); margin-top: 1.5rem;
    line-height: 1.7;
}

/* ─── Process — Alternating steps ─── */
.about-process { background: var(--charcoal); padding: 6rem 0; }
.about-process-steps { max-width: 1080px; margin: 0 auto; }
.about-step {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center; margin-bottom: 4rem;
}
.about-step:last-child { margin-bottom: 0; }
.about-step--reverse { direction: rtl; }
.about-step--reverse > * { direction: ltr; }

.about-step-img { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.about-step-img img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    filter: saturate(0.4) brightness(0.7);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.about-step:hover .about-step-img img { filter: saturate(0.5) brightness(0.8); transform: scale(1.03); }
.about-step-num {
    position: absolute; top: 1rem; left: 1rem;
    font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.15em;
    color: var(--sand); padding: 0.25rem 0.6rem;
    border: 1px solid rgba(200,168,130,0.3); border-radius: 2px;
    background: rgba(10,10,10,0.6); backdrop-filter: blur(4px);
}
.about-step--reverse .about-step-num { left: auto; right: 1rem; }

.about-step-text h3 {
    font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem);
    letter-spacing: 0.06em; color: var(--cream); margin-bottom: 0.75rem;
}
.about-step-text p { font-size: 0.88rem; line-height: 1.75; color: var(--gray); }

/* ─── Materials — Big hero image + spec cards ─── */
.about-materials { background: var(--black); padding: 6rem 0; }
.about-mat-hero {
    position: relative; min-height: 400px; border-radius: var(--radius-lg); overflow: hidden;
    display: flex; align-items: flex-end; background-size: cover; background-position: center;
    margin-bottom: 2rem;
}
.about-mat-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.3) 100%),
                linear-gradient(to right, rgba(10,10,10,0.6) 0%, transparent 60%);
}
.about-mat-hero-content { position: relative; z-index: 2; padding: 2.5rem; max-width: 520px; }
.about-mat-hero-content p { font-size: 0.9rem; line-height: 1.7; color: var(--light-gray); margin-top: 1rem; }

.about-mat-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.about-mat-spec {
    background: var(--charcoal); border: 1px solid rgba(200,168,130,0.08); border-radius: var(--radius-lg);
    padding: 1.5rem; text-align: center; transition: border-color var(--transition);
}
.about-mat-spec:hover { border-color: rgba(200,168,130,0.2); }
.about-mat-spec-val {
    display: block; font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--sand), #e8d5b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 0.2rem;
}
.about-mat-spec-lbl { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.6rem; }
.about-mat-spec p { font-size: 0.76rem; line-height: 1.5; color: var(--gray); }

/* ─── Quote — Full bleed image ─── */
.about-quote-section {
    position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center; text-align: center;
}
.about-quote-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(2px);
}
.about-quote-content { position: relative; z-index: 2; padding: 5rem 0; max-width: 680px; margin: 0 auto; }
.about-quote-content blockquote { border: none; padding: 0; margin: 0; }
.about-quote-content blockquote p {
    font-family: var(--font-serif); font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    line-height: 1.6; color: var(--cream); font-style: italic; margin-bottom: 1.25rem;
}
.about-quote-content cite {
    font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--sand); font-style: normal;
}

/* ─── Sustainability — Text + Cards grid ─── */
.about-sustainability { background: var(--charcoal); padding: 5rem 0; }
.about-sustain-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-sustain-text p { font-size: 0.9rem; line-height: 1.7; color: var(--light-gray); margin-top: 1rem; }
.about-sustain-cards { display: flex; flex-direction: column; gap: 1rem; }
.about-sustain-card {
    background: rgba(200,168,130,0.04); border: 1px solid rgba(200,168,130,0.1);
    border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
    display: flex; align-items: flex-start; gap: 1rem;
    transition: border-color var(--transition), background var(--transition);
}
.about-sustain-card:hover { border-color: rgba(200,168,130,0.25); background: rgba(200,168,130,0.06); }
.about-sustain-card-icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
    background: rgba(200,168,130,0.1); color: var(--sand);
    display: flex; align-items: center; justify-content: center;
}
.about-sustain-card h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--cream); margin-bottom: 0.2rem; }
.about-sustain-card p { font-size: 0.78rem; line-height: 1.5; color: var(--gray); }

/* ─── Numbers strip ─── */
.about-numbers { background: var(--black); padding: 3rem 0; }
.about-numbers-strip {
    display: flex; justify-content: center; align-items: center; gap: 3rem;
    padding: 2rem 0; border-top: 1px solid rgba(200,168,130,0.1); border-bottom: 1px solid rgba(200,168,130,0.1);
}
.about-num { text-align: center; }
.about-num-val {
    display: block; font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.04em; color: var(--sand); line-height: 1;
}
.about-num-val small { font-size: 0.7em; }
.about-num-lbl { display: block; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 0.3rem; }
.about-num-div { width: 1px; height: 36px; background: rgba(200,168,130,0.15); }

/* ─── CTA — Image bg ─── */
.about-cta {
    position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center; text-align: center;
}
.about-cta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.7); }
.about-cta-content { position: relative; z-index: 2; padding: 5rem 0; max-width: 520px; margin: 0 auto; }
.about-cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: 0.06em; color: var(--cream); margin-bottom: 0.75rem; }
.about-cta-text { font-size: 0.95rem; color: var(--gray); margin-bottom: 2rem; }
.about-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── About responsive ─── */
@media (max-width: 900px) {
    .about-hero { min-height: 60vh; }
    .about-origin-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-origin-img-accent { display: none; }
    .about-step, .about-step--reverse { grid-template-columns: 1fr; gap: 1.5rem; direction: ltr; }
    .about-step--reverse > * { direction: ltr; }
    .about-step--reverse .about-step-num { left: 1rem; right: auto; }
    .about-mat-specs { grid-template-columns: repeat(2, 1fr); }
    .about-sustain-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-numbers-strip { flex-wrap: wrap; gap: 2rem; }
    .about-num-div { display: none; }
}
@media (max-width: 600px) {
    .about-hero { min-height: 50vh; }
    .about-hero-title { font-size: 3rem; }
    .about-origin, .about-process, .about-materials { padding: 4rem 0; }
    .about-step { margin-bottom: 2.5rem; }
    .about-mat-hero { min-height: 300px; }
    .about-mat-specs { grid-template-columns: 1fr 1fr; }
    .about-quote-section { min-height: 40vh; }
    .about-cta { min-height: 40vh; }
}

/* ─── Patch 011: Promotions, Badges, Stock ────────────── */

/* Custom badge colors */
.badge-custom { color: #fff; }

/* Promo pricing */
.price-promo { color: var(--red, #c0392b) !important; font-weight: 700; }
.product-card-price .price-save { display: inline-block; font-size: 0.7rem; font-weight: 600; color: var(--red, #c0392b); background: rgba(192,57,43,0.1); padding: 1px 6px; border-radius: 3px; margin-left: 0.25rem; }

/* Product page badge next to title */
.product-title-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.product-page-badge { display: inline-flex; align-items: center; padding: 0.25rem 0.65rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; border-radius: 4px; white-space: nowrap; }

/* Out of stock swatches/buttons */
.swatch-color.out-of-stock,
.size-btn.out-of-stock {
    opacity: 0.3;
    cursor: not-allowed;
    position: relative;
}
.size-btn.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--text);
    transform: rotate(-12deg);
}
.swatch-color.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
    background: rgba(255,255,255,0.6);
    transform: rotate(-45deg);
}

/* Stock status styles */
.stock-out { color: var(--red, #c0392b); font-weight: 600; }
.stock-low { color: #e67e22; font-weight: 500; }
.stock-in { color: #27ae60; }

/* Cart stock warnings */
.cart-stock-warnings {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.stock-warning-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(230,126,34,0.1);
    border: 1px solid rgba(230,126,34,0.25);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: #e67e22;
}
.stock-warning-item svg { flex-shrink: 0; stroke: #e67e22; }

/* ─── Cart & Drawer — Promo, Badges, Stock ─── */
.cart-item-badge, .drawer-item-badge {
    display: inline-block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: #fff; padding: 1px 6px; border-radius: 3px;
    vertical-align: middle; margin-left: 0.25rem;
}
.cart-item-promo-label, .drawer-item-promo-label, .checkout-item-promo {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    color: var(--red, #c0392b); background: rgba(192,57,43,0.1);
    padding: 1px 6px; border-radius: 3px; margin-top: 0.15rem;
}
.cart-item-stock-low, .drawer-item-stock-low {
    font-size: 0.7rem; color: #e67e22; margin-top: 0.15rem;
}
.cart-item-price .price-promo,
.cart-item-total .price-promo { color: var(--red, #c0392b); font-weight: 700; }
.cart-item-price .price-compare,
.cart-item-total .price-compare { text-decoration: line-through; color: var(--gray, #888); font-size: 0.85em; margin-left: 0.25rem; }
.checkout-item-price .price-promo { color: var(--red, #c0392b); font-weight: 700; }
.checkout-item-price .price-compare { text-decoration: line-through; color: var(--gray, #888); font-size: 0.8em; display: block; }
.drawer-item-price .price-promo { color: var(--red, #c0392b); font-weight: 600; }
.drawer-item-price .price-compare { text-decoration: line-through; color: var(--gray, #888); font-size: 0.85em; margin-left: 0.15rem; }
.drawer-stock-warnings { padding: 0.5rem 0.75rem; }
.drawer-stock-warning {
    font-size: 0.8rem; color: #e67e22; padding: 0.4rem 0.6rem;
    background: rgba(230,126,34,0.08); border-radius: 4px; margin-bottom: 0.3rem;
}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE STYLES - MOBILE FIRST
   ═══════════════════════════════════════════════════════════ */

/* ─── Auth Pages Mobile ─── */
@media (max-width: 480px) {
    .auth-page { padding: 2rem 1rem; min-height: auto; }
    .auth-title { font-size: 1.8rem; }
    .auth-subtitle { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .auth-form { gap: 1rem; }
    .form-field input { padding: 0.65rem 0.85rem; font-size: 0.85rem; }
}

/* ─── Checkout Mobile ─── */
@media (max-width: 768px) {
    .checkout-page { padding-bottom: 2rem; }
    .checkout-header { padding: 1rem 0; }
    .checkout-logo { font-size: 1.5rem; }
    .checkout-layout { gap: 1.5rem; }
    .checkout-section { padding: 1.25rem; }
    .checkout-section-title { font-size: 1.1rem; }
    .shipping-method { padding: 0.85rem; flex-wrap: wrap; }
    .shipping-method-info { flex: 1 1 60%; }
    .shipping-method-price { flex: 0 0 auto; }
    .checkout-submit .btn { font-size: 0.85rem; }
    
    /* Checkout sidebar on mobile */
    .checkout-sidebar { margin-bottom: 1.5rem; }
    .checkout-summary { padding: 1.25rem; }
    .checkout-item { gap: 0.5rem; }
    .checkout-item-img { width: 48px; height: 60px; }
    .checkout-item-name { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .checkout-header { margin-bottom: 1rem; }
    .checkout-section { padding: 1rem; }
    .checkout-section-title { font-size: 1rem; }
    .payment-card-box { padding: 0.85rem; }
    .sandbox-notice { font-size: 0.75rem; padding: 0.6rem 0.85rem; }
    .sandbox-notice code { font-size: 0.7rem; }
}

/* ─── Thank You Page Mobile ─── */
@media (max-width: 768px) {
    .thankyou-page { padding: 2rem 0; }
    .thankyou-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .thankyou-check svg { width: 48px; height: 48px; }
    .thankyou-box { padding: 1.25rem; }
    .thankyou-item { gap: 0.75rem; }
    .thankyou-item-img { width: 48px; height: 60px; }
    .thankyou-actions { flex-direction: column; gap: 0.75rem; }
    .thankyou-actions .btn { width: 100%; }
}

/* ─── Account Pages Mobile ─── */
@media (max-width: 768px) {
    .account-page { padding: 1.5rem 0 3rem; }
    .account-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
    .account-header h1 { font-size: 1.8rem; }
    .account-card { padding: 1.25rem; }
    .account-card h3 { font-size: 1.1rem; }
    
    /* Orders list */
    .order-row { flex-wrap: wrap; padding: 0.65rem; }
    .order-number { flex: 1 1 100%; margin-bottom: 0.5rem; }
    .order-date { flex: 1; }
    .order-status { flex: 0 0 auto; }
    .order-total { flex: 0 0 auto; }
    .order-arrow { display: none; }
    
    .order-meta { flex-wrap: wrap; gap: 0.5rem; }
}

/* ─── Product Page Mobile ─── */
@media (max-width: 768px) {
    .product-page { padding: 1.5rem 0 3rem; }
    .breadcrumbs { font-size: 0.7rem; margin-bottom: 0.75rem; }
    
    .product-gallery-main { margin-bottom: 0.5rem; }
    .product-gallery-thumbs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; }
    .gallery-thumb { flex-shrink: 0; }
    
    .product-title-row { margin-bottom: 0.5rem; }
    .product-rating { margin-bottom: 0.75rem; }
    .product-price { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .product-short-desc { font-size: 0.9rem; margin-bottom: 1.25rem; }
    
    .product-option { margin-bottom: 1rem; }
    .option-label { font-size: 0.75rem; margin-bottom: 0.4rem; }
    .option-swatches { flex-wrap: wrap; }
    .swatch-color { width: 28px; height: 28px; }
    .option-buttons { flex-wrap: wrap; }
    .size-btn { padding: 0.45rem 0.85rem; font-size: 0.75rem; min-width: 44px; }
    
    .qty-selector { }
    .qty-btn { width: 36px; height: 36px; }
    .qty-input { width: 40px; }
    
    .btn-add-to-cart { padding: 0.9rem 1.5rem; }
    
    .product-details-accordion { margin-top: 1.5rem; }
    .accordion-header { padding: 0.85rem 0; font-size: 0.8rem; }
    .accordion-body { font-size: 0.8rem; }
    
    .product-reviews { margin-top: 3rem; padding-top: 2rem; }
    .reviews-header { margin-bottom: 1.5rem; }
    .reviews-summary { gap: 0.75rem; margin-bottom: 1.5rem; }
    .reviews-avg { font-size: 2.5rem; }
    .review-form-wrap { padding: 1.25rem; }
    
    .related-products { margin-top: 3rem; padding-top: 2rem; }
}

@media (max-width: 480px) {
    .product-title { font-size: 1.4rem; }
    .product-page-badge { font-size: 0.6rem; padding: 0.2rem 0.5rem; }
    .product-price { font-size: 1.1rem; }
    .swatch-color { width: 26px; height: 26px; }
    .size-btn { padding: 0.4rem 0.7rem; font-size: 0.7rem; }
}

/* ─── Cart Page Mobile ─── */
@media (max-width: 768px) {
    .cart-page { padding: 1.5rem 0 3rem; }
    .cart-title { font-size: 2rem; margin-bottom: 1rem; }
    
    .shipping-bar { padding: 0.85rem; font-size: 0.8rem; margin-bottom: 1.5rem; }
    
    .cart-summary { padding: 1.25rem; margin-top: 1.5rem; }
    .cart-summary-title { font-size: 1.1rem; }
    .coupon-form { flex-direction: column; }
    .coupon-input { width: 100%; }
    
    .cart-empty { padding: 3rem 1rem; }
    .cart-empty svg { width: 48px; height: 48px; }
}

/* ─── Cart Drawer Mobile ─── */
@media (max-width: 480px) {
    .cart-drawer { width: 100vw; max-width: 100vw; }
    .cart-drawer-header { padding: 1rem; }
    .cart-drawer-header h3 { font-size: 1rem; }
    .cart-drawer-body { padding: 1rem; }
    .cart-drawer-footer { padding: 1rem; }
    
    .drawer-item { padding: 0.65rem 0; }
    .drawer-item-img { width: 56px; height: 70px; }
    .drawer-item-name { font-size: 0.8rem; }
    .drawer-item-variant { font-size: 0.65rem; }
    .drawer-item-price { font-size: 0.8rem; }
    
    .qty-selector-sm .qty-btn { width: 28px; height: 28px; font-size: 0.8rem; }
    .qty-selector-sm .qty-display { width: 32px; font-size: 0.8rem; }
}

/* ─── Search Page Mobile ─── */
@media (max-width: 768px) {
    .search-page { padding: 2rem 0 3rem; }
    .search-title { font-size: 1.6rem; margin-bottom: 1rem; }
    .search-page-form { flex-direction: column; gap: 0.5rem; }
    .search-page-input { font-size: 0.9rem; padding: 0.65rem 0.85rem; }
    .search-count { font-size: 0.8rem; }
}

/* ─── Static Pages Mobile ─── */
@media (max-width: 768px) {
    .static-page { padding: 2rem 0 3rem; }
    .page-title { font-size: 2rem; margin-bottom: 1.5rem; }
    .rich-text { font-size: 0.9rem; }
    .rich-text h2 { font-size: 1.5rem; }
    .rich-text h3 { font-size: 1rem; }
    .rich-text table { font-size: 0.85rem; }
    .rich-text th, .rich-text td { padding: 0.5rem; }
}

/* ─── Collection Page Mobile ─── */
@media (max-width: 768px) {
    .collection-header { padding: 2rem 0 1rem; }
    .collection-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
    .collection-description { font-size: 0.9rem; margin-top: 0.35rem; }
    
    .catalog-toolbar { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding-bottom: 0.75rem; margin-bottom: 1.5rem; }
    .catalog-filters { width: 100%; }
    .filter-select { flex: 1; font-size: 0.75rem; padding: 0.45rem 0.6rem; }
}

/* ─── Blog Mobile ─── */
@media (max-width: 768px) {
    .blog-page { padding: 2rem 0 4rem; }
    .blog-header { margin-bottom: 2rem; }
    
    .blog-article { padding: 2rem 0; }
    .blog-article-title { margin: 0.5rem 0; }
    .blog-article-meta { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; }
    .blog-article-hero { margin: 1.5rem 0; }
    .blog-article-hero img { max-height: 280px; }
    
    .blog-article-body.prose { font-size: 0.95rem; }
    .blog-article-body.prose h2 { font-size: 1.4rem; margin: 2rem 0 0.85rem; }
    .blog-article-body.prose h3 { font-size: 1.1rem; margin: 1.5rem 0 0.65rem; }
    
    .blog-article-footer { margin-top: 2rem; padding-top: 1.5rem; }
    .blog-related { padding: 2rem 0 3rem; }
}

/* ─── Error Page Mobile ─── */
@media (max-width: 480px) {
    .error-page { min-height: 50vh; padding: 2rem 1rem; }
    .error-code { font-size: 5rem; }
    .error-message { font-size: 1rem; margin: 0.75rem 0 1.5rem; }
    .error-actions { flex-direction: column; gap: 0.75rem; }
    .error-actions .btn { width: 100%; }
}

/* ─── Pagination Mobile ─── */
@media (max-width: 480px) {
    .pagination { gap: 0.25rem; margin-top: 2rem; }
    .pagination-btn { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
    .pagination-num { width: 32px; height: 32px; font-size: 0.8rem; }
}

/* ─── Flash Messages Mobile ─── */
@media (max-width: 480px) {
    .flash-message { padding: 0.6rem 0; font-size: 0.8rem; }
    .flash-message .container { flex-wrap: wrap; gap: 0.5rem; }
}

/* ─── Search Overlay Mobile ─── */
@media (max-width: 768px) {
    .search-overlay { padding: 0.85rem 0; }
    .search-form { gap: 0.5rem; }
    .search-input { font-size: 0.9rem; padding: 0.6rem 0; }
}

/* ─── Announcement Bar Mobile ─── */
@media (max-width: 480px) {
    .announcement-bar { padding: 0.4rem 0; font-size: 0.7rem; letter-spacing: 0.05em; }
    .announcement-code { margin-left: 0.35rem; }
}

/* ─── Review Form Mobile ─── */
@media (max-width: 480px) {
    .review-form-wrap { padding: 1rem; margin-bottom: 1.5rem; }
    .rating-star { font-size: 1.5rem; }
    .review-footer { flex-wrap: wrap; }
    .review-helpful { margin-left: 0; margin-top: 0.5rem; width: 100%; }
}

/* ─── About Page Mobile (additional) ─── */
@media (max-width: 480px) {
    .about-hero { min-height: 45vh; }
    .about-hero-content { padding: 3rem 0; }
    .about-hero-scroll { width: 36px; height: 36px; }
    
    .about-lead { font-size: 1.1rem; }
    .about-origin-text p { font-size: 0.85rem; }
    .about-origin-highlight { font-size: 0.9rem; padding-left: 0.85rem; }
    
    .about-step-text h3 { font-size: 1.2rem; }
    .about-step-text p { font-size: 0.85rem; }
    
    .about-mat-spec { padding: 1.25rem; }
    .about-mat-spec-val { font-size: 1.8rem; }
    .about-mat-spec-lbl { font-size: 0.65rem; }
    
    .about-quote-content blockquote p { font-size: 1.1rem; }
    
    .about-sustain-card { padding: 1rem; }
    .about-sustain-card-icon { width: 36px; height: 36px; }
    
    .about-cta-title { font-size: 1.5rem; }
    .about-cta-actions { flex-direction: column; }
    .about-cta-actions .btn { width: 100%; max-width: 280px; }
}

/* ─── Brand Ethos Mobile (additional) ─── */
@media (max-width: 480px) {
    .ethos-title { font-size: 2.2rem; }
    .ethos-intro { font-size: 0.85rem; }
    .ethos-bento-hero { min-height: 220px; }
    .ethos-bento-hero-content { padding: 1.5rem; }
    .ethos-bento-hero-content h3 { font-size: 1.3rem; }
    .ethos-bento-hero-stat-val { font-size: 2.2rem; }
    .ethos-bento-card { padding: 1.25rem; }
    .ethos-mini-stat { }
}

/* ─── Touch Improvements ─── */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn { min-height: 44px; }
    .nav-link { min-height: 44px; display: flex; align-items: center; }
    .header-action-btn { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .size-btn { min-height: 44px; }
    .qty-btn { min-width: 44px; min-height: 44px; }
    
    /* Remove hover effects that don't work on touch */
    .product-card-quick-add { display: none; }
    .product-card:hover .product-card-img-hover { opacity: 0; }
}

/* ─── Safe Area for notched phones ─── */
@supports (padding: max(0px)) {
    .site-header { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
    .site-footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
    .cart-drawer { padding-bottom: env(safe-area-inset-bottom); }
    .checkout-submit { padding-bottom: env(safe-area-inset-bottom); }
}

/* ─── Print Styles ─── */
@media print {
    .site-header, .site-footer, .announcement-bar, .cart-drawer, .cart-drawer-overlay, 
    .mobile-menu-toggle, .header-actions, .btn, .search-overlay { display: none !important; }
    
    body { background: #fff; color: #000; }
    .container { max-width: 100%; }
    
    .thankyou-box, .checkout-summary, .order-row { border: 1px solid #ccc; }
}

/* ═══════════════════════════════════════════════════
   BARBERÍA — Overrides del look
   Alto contraste, tipografía condensada en mayúsculas,
   líneas finas y franjas diagonales tipo poste de barbero.
   ═══════════════════════════════════════════════════ */

body { font-family: var(--font-body); }
h1, h2, .section-title { font-weight: 600; }
.section-title { letter-spacing: 0.1em; }

/* Header: barra superior con franja de poste de barbero */
.site-header {
    background: rgba(20,20,20,0.96);
    border-bottom: 1px solid var(--mid-gray);
}
.site-header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes); opacity: 0.85; pointer-events: none;
}
.logo-text {
    font-family: var(--font-display); font-size: 1.45rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--white);
}
.logo-script {
    font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.32em; text-transform: uppercase; color: var(--sand);
    display: block; margin-top: 0.1rem;
}

/* Botones: rectos, condensados, dorado sobre carbón */
.btn { border-radius: var(--radius); letter-spacing: 0.14em; }
.btn-primary { background: var(--sand); color: #141414; font-weight: 700; }
.btn-primary:hover { background: var(--sand-dark); color: #141414; }
.btn-outline { border: 1px solid var(--cream); color: var(--cream); background: transparent; }
.btn-outline:hover { background: var(--cream); color: var(--black); }
.btn-reserve {
    background: var(--sand); color: #141414; padding: 0.55rem 1.2rem;
    border-radius: var(--radius); font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
    transition: background var(--transition);
}
.btn-reserve:hover { background: var(--sand-dark); }

/* Hero a pantalla con overlay oscuro */
.hero { min-height: 92vh; }
.hero-overlay { background: linear-gradient(180deg, rgba(20,20,20,0.55) 0%, rgba(20,20,20,0.92) 100%); }
.hero-bg-default { background: linear-gradient(135deg, #1f1f1f 0%, #141414 55%, #1a160c 100%); }
.hero-eyebrow {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.42em; text-transform: uppercase; color: var(--sand);
}
.hero-eyebrow::after {
    content: ''; display: block; width: 76px; height: 4px;
    margin-top: 0.9rem; background: var(--pole-stripes); border-radius: 2px;
}
.hero-title {
    font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; line-height: 1.02;
    font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--white);
}
.hero-subtitle { color: var(--light-gray); font-size: 1.02rem; }

.marquee-strip { background: var(--charcoal); border-color: var(--mid-gray); }
.search-overlay, .nav-dropdown-menu, .mobile-menu { background: var(--charcoal); color: var(--cream); }
.product-card-image-wrap, .review-card, .blog-card { border: 1px solid var(--mid-gray); }

/* ─── Secciones del home (esqueleto .spa-* heredado) ── */
.spa-section { padding: 4.5rem 0; }
.spa-section-alt { background: var(--charcoal); border-top: 1px solid var(--mid-gray); border-bottom: 1px solid var(--mid-gray); }
.spa-kicker {
    display: block; text-align: center; font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.38em;
    text-transform: uppercase; color: var(--sand); margin-bottom: 0.55rem;
}
.spa-kicker::after {
    content: ''; display: block; width: 64px; height: 4px;
    margin: 0.7rem auto 0; background: var(--pole-stripes); border-radius: 2px;
}
.spa-title {
    font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em;
    text-align: center; margin-bottom: 0.4rem; color: var(--white);
}
.spa-sub { text-align: center; color: var(--gray); max-width: 560px; margin: 0 auto 2.5rem; }

/* Lista de precios estilo barbería (home) */
.bb-pricelist { max-width: 840px; margin: 0 auto 2.4rem; }
.bb-pricelist .bk-cat { margin-top: 0; }
.bb-price-row { padding: 1rem 0.25rem 1.05rem; border-bottom: 1px solid var(--mid-gray); }
.bb-price-row:first-of-type { border-top: 1px solid var(--mid-gray); }
.bb-price-main { display: flex; align-items: center; gap: 0.9rem; }
.bb-price-name {
    font-family: var(--font-display); font-size: 1.12rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.07em; color: var(--cream);
}
.bb-price-dots { flex: 1; min-width: 24px; border-bottom: 1px dotted #4a4a4a; transform: translateY(3px); }
.bb-price-dur { font-size: 0.74rem; color: var(--gray); letter-spacing: 0.08em; white-space: nowrap; }
.bb-price-amount {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    color: var(--sand); white-space: nowrap;
}
.bb-price-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.55; margin-top: 0.35rem; max-width: 640px; }

/* Tarjetas de servicio (esqueleto .svc-* — lo usan otros templates) */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.svc-card {
    background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    display: flex; flex-direction: column;
    transition: transform var(--transition), border-color var(--transition);
}
.svc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes); z-index: 1;
}
.svc-card:hover { transform: translateY(-3px); border-color: rgba(201,162,39,0.55); }
.svc-card-img { height: 170px; background: linear-gradient(135deg, #242424, #1a1a1a); background-size: cover; background-position: center; filter: grayscale(0.4) contrast(1.05); }
.svc-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.svc-card-cat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--sand); font-weight: 700; }
.svc-card-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; color: var(--cream); }
.svc-card-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; flex: 1; }
.svc-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.svc-card-price { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--sand); }
.svc-card-dur { font-size: 0.76rem; color: var(--gray); }

/* Lema / filosofía */
.spa-quote {
    font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
    font-size: clamp(1.4rem, 3vw, 2.1rem); letter-spacing: 0.08em;
    text-align: center; max-width: 760px; margin: 0 auto; line-height: 1.35;
    color: var(--white);
}
.spa-quote::before { content: '“'; color: var(--sand); font-size: 1.3em; }
.spa-quote::after { content: '”'; color: var(--sand); font-size: 1.3em; }

/* Equipo de barberos — fotos en blanco y negro */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card {
    text-align: center; background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg); padding: 2.1rem 1.4rem 1.9rem;
    position: relative; overflow: hidden;
    transition: border-color var(--transition);
}
.team-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes);
}
.team-card:hover { border-color: rgba(201,162,39,0.55); }
.team-avatar {
    width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 1rem;
    background: var(--dark-gray); border: 2px solid var(--mid-gray); color: var(--sand);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); transition: filter var(--transition); }
.team-card:hover .team-avatar img { filter: grayscale(0.25) contrast(1.03); }
.team-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream); }
.team-role { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sand); margin: 0.25rem 0 0.6rem; font-weight: 600; }
.team-bio { font-size: 0.84rem; color: var(--gray); line-height: 1.6; }

/* Visítanos */
.visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.visit-card {
    background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg); padding: 1.8rem; text-align: center;
}
.visit-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; color: var(--cream); }
.visit-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.visit-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--dark-gray); border: 1px solid var(--mid-gray); color: var(--sand);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem;
}

/* Footer con franja superior */
.site-footer { position: relative; background: var(--charcoal); border-top: 1px solid var(--mid-gray); }
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes); opacity: 0.85;
}
.footer-logo { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.26em; color: var(--white); }
.newsletter-btn { color: #141414; font-weight: 700; }

/* ─── Flujo de reserva (esqueleto .bk-* heredado) ── */
.bk-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 1rem 4.5rem; }
.bk-steps { display: flex; justify-content: center; gap: 0.4rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.bk-step { display: flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray); }
.bk-step .n { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--mid-gray); display: flex; align-items: center; justify-content: center; font-weight: 600; }
.bk-step.active { color: var(--cream); font-weight: 600; }
.bk-step.active .n { background: var(--sand); border-color: var(--sand); color: #141414; }
.bk-step.done .n { background: var(--green); border-color: var(--green); color: var(--white); }
.bk-step + .bk-step::before { content: ''; width: 26px; height: 1px; background: var(--mid-gray); margin: 0 0.3rem; }

.bk-title {
    font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em;
    text-align: center; margin-bottom: 0.4rem; color: var(--white);
}
.bk-sub { text-align: center; color: var(--gray); margin-bottom: 2.2rem; }

.bk-cat {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--sand);
    margin: 2rem 0 1rem; padding-bottom: 0.45rem; border-bottom: 1px solid var(--mid-gray);
}
.bk-list { display: flex; flex-direction: column; gap: 0.8rem; }
.bk-item {
    display: flex; align-items: center; gap: 1.1rem;
    background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg); padding: 1.1rem 1.4rem; color: var(--cream);
    transition: transform var(--transition), border-color var(--transition);
}
.bk-item:hover { transform: translateY(-2px); border-color: rgba(201,162,39,0.55); }
.bk-item-info { flex: 1; }
.bk-item-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.bk-item-desc { font-size: 0.82rem; color: var(--gray); margin-top: 0.15rem; }
.bk-item-meta { text-align: right; white-space: nowrap; }
.bk-item-price { font-family: var(--font-display); font-weight: 600; color: var(--sand); }
.bk-item-dur { display: block; font-size: 0.76rem; color: var(--gray); }
.bk-item-arrow { color: var(--sand); font-size: 1.2rem; }

.bk-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; margin-bottom: 1.8rem; }
.bk-day { text-align: center; padding: 0.55rem 0.2rem; border-radius: var(--radius); font-size: 0.8rem; background: var(--charcoal); color: var(--cream); border: 1.5px solid var(--mid-gray); }
.bk-day small { display: block; font-size: 0.62rem; text-transform: uppercase; color: var(--gray); }
.bk-day.sel { border-color: var(--sand); background: var(--sand); color: #141414; }
.bk-day.sel small { color: rgba(20,20,20,0.75); }
.bk-day.off { opacity: 0.3; pointer-events: none; }

.bk-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 0.55rem; }
.bk-slot {
    text-align: center; padding: 0.65rem 0.3rem; border-radius: var(--radius);
    background: var(--charcoal); border: 1.5px solid var(--mid-gray);
    font-size: 0.86rem; font-weight: 600; color: var(--cream); transition: all var(--transition);
}
.bk-slot:hover { border-color: var(--sand); color: var(--sand); }

.bk-summary {
    background: var(--dark-gray); border-left: 3px solid var(--sand);
    border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-bottom: 1.6rem;
    font-size: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem;
}
.bk-summary strong { font-weight: 700; color: var(--cream); }
.bk-form {
    background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg); padding: 1.8rem;
    display: flex; flex-direction: column; gap: 1.1rem;
}
.bk-form label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); font-weight: 600; display: block; margin-bottom: 0.35rem; }
.bk-form input, .bk-form textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1.5px solid var(--mid-gray); border-radius: var(--radius); background: var(--black); color: var(--cream); font: inherit; }
.bk-form input:focus, .bk-form textarea:focus { outline: none; border-color: var(--sand); }

.bk-confirm-card {
    background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg); padding: 2.4rem; text-align: center;
    position: relative; overflow: hidden;
}
.bk-confirm-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes);
}
.bk-code { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.22em; color: var(--sand); margin: 0.8rem 0; }
.bk-badge { display: inline-block; padding: 0.3rem 0.9rem; border-radius: var(--radius); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.bk-badge.ok { background: rgba(111,143,90,0.16); color: #9bbd80; }
.bk-badge.warn { background: rgba(201,162,39,0.14); color: var(--sand); }
.bk-badge.off { background: rgba(192,91,74,0.16); color: #d98a7a; }
.bk-detail { margin: 1.2rem auto; max-width: 380px; text-align: left; font-size: 0.92rem; display: flex; flex-direction: column; gap: 0.45rem; }
.bk-detail div { display: flex; justify-content: space-between; gap: 1rem; }
.bk-detail span:first-child { color: var(--gray); }

@media (max-width: 640px) {
    .bk-cal { grid-template-columns: repeat(7, 1fr); gap: 0.25rem; }
    .bk-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .bk-item-meta { text-align: left; }
    .bb-price-main { flex-wrap: wrap; row-gap: 0.4rem; }
    .bb-price-dots { display: none; }
    .bb-price-name { flex: 1 1 100%; }
}

/* ═══════════════════════════════════════════════════
   BARBERÍA — Pulido visual v2
   Latón en vez de amarillo, marcos tipo cartel, grano
   sutil, micro-interacciones firmes y accesibilidad.
   Solo variables derivadas: el contrato :root no cambia.
   ═══════════════════════════════════════════════════ */

:root {
    /* Derivadas (resuelven en uso, respetan settings por tienda) */
    --brass-12: color-mix(in srgb, var(--sand) 12%, transparent);
    --brass-22: color-mix(in srgb, var(--sand) 22%, transparent);
    --brass-40: color-mix(in srgb, var(--sand) 40%, transparent);
    --brass-hi: color-mix(in srgb, var(--sand) 78%, #fff 22%);
    --brass-lo: color-mix(in srgb, var(--sand) 80%, #000 20%);
    --ink-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
    --hairline: rgba(255, 255, 255, 0.07);
    --t-fast: 0.16s ease;

    /* Variables que el esqueleto referencia pero no definía */
    --gold: var(--sand);
    --accent: var(--sand);
    --medium-gray: var(--mid-gray);
    --text: var(--cream);
    --radius-sm: var(--radius);
}

/* ─── Atmósfera: grano de película muy leve + selección ── */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
::selection { background: var(--sand); color: #141414; }

/* Scrollbar discreto a juego */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 6px; border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--brass-40); }

/* ─── Accesibilidad: foco visible consistente ───────── */
:focus-visible {
    outline: 2px solid var(--sand);
    outline-offset: 2px;
    border-radius: 2px;
}
.btn:focus-visible, .btn-reserve:focus-visible { outline-offset: 3px; }
.search-input:focus-visible, .newsletter-input:focus-visible { outline-offset: 0; }

/* ─── Tipografía: titulares contundentes, aire de cartel ── */
.section-title, .spa-title, .bk-title, .collection-title,
.cart-title, .page-title, .auth-title, .search-title, .product-title {
    text-transform: uppercase;
    font-weight: 600;
    text-wrap: balance;
}
.hero-title { text-shadow: 0 1px 0 rgba(0,0,0,0.55), 0 14px 36px rgba(0,0,0,0.45); }
.product-title { letter-spacing: 0.07em; }
.price-current { font-family: var(--font-display); letter-spacing: 0.03em; }

/* ─── Botones: latón con bisel, hovers firmes y rápidos ── */
.btn, .btn-reserve, .newsletter-btn {
    transition: background var(--t-fast), color var(--t-fast),
                border-color var(--t-fast), box-shadow var(--t-fast),
                transform var(--t-fast);
}
.btn-primary, .btn-reserve, .newsletter-btn {
    background: var(--sand); /* fallback */
    background: linear-gradient(180deg, var(--brass-hi) 0%, var(--sand) 42%, var(--brass-lo) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), inset 0 -2px 0 rgba(0,0,0,0.28), 0 2px 10px rgba(0,0,0,0.35);
    text-shadow: 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover, .btn-reserve:hover, .newsletter-btn:hover {
    background: var(--sand-dark);
    background: linear-gradient(180deg, var(--sand) 0%, var(--brass-lo) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.3), 0 1px 4px rgba(0,0,0,0.4);
    transform: translateY(1px);
}
.btn-outline { border-color: var(--gray); }
.btn-outline:hover {
    background: var(--sand); border-color: var(--sand); color: #141414;
    box-shadow: 0 2px 12px var(--brass-22);
}

/* ─── Header: navegación con subrayado grueso animado ── */
.site-header { box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--sand); transform: scaleX(0); transform-origin: left center;
    transition: transform var(--t-fast);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active::after { height: 2px; transform: scaleX(1); }
.mobile-menu-toggle:hover span { background: var(--sand); }
.cart-count { box-shadow: 0 0 0 2px var(--black); }

/* Enlace de sección con subrayado grueso */
.section-link { position: relative; text-transform: uppercase; font-weight: 600; }
.section-link:hover { opacity: 1; }
.section-link::after {
    content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 100%;
    background: var(--sand); transform: scaleX(0.4); transform-origin: left center;
    transition: transform var(--t-fast);
}
.section-link:hover::after { transform: scaleX(1); }

/* ─── Carta de precios: conductores en latón, fila viva ── */
.bb-price-row { transition: background var(--t-fast); }
.bb-price-row:hover { background: linear-gradient(90deg, var(--brass-12), transparent 70%); }
.bb-price-row:hover .bb-price-name { color: var(--white); }
.bb-price-dots { border-bottom-color: var(--brass-40); opacity: 0.7; }
.bb-price-name { transition: color var(--t-fast); }

/* ─── Tarjetas de producto: marco firme, alta el hover ── */
.product-card-image-wrap { transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.product-card:hover .product-card-image-wrap { border-color: var(--brass-40); box-shadow: var(--ink-shadow); }
.product-card-quick-add {
    background: var(--sand); color: #141414; font-weight: 700;
    transition: transform var(--t-fast), background var(--t-fast);
}
.product-card-quick-add:hover { background: var(--brass-hi); }

/* ─── Barberos: marco interior tipo cartel + retrato ── */
.team-card::after {
    content: ''; position: absolute; inset: 9px; pointer-events: none;
    border: 1px solid var(--brass-22); border-radius: 2px;
    transition: border-color var(--t-fast);
}
.team-card:hover::after { border-color: var(--brass-40); }
.team-card:hover { box-shadow: var(--ink-shadow); }
.team-avatar {
    border-color: var(--brass-40);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.03);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.team-card:hover .team-avatar { border-color: var(--sand); box-shadow: 0 0 0 5px var(--brass-12); }

/* Visítanos: iconos que toman latón al pasar */
.visit-card { transition: border-color var(--t-fast), transform var(--t-fast); }
.visit-card:hover { border-color: var(--brass-40); transform: translateY(-2px); }
.visit-icon { transition: border-color var(--t-fast), background var(--t-fast); }
.visit-card:hover .visit-icon { border-color: var(--brass-40); background: var(--brass-12); }

/* ─── Agenda: días y horas legibles, hover firme ─────── */
.bk-day { transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast); }
.bk-day:not(.off):not(.sel):hover { border-color: var(--sand); color: var(--sand); }
.bk-slot { font-variant-numeric: tabular-nums; transition: all var(--t-fast); }
.bk-slot:hover { background: var(--sand); border-color: var(--sand); color: #141414; box-shadow: 0 2px 12px var(--brass-22); }
.bk-item-arrow { transition: transform var(--t-fast); }
.bk-item:hover .bk-item-arrow { transform: translateX(4px); }
.bk-item:hover { box-shadow: var(--ink-shadow); }
.bk-step .n { transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast); }
.bk-confirm-card { box-shadow: var(--ink-shadow); }
.bk-code { text-shadow: 0 1px 0 rgba(0,0,0,0.5); }

/* ─── Formularios oscuros cuidados ───────────────────── */
.bk-form input:focus, .bk-form textarea:focus,
.form-input:focus, .form-field input:focus,
.form-field select:focus, .form-field textarea:focus,
.coupon-input:focus, .newsletter-input:focus, .search-page-input:focus {
    border-color: var(--sand);
    box-shadow: 0 0 0 3px var(--brass-12);
    outline: none;
}
.form-field input, .form-field select, .form-field textarea,
.form-input, .coupon-input, .newsletter-input, .search-page-input {
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
input::placeholder, textarea::placeholder { color: var(--gray); opacity: 0.65; }

/* ─── Galería y página de producto ───────────────────── */
.gallery-thumb { transition: border-color var(--t-fast), opacity var(--t-fast); opacity: 0.75; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; }
.product-gallery-main { border: 1px solid var(--mid-gray); }
.size-btn { transition: all var(--t-fast); }
.size-btn.active { background: var(--sand); border-color: var(--sand); color: #141414; font-weight: 700; }

/* ─── Footer: placas con regla de latón ──────────────── */
.footer-heading { position: relative; padding-bottom: 0.6rem; }
.footer-heading::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 26px; height: 2px; background: var(--sand); opacity: 0.8;
}
.footer-links a { transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-links a:hover { color: var(--sand); }
.footer-newsletter-title { text-transform: uppercase; }
@media (max-width: 768px) {
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
}

/* Drawer del carrito con sombra profunda */
.cart-drawer { box-shadow: -28px 0 70px rgba(0,0,0,0.55); border-left: 1px solid var(--hairline); }

/* Marquee: separador en latón, sin chillar */
.marquee-dot { color: var(--sand); }
.marquee-track { color: var(--light-gray); }

/* Paginación a juego */
.pagination-btn:hover, .pagination-num:hover { border-color: var(--brass-40); }

/* ─── Movimiento reducido ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track { animation: none; }
    .about-hero-scroll { animation: none; }
    .btn-primary:hover, .btn-reserve:hover, .newsletter-btn:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════
   BARBERÍA — Profundización v3
   Reserva como carta de precios, fichas firmes, ticket
   de barbería, etiquetas vintage e interiores con
   marco de cartel. Solo CSS: clases y :root intactos.
   ═══════════════════════════════════════════════════ */

/* ─── RESERVA · Paso 1: servicios como carta de precios ── */
.bk-list:has(.bk-item-meta) {
    position: relative;
    background: var(--charcoal);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1.7rem;
    gap: 0;
    box-shadow: var(--ink-shadow);
}
.bk-list:has(.bk-item-meta)::after {
    content: ''; position: absolute; inset: 7px;
    border: 1px solid var(--brass-12); border-radius: 2px;
    pointer-events: none;
}
.bk-list:has(.bk-item-meta) .bk-item {
    display: grid;
    grid-template-columns: auto 1fr max-content auto;
    grid-template-rows: auto auto;
    align-items: baseline;
    column-gap: 0.9rem; row-gap: 0.2rem;
    background: transparent; border: none; border-radius: 0;
    border-bottom: 1px solid var(--hairline);
    padding: 1.05rem 0.4rem;
}
.bk-list:has(.bk-item-meta) .bk-item:last-child { border-bottom: none; }
.bk-list:has(.bk-item-meta) .bk-item:hover {
    transform: none; box-shadow: none;
    background: linear-gradient(90deg, var(--brass-12), transparent 75%);
    border-color: var(--hairline);
}
.bk-list:has(.bk-item-meta) .bk-item-info { display: contents; }
.bk-list:has(.bk-item-meta) .bk-item-name { grid-column: 1; grid-row: 1; font-size: 1.18rem; }
.bk-list:has(.bk-item-meta) .bk-item:hover .bk-item-name { color: var(--white); }
/* Puntos conductores entre nombre y precio */
.bk-list:has(.bk-item-meta) .bk-item::before {
    content: ''; grid-column: 2; grid-row: 1;
    align-self: center; min-width: 24px;
    border-bottom: 1px dotted var(--brass-40); opacity: 0.7;
    transform: translateY(2px);
}
.bk-list:has(.bk-item-meta) .bk-item-desc { grid-column: 1 / 3; grid-row: 2; margin-top: 0; max-width: 560px; }
.bk-list:has(.bk-item-meta) .bk-item-meta { grid-column: 3; grid-row: 1; }
.bk-list:has(.bk-item-meta) .bk-item-price { font-size: 1.18rem; letter-spacing: 0.03em; }
.bk-list:has(.bk-item-meta) .bk-item-arrow { grid-column: 4; grid-row: 1; align-self: center; }

@media (max-width: 640px) {
    .bk-list:has(.bk-item-meta) { padding: 0.6rem 1.1rem; }
    .bk-list:has(.bk-item-meta) .bk-item { grid-template-columns: 1fr max-content auto; padding: 0.95rem 0.1rem; }
    .bk-list:has(.bk-item-meta) .bk-item::before { display: none; }
    .bk-list:has(.bk-item-meta) .bk-item-name { font-size: 1.05rem; }
    .bk-list:has(.bk-item-meta) .bk-item-desc { grid-column: 1 / -1; }
    .bk-list:has(.bk-item-meta) .bk-item-meta { grid-column: 2; text-align: right; }
    .bk-list:has(.bk-item-meta) .bk-item-arrow { grid-column: 3; }
}

/* ─── RESERVA · Paso 2: barberos con marco de cartel ───── */
.bk-item:not(:has(.bk-item-meta)) {
    position: relative; overflow: hidden;
    padding: 1.45rem 1.7rem;
}
.bk-item:not(:has(.bk-item-meta))::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes);
}
.bk-item:not(:has(.bk-item-meta))::after {
    content: ''; position: absolute; inset: 7px;
    border: 1px solid var(--brass-22); border-radius: 2px;
    pointer-events: none; transition: border-color var(--t-fast);
}
.bk-item:not(:has(.bk-item-meta)):hover::after { border-color: var(--brass-40); }
.bk-item:not(:has(.bk-item-meta)) .bk-item-name { font-size: 1.32rem; }
.bk-item:not(:has(.bk-item-meta)) .bk-item-desc { margin-top: 0.25rem; }

/* ─── RESERVA · Paso 3: días y horas como fichas firmes ── */
.bk-day {
    font-family: var(--font-display); font-size: 1rem; font-weight: 500;
    padding: 0.6rem 0.2rem 0.55rem;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}
.bk-day small { font-family: var(--font-body); letter-spacing: 0.1em; margin-bottom: 1px; }
.bk-day.sel {
    background: linear-gradient(180deg, var(--brass-hi) 0%, var(--sand) 45%, var(--brass-lo) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -2px 0 rgba(0,0,0,0.25), 0 2px 0 rgba(0,0,0,0.35);
    font-weight: 600;
}
.bk-slot {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
    letter-spacing: 0.04em; padding: 0.85rem 0.3rem;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}
.bk-slot:hover {
    background: linear-gradient(180deg, var(--brass-hi) 0%, var(--sand) 45%, var(--brass-lo) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -2px 0 rgba(0,0,0,0.25), 0 2px 0 rgba(0,0,0,0.35);
    transform: translateY(1px);
}

/* ─── RESERVA · Paso 4: resumen tipo ticket ────────────── */
.bk-summary {
    flex-direction: column; gap: 0;
    background: var(--dark-gray);
    border: 1px dashed var(--brass-40);
    border-left: 1px dashed var(--brass-40); /* anula el sólido del esqueleto */
    border-radius: 3px;
    padding: 1.1rem 1.5rem 1.25rem;
    font-variant-numeric: tabular-nums;
}
.bk-summary::before {
    content: '✂ · · · · · · · · · · · · · · · · · · · · · · · · · · · · · ·';
    display: block; overflow: hidden; white-space: nowrap;
    font-size: 0.72rem; letter-spacing: 0.18em; color: var(--gray);
    padding-bottom: 0.6rem; margin-bottom: 0.35rem;
    border-bottom: 1px dashed var(--hairline);
}
.bk-summary span { display: block; padding: 0.42rem 0; border-bottom: 1px dashed var(--hairline); }
.bk-summary span:last-child { border-bottom: none; padding-bottom: 0; }
.bk-summary span:first-child {
    font-family: var(--font-display); font-size: 1.15rem;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--white);
}
.bk-summary span:last-child {
    font-family: var(--font-display); font-size: 1.05rem;
    color: var(--sand); letter-spacing: 0.04em;
}

/* ─── RESERVA · Confirmación: código grande, marco cartel ─ */
.bk-confirm-card::after {
    content: ''; position: absolute; inset: 10px;
    border: 1px solid var(--brass-22); border-radius: 2px;
    pointer-events: none;
}
.bk-code {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
    font-weight: 600; letter-spacing: 0.2em;
    margin: 1rem 0 0.9rem;
}
.bk-detail { max-width: 360px; }
.bk-detail div { align-items: baseline; gap: 0.7rem; }
.bk-detail div::before {
    content: ''; order: 2; flex: 1; min-width: 18px;
    border-bottom: 1px dotted var(--brass-40); opacity: 0.65;
    transform: translateY(-3px);
}
.bk-detail div span:first-child { order: 1; flex: 0 0 auto; }
.bk-detail div strong { order: 3; text-align: right; }

/* ─── CATÁLOGO · Etiqueta vintage sobria ───────────────── */
.product-card-info { text-align: center; padding: 0.9rem 0.5rem 0.4rem; }
.product-card-info::before {
    content: ''; display: block; width: 44px; height: 5px;
    border-top: 1px solid var(--brass-40); border-bottom: 1px solid var(--brass-12);
    margin: 0 auto 0.6rem;
}
.product-card-title {
    font-family: var(--font-display); font-size: 0.95rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.product-card-rating, .product-card-price, .product-card-colors { justify-content: center; }
.product-card-price .price-current { font-size: 1.08rem; color: var(--sand); }
.product-card-price .price-compare { font-family: var(--font-body); }

/* Degradación elegante si la foto no carga (alt oculto + fondo) */
.product-card-img, .product-main-img, .gallery-thumb img,
.collection-card-img, .team-avatar img, .blog-list-thumb img,
.cart-item-image img, .drawer-item-img, .checkout-item-img img,
.thankyou-item-img img, .svc-card-img img {
    color: transparent; text-indent: 100%; white-space: nowrap; overflow: hidden;
}
.product-card-image-wrap { isolation: isolate; }
.product-card-image-wrap::before {
    content: '✂'; position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--brass-22);
    background: radial-gradient(ellipse at center, #242424 0%, #191919 75%);
}
.product-card-img { position: relative; z-index: 1; }
.product-gallery-main { position: relative; }
.product-gallery-main::before {
    content: '✂'; position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 4.5rem; color: var(--brass-22);
    background: radial-gradient(ellipse at center, #242424 0%, #191919 75%);
}
.product-main-img { position: relative; z-index: 1; }

/* ─── FICHA · Precio contundente ───────────────────────── */
.product-price {
    font-family: var(--font-display); font-size: 1.9rem; font-weight: 600;
    letter-spacing: 0.03em; color: var(--white);
}
.product-price .price-current { font-size: 1.9rem; letter-spacing: 0.03em; }
.product-price .price-compare { font-family: var(--font-body); font-size: 1rem; font-weight: 400; }
.product-price .price-save { font-size: 0.78rem; transform: translateY(-4px); }
@media (max-width: 480px) {
    .product-price .price-current { font-size: 1.5rem; }
}
.product-vendor, .product-sku { color: var(--gray); }

/* ─── CARRITO Y CHECKOUT · Resumen tipo cuenta ─────────── */
.cart-summary, .checkout-summary {
    position: relative; overflow: hidden;
    border: 1px solid var(--mid-gray);
}
.cart-summary::before, .checkout-summary::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes); opacity: 0.85;
}
.cart-summary-row, .checkout-total-row, .thankyou-row {
    align-items: baseline; gap: 0.7rem;
    font-variant-numeric: tabular-nums;
}
.cart-summary-row::before, .checkout-total-row::before, .thankyou-row::before {
    content: ''; order: 2; flex: 1; min-width: 16px;
    border-bottom: 1px dotted var(--brass-40); opacity: 0.55;
    transform: translateY(-3px);
}
.cart-summary-row > span:first-child,
.checkout-total-row > span:first-child,
.thankyou-row > span:first-child { order: 1; flex: 0 1 auto; }
.cart-summary-row > span:last-child,
.checkout-total-row > span:last-child,
.thankyou-row > span:last-child { order: 3; text-align: right; }
.cart-summary-total > span:last-child,
.checkout-total-row.total > span:last-child,
.thankyou-row.total > span:last-child {
    font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
    letter-spacing: 0.03em; color: var(--sand);
}

/* Carrito vacío con actitud de cartel */
.cart-empty {
    max-width: 520px; margin: 1rem auto; position: relative;
    background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg); padding: 3.2rem 2rem;
}
.cart-empty::after {
    content: ''; position: absolute; inset: 8px;
    border: 1px solid var(--brass-12); border-radius: 2px; pointer-events: none;
}
.cart-empty svg { color: var(--sand); opacity: 0.7; }

/* ─── AUTH · Tarjeta oscura enmarcada ──────────────────── */
.auth-box {
    position: relative; overflow: hidden;
    background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg);
    padding: 2.6rem 2.3rem 2.3rem;
    box-shadow: var(--ink-shadow);
}
.auth-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes); opacity: 0.85;
}
.auth-box::after {
    content: ''; position: absolute; inset: 9px;
    border: 1px solid var(--brass-12); border-radius: 2px; pointer-events: none;
}
.auth-title { text-align: center; }
.auth-subtitle { text-align: center; margin-bottom: 1.8rem; }
.auth-form input { background: var(--black); }
@media (max-width: 480px) {
    .auth-box { padding: 2rem 1.4rem 1.8rem; }
}

/* ─── BLOG · Cabecera de cartel ────────────────────────── */
.blog-header .section-label {
    display: block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.38em; text-transform: uppercase; color: var(--sand);
    margin-bottom: 0.55rem;
}
.blog-header .section-label::after {
    content: ''; display: block; width: 64px; height: 4px;
    margin: 0.7rem auto 0; background: var(--pole-stripes); border-radius: 2px;
}
.blog-list-title { text-transform: uppercase; letter-spacing: 0.05em; }
.empty-state {
    max-width: 520px; margin: 0 auto;
    border: 1px dashed var(--mid-gray); border-radius: var(--radius-lg);
}

/* ─── 404 · Cartel con marco ───────────────────────────── */
.error-content {
    position: relative; overflow: hidden;
    background: var(--charcoal); border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg);
    padding: 3.2rem 3.5rem 3rem;
    box-shadow: var(--ink-shadow);
}
.error-content::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--pole-stripes); opacity: 0.85;
}
.error-content::after {
    content: ''; position: absolute; inset: 9px;
    border: 1px solid var(--brass-12); border-radius: 2px; pointer-events: none;
}
.error-code { font-weight: 600; text-shadow: 0 1px 0 rgba(0,0,0,0.5); }
.error-message { margin: 0.75rem 0 1.8rem; }
@media (max-width: 480px) {
    .error-content { padding: 2.2rem 1.4rem 2rem; }
}

/* ─── RITMO DEL HOME · transiciones menos duras ────────── */
.spa-section { padding: 5rem 0; }
.spa-section-alt {
    border-top-color: var(--hairline); border-bottom-color: var(--hairline);
    background: linear-gradient(180deg, #1c1c1c 0%, var(--charcoal) 50%, #1c1c1c 100%);
}
.spa-sub { margin-bottom: 2.8rem; }
.bb-pricelist { margin-bottom: 2.8rem; }
@media (max-width: 640px) {
    .spa-section { padding: 3.4rem 0; }
}
