/* ═══════════════════════════════════════════════════
   KÖRPER — Theme CSS
   Dark premium aesthetic
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Variables ──────────────────────────── */
:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --mid-gray: #444;
    --gray: #888;
    --light-gray: #bbb;
    --cream: #f0ebe4;
    --sand: #c8a882;
    --sand-dark: #b0926e;
    --white: #fff;
    --red: #c0392b;
    --green: #27ae60;

    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    --header-height: 64px;
    --container: 1280px;
    --container-narrow: 780px;
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.3s ease;
}

*, *::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; }
}
