/* =========================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================= */
:root {
  --warm-white: #FFFDF8;
  --cream: #FAF6F0;
  --cream-dark: #F0E8DA;
  --parchment: #EDE4D3;
  --parchment-dark: #D9CCAF;
  --walnut: #3E2723;
  --walnut-light: #5D4037;
  --mahogany: #4E342E;
  --mahogany-light: #6D4C41;
  --brass: #B8860B;
  --brass-light: #D4A843;
  --brass-dark: #8B6914;
  --gold: #C5A55A;
  --gold-light: #D4BC7C;
  --gold-dark: #A68B3E;
  --charcoal: #2C2420;
  --charcoal-light: #4A3F38;
  --available: #4A7C59;
  --sold: #8B4513;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Inter', system-ui, sans-serif;

  --shadow-vintage: 0 2px 8px rgba(62,39,35,0.12), 0 1px 3px rgba(62,39,35,0.08);
  --shadow-vintage-lg: 0 8px 24px rgba(62,39,35,0.15), 0 2px 8px rgba(62,39,35,0.1);
  --shadow-gold-glow: 0 0 20px rgba(197,165,90,0.15);
}

/* =========================================
   2. CSS RESET / BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}

body {
  background-color: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection {
  background-color: rgba(184,134,11,0.2);
  color: var(--walnut);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--parchment-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brass); }

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-ui { font-family: var(--font-ui); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

/* =========================================
   4. LAYOUT UTILITIES
   ========================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding { padding: 5rem 0; }

/* =========================================
   5. COMPONENTS
   ========================================= */

/* 5a. Icons */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* 5b. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brass);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brass-light);
  box-shadow: var(--shadow-gold-glow);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.btn-secondary:hover {
  border-color: rgba(197,165,90,0.4);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--parchment-dark);
  color: var(--walnut);
}
.btn-outline:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.btn-ghost {
  background: transparent;
  color: var(--brass);
  padding: 0;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--brass-dark); }
.btn-ghost .icon { transition: transform 0.2s; }
.btn-ghost:hover .icon { transform: translateX(4px); }

/* 5c. Badge */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.1875rem 0.4375rem;
  border-radius: 3px;
  font-weight: 600;
}
.badge-available {
  background: var(--cream);
  color: var(--available);
  border: 1px solid var(--available);
}
.badge-sold {
  background: var(--cream);
  color: var(--sold);
  border: 1px solid var(--sold);
}
.badge-reserved {
  background: var(--cream);
  color: var(--brass-dark);
  border: 1px solid var(--brass);
}

/* 5d. Section Heading */
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.section-heading .label {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.section-heading h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--walnut);
}
.section-heading .subtitle {
  margin-top: 1rem;
  font-family: var(--font-body);
  color: var(--charcoal-light);
  line-height: 1.7;
}
.section-heading.dark .label { color: var(--gold); opacity: 0.6; }
.section-heading.dark h2 { color: var(--cream); }
.section-heading.dark .subtitle { color: rgba(255,255,255,0.6); }

/* 5e. Product Card */
.product-card {
  display: block;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-vintage-lg);
  transform: translateY(-4px);
}
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}
.product-card-image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--parchment), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.product-card-image-inner .product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-img-hover {
  opacity: 1;
}
.product-card:hover .product-img-primary {
  opacity: 0;
}
.product-card-image-inner.unavailable { opacity: 0.6; }
.product-card-image .watch-placeholder {
  width: 6rem;
  height: 6rem;
  color: rgba(184,134,11,0.2);
}
.product-card-image .badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}
.product-card-info { padding: 1rem; }
.product-card-info .brand-label {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-bottom: 0.375rem;
}
.product-card-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--walnut);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.product-card:hover .product-card-info h3 { color: var(--brass-dark); }
.product-card-info .price-row {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.product-card-info .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brass);
}
.product-card-info .price-sold {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal-light);
}
.product-card-info .price-sold .status-prefix {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-card-info .railroad-label {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
}

/* 5f. Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
.divider-line {
  height: 1px;
  width: 3rem;
  background: linear-gradient(to right, transparent, var(--brass), transparent);
  opacity: 0.3;
}

/* 5g. Form elements */
.form-group { margin-bottom: 1.25rem; }
.form-group label,
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--walnut);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group textarea,
.form-group select,
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(217,204,175,0.5);
  border-radius: 0.375rem;
  background: #fff;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--parchment-dark);
}
.form-group textarea,
.form-textarea { resize: vertical; min-height: 140px; }

/* =========================================
   6. HEADER & NAVIGATION
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-vintage); }
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.header-logo img {
  height: auto;
  width: auto;
  max-height: 66px;
  max-width: 55vw;
  object-fit: contain;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
.header-nav a {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  transition: color 0.3s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: center;
}
.header-nav a:hover { color: var(--brass); }
.header-nav a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--brass);
  transition: color 0.3s;
}
.header-phone:hover { color: var(--brass-dark); }
.header-phone .icon { width: 0.875rem; height: 0.875rem; }

.header-icon-btn {
  padding: 0.5rem;
  color: var(--charcoal);
  transition: color 0.3s;
}
.header-icon-btn:hover { color: var(--brass); }
.header-icon-btn .icon { width: 1.25rem; height: 1.25rem; }

.cart-link {
  position: relative;
  padding: 0.5rem;
  color: var(--charcoal);
  transition: color 0.3s;
}
.cart-link:hover { color: var(--brass); }
.cart-link .icon { width: 1.25rem; height: 1.25rem; }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--brass);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.visible { display: flex; }

.mobile-menu-btn { display: block; padding: 0.5rem; }
.mobile-menu-btn .icon { width: 1.25rem; height: 1.25rem; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
}
.mobile-menu.open { display: block; }
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 18rem;
  background: var(--walnut);
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-phone .icon { width: 1rem; height: 1rem; }
.mobile-menu-nav a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(250,246,240,0.9);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color 0.3s;
}
.mobile-menu-nav a:hover { color: var(--gold); }
.mobile-menu-secondary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-secondary a {
  display: block;
  padding: 0.625rem 0;
  color: rgba(250,246,240,0.6);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: color 0.3s;
}
.mobile-menu-secondary a:hover { color: var(--gold); }

/* Header spacer */
.header-spacer { height: 5rem; }

/* =========================================
   7. FOOTER
   ========================================= */
.footer {
  background: var(--walnut);
  color: rgba(250,246,240,0.8);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-brand .instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-brand .instagram-link:hover { color: var(--gold-light); }
.footer-brand .instagram-link .icon { width: 1rem; height: 1rem; }

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.mt-sep { margin-top: 2rem; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.footer-contact .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--gold);
}
.footer-contact a { transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-bottom .copyright {
  font-size: 0.75rem;
  color: rgba(250,246,240,0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 1rem;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(250,246,240,0.5);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: rgba(250,246,240,0.8); }

/* =========================================
   8. TRUST STRIP
   ========================================= */
.trust-strip {
  background: rgba(250,246,240,0.8);
  border-bottom: 1px solid rgba(217,204,175,0.2);
}
.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow-x: auto;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}
.trust-strip-item .icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--brass);
}
.trust-strip-item span {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--walnut);
}
.trust-strip-divider {
  color: var(--parchment-dark);
  display: none;
}

/* =========================================
   9. SEARCH OVERLAY
   ========================================= */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
}
.search-overlay.open { display: block; }
.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.search-panel {
  position: relative;
  max-width: 42rem;
  margin: 5rem auto 0;
  margin-left: 1rem;
  margin-right: 1rem;
}
.search-panel-inner {
  background: var(--warm-white);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-vintage-lg);
  overflow: hidden;
}
.search-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(217,204,175,0.2);
}
.search-form .icon-search {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--charcoal-light);
  margin-left: 1.25rem;
  flex-shrink: 0;
}
.search-form input {
  flex: 1;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: transparent;
  border: none;
  outline: none;
}
.search-form input::placeholder { color: var(--parchment-dark); }
.search-form .close-btn {
  padding: 1rem;
  color: var(--charcoal-light);
  transition: color 0.3s;
}
.search-form .close-btn:hover { color: var(--charcoal); }
.search-form .close-btn .icon { width: 1.25rem; height: 1.25rem; }

.search-results {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0.5rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.search-result-item:hover { background: var(--cream); }
.search-result-thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cream), var(--parchment));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-result-thumb svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(184,134,11,0.2);
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-info .name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--walnut);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-info .meta {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
}
.search-result-price {
  flex-shrink: 0;
  text-align: right;
}
.search-result-price .amount {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
}
.search-result-price .amount.in-stock { color: var(--brass); }
.search-result-price .amount.unavailable { color: var(--charcoal-light); }

.search-view-all {
  border-top: 1px solid rgba(217,204,175,0.15);
  padding: 0.75rem;
  text-align: center;
}
.search-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  transition: color 0.3s;
}
.search-view-all a:hover { color: var(--brass-dark); }
.search-view-all .icon { width: 0.875rem; height: 0.875rem; }

.search-empty,
.search-hint {
  padding: 2rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--charcoal-light);
}
.search-empty .sub {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* =========================================
   10. PAGE-SPECIFIC STYLES
   ========================================= */

/* 10a. Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #1a0f0a, #2a1810, #1a0f0a);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: luminosity;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, rgba(184,134,11,0.08) 0%, transparent 70%);
}
.hero-bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-bg-mechanism {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-mechanism svg {
  width: 700px;
  height: 700px;
  color: rgba(184,134,11,0.04);
  animation: spin 120s linear infinite;
}
.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(10,5,2,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 1s ease;
}
.hero-rule.visible { opacity: 1; transform: translateY(0); }
.hero-rule-line {
  width: 3rem;
  height: 1px;
}
.hero-rule-line.left { background: linear-gradient(to right, transparent, rgba(184,134,11,0.4)); }
.hero-rule-line.right { background: linear-gradient(to left, transparent, rgba(184,134,11,0.4)); }
.hero-rule span {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(212,168,67,0.7);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease 0.2s;
}
.hero h1.visible { opacity: 1; transform: translateY(0); }
.hero h1 .gradient-text {
  background: linear-gradient(to right, var(--brass-light), var(--gold), var(--brass-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(250,246,240,0.6);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease 0.4s;
}
.hero-subtitle.visible { opacity: 1; transform: translateY(0); }

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease 0.6s;
}
.hero-ctas.visible { opacity: 1; transform: translateY(0); }

.hero-meta {
  margin-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(250,246,240,0.3);
  opacity: 0;
  transition: all 1s ease 0.8s;
}
.hero-meta.visible { opacity: 1; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: all 1s ease 1s;
}
.hero-scroll.visible { opacity: 1; }
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250,246,240,0.25);
}
.hero-scroll .icon {
  width: 1rem;
  height: 1rem;
  color: rgba(250,246,240,0.25);
  animation: bounce 2s infinite;
}

/* 10b. Homepage sections */
.trust-bar {
  position: relative;
  background: var(--cream);
  border-top: 1px solid rgba(217,204,175,0.3);
  border-bottom: 1px solid rgba(217,204,175,0.3);
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,134,11,0.2), transparent);
}
.trust-bar::before { top: 0; }
.trust-bar::after { bottom: 0; }
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem 2.5rem;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
}
.trust-bar-item .icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(184,134,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-bar-item .icon-circle .icon { width: 1.25rem; height: 1.25rem; color: var(--brass); }
.trust-bar-item .title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--walnut);
  font-weight: 500;
}
.trust-bar-item .desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--charcoal-light);
  margin-top: 0.125rem;
}

/* Featured watches section */
.featured-section { padding: 5rem 0 7rem; background: var(--warm-white); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.view-all-link {
  margin-top: 3rem;
  text-align: center;
}
.view-all-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
  transition: color 0.3s;
}
.view-all-link a:hover { color: var(--brass-dark); }
.view-all-link .icon { width: 1rem; height: 1rem; transition: transform 0.2s; }
.view-all-link a:hover .icon { transform: translateX(4px); }

/* We Buy Teaser */
.we-buy-teaser {
  position: relative;
  padding: 4rem 0 5rem;
  background: rgba(237,228,211,0.5);
  overflow: hidden;
}
.we-buy-teaser-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}
.we-buy-teaser-bg img { width: 100%; height: 100%; object-fit: cover; }
.we-buy-teaser-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.we-buy-teaser-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.we-buy-teaser-rule .line {
  height: 1px;
  width: 3rem;
}
.we-buy-teaser-rule .line.left { background: linear-gradient(to right, transparent, rgba(184,134,11,0.3)); }
.we-buy-teaser-rule .line.right { background: linear-gradient(to left, transparent, rgba(184,134,11,0.3)); }
.we-buy-teaser-rule span {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brass);
}

/* Mid-page CTA (inline) */
.mid-cta {
  padding: 3rem 1rem;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid rgba(217,204,175,0.3);
  border-bottom: 1px solid rgba(217,204,175,0.3);
}
.mid-cta h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--walnut);
}
.mid-cta p {
  margin-top: 0.5rem;
  color: var(--charcoal-light);
  font-size: 0.9375rem;
}
.mid-cta .btn { margin-top: 1.5rem; }

/* Brand Showcase */
.brands-section { padding: 5rem 0 7rem; background: var(--cream); }
.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.brand-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(217,204,175,0.3);
  border-radius: 4px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.brand-card:hover {
  box-shadow: var(--shadow-vintage);
  border-color: rgba(184,134,11,0.2);
}
.brand-card .corner-tl,
.brand-card .corner-tr {
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0.5rem;
}
.brand-card .corner-tl { left: 0.5rem; border-top: 1px solid rgba(184,134,11,0.2); border-left: 1px solid rgba(184,134,11,0.2); border-radius: 2px 0 0 0; }
.brand-card .corner-tr { right: 0.5rem; border-top: 1px solid rgba(184,134,11,0.2); border-right: 1px solid rgba(184,134,11,0.2); border-radius: 0 2px 0 0; }
.brand-card-content { text-align: center; }
.brand-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--walnut);
  transition: color 0.3s;
}
.brand-card:hover h3 { color: var(--brass-dark); }
.brand-card .brand-meta {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-top: 0.25rem;
}
.brand-card .brand-tagline {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.brand-card .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  transition: color 0.3s;
}
.brand-card .brand-link:hover { color: var(--brass-dark); }
.brand-card .brand-link .icon { width: 0.75rem; height: 0.75rem; transition: transform 0.2s; }
.brand-card:hover .brand-link .icon { transform: translateX(2px); }

/* Story Teaser */
.story-section { padding: 5rem 0 7rem; background: var(--warm-white); overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.story-image {
  position: relative;
}
.story-image-frame {
  aspect-ratio: 4/5;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
}
.story-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-image-frame .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent, transparent);
  opacity: 0.6;
}
.story-floating-label {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  background: var(--walnut);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  box-shadow: var(--shadow-vintage-lg);
}
.story-floating-label .sub {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.125rem;
}
.story-floating-label .main {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

.story-text .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 1rem;
}
.story-text h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--walnut);
  line-height: 1.2;
}
.story-text .copy {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.story-text blockquote {
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(184,134,11,0.3);
}
.story-text blockquote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--walnut);
  line-height: 1.6;
}
.story-text blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  font-style: normal;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--walnut), #2a1810, var(--walnut));
}
.cta-banner-gears {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  overflow: hidden;
}
.cta-banner-gears svg {
  position: absolute;
  width: 400px;
  height: 400px;
  color: var(--gold);
}
.cta-banner-gears .gear-left {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.cta-banner-gears .gear-right {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,134,11,0.3), transparent);
}
.cta-banner::before { top: 0; }
.cta-banner::after { bottom: 0; }
.cta-banner-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

/* 10c. Shop page */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 1.5rem;
  overflow: hidden;
  max-width: 100%;
}
.shop-toolbar .product-count {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--charcoal-light);
}
.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.shop-sidebar {
  display: none;
}
.filter-section { margin-bottom: 1.5rem; }
.filter-section h4 {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--walnut);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--charcoal);
}
.filter-checkbox input[type="checkbox"] {
  accent-color: var(--brass);
  width: 1rem;
  height: 1rem;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.filter-chip {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--parchment-dark);
  border-radius: 100px;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover,
.filter-chip.active {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
}
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 2rem;
  max-width: 100%;
}
.shop-pagination button,
.shop-pagination .page-link {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  padding: 0.375rem 0.625rem;
  border: 1px solid var(--parchment-dark);
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
}
.shop-pagination button:hover,
.shop-pagination .page-link:hover { border-color: var(--brass); color: var(--brass); }
.shop-pagination button.active { background: var(--brass); border-color: var(--brass); color: #fff; }
.shop-pagination button:disabled { opacity: 0.4; cursor: default; }
.shop-pagination button:disabled:hover { border-color: var(--parchment-dark); color: inherit; }
.product-card-wrapper { display: block; }

/* 10d. Product detail */
.product-detail { padding: 0 0 0; }
.product-detail .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Breadcrumbs */
.product-detail .breadcrumbs {
  background: var(--cream);
  border-bottom: 1px solid rgba(217,204,175,0.3);
  padding: 1rem 0;
  margin-bottom: 0;
  display: block;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--charcoal-light);
}
.breadcrumbs a { color: var(--charcoal-light); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--brass); }
.product-detail .breadcrumbs .container { display: flex; align-items: center; }
.pd-back-link { display: inline-flex; align-items: center; gap: 0.375rem; font-weight: 600; color: var(--walnut) !important; font-size: 0.875rem; letter-spacing: 0.02em; }
.pd-back-link:hover { color: var(--brass) !important; }
.pd-back-link .icon { width: 1rem; height: 1rem; }
.breadcrumb-right { display: none; align-items: center; gap: 0.5rem; }
.breadcrumbs .sep,
.breadcrumbs .separator { color: var(--parchment-dark); }
.breadcrumbs .current { color: var(--walnut); }

/* Product grid */
.pd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0 3rem;
}

/* Product image */
.pd-image { position: relative; }
.pd-image-main {
  position: relative;
  background: linear-gradient(145deg, #f5f0e8, var(--cream-dark));
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217,204,175,0.3);
  cursor: pointer;
}
.pd-image-main img {
  width: 100%;
  height: auto;
  display: block;
}
.pd-image-main.unavailable { opacity: 0.7; }
.pd-image-main .watch-placeholder-lg,
.pd-image-main svg.watch-placeholder-lg {
  width: 45%;
  max-width: 12rem;
  height: auto;
  color: rgba(184,134,11,0.12);
}
.pd-image-main .badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }

/* Thumbnails */
.pd-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.pd-thumb {
  border-radius: 4px;
  background: linear-gradient(145deg, #f5f0e8, var(--cream-dark));
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-thumb.active { border-color: var(--brass); }
.pd-thumb:hover { border-color: rgba(184,134,11,0.4); }

/* Product info */
.pd-info .brand-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.railroad-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass-dark);
  background: rgba(184,134,11,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.pd-info h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--walnut);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

/* Price */
.pd-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.price-large {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brass);
  letter-spacing: -0.01em;
}
.price-large.sold {
  font-size: 1.125rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* Add to cart — right after price */
.pd-add-to-cart {
  margin-bottom: 0.75rem;
}
.pd-add-to-cart .btn {
  width: 100%;
  padding: 0.875rem;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pd-added-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem;
  background: rgba(74,124,89,0.08);
  border: 1px solid rgba(74,124,89,0.2);
  color: var(--available);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
}
.pd-added-msg .icon { width: 1rem; height: 1rem; }
.pd-added-msg a {
  color: var(--available);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.25rem;
}

/* Trust items — compact horizontal row */
.pd-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.25rem;
  padding: 0.625rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  color: var(--charcoal-light);
}
.pd-trust-item .icon { width: 0.75rem; height: 0.75rem; color: var(--brass); flex-shrink: 0; }

/* Sticky buy bar */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255,253,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(217,204,175,0.4);
  box-shadow: 0 -4px 20px rgba(44,36,32,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 0.75rem 0;
}
.sticky-buy-bar.visible { transform: translateY(0); }
.sticky-buy-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-buy-info {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  min-width: 0;
}
.sticky-buy-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--walnut);
}
.sticky-buy-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brass);
  white-space: nowrap;
}
.sticky-buy-btn {
  flex-shrink: 0;
  padding: 0.625rem 1.5rem !important;
  font-size: 0.8125rem !important;
}

@media (max-width: 639px) {
  .sticky-buy-info { display: none; }
  .sticky-buy-btn { width: 100%; padding: 0.875rem 1.5rem !important; font-size: 0.875rem !important; }
}

/* Sold CTAs */
.pd-sold-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.pd-sold-cta-card {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: 0.375rem;
  border: 1px solid rgba(217,204,175,0.3);
}
.pd-sold-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 0.25rem;
}
.pd-sold-cta-card p {
  font-size: 0.8125rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.pd-sold-cta-card .btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

/* Description */
.pd-description {
  margin-bottom: 1.25rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* Inquiry link */
.pd-inquiry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--brass);
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.pd-inquiry-link:hover { color: var(--brass-dark); }
.pd-inquiry-link .icon { width: 0.875rem; height: 0.875rem; }

/* Accessories */
.pd-accessories {
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 0.375rem;
  border: 1px solid rgba(217,204,175,0.25);
  margin-bottom: 1.25rem;
}
.pd-accessories h3 {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--walnut);
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.pd-accessories ul { list-style: none; padding: 0; margin: 0; }
.pd-accessories ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  color: var(--charcoal);
}
.pd-accessories ul li .icon { width: 0.75rem; height: 0.75rem; color: var(--available); flex-shrink: 0; }

/* Call CTA */
.pd-call-cta {
  padding: 1rem;
  background: rgba(237,228,211,0.3);
  border-radius: 0.375rem;
  text-align: center;
}
.pd-call-cta p {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  color: var(--charcoal-light);
  margin-bottom: 0.5rem;
}

/* Specs table */
.specs-section {
  padding: 3rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(217,204,175,0.3);
  border-bottom: 1px solid rgba(217,204,175,0.3);
}
.specs-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
}
.specs-table tr { border-bottom: 1px solid rgba(217,204,175,0.4); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table th {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--walnut);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1.5rem 0.75rem 0;
  width: 38%;
  vertical-align: top;
}
.specs-table td {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  padding: 0.75rem 0;
}

/* Condition assessment */
.condition-section {
  padding: 3rem 0;
}
.condition-overall {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.condition-overall-label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--charcoal-light);
}
.condition-badge {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.875rem;
  border-radius: 1rem;
}
.condition-excellent { background: rgba(74,124,89,0.1); color: var(--available); }
.condition-very-good { background: rgba(184,134,11,0.1); color: var(--brass-dark); }
.condition-good { background: rgba(217,204,175,0.4); color: var(--charcoal); }
.condition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}
.condition-item {
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 0.375rem;
  border: 1px solid rgba(217,204,175,0.25);
}
.condition-item h4 {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--walnut);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.condition-item p {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.5;
}

/* History note */
.history-note {
  margin: 2rem auto;
  max-width: 700px;
  padding: 1.5rem 2rem;
  background: rgba(237,228,211,0.35);
  border-radius: 0.5rem;
  border-left: 3px solid rgba(184,134,11,0.4);
}
.history-note h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 0.75rem;
}
.history-note p {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* Related products */
.related-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(217,204,175,0.3);
}
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

/* 10e. Cart page */
.cart-page { padding: 2rem 0 4rem; }
.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.cart-empty .icon { width: 3rem; height: 3rem; color: var(--parchment-dark); margin: 0 auto 1rem; }
.cart-empty h2 { font-size: 1.5rem; color: var(--walnut); margin-bottom: 0.5rem; }
.cart-empty p { color: var(--charcoal-light); margin-bottom: 1.5rem; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
}
.cart-item-image {
  width: 5.5rem;
  aspect-ratio: 4/3;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--parchment), var(--cream-dark));
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-image svg { width: 2rem; height: 2rem; color: rgba(184,134,11,0.2); }
.cart-item-info { flex: 1; }
.cart-item-info .brand {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
}
.cart-item-info h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--walnut);
  margin-top: 0.25rem;
}
.cart-item-info .item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brass);
  margin-top: 0.375rem;
}
.cart-item-remove {
  color: var(--charcoal-light);
  transition: color 0.2s;
  padding: 0.25rem;
  align-self: flex-start;
}
.cart-item-remove:hover { color: var(--sold); }
.cart-item-remove .icon { width: 1rem; height: 1rem; }

.cart-summary {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 0.5rem;
}
.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 1rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  border-top: 1px solid var(--parchment-dark);
  font-weight: 700;
}
.cart-summary-total .amount {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brass);
}
.cart-summary .btn { width: 100%; margin-top: 1rem; }
.cart-trust-items {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cart-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  color: var(--charcoal-light);
}
.cart-trust-item .icon { width: 0.75rem; height: 0.75rem; color: var(--available); }

/* 10f. Checkout page */
.checkout-page { padding: 0 0 4rem; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.checkout-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}
.checkout-section h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 1rem;
}
.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.checkout-form-grid .form-group { margin-bottom: 0; }

@media (min-width: 1024px) {
  .checkout-layout { grid-template-columns: 1fr 340px; }
}

/* Checkout progress indicator */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkout-step .step-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  border: 2px solid var(--cream-dark);
  color: var(--charcoal-light);
  background: #fff;
  flex-shrink: 0;
}
.checkout-step .step-label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--charcoal-light);
}
.checkout-step a.step-label { color: var(--brass); text-decoration: none; }
.checkout-step a.step-label:hover { text-decoration: underline; }
.checkout-step.active .step-icon {
  border-color: var(--brass);
  background: var(--brass);
  color: #fff;
}
.checkout-step.active .step-label { color: var(--walnut); font-weight: 600; }
.checkout-step.completed .step-icon {
  border-color: var(--available);
  background: var(--available);
  color: #fff;
}
.step-connector {
  flex: 0 0 2rem;
  height: 2px;
  background: var(--cream-dark);
  margin: 0 0.25rem;
}
.step-connector.completed { background: var(--available); }

@media (max-width: 400px) {
  .checkout-step .step-label { display: none; }
  .step-connector { flex: 0 0 1.5rem; }
}

/* Express checkout at top of checkout form */
.express-checkout-top {
  padding-bottom: 1.5rem;
}
.express-checkout-heading {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
  text-align: center;
  margin-bottom: 0.75rem;
}
.express-or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.express-or-divider::before,
.express-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.express-or-divider span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--charcoal-light);
  white-space: nowrap;
}

/* Collapsible order summary on mobile */
.order-summary-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--brass);
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background 0.2s;
  gap: 0.5rem;
}
.order-summary-toggle:hover { background: var(--cream-dark); }
.order-summary-toggle .icon { transition: transform 0.3s; width: 1rem; height: 1rem; }
.order-summary-toggle.open .icon { transform: rotate(180deg); }
.order-summary-toggle-total {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--walnut);
  margin-left: auto;
}

@media (max-width: 1023px) {
  .order-summary-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    position: static !important;
  }
  .order-summary-collapsible.open { max-height: 600px; }
}

@media (min-width: 1024px) {
  .order-summary-toggle { display: none; }
  .order-summary-collapsible { max-height: none; overflow: visible; }
}

/* Inline field validation */
.field-error { border-color: var(--sold) !important; box-shadow: 0 0 0 3px rgba(139,69,19,0.1) !important; }
.field-error-msg {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  color: var(--sold);
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* Secure submit button */
.checkout-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem !important;
  padding: 1rem 1.5rem !important;
  gap: 0.5rem;
}
.checkout-submit-btn .icon { width: 1rem; height: 1rem; opacity: 0.9; }

/* Mobile touch target sizing for checkout */
@media (max-width: 1023px) {
  .checkout-form-grid .form-input,
  .checkout-page .form-input {
    min-height: 44px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .checkout-page .checkout-submit-btn { min-height: 48px; }
}

/* 10g. Content pages (about, contact, guarantee, repair, we-buy) */
.page-hero {
  background: var(--cream);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(217,204,175,0.3);
}
.page-hero .label {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--walnut);
}
.page-hero p {
  margin-top: 0.75rem;
  color: var(--charcoal-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.page-content-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 4px;
}
.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brass);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  text-align: center;
}
.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--walnut);
}
.pricing-card .price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brass);
  margin-top: 0.5rem;
}
.pricing-card .price-desc {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  margin-top: 0.5rem;
}
.pricing-card ul {
  margin-top: 1rem;
  text-align: left;
}
.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--charcoal-light);
}
.pricing-card ul li .icon { width: 0.875rem; height: 0.875rem; color: var(--available); }

/* Dark page hero (contact, etc.) */
.page-hero-dark {
  position: relative;
  background: linear-gradient(to bottom, var(--walnut), #2a1810);
  padding: 9rem 0 5rem;
}
.page-hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.page-hero-dark-inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.page-hero-dark h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cream);
}
.page-hero-dark p {
  margin-top: 1rem;
  color: rgba(250,246,240,0.6);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Contact page */
.contact-section { padding: 3.5rem 0 4rem; }
.contact-container { max-width: 60rem; margin: 0 auto; padding: 0 1.5rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Form column */
.contact-form-heading {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 0.25rem;
}
.contact-form-subtext {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--charcoal-light);
  margin-bottom: 1.75rem;
}

/* Form row for side-by-side fields */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}

/* Form submit button */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  margin-top: 0.25rem;
}

/* Styled form wrapper */
.styled-form {
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(217,204,175,0.3);
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(62,39,35,0.04);
}

/* Contact info sidebar */
.contact-info-card {
  background: var(--cream);
  border-radius: 0.5rem;
  padding: 2rem;
  position: sticky;
  top: 6rem;
  border: 1px solid rgba(217,204,175,0.3);
}
.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 0.375rem;
}
.contact-info-subtitle {
  font-size: 0.8125rem;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-list li,
.contact-info-list li > a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: inherit;
  transition: color 0.2s;
}
.contact-info-list li > a:hover { color: var(--brass); }
.contact-info-icon {
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.contact-info-icon .icon { width: 1rem; height: 1rem; }
.contact-info-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
  margin-bottom: 0.125rem;
}
.contact-info-value {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--walnut);
  line-height: 1.5;
}

/* Photo upload */
.photo-upload-zone {
  border: 2px dashed var(--parchment-dark);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.photo-upload-zone:hover,
.photo-upload-zone.dragover {
  border-color: var(--brass);
  background: rgba(184,134,11,0.05);
}
.photo-upload-zone .icon { width: 2rem; height: 2rem; color: var(--parchment-dark); margin: 0 auto 0.75rem; }
.photo-upload-zone p { font-size: 0.875rem; color: var(--charcoal-light); }
.photo-upload-zone .hint { font-size: 0.75rem; color: var(--parchment-dark); margin-top: 0.25rem; }
.photo-previews, .photo-preview-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.photo-preview, .photo-preview-item {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 4px;
  overflow: hidden;
}
.photo-preview img, .photo-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview .remove-btn, .photo-remove-btn {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 0;
}
.photo-preview .remove-btn .icon, .photo-remove-btn .icon { width: 0.625rem; height: 0.625rem; }
.photo-name { display: none; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.visible { display: block; }
.form-success .icon { width: 3rem; height: 3rem; color: var(--available); margin: 0 auto 1rem; }
.form-success h2 { font-size: 1.5rem; color: var(--walnut); margin-bottom: 0.5rem; }
.form-success p { color: var(--charcoal-light); }

/* 10g. Search results page */
.search-page-input {
  max-width: 600px;
  margin: 0 auto 2rem;
}
.search-page-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.search-page-count {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

/* Express checkout buttons */
.express-checkout {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--parchment-dark);
}
.express-checkout p {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
  text-align: center;
  margin-bottom: 0.75rem;
}
.express-btn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.express-btn {
  padding: 0.625rem;
  border: 1px solid var(--parchment-dark);
  border-radius: 4px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.express-btn:hover { border-color: var(--brass); }

/* =========================================
   11. RESPONSIVE BREAKPOINTS
   ========================================= */
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
  .header-inner { padding: 0 1.5rem; }
  .footer-inner { padding: 4rem 1.5rem; }

  .trust-strip-inner { gap: 2rem; }
  .trust-strip-divider { display: inline; }

  .hero h1 { font-size: 3rem; }
  .hero-subtitle { font-size: 1.125rem; }
  .hero-ctas { flex-direction: row; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr 1fr; }

  .search-panel { margin-left: auto; margin-right: auto; margin-top: 7rem; }

  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .page-hero h1 { font-size: 2.5rem; }
  .page-hero-dark h1 { font-size: 2.5rem; }
  .story-text h2 { font-size: 2.25rem; }
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .trust-bar-inner { padding: 2.5rem 1rem; }

  .hero h1 { font-size: 3.75rem; }
  .hero-subtitle { margin-top: 2rem; font-size: 1.25rem; }
  .hero-ctas { margin-top: 3rem; }
  .hero-ctas-row { flex-direction: row; }
  .hero-bg-mechanism svg { width: 900px; height: 900px; }

  .contact-layout { grid-template-columns: 3fr 2fr; }
  .pd-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .product-detail .breadcrumbs .container { display: grid; grid-template-columns: auto 1fr; }
  .breadcrumb-right { display: flex; justify-self: center; }
  .pd-image { position: sticky; top: 5.5rem; }
  .pd-sold-ctas { grid-template-columns: 1fr 1fr; }
  .product-grid-3 { grid-template-columns: repeat(3, 1fr); }

  .section-heading h2 { font-size: 2.25rem; }
  .cta-banner { padding: 5rem 0 6rem; }
}

@media (min-width: 1024px) {
  .header-inner { height: 5.5rem; }
  .header-logo img { max-height: 76px; max-width: none; }
  .header-nav { display: flex; }
  .header-spacer { height: 5.5rem; }
  .mobile-menu-btn { display: none; }

  .container { padding: 0 2rem; }
  .header-inner { padding: 0 2rem; }
  .footer-inner { padding: 4rem 2rem; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }

  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }

  .featured-section { padding: 5rem 0 7rem; }
  .brands-section { padding: 5rem 0 7rem; }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .story-floating-label {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .shop-layout { grid-template-columns: 240px 1fr; }
  .shop-sidebar { display: block; }

  .hero h1 { font-size: 4.5rem; }

  .cart-layout { grid-template-columns: 1fr 360px; }
}

@media (min-width: 1280px) {
  .header-phone { display: flex; }
}

/* =========================================
   12. ANIMATIONS
   ========================================= */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(25%); }
}

/* =========================================
   13. LIGHTBOX
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44,36,32,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
