/* Thymeleaf storefront styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --radius: 0.25rem;
  --background: #fff;
  --foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-fg: #737373;
  --border: #ebebeb;
  --gold: #c9a227;
  --gold-light: #e0c06a;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--background); color: var(--foreground); line-height: 1.5; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, .font-display { font-family: var(--font-display); letter-spacing: -0.01em; }
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-lg { width: 2.5rem; height: 2.5rem; }
.icon-xl { width: 3rem; height: 3rem; }
.icon-gold { color: var(--gold); }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.site-main { flex: 1; }
.page-content { padding: 2rem 0 3rem; }
.page-content-wide { max-width: 72rem; }
.page-content-narrow { max-width: 36rem; margin-left: auto; margin-right: auto; }
.page-title { font-size: 2rem; margin-bottom: .5rem; }
.page-title-lg { font-size: 2.5rem; line-height: 1.1; }
.page-meta { font-size: .875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.page-lead { font-size: 1.125rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.page-hero { padding: 3rem 0 2rem; }
.page-hero-narrow { max-width: 48rem; }
.page-eyebrow { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.text-gold { color: var(--gold); font-style: italic; }
.text-center { text-align: center; }
.text-muted { color: var(--muted-fg); }
.text-sm { font-size: .875rem; }
.font-mono { font-family: ui-monospace, monospace; font-size: .875rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }

.hidden-mobile { display: none !important; }
.hidden-desktop { display: block; }
@media (min-width: 768px) {
  .hidden-mobile { display: block !important; }
  .hidden-mobile-flex { display: flex !important; }
  .hidden-desktop { display: none !important; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.25rem; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; border: none; cursor: pointer; transition: all .2s; text-decoration: none; }
.btn-primary, .btn-submit { background: var(--foreground); color: var(--background); }
.btn-primary:hover, .btn-submit:hover { opacity: .9; }
.btn-outline { background: transparent; color: var(--foreground); border: 1px solid var(--foreground); }
.btn-outline:hover { background: var(--foreground); color: var(--background); }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: #fff; color: #000; }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: var(--gold-light); }
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { background: none; border: none; color: var(--muted-fg); }
.btn-ghost:hover { color: var(--foreground); }
.btn-sm { padding: .5rem .75rem; font-size: 10px; }
.btn-lg { padding: 1rem 1.5rem; font-size: 12px; }
.btn-block { width: 100%; }
.btn-icon { padding: .75rem; border: 1px solid var(--border); background: none; }

/* Promo bar */
.promo-bar { background: #000; color: rgba(255,255,255,.9); text-align: center; padding: .5rem 1rem; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
@media (min-width: 640px) { .promo-bar { font-size: 11px; } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--background); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: 0 1px 0 var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 3.5rem; gap: .75rem; }
@media (min-width: 768px) { .header-inner { height: 4rem; } }
.header-left { display: flex; align-items: center; gap: .75rem; }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.icon-btn { padding: .25rem; background: none; border: none; cursor: pointer; color: inherit; transition: color .2s; display: inline-flex; align-items: center; }
.icon-btn:hover { color: var(--gold); }
.badge-link { position: relative; }
.badge { position: absolute; top: -4px; right: -4px; background: var(--gold); color: #000; font-size: 10px; font-weight: 600; border-radius: 9999px; height: 1rem; min-width: 1rem; padding: 0 4px; display: none; align-items: center; justify-content: center; }
.badge-link .badge { display: none; }
.badge-link .badge.has-count { display: flex; }

.brand-logo { font-family: var(--font-display); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .875rem; }
@media (min-width: 768px) { .brand-logo { font-size: 1rem; } }
.brand-logo-lg { font-size: 1.25rem; }
.brand-logo-light { color: #fff; }
.brand-logo-img { display: inline-flex; align-items: center; line-height: 0; }
.brand-logo-image { height: 2rem; width: auto; object-fit: contain; }
@media (min-width: 768px) { .brand-logo-image { height: 2.25rem; } }
.brand-logo-image-lg { height: 2.75rem; }
.brand-tagline { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted-fg); margin-top: .25rem; }

.header-search { flex: 1; max-width: 28rem; display: flex; align-items: center; border-bottom: 1px solid var(--border); }
.search-input { flex: 1; border: none; background: transparent; padding: .5rem 0; outline: none; font-size: .875rem; }
.search-input-lg { font-size: 1.125rem; padding: .75rem 0; border-bottom: 2px solid var(--foreground); width: 100%; }
.search-submit { background: none; border: none; cursor: pointer; padding: .25rem; color: var(--muted-fg); }
.search-submit:hover { color: var(--gold); }

.search-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(255,255,255,.98); display: flex; flex-direction: column; padding: 2rem; }
.search-overlay[hidden] { display: none !important; }
.search-overlay-form { display: flex; align-items: center; gap: 1rem; max-width: 48rem; margin: 4rem auto 0; width: 100%; }

/* Mobile sidebar */
.sidebar-backdrop { position: fixed; inset: 0; z-index: 49; background: rgba(0,0,0,.4); }
.sidebar-backdrop[hidden] { display: none !important; }
.mobile-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 90vw; z-index: 50; background: #fff; transform: translateX(-100%); transition: transform .3s; overflow-y: auto; display: flex; flex-direction: column; }
.mobile-sidebar.open { transform: translateX(0); }
.sidebar-header { padding: 2rem 1.5rem 1rem; border-bottom: 1px solid var(--border); }
.sidebar-nav { padding: 1rem 1.5rem; flex: 1; }
.sidebar-link { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: .625rem 0; font-size: .875rem; background: none; border: none; cursor: pointer; color: inherit; text-align: left; transition: color .2s; }
.sidebar-link:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }
.sidebar-link-sale { color: #b91c1c; }
.sidebar-toggle .chevron { transition: transform .2s; }
.sidebar-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.sidebar-sub { padding-left: 1rem; border-left: 1px solid var(--border); margin-left: .25rem; margin-bottom: .5rem; }
.sidebar-sub[hidden] { display: none; }
.sidebar-sublink { display: block; padding: .375rem 0; font-size: .875rem; color: var(--muted-fg); }
.sidebar-sublink:hover { color: var(--gold); }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: .75rem 0; }
.sidebar-footer { padding: 1rem 1.5rem 2rem; font-size: .75rem; color: var(--muted-fg); }

.flash-messages { padding-top: 1rem; }
.alert-error { background: #fef2f2; color: #b91c1c; padding: .75rem 1rem; font-size: .875rem; border: 1px solid #fecaca; }

/* Hero */
.hero { position: relative; height: clamp(460px, 70svh, 900px); overflow: hidden; background: #1a1a1a; contain: layout style paint; }
@media (min-width: 768px) { .hero { height: clamp(560px, 88svh, 960px); } }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; z-index: 0; }
.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 1; transition: opacity .6s ease; }
.hero-slide:not(.active) { transition: none; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.3), rgba(0,0,0,.2)); z-index: 1; }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 3.5rem; color: #fff; z-index: 2; }
@media (min-width: 768px) { .hero-content { padding-bottom: 7rem; } }
.hero-content-left .hero-title, .hero-content-left .hero-subtitle { max-width: 36rem; }
.hero-content-right { align-items: flex-end; text-align: right; }
.hero-content-center { align-items: center; text-align: center; }
.hero-eyebrow { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .75rem; }
.hero-title { font-size: 2.25rem; line-height: 1; }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
.hero-subtitle { margin-top: .75rem; font-size: .875rem; color: rgba(255,255,255,.85); max-width: 36rem; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; margin-top: 1.25rem; } }
.hero-btns { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .625rem; }
.hero-btns-center { justify-content: center; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: #fff; width: 2.5rem; height: 2.5rem; font-size: 1.5rem; cursor: pointer; z-index: 2; }
.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }
.hero-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .75rem; z-index: 2; }
.hero-dot { width: 2.5rem; height: 2px; background: rgba(255,255,255,.3); border: none; cursor: pointer; padding: 0; }
.hero-dot.active { background: var(--gold-light); }

/* Trust bar */
.trust-bar { border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2rem 0; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-title { font-size: .875rem; font-weight: 500; }
.trust-sub { font-size: .75rem; color: var(--muted-fg); }

/* Sections */
.section { padding: 2.5rem 0; }
@media (min-width: 768px) { .section { padding: 4rem 0; } }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.section-title { font-size: 1.5rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-sub { font-size: .875rem; color: var(--muted-fg); margin-top: .25rem; }
.gold-link, .gold-underline { font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; position: relative; white-space: nowrap; }
.gold-link::after, .gold-underline::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s; }
.gold-link:hover::after, .gold-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.section-cta, .see-more { text-align: center; margin-top: 2.5rem; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem 1rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 1rem; } }

/* Product card */
.product-card { display: flex; flex-direction: column; }
.product-card-image { display: block; position: relative; overflow: hidden; background: var(--muted); aspect-ratio: 3/4; isolation: isolate; }
.product-card-media { display: block; width: 100%; height: 100%; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.product-card:hover .product-card-media img { transform: scale(1.05); }
.discount-badge { position: absolute; top: .5rem; left: .5rem; background: #000; color: #fff; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; padding: 2px 6px; z-index: 2; pointer-events: none; }
.wishlist-btn { position: absolute; top: .5rem; right: .5rem; padding: 6px; background: rgba(255,255,255,.95); border: none; border-radius: 9999px; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,.1); z-index: 3; }
.wishlist-btn.active svg { fill: var(--gold); color: var(--gold); }
.product-card-hover { display: none; position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; }
.product-card:hover .product-card-hover { display: flex; }
@media (min-width: 768px) {
  .product-card-hover { display: flex; transform: translateY(100%); transition: transform .3s ease; background: rgba(255,255,255,.95); backdrop-filter: blur(4px); }
  .product-card:hover .product-card-hover { transform: translateY(0); }
}
.product-card-hover button, .product-card-hover .product-card-view { flex: 1; padding: .75rem; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; background: none; border: none; cursor: pointer; transition: background .2s, color .2s; text-align: center; display: flex; align-items: center; justify-content: center; gap: .375rem; color: inherit; text-decoration: none; }
.product-card-hover button:hover, .product-card-hover .product-card-view:hover { background: var(--foreground); color: var(--background); }
.product-card-hover .product-card-view + button, .product-card-hover button + .product-card-view { border-left: 1px solid var(--border); }
.product-card-info { padding-top: .625rem; }
.product-cat { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-fg); }
.product-name { font-size: 13px; font-weight: 500; line-height: 1.3; margin-top: .25rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.4em; }
.product-name:hover { color: var(--gold); }
.product-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .375rem; margin-top: .25rem; }
.price-current { font-size: .875rem; font-weight: 600; }
.price-mrp { font-size: 11px; color: var(--muted-fg); text-decoration: line-through; }
.price-off { font-size: 11px; color: #3d7a4a; font-weight: 500; }
.mobile-card-btns { display: grid; grid-template-columns: 1fr 1fr; gap: .375rem; margin-top: .5rem; }
@media (min-width: 768px) { .mobile-card-btns { display: none; } }
.mobile-card-btns button, .mobile-card-btns a { padding: .5rem; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; cursor: pointer; border: 1px solid var(--foreground); background: var(--foreground); color: var(--background); text-align: center; }
.mobile-card-btns a.outline, .mobile-card-btns button.outline { background: transparent; color: var(--foreground); }

/* Gender cards */
.gender-grid, .shop-gender { display: grid; gap: 1.5rem; padding: 2.5rem 0; }
@media (min-width: 768px) { .gender-grid, .shop-gender { grid-template-columns: 1fr 1fr; padding: 4rem 0; } }
.gender-card { position: relative; overflow: hidden; aspect-ratio: 4/5; display: block; }
@media (min-width: 768px) { .gender-card { aspect-ratio: 5/6; } }
.gender-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gender-card:hover img { transform: scale(1.05); }
.gender-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent); }
.gender-card-text, .gender-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; color: #fff; }
.gender-card-label, .gender-card-eyebrow { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); }
.gender-card-title { font-size: 2.25rem; font-family: var(--font-display); }
@media (min-width: 768px) { .gender-card-title { font-size: 3.75rem; } }
.gender-card-cta { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; margin-top: .5rem; opacity: .8; }

/* Gender landing (/men, /women) */
.gender-hero { position: relative; height: clamp(220px, 38svh, 420px); overflow: hidden; background: #1a1a1a; }
.gender-hero-img { width: 100%; height: 100%; object-fit: cover; }
.gender-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.25)); }
.gender-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 2rem; color: #fff; z-index: 1; }
.gender-hero-title { font-size: 2.5rem; line-height: 1.05; }
@media (min-width: 768px) { .gender-hero-title { font-size: 3.5rem; } }
.gender-hero-sub { margin-top: .5rem; font-size: .875rem; color: rgba(255,255,255,.85); }
.breadcrumb-light, .breadcrumb-light a { color: rgba(255,255,255,.75); }
.breadcrumb-light a:hover { color: var(--gold-light); }
.page-gender .page-content { padding-top: 2.5rem; padding-bottom: 3rem; }

/* Category grid */
.cat-grid, .category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .cat-grid, .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-grid, .category-grid { grid-template-columns: repeat(4, 1fr); } }
.category-grid-sm { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .category-grid-sm { grid-template-columns: repeat(4, 1fr); } }
.cat-card, .category-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; }
.cat-card img, .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover img, .category-card:hover img { transform: scale(1.05); }
.cat-card-name, .category-card-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: linear-gradient(transparent, rgba(0,0,0,.6)); color: #fff; font-size: .875rem; text-transform: uppercase; letter-spacing: .15em; }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent); }
.category-section { margin-bottom: 3rem; }
.category-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.5rem; }

/* Banner strip */
.banner-strip { position: relative; overflow: hidden; height: 280px; display: block; margin: 2.5rem 0; }
@media (min-width: 768px) { .banner-strip { height: 360px; } }
.banner-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.banner-strip:hover img { transform: scale(1.05); }
.banner-strip-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 1.5rem; }
.banner-strip-eyebrow { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); }
.banner-strip-title { font-family: var(--font-display); font-size: 1.875rem; margin-top: .5rem; }
@media (min-width: 768px) { .banner-strip-title { font-size: 3rem; } }
.banner-strip-cta { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 1rem; }

/* Reviews */
.reviews-section { background: var(--muted); padding: 3rem 0; }
.reviews-header { text-align: center; margin-bottom: 2rem; }
.reviews-eyebrow { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.reviews-title { font-size: 1.75rem; margin-top: .5rem; }
.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: #fff; padding: 1.5rem; border: 1px solid var(--border); }
.review-stars { color: var(--gold); font-size: .875rem; margin-bottom: .75rem; }
.review-text { font-size: .875rem; font-style: italic; margin-bottom: 1rem; }
.review-author { font-size: .75rem; color: var(--muted-fg); }

/* Brand story */
.brand-story { display: grid; gap: 2rem; padding: 4rem 0; }
@media (min-width: 768px) { .brand-story { grid-template-columns: 1fr 1fr; align-items: center; } }
.brand-story-image-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--muted); }
.brand-story-image { width: 100%; height: 100%; object-fit: cover; }
.brand-story-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent); }
.brand-story-image-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: #000; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; padding: .375rem .75rem; }
.brand-story-image-caption { position: absolute; bottom: 1.5rem; left: 1.5rem; color: #fff; }
.brand-story-image-sub { font-size: .75rem; opacity: .8; }
.brand-story-eyebrow { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.brand-story-title { font-size: 2rem; margin-bottom: 1rem; }
.brand-story-text { color: var(--muted-fg); margin-bottom: 1rem; line-height: 1.7; }
.brand-story-italic { font-family: var(--font-display); font-style: italic; color: var(--foreground); }
.brand-story-link { display: inline-block; margin-top: .5rem; }

/* Newsletter */
.newsletter { background: #000; color: #fff; padding: 4rem 0; }
.newsletter-inner { text-align: center; max-width: 36rem; margin: 0 auto; }
.newsletter-eyebrow { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); }
.newsletter-title { font-size: 2rem; margin: .75rem 0; }
.newsletter-sub { color: rgba(255,255,255,.7); font-size: .875rem; margin-bottom: 1.5rem; }
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-input { flex: 1; padding: .875rem 1rem; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); color: #fff; }
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }

/* Shop / filters */
.breadcrumb { font-size: .75rem; color: var(--muted-fg); margin-bottom: 1rem; display: flex; flex-wrap: wrap; gap: .375rem; align-items: center; }
.breadcrumb a:hover { color: var(--gold); }
.page-header-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.filter-label { font-size: .75rem; color: var(--muted-fg); display: flex; flex-direction: column; gap: .25rem; }
.filter-select, .filter-input { border: 1px solid var(--border); padding: .5rem .75rem; background: var(--background); font-size: .875rem; }
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip { padding: .375rem .75rem; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; border: 1px solid var(--border); }
.filter-chip:hover, .filter-chip-active { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.category-layout { display: grid; gap: 2rem; }
@media (min-width: 768px) { .category-layout { grid-template-columns: 220px 1fr; } }
.category-filters { border: 1px solid var(--border); padding: 1.25rem; height: fit-content; }
.filter-heading { font-size: .875rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.filter-form .filter-group { display: block; margin-bottom: 1rem; }
.filter-group-label { display: block; font-size: .75rem; color: var(--muted-fg); margin-bottom: .25rem; }
.search-page-form { display: flex; gap: .75rem; margin-bottom: 2rem; max-width: 36rem; }

/* Footer */
.site-footer { background: #000; color: rgba(255,255,255,.9); margin-top: 4rem; }
.footer-grid { display: grid; gap: 2.5rem; padding: 3rem 0 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding: 4rem 0 3rem; } }
.footer-brand { max-width: 22rem; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.65); margin-top: .875rem; line-height: 1.65; }
.footer-highlights { list-style: none; margin: 1rem 0 0; padding: 0; font-size: .8125rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-highlights li { position: relative; padding-left: 1rem; }
.footer-highlights li::before { content: "·"; position: absolute; left: 0; color: var(--gold); }
.footer-quick-links { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-top: 1.25rem; font-size: .8125rem; }
.footer-quick-links a { color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; }
.footer-quick-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link { color: rgba(255,255,255,.6); transition: color .2s; }
.social-link:hover { color: var(--gold); }
.footer-col-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1rem; color: #fff; }
.footer-col-title-link { color: inherit; }
.footer-col-title-link:hover { color: var(--gold); }
.footer-links a { display: block; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: .5rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-view-all { margin-top: .5rem; color: var(--gold-light) !important; font-size: .8125rem !important; letter-spacing: .04em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0 1.5rem; font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: .5rem; }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-legal { line-height: 1.5; }

/* Forms */
.form-field { display: block; margin-bottom: 1rem; }
.form-label { display: block; font-size: .75rem; color: var(--muted-fg); margin-bottom: .25rem; }
.form-input { width: 100%; border: 1px solid var(--border); padding: .5rem .75rem; background: var(--background); }
.form-input:focus { outline: none; border-color: var(--foreground); }
.form-hint { font-size: .75rem; color: var(--muted-fg); margin-top: .25rem; display: block; }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-field-full { grid-column: 1 / -1; } }
.auth-card { border: 1px solid var(--border); padding: 2rem; }
.auth-form { margin-top: 1.5rem; }
.auth-switch { margin-top: 1.5rem; font-size: .875rem; }
.auth-switch a { color: var(--gold); text-decoration: underline; }
.auth-code-row { display: flex; gap: .5rem; align-items: stretch; }
.auth-code-row .form-input { flex: 1; min-width: 0; }
.auth-code-row .btn { flex-shrink: 0; white-space: nowrap; }
.form-hint { margin-top: .35rem; font-size: .75rem; color: var(--muted-fg); }
.form-hint-error { color: #b91c1c; }
.form-hint-success { color: #166534; }

/* Product detail */
.product-detail { display: grid; gap: 2rem; padding: 1rem 0 3rem; }
@media (min-width: 768px) { .product-detail { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.product-gallery-main, .product-main-image { aspect-ratio: 3/4; background: var(--muted); overflow: hidden; }
.product-gallery-main img, .product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.product-thumb { width: 4rem; height: 5rem; border: 2px solid transparent; padding: 0; cursor: pointer; background: var(--muted); overflow: hidden; }
.product-thumb.active { border-color: var(--foreground); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-badges { display: flex; gap: .5rem; margin-bottom: .75rem; flex-wrap: wrap; }
.tag { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; padding: .25rem .5rem; border: 1px solid var(--border); }
.tag-new { background: #000; color: #fff; border-color: #000; }
.product-brand { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: .5rem; }
.product-title { font-size: 2rem; margin-bottom: .75rem; }
.product-rating { font-size: .875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.rating-stars { color: var(--gold); }
.product-price-block { display: flex; align-items: baseline; flex-wrap: wrap; gap: .5rem; margin-bottom: .25rem; }
.product-price-lg { font-size: 1.5rem; font-weight: 600; }
.product-mrp-lg { font-size: 1rem; color: var(--muted-fg); text-decoration: line-through; }
.product-discount-lg { font-size: .875rem; color: #3d7a4a; }
.product-tax-note { font-size: .75rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.size-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.size-options { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.size-btn { min-width: 2.5rem; padding: .5rem .75rem; border: 1px solid var(--border); background: none; cursor: pointer; font-size: .875rem; transition: all .2s; }
.size-btn:hover:not(:disabled), .size-btn.selected { border-color: var(--foreground); background: var(--foreground); color: var(--background); }
.size-btn:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.product-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.product-actions .btn-primary, .product-actions .btn-outline { flex: 1; min-width: 8rem; }
.product-trust { display: grid; gap: .75rem; padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.product-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.product-desc-text {
  color: var(--muted-fg);
  line-height: 1.7;
  white-space: pre-line;
  margin: 0;
}
.product-reviews { padding: 3rem 0; border-top: 1px solid var(--border); }
.reviews-list { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.review-item { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.review-item-header { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: .5rem; font-size: .875rem; }
.review-item-title { font-weight: 600; margin-bottom: .25rem; }
.review-item-body { font-size: .875rem; color: var(--muted-fg); }
.review-date { color: var(--muted-fg); font-size: .75rem; }

/* Cart & checkout */
.cart-layout, .checkout-layout { display: grid; gap: 2rem; }
@media (min-width: 768px) { .cart-layout, .checkout-layout { grid-template-columns: 2fr 1fr; } }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 5rem; height: 6.5rem; object-fit: cover; background: var(--muted); flex-shrink: 0; }
.cart-summary, .checkout-summary { background: var(--muted); padding: 1.5rem; height: fit-content; position: sticky; top: 5rem; }
.cart-summary-title { font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; }
.cart-summary-row, .cart-summary .row { display: flex; justify-content: space-between; margin-bottom: .5rem; font-size: .875rem; }
.cart-summary-total, .cart-summary .total { font-weight: 600; font-size: 1rem; margin-top: .5rem; padding-top: .5rem; border-top: 1px solid var(--border); }
.checkout-section { margin-bottom: 2rem; }
.checkout-section-title { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.payment-option { border: 1px solid var(--border); padding: 1rem; display: flex; gap: .75rem; align-items: flex-start; }
.payment-option label { display: flex; flex-direction: column; gap: .25rem; cursor: pointer; }
.payment-option-selected { border-color: var(--foreground); }
.checkout-items { margin-bottom: 1rem; max-height: 12rem; overflow-y: auto; }
.checkout-item { display: flex; justify-content: space-between; font-size: .875rem; padding: .5rem 0; border-bottom: 1px solid var(--border); }
.checkout-shipping-note { font-size: .75rem; margin-top: 1rem; }
.qty-btn { width: 1.75rem; height: 1.75rem; border: 1px solid var(--border); background: none; cursor: pointer; }

/* Order success / track */
.success-icon { margin-bottom: 1rem; }
.order-no-box { background: var(--muted); padding: 1.5rem; margin: 1.5rem 0; }
.order-no-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-fg); }
.order-no-value { font-size: 1.25rem; margin-top: .25rem; }
.success-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.5rem; }
.track-form { max-width: 28rem; }
.track-result { margin-top: 2rem; }
.track-result-card { border: 1px solid var(--border); padding: 1.5rem; margin-bottom: 1.5rem; }
.track-result-row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .875rem; }
.status-badge { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; padding: .25rem .5rem; background: var(--muted); border: 1px solid var(--border); }
.track-items { list-style: none; }
.track-item { display: flex; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.track-item-img { width: 3rem; height: 4rem; object-fit: cover; background: var(--muted); }

/* Account */
.page-account { background: #fafafa; }
.account-shell-wrap { padding-top: 2rem; padding-bottom: 3rem; }
.account-shell { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 900px) { .account-shell { grid-template-columns: 280px 1fr; gap: 2rem; } }
.account-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.account-profile-card { display: flex; align-items: center; gap: .875rem; padding: 1rem 1.125rem; background: #fff; border: 1px solid var(--border); }
.account-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--foreground); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 600; letter-spacing: .05em; flex-shrink: 0; }
.account-profile-info { min-width: 0; }
.account-profile-name { font-size: .875rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.account-profile-email { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.account-sidebar-nav { display: flex; flex-direction: column; gap: .25rem; background: #fff; border: 1px solid var(--border); padding: .5rem; }
.account-sidebar-link { display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem; font-size: .875rem; color: var(--foreground); text-decoration: none; border: none; background: none; cursor: pointer; width: 100%; text-align: left; border-radius: 2px; transition: background .15s; }
.account-sidebar-link:hover, .account-sidebar-link.active { background: var(--muted); }
.account-sidebar-signout-form { margin: 0; }
.account-sidebar-signout { color: #dc2626; margin-top: .25rem; border-top: 1px solid var(--border); border-radius: 0; padding-top: .875rem; }
.account-sidebar-signout:hover { background: #fef2f2; }
.account-sidebar-footer { padding: .5rem 0; }
.account-main { min-width: 0; }
.account-page-header { margin-bottom: 1.75rem; }
.account-page-title { font-size: 2rem; line-height: 1.15; margin-bottom: .375rem; }
.account-page-welcome { font-size: .9375rem; }
.account-page-eyebrow { font-size: .8125rem; margin-bottom: .5rem; }
.account-action-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .account-action-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.account-action-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: #fff; border: 1px solid var(--border); text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s; }
.account-action-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.account-action-icon { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(201, 162, 39, .12); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.account-action-body { display: flex; flex-direction: column; gap: .25rem; min-width: 0; flex: 1; }
.account-action-title { font-size: 1rem; font-weight: 600; }
.account-action-desc { font-size: .8125rem; }
.account-action-chevron { color: var(--muted-fg); flex-shrink: 0; }
.account-dashboard-narrow { max-width: 42rem; }
.account-detail-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.account-orders-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.account-order-card { background: #fff; border: 1px solid var(--border); transition: border-color .2s, box-shadow .2s; }
.account-order-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.account-order-card-link { display: block; padding: 1.25rem 1.5rem; color: inherit; text-decoration: none; }
.account-order-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.account-order-no { font-size: .9375rem; font-weight: 600; margin-bottom: .25rem; }
.account-order-items { display: flex; gap: 1rem; align-items: center; padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.account-order-thumbs { display: flex; align-items: center; gap: .375rem; flex-shrink: 0; }
.account-order-thumb { width: 3.5rem; height: 4.5rem; object-fit: cover; background: var(--muted); border: 1px solid var(--border); }
.account-order-more { width: 3.5rem; height: 4.5rem; display: flex; align-items: center; justify-content: center; background: var(--muted); border: 1px solid var(--border); font-size: .75rem; color: var(--muted-fg); }
.account-order-item-summary { min-width: 0; }
.account-order-item-title { font-size: .9375rem; font-weight: 500; margin-bottom: .25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.account-order-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1.5rem; }
@media (min-width: 640px) { .account-order-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.account-order-meta-item { display: flex; flex-direction: column; gap: .125rem; font-size: .875rem; }
.account-order-meta-label { font-size: .6875rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-fg); }
.account-order-meta-total .order-total { font-size: 1rem; }
.account-order-footer { display: flex; align-items: center; justify-content: flex-end; gap: .375rem; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.account-order-view { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted-fg); }
.account-order-card:hover .account-order-view { color: var(--foreground); }
.status-pending { background: #fef9c3; color: #854d0e; border-color: #fde68a; }
.status-confirmed { background: #dbeafe; color: #1e40af; border-color: #bfdbfe; }
.status-shipped { background: #e0e7ff; color: #3730a3; border-color: #c7d2fe; }
.status-delivered { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.status-cancelled { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.account-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }
.account-nav { display: flex; gap: 1.25rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: .75rem; }
.account-nav-link { color: var(--muted); text-decoration: none; font-size: .9rem; }
.account-nav-link.active, .account-nav-link:hover { color: var(--text); }
.account-section { margin-bottom: 2rem; }
.account-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.order-no-link { color: inherit; text-decoration: none; }
.order-no-link:hover { text-decoration: underline; }
.address-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.address-card { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; border: 1px solid var(--border); }
.address-card-name { display: flex; align-items: center; gap: .5rem; margin-bottom: .25rem; }
.address-picker { display: grid; gap: .75rem; }
.address-pick-card { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem; border: 1px solid var(--border); cursor: pointer; }
.address-pick-card:has(.address-pick-radio:checked) { border-color: var(--gold); background: rgba(201, 169, 98, .06); }
.address-pick-radio { margin-top: .25rem; }
.checkout-saved-hint { margin-top: .75rem; }
.header-signin { font-size: .875rem; color: var(--text); text-decoration: none; margin-right: .25rem; }
.sidebar-link-btn { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font: inherit; color: inherit; padding: .75rem 1.5rem; }
.orders-list { list-style: none; border: 1px solid var(--border); }
.order-row { display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
@media (max-width: 640px) { .order-row { grid-template-columns: 1fr; } }
.order-total { font-weight: 600; }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted-fg); }
.empty-state-inline { padding: 2rem 0; text-align: left; }

/* Legal / about / contact */
.legal-content { color: #4a4a4a; line-height: 1.7; font-size: 15px; }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; margin: 2.25rem 0 .75rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.page-body-narrow { max-width: 48rem; margin: 0 auto; padding-bottom: 4rem; }
.about-grid { display: grid; gap: 2rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-image { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-content p { margin-bottom: 1rem; color: var(--muted-fg); line-height: 1.7; }
.about-quote { font-size: 1.25rem; color: var(--foreground); margin: 1.5rem 0; }
.about-cta { display: inline-block; margin-top: .5rem; }
.about-values { background: var(--muted); padding: 3rem 0; }
.about-values-grid { display: grid; gap: 2rem; text-align: center; }
@media (min-width: 768px) { .about-values-grid { grid-template-columns: repeat(3, 1fr); } }
.about-value-title { font-size: 1.5rem; margin-bottom: .5rem; }
.contact-cards { display: flex; flex-direction: column; gap: .75rem; margin: 2rem 0; }
.contact-card {
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color .2s;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.contact-card:hover { border-color: var(--gold); }
.contact-card > .icon { flex-shrink: 0; margin-top: .15rem; }
.contact-card-body { min-width: 0; flex: 1; }
.contact-card-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-fg); margin: 0 0 .25rem; }
.contact-card-value { font-size: .9375rem; line-height: 1.55; word-break: break-word; overflow-wrap: anywhere; }
.contact-company { margin: 1.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.contact-company-name { margin: .25rem 0 0; font-size: .9375rem; color: var(--foreground); }
.contact-tip { margin-top: 2rem; padding: 1rem 1.25rem; background: var(--muted); font-size: .875rem; color: var(--muted-fg); }

/* FAQ */
.faq-accordion { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 1rem 0; font-weight: 500; cursor: pointer; list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 0 1rem; font-size: .875rem; color: var(--muted-fg); line-height: 1.6; }

/* Admin */
.admin-body { background: #f8f8f8; }
.admin-shell { display: grid; min-height: 100vh; }
@media (min-width: 768px) { .admin-shell { grid-template-columns: 240px 1fr; } }
.admin-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 39; }
.admin-backdrop[hidden] { display: none !important; }
.admin-sidebar { background: #111; color: #fff; padding: 1.5rem; display: flex; flex-direction: column; z-index: 40; }
@media (max-width: 767px) {
  .admin-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 240px; transform: translateX(-100%); transition: transform .3s; }
  .admin-sidebar.open { transform: translateX(0); }
}
.admin-brand { font-size: 1.25rem; margin-bottom: 2rem; color: var(--gold); }
.admin-nav { flex: 1; }
.admin-nav-link { display: block; padding: .625rem 0; color: rgba(255,255,255,.7); font-size: .875rem; background: none; border: none; cursor: pointer; width: 100%; text-align: left; }
.admin-nav-link:hover, .admin-nav-link.active { color: var(--gold); }
.admin-nav-btn { font-family: inherit; }
.admin-nav-footer { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; margin-top: 1rem; }
.admin-main-wrap { display: flex; flex-direction: column; min-width: 0; }
.admin-mobile-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; background: #fff; border-bottom: 1px solid var(--border); }
.admin-menu-btn { background: none; border: 1px solid var(--border); padding: .5rem .75rem; cursor: pointer; font-size: .875rem; }
.admin-main { padding: 2rem 1.5rem; flex: 1; }
.admin-page-title { font-size: 2rem; margin-bottom: .25rem; }
.admin-page-sub { font-size: .875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.admin-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .admin-stats { grid-template-columns: repeat(5, 1fr); } }
.stat-card { background: #fff; border: 1px solid var(--border); padding: 1.25rem; }
.stat-card .val { font-size: 1.5rem; font-weight: 600; }
.stat-card .lbl { font-size: .75rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }
.admin-panel { background: #fff; border: 1px solid var(--border); padding: 1.5rem; margin-top: 2rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.admin-table th, .admin-table td { text-align: left; padding: .75rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table th { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-fg); background: var(--muted); }
.admin-table-wrap { overflow-x: auto; }
.admin-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.admin-form-inline { display: grid; gap: .75rem; margin-bottom: 1.5rem; padding: 1rem; background: var(--muted); }
@media (min-width: 768px) { .admin-form-inline { grid-template-columns: repeat(4, 1fr) auto; align-items: end; } }
.admin-product-cell { display: flex; align-items: center; gap: .75rem; }
.admin-product-thumb { width: 2.5rem; height: 3rem; object-fit: cover; background: var(--muted); }
.admin-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.admin-filter-btn { padding: .375rem .75rem; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; border: 1px solid var(--border); background: #fff; cursor: pointer; }
.admin-filter-btn.active { background: var(--foreground); color: var(--background); }
.admin-modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 50; align-items: flex-end; justify-content: center; padding: 0; }
.admin-modal-backdrop.open { display: flex; }
@media (min-width: 768px) { .admin-modal-backdrop.open { align-items: center; padding: 1.5rem; } }
.admin-modal { background: #fff; width: 100%; max-height: 95vh; overflow-y: auto; border-radius: 0; }
@media (min-width: 768px) { .admin-modal { max-width: 48rem; border-radius: 4px; } }
.admin-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; z-index: 1; }
.admin-modal-close { font-size: 1.25rem; color: var(--muted-fg); text-decoration: none; padding: .25rem .5rem; }
.admin-modal-body { padding: 1.5rem; }
.admin-modal-footer { display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.5rem; }
.admin-form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .admin-form-grid { grid-template-columns: 1fr 1fr; } }
.admin-checkboxes { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; font-size: .875rem; }
.admin-checkboxes label { display: flex; align-items: center; gap: .375rem; cursor: pointer; }
.admin-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.btn-link-danger { background: none; border: none; color: #b91c1c; cursor: pointer; font-size: .875rem; padding: 0; }
.status-active { background: #dcfce7; color: #166534; }
.status-disabled { background: #f3f4f6; color: #6b7280; }
.admin-image-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.admin-image-item { width: 5rem; text-align: center; }
.admin-image-item img { width: 5rem; height: 6rem; object-fit: cover; background: var(--muted); }
.admin-expand-btn { background: none; border: none; cursor: pointer; font-size: 1rem; padding: 0 .25rem; }
.admin-order-detail td { background: var(--muted); }
.admin-order-detail-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .admin-order-detail-grid { grid-template-columns: repeat(3, 1fr); } }
.admin-address-json { font-size: .75rem; white-space: pre-wrap; word-break: break-word; margin: .25rem 0 0; }
.admin-order-items ul { list-style: none; padding: 0; margin: .5rem 0 0; }
.admin-order-items li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; margin-bottom: .5rem; }
.admin-order-item-img { width: 2rem; height: 2.5rem; object-fit: cover; }
.filter-subnav { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.filter-subnav a { font-size: .875rem; color: var(--muted-fg); }
.filter-subnav a.active { font-weight: 600; color: var(--foreground); text-decoration: underline; text-underline-offset: 4px; }
.filter-group-block { margin-bottom: 1rem; }
.filter-size-grid, .filter-color-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.filter-size-label span { display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; height: 2.25rem; padding: 0 .5rem; border: 1px solid var(--border); font-size: .75rem; cursor: pointer; }
.filter-size-label input { display: none; }
.filter-size-label input:checked + span { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.filter-color-label input { display: none; }
.filter-color-swatch { display: block; width: 1.75rem; height: 1.75rem; border-radius: 50%; border: 1px solid var(--border); cursor: pointer; }
.filter-color-label input:checked + .filter-color-swatch { outline: 2px solid var(--foreground); outline-offset: 2px; }
.coupon-row { display: flex; gap: .5rem; }
.coupon-row .form-input { flex: 1; }
.alert-success { background: #dcfce7; color: #166534; padding: .75rem 1rem; margin-bottom: 1rem; font-size: .875rem; }
