/* ============================================================
   GILT WILDS — Premium Brass Sculpture Store
   Rebuilt with Urban Apex-inspired visual language
   ============================================================ */

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

/* ── Variables ────────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --off-white:    #F8F7F4;
  --warm-white:   #FDFAF7;
  --charcoal:     #1A1A18;
  --charcoal-mid: #2C2C2A;
  --brass:        #C9A961;
  --brass-light:  #D4B978;
  --brass-dark:   #B8944D;
  --brass-glow:   rgba(201,169,97,0.15);
  --brass-glow2:  rgba(201,169,97,0.08);
  --gray-light:   #F2F0EC;
  --gray-medium:  #E4E0D8;
  --gray-text:    #7A7570;
  --hero-bg:      #0A0908;
  --error:        #C0392B;
  --shadow-sm:    0 2px 8px rgba(10,9,8,0.08);
  --shadow-md:    0 8px 32px rgba(10,9,8,0.14);
  --shadow-lg:    0 24px 64px rgba(10,9,8,0.20);
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', -apple-system, sans-serif;
  --header-height: 88px;
  --announce-height: 40px;
  --transition:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:        2px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem);   letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 60px 0; } }

.section-header { text-align: center; margin-bottom: 64px; }
@media (max-width: 768px) { .section-header { margin-bottom: 40px; } }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.section-label.light { color: rgba(201,169,97,0.8); }

.section-title { color: var(--charcoal); margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-footer { text-align: center; margin-top: 56px; }

.page-section {
  padding-top: var(--header-height);
  animation: fadeIn 0.45s ease;
}
.page-section.home-page { padding-top: 0; }

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 38px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  border-radius: var(--radius);
}
.btn:hover { background: transparent; color: var(--charcoal); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-outline-sm {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s ease;
  border-radius: var(--radius);
}
.btn-outline-sm:hover { border-color: var(--brass); color: var(--brass); }

.btn-brass {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--charcoal);
}
.btn-brass:hover { background: var(--brass-dark); border-color: var(--brass-dark); }

.btn-hero-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 44px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--brass);
  border: 1.5px solid var(--brass);
  color: var(--charcoal);
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-hero-primary:hover { background: var(--brass-light); border-color: var(--brass-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,97,0.35); }

.btn-hero-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 44px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-hero-ghost:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); }

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--gray-text);
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--charcoal); }

@media (max-width: 480px) {
  .btn, .btn-hero-primary, .btn-hero-ghost { padding: 13px 26px; font-size: 11px; }
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.form-input, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-glow2); }
.form-textarea { min-height: 130px; resize: vertical; }

/* ── Announcement Bar ─────────────────────────────────────── */
#announcement-bar {
  height: var(--announce-height);
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.announcement-ticker {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  flex: 1;
}
.announcement-ticker span { display: inline-flex; align-items: center; gap: 10px; }
.announcement-ticker .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-block;
  flex-shrink: 0;
}
.announcement-close {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px; line-height: 1;
  cursor: pointer; padding: 4px 8px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.announcement-close:hover { color: white; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) { #announcement-bar { padding: 0 20px; } }

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: fixed;
  top: var(--announce-height);
  left: 0; right: 0;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition), top 0.3s ease;
}
.header.announce-hidden { top: 0; }
.header.scrolled { box-shadow: var(--shadow-md); }
.header.home-transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.header.home-transparent .logo { color: white; }
.header.home-transparent .logo span { color: var(--brass); }
.header.home-transparent .nav-link { color: rgba(255,255,255,0.82); }
.header.home-transparent .nav-link:hover { color: var(--brass); }
.header.home-transparent .cart-button { color: rgba(255,255,255,0.9); }
.header.home-transparent .hamburger span { background: white; }
.header.home-transparent .nav-progress { background: var(--brass); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1400px; margin: 0 auto; padding: 0 48px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative; z-index: 1001;
  transition: color 0.3s;
}
.logo span { color: var(--brass); }

/* ── Desktop Nav ──────────────────────────────────────────── */
.nav-main { display: flex; align-items: center; gap: 36px; }

.nav-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 0;
  transition: color 0.2s;
  cursor: pointer;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--brass); }

/* ── Dropdown ─────────────────────────────────────────────── */
.dropdown { position: relative; }
.dropdown-content {
  position: absolute;
  top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 220px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 16px 0;
  opacity: 0; visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-lg);
}
.dropdown-content::before {
  content: '';
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: rgba(0,0,0,0.07);
  border-top: none;
}
.dropdown:hover .dropdown-content {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-content a {
  display: block;
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  transition: all 0.2s;
  font-weight: 400;
}
.dropdown-content a:hover {
  background: var(--brass-glow);
  color: var(--brass);
  padding-left: 30px;
}

/* ── Cart Button ──────────────────────────────────────────── */
.cart-button {
  position: relative; background: none; border: none;
  cursor: pointer; padding: 8px 10px;
  color: var(--charcoal); transition: color 0.2s; z-index: 1001;
}
.cart-button:hover { color: var(--brass); }
.cart-icon { font-size: 22px; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--brass); color: var(--charcoal);
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ── Hamburger ────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 1002;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Nav ───────────────────────────────────────────── */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,9,8,0.5); z-index: 999;
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; }

.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: 82%; max-width: 320px; height: 100%;
  background: var(--white); z-index: 1001;
  transition: right 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
  padding: 96px 0 40px; overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
}
.mobile-nav.open { right: 0; }

.mobile-nav-brand {
  padding: 0 28px 24px;
  border-bottom: 1px solid var(--gray-medium);
  margin-bottom: 8px;
}
.mobile-nav-brand .logo { font-size: 1.2rem; }

.mobile-nav a, .mobile-nav-collections-toggle {
  display: block; padding: 15px 28px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.2s; cursor: pointer;
  background: none; width: 100%;
  text-align: left; font-family: var(--font-sans);
}
.mobile-nav a:hover, .mobile-nav-collections-toggle:hover {
  color: var(--brass); background: var(--brass-glow);
  padding-left: 36px;
}

.mobile-nav-collections { display: none; background: var(--gray-light); }
.mobile-nav-collections.open { display: block; }
.mobile-nav-collections a {
  padding-left: 44px; font-size: 11px;
  color: var(--gray-text);
}
.mobile-nav-collections a:hover { padding-left: 52px; color: var(--brass); }

.mobile-nav-collections-toggle::after { content: ' ›'; float: right; transition: transform 0.2s; }
.mobile-nav-collections-toggle.open::after { transform: rotate(90deg); display: inline-block; }

/* ── Responsive Nav Breakpoints ──────────────────────────── */
@media (max-width: 1000px) {
  .header-inner { padding: 0 24px; }
  .nav-main { gap: 24px; }
}
@media (max-width: 860px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .mobile-nav-overlay { display: block; pointer-events: none; }
  .mobile-nav-overlay.open { pointer-events: all; }
  :root { --header-height: 70px; }
  .logo { font-size: 1.25rem; }
}

/* ── Navigation Progress Bar ──────────────────────────────── */
#nav-progress {
  position: fixed; top: var(--announce-height); left: 0;
  height: 2px; width: 0%;
  background: var(--brass);
  z-index: 1002; transition: width 0.2s ease;
}
#nav-progress.announce-hidden { top: 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  background: var(--hero-bg);
  overflow: hidden;
  position: relative;
}

.hero-content-panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-height) + var(--announce-height) + 60px) 72px 80px 72px;
  position: relative; z-index: 2; color: white;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  display: inline-block; width: 32px; height: 1px;
  background: var(--brass); flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--brass); }

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex; align-items: center; gap: 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.hero-stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12); flex-shrink: 0;
}

.hero-image-panel {
  position: relative; overflow: hidden;
}
.hero-product-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0.8;
  transition: transform 8s ease;
  transform: scale(1.04);
}
.hero:hover .hero-product-img { transform: scale(1.0); }
.hero-img-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--hero-bg) 0%, rgba(10,9,8,0.25) 40%, transparent 70%),
    linear-gradient(to top, rgba(10,9,8,0.6) 0%, transparent 60%);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-image-panel {
    position: absolute; inset: 0; z-index: 0; opacity: 0.25;
  }
  .hero-product-img { object-position: center; }
  .hero-img-vignette { background: none; }
  .hero-content-panel {
    position: relative; z-index: 2;
    padding: calc(var(--header-height) + 80px) 28px 60px;
  }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-ghost { width: 100%; }
}

/* ── Marquee Strip ────────────────────────────────────────── */
.marquee-strip {
  background: var(--charcoal);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 28px;
}
.marquee-dot {
  color: var(--brass);
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Collections Grid ─────────────────────────────────────── */
.collections-section .container { padding-bottom: 0; }
.collections-section .section-header { padding: 0 48px; }
@media (max-width: 768px) { .collections-section .section-header { padding: 0 20px; } }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .collections-grid { grid-template-columns: 1fr; }
}

.collection-tile {
  position: relative;
  height: 460px;
  background-size: cover;
  background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
  color: white;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s ease;
  text-decoration: none;
}
.collection-tile:hover { transform: scale(1.015); z-index: 2; }

.collection-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.3) 50%, transparent 100%);
  transition: background 0.4s ease;
}
.collection-tile:hover .collection-tile-overlay {
  background: linear-gradient(to top, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.45) 55%, rgba(10,9,8,0.1) 100%);
}

.collection-tile-body {
  position: relative; z-index: 2;
}
.collection-tile-num {
  display: block;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.collection-tile-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: white; margin-bottom: 8px;
}
.collection-tile-tagline {
  font-size: 13px; color: rgba(255,255,255,0.65);
  margin-bottom: 18px; line-height: 1.5;
}
.collection-tile-cta {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.collection-tile:hover .collection-tile-cta {
  color: white; border-color: white;
}
.collection-tile-limited-badge {
  position: absolute; top: 24px; right: 24px; z-index: 3;
  background: var(--brass);
  color: var(--charcoal);
  font-size: 10px; letter-spacing: 0.12em;
  font-weight: 700; text-transform: uppercase;
  padding: 5px 12px;
}

@media (max-width: 768px) {
  .collection-tile { height: 340px; padding: 28px; }
}

/* ── Product Grid ─────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 36px;
}
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media (max-width: 420px) { .product-grid { grid-template-columns: repeat(2,1fr); gap: 14px; } }

/* ── Product Card ─────────────────────────────────────────── */
.product-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); }

.product-image-container {
  position: relative; width: 100%; padding-bottom: 100%;
  overflow: hidden; background: var(--gray-light);
}
.product-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image { transform: scale(1.06); }

.product-card-overlay {
  position: absolute; inset: 0;
  background: rgba(10,9,8,0.45);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-card-overlay { opacity: 1; }

.quick-add-btn {
  background: var(--brass);
  border: none; color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 24px; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  transform: translateY(8px);
  transition: background 0.2s, transform 0.3s;
}
.product-card:hover .quick-add-btn { transform: translateY(0); }
.quick-add-btn:hover { background: var(--brass-light); }

.quick-view-link {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px; cursor: pointer;
  transform: translateY(8px);
  transition: color 0.2s, transform 0.3s 0.04s;
}
.product-card:hover .quick-view-link { transform: translateY(0); }
.quick-view-link:hover { color: white; border-color: white; }

.product-badge-limited {
  position: absolute; top: 14px; left: 14px;
  background: var(--brass); color: var(--charcoal);
  font-size: 9px; letter-spacing: 0.12em;
  font-weight: 700; text-transform: uppercase;
  padding: 4px 10px;
}

.product-info { margin-top: 16px; padding: 0 2px; }
.product-collection-tag {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 4px; line-height: 1.3;
}
.product-code {
  font-size: 11px; color: var(--gray-text);
  letter-spacing: 0.04em; margin-bottom: 4px;
}
.product-por {
  font-size: 12px; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.04em;
}

@media (max-width: 420px) {
  .product-name { font-size: 1rem; }
  .product-card-overlay { display: none; }
}

/* ── Craft Strip ──────────────────────────────────────────── */
.craft-strip {
  background: var(--charcoal);
  padding: 64px 0;
}
.craft-numbers {
  display: flex; align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.craft-number-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 56px; flex: 1; min-width: 180px;
}
.craft-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--brass);
  line-height: 1; margin-bottom: 10px;
}
.craft-label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  text-align: center;
}
.craft-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .craft-numbers { gap: 24px; }
  .craft-number-item { padding: 20px 24px; min-width: 140px; }
  .craft-divider { display: none; }
}

/* ── Brand Story Section ──────────────────────────────────── */
.brand-story-section { background: var(--off-white); }
.brand-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.brand-story-image-wrap { position: relative; }
.brand-story-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  display: block;
}
.brand-story-img-caption {
  background: var(--charcoal);
  padding: 14px 20px;
}
.brand-story-img-caption p {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.brand-story-content .section-label { display: block; margin-bottom: 16px; }
.brand-story-content h2 { margin-bottom: 28px; line-height: 1.15; }
.brand-story-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-style: italic;
  font-weight: 300;
  color: var(--brass); line-height: 1.6;
  border-left: 2px solid var(--brass);
  padding-left: 20px;
  margin-bottom: 24px;
}
.brand-story-content p {
  color: var(--gray-text); line-height: 1.85;
  margin-bottom: 32px; font-size: 15px;
}
.brand-story-actions { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .brand-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-story-img { aspect-ratio: 4/3; }
}

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter-section {
  background: var(--hero-bg);
  padding: 100px 0;
  text-align: center;
}
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter-inner .section-label { margin-bottom: 12px; }
.newsletter-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white; margin-bottom: 16px;
}
.newsletter-inner p {
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 36px;
}
.newsletter-form {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-input {
  flex: 1; padding: 15px 20px;
  background: rgba(255,255,255,0.06);
  border: none; outline: none;
  color: white; font-size: 14px;
  font-family: var(--font-sans);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { background: rgba(255,255,255,0.1); }
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; border: none; gap: 12px; }
  .newsletter-input { border: 1px solid rgba(255,255,255,0.2); }
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0D0C0A;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: white;
  display: inline-block; margin-bottom: 20px;
}
.footer-logo span { color: var(--brass); }
.footer-brand-desc {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.45); margin-bottom: 24px;
  max-width: 280px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a {
  font-size: 13px; color: var(--brass);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--brass-light); }

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-link:hover { color: var(--brass); }
.footer-text {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 20px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px; color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Cart Modal ───────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-modal {
  position: fixed; top: 0; right: -100%;
  width: 100%; max-width: 420px; height: 100%;
  background: var(--white); z-index: 9999;
  transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-modal.active { right: 0; }
@media (max-width: 480px) { .cart-modal { max-width: 100%; } }

.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-medium);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400;
}
.cart-close {
  font-size: 26px; cursor: pointer; color: var(--charcoal);
  transition: color 0.2s; background: none; border: none;
  line-height: 1; padding: 4px;
}
.cart-close:hover { color: var(--brass); }

.cart-body { flex: 1; overflow-y: auto; padding: 24px 28px; }

.cart-item {
  display: flex; gap: 16px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}
.cart-item-img {
  width: 76px; height: 76px; flex-shrink: 0;
  object-fit: cover; background: var(--gray-light);
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-serif); font-size: 1.05rem;
  font-weight: 400; margin-bottom: 4px;
}
.cart-item-code { font-size: 11px; color: var(--gray-text); margin-bottom: 4px; }
.cart-item-finish { font-size: 11px; color: var(--gray-text); margin-bottom: 8px; }
.cart-item-remove {
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: underline;
  cursor: pointer; color: var(--gray-text);
  background: none; border: none;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--error); }

.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-medium);
}
.cart-note {
  background: var(--gray-light);
  padding: 14px 18px;
  font-size: 12.5px; color: var(--gray-text);
  line-height: 1.65; margin-bottom: 16px;
}
.cart-empty {
  text-align: center; padding: 48px 20px;
}
.cart-empty p { color: var(--gray-text); margin-bottom: 24px; font-size: 14px; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  font-size: 12px; color: var(--gray-text);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-text); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb span { color: var(--charcoal); }

/* ── Product Detail ───────────────────────────────────────── */
.pdp-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin: 32px 0; align-items: start;
}
.pdp-gallery { position: sticky; top: calc(var(--header-height) + var(--announce-height) + 24px); }
.pdp-main-image {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; display: block;
  background: var(--gray-light);
}
.pdp-thumbnails {
  display: flex; gap: 10px;
  margin-top: 12px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: none;
}
.pdp-thumbnails::-webkit-scrollbar { display: none; }
.pdp-thumb {
  width: 72px; height: 72px; flex-shrink: 0;
  object-fit: cover; cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.pdp-thumb:hover, .pdp-thumb.active { border-color: var(--brass); }
.pdp-thumb.active { box-shadow: 0 0 0 1px var(--brass); }

.pdp-info { padding-top: 8px; }
.pdp-collection-tag {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 8px;
}
.pdp-name {
  font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; margin-bottom: 6px;
}
.pdp-subtitle { font-size: 1.05rem; color: var(--gray-text); margin-bottom: 6px; }
.pdp-designer {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 24px;
}
.pdp-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pdp-badge {
  font-size: 12px; padding: 8px 14px; border-radius: var(--radius);
}
.pdp-badge-code { background: var(--gray-light); color: var(--charcoal); }
.pdp-badge-por { border: 1px solid var(--brass); color: var(--brass); }

.pdp-divider { height: 1px; background: var(--gray-medium); margin: 28px 0; }

.option-group { margin-bottom: 24px; }
.option-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px; display: block;
}
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--gray-medium);
  cursor: pointer; transition: all 0.2s;
}
.swatch:hover { border-color: var(--brass); }
.swatch.selected {
  border-color: var(--brass);
  box-shadow: 0 0 0 2px white, 0 0 0 4px var(--brass);
}
.quantity-input {
  width: 76px; padding: 10px; text-align: center;
  border: 1px solid var(--gray-medium);
  font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.quantity-input:focus { border-color: var(--brass); }

.pdp-trust {
  background: var(--gray-light);
  padding: 16px 20px; margin-top: 16px;
  font-size: 13px; color: var(--gray-text); line-height: 1.65;
}

/* Accordion Specs */
.pdp-accordion { margin-top: 36px; }
.spec-item { border-bottom: 1px solid var(--gray-medium); }
.spec-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; user-select: none;
}
.spec-header h4 {
  font-family: var(--font-sans); font-size: 13px;
  font-weight: 500; letter-spacing: 0.04em;
}
.spec-icon {
  font-size: 18px; color: var(--gray-text);
  transition: transform 0.3s;
  font-weight: 300;
}
.spec-item.active .spec-icon { transform: rotate(45deg); }
.spec-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.spec-item.active .spec-content { max-height: 400px; padding-bottom: 18px; }
.spec-text { font-size: 14px; color: var(--gray-text); line-height: 1.85; }

@media (max-width: 860px) {
  .pdp-layout { display: flex; flex-direction: column; gap: 0; margin: 20px 0; }
  .pdp-gallery {
    position: sticky; top: var(--header-height);
    background: var(--white); z-index: 10;
    padding-bottom: 12px; width: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }
  .pdp-main-image { aspect-ratio: 16/9; }
  .pdp-info { padding-top: 24px; }
}
@media (max-width: 480px) {
  .pdp-main-image { aspect-ratio: 1; }
  .pdp-name { font-size: 1.8rem; }
  .pdp-badges { flex-direction: column; }
  .pdp-badge { width: 100%; }
}

/* ── Collection Hero ──────────────────────────────────────── */
.collection-hero {
  position: relative; overflow: hidden;
  min-height: 420px;
  display: flex; align-items: flex-end;
  background: var(--hero-bg);
}
.collection-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.4;
  transition: transform 8s ease; transform: scale(1.04);
}
.collection-hero:hover .collection-hero-bg { transform: scale(1.0); }
.collection-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.9) 0%, rgba(10,9,8,0.4) 60%, transparent 100%);
}
.collection-hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--header-height) + var(--announce-height) + 40px) 0 60px;
  color: white; width: 100%;
}
.collection-hero-content .container { text-align: center; }
.collection-hero-num {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 12px;
}
.collection-hero-content h1 { color: white; margin-bottom: 14px; }
.collection-hero-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.2rem; color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.collection-hero-desc {
  font-size: 14px; color: rgba(255,255,255,0.55);
  max-width: 560px; margin: 0 auto;
  line-height: 1.85;
}

/* ── About Page ───────────────────────────────────────────── */
.about-hero {
  padding: calc(var(--header-height) + var(--announce-height) + 60px) 0 80px;
  background: linear-gradient(to bottom, var(--off-white), var(--white));
  text-align: center;
}
.about-hero h1 { margin-bottom: 20px; }
.about-hero p { font-size: 1.1rem; color: var(--gray-text); max-width: 560px; margin: 0 auto; }

.about-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin: 64px 0;
}
.about-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 16px;
}
.about-body { font-size: 15px; color: var(--gray-text); line-height: 1.9; }
.about-body p { margin-bottom: 22px; }
.about-body p:last-child { margin-bottom: 0; }
.about-fact { margin-bottom: 32px; }
.about-fact:last-child { margin-bottom: 0; }
.about-fact p { font-size: 14px; color: var(--charcoal); line-height: 1.75; margin: 0; }
@media (max-width: 768px) {
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Design Philosophy ────────────────────────────────────── */
.philosophy-hero {
  padding: calc(var(--header-height) + var(--announce-height) + 60px) 0 80px;
  background: linear-gradient(to bottom, var(--off-white), var(--white));
  text-align: center;
}
.philosophy-hero h1 { margin-bottom: 20px; }
.philosophy-hero p { font-size: 1.1rem; color: var(--gray-text); max-width: 520px; margin: 0 auto; }
.philosophy-body {
  max-width: 660px; margin: 0 auto;
  font-size: 15.5px; color: var(--charcoal); line-height: 1.95;
}
.philosophy-body p { margin-bottom: 32px; }
.philosophy-body p:last-child { margin-bottom: 0; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-hero {
  padding: calc(var(--header-height) + var(--announce-height) + 60px) 0 64px;
  text-align: center;
  background: linear-gradient(to bottom, var(--off-white), var(--white));
}
.contact-hero h1 { margin-bottom: 16px; }
.contact-hero p { font-size: 1.05rem; color: var(--gray-text); max-width: 500px; margin: 0 auto; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin: 60px 0;
}
.contact-info-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 12px;
}
.contact-info-value {
  font-size: 14px; color: var(--charcoal); line-height: 1.8;
  margin-bottom: 32px;
}
.contact-info-value a { color: var(--brass); }
.contact-info-value a:hover { color: var(--brass-light); }
.contact-form-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 28px;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Enquiry Page ─────────────────────────────────────────── */
.enquiry-header {
  padding: calc(var(--header-height) + var(--announce-height) + 60px) 0 48px;
  text-align: center;
}
.enquiry-items { margin-bottom: 40px; }
.enquiry-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--gray-light);
  gap: 16px;
}
.enquiry-item-name { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 4px; }
.enquiry-item-meta { font-size: 12px; color: var(--gray-text); }
.enquiry-item-remove {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: underline; cursor: pointer; color: var(--gray-text);
  background: none; border: none; flex-shrink: 0; transition: color 0.2s;
}
.enquiry-item-remove:hover { color: var(--error); }
.enquiry-how-it-works {
  background: var(--gray-light); padding: 20px 24px;
  font-size: 13px; color: var(--gray-text); line-height: 1.7; margin-bottom: 28px;
}

/* ── Confirmation Page ────────────────────────────────────── */
.confirmation-wrap {
  padding: calc(var(--header-height) + var(--announce-height) + 60px) 0 100px;
  text-align: center; max-width: 560px; margin: 0 auto;
}
.confirmation-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--brass-glow); border: 1px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  font-size: 2rem; color: var(--brass);
}
.confirmation-wrap h1 { margin-bottom: 20px; }
.confirmation-wrap p { color: var(--gray-text); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }

/* ── Toast Notifications ──────────────────────────────────── */
#toast-container {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 10000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  display: flex; align-items: center; gap: 14px;
  min-width: 280px; max-width: 360px;
  background: var(--charcoal); color: white;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.toast.visible { transform: translateX(0); opacity: 1; }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-msg { flex: 1; font-size: 13.5px; line-height: 1.4; }
.toast-success { border-left: 3px solid var(--brass); }
.toast-error   { border-left: 3px solid var(--error); }
.toast-close {
  background: none; border: none;
  color: rgba(255,255,255,0.4); font-size: 18px;
  cursor: pointer; line-height: 1; flex-shrink: 0;
  transition: color 0.2s;
}
.toast-close:hover { color: white; }
@media (max-width: 480px) {
  #toast-container { left: 16px; right: 16px; bottom: 16px; }
  .toast { min-width: 0; max-width: 100%; }
}

/* ── Back to Top ──────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 32px; left: 32px; z-index: 990;
  width: 44px; height: 44px;
  background: var(--charcoal); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--brass); color: var(--charcoal); transform: translateY(-2px); }
@media (max-width: 480px) { #back-to-top { bottom: 80px; left: 16px; } }

/* ── Loading Spinner ──────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 20000;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo {
  font-family: var(--font-serif); font-size: 2rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal);
}
.loader-logo span { color: var(--brass); }
.loader-line {
  height: 1px; background: var(--gray-medium);
  margin-top: 16px; overflow: hidden; position: relative;
}
.loader-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--brass);
  animation: loadLine 1.2s ease infinite;
}
@keyframes loadLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ── Shop Page ────────────────────────────────────────────── */
.shop-header {
  padding: calc(var(--header-height) + var(--announce-height) + 48px) 0 40px;
  background: linear-gradient(to bottom, var(--off-white), var(--white));
  text-align: center;
}
.shop-header h1 { margin-bottom: 14px; }
.shop-header p { font-size: 1.05rem; color: var(--gray-text); max-width: 480px; margin: 0 auto; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--brass); color: var(--charcoal);
  padding: 10px 20px; font-size: 13px; font-weight: 600;
  z-index: 99999; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
