/* ============================================================
   NEW COLOR SYSTEM - GOLD & WHITE LUXURY THEME
   ============================================================ */

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F5F0;
  --bg-card: #F5F0E8;
  --bg-accent: #F0EBE0;
  --text-primary: #1A1A1A;
  --text-secondary: #3A3A3A;
  --text-muted: #6A6A6A;
  --text-light: #999999;
  --gold-bright: #D4AF37;
  --gold-rich: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-pale: #F5EDD6;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --gold-border: rgba(212, 175, 55, 0.25);
  --shadow-small: 0 2px 8px rgba(212, 175, 55, 0.06);
  --shadow-medium: 0 8px 32px rgba(212, 175, 55, 0.08);
  --shadow-large: 0 16px 48px rgba(212, 175, 55, 0.12);
  --shadow-gold: 0 8px 40px rgba(212, 175, 55, 0.15);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --gold: var(--gold-bright);
  --black: var(--bg-primary);
  --dark: var(--bg-secondary);
  --card: var(--bg-card);
  --white: var(--text-primary);

  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 24px;
  --fs-xl: 32px;
  --fs-2xl: 40px;
  --fs-3xl: 48px;
  --fs-4xl: 64px;
  --ff-display: 'Inter', -apple-system, sans-serif;
  --ff-body: 'Inter', -apple-system, sans-serif;
  --ff-brand: 'Anglecia Pro Display', serif;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 200ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-container {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  height: 32px;
  width: auto;
}

.brand-name {
  font-family: var(--ff-brand);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--gold-rich);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SPOT PRICES DESKTOP ─────────────────────────────── */
.spot-prices-desktop {
  display: none;
  gap: 20px;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
}

.spot-prices-desktop span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}

.spot-prices-desktop .price {
  color: var(--text-primary);
  font-weight: 600;
}

.spot-gold .price { color: var(--gold-bright); }
.spot-silver .price { color: #888888; }
.spot-platinum .price { color: #666666; }

/* ── NAV DESKTOP ─────────────────────────────────────── */
.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  font-weight: 400;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-desktop a:hover { color: var(--gold-rich); }

.nav-cta {
  background: var(--gold-bright) !important;
  color: #FFFFFF !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold-rich) !important;
  transform: scale(1.03);
}

.nav-cta.active {
  background: var(--gold-rich) !important;
  color: #FFFFFF !important;
}

/* ── CART TOGGLE ─────────────────────────────────────── */
.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  color: var(--gold-rich);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-toggle:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--gold-bright);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: none;
}

.cart-badge[data-count]:not([data-count="0"]) {
  display: block;
}

/* ── HAMBURGER ───────────────────────────────────────── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-rich);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV ──────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--gold-border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px;
}

.mobile-nav.open { display: flex; }

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-nav li {
  margin-bottom: 20px;
}

.mobile-nav a {
  font-size: var(--fs-xl);
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover { color: var(--gold-rich); }

.mobile-cta {
  display: inline-block;
  background: var(--gold-bright) !important;
  color: #FFFFFF !important;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600 !important;
  margin-top: 8px;
}

.mobile-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

/* ── MOBILE SPOT PRICES ──────────────────────────────── */
.mobile-spot-prices {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.85rem;
}

.mobile-spot-prices span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}

.mobile-spot-prices .spot-gold span { color: var(--gold-bright); font-weight: 600; }
.mobile-spot-prices .spot-silver span { color: #888888; font-weight: 600; }
.mobile-spot-prices .spot-platinum span { color: #666666; font-weight: 600; }

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.3);
}

.mobile-nav-backdrop.open { display: block; }

/* ── LUXURY EFFECTS ──────────────────────────────────── */
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-bright);
  margin: 0 auto 32px;
}

.gold-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gold-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0;
  animation: floatGold 8s infinite;
}

.gold-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.gold-particles span:nth-child(2) { left: 30%; animation-delay: 1.5s; width: 6px; height: 6px; }
.gold-particles span:nth-child(3) { left: 50%; animation-delay: 3s; }
.gold-particles span:nth-child(4) { left: 70%; animation-delay: 4.5s; width: 3px; height: 3px; }
.gold-particles span:nth-child(5) { left: 85%; animation-delay: 6s; }
.gold-particles span:nth-child(6) { left: 15%; animation-delay: 2s; width: 5px; height: 5px; }

@keyframes floatGold {
  0% { opacity: 0; transform: translateY(100px) scale(0); }
  20% { opacity: 0.4; }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.gold-container {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px;
  background: var(--bg-card);
  backdrop-filter: blur(2px);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.15s; }
.fade-in:nth-child(4) { animation-delay: 0.2s; }
.fade-in:nth-child(5) { animation-delay: 0.25s; }
.fade-in:nth-child(6) { animation-delay: 0.3s; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--fs-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-bright);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--gold-rich);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-bright);
  border: 2px solid var(--gold-bright);
}

.btn-secondary:hover {
  background: var(--gold-bright);
  color: #FFFFFF;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 8px;
  background: var(--gold-bright);
  color: #FFFFFF;
  font-size: var(--fs-base);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-rich);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  color: var(--gold-bright);
  border: 2px solid var(--gold-bright);
  font-size: var(--fs-base);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold-bright);
  color: #FFFFFF;
  border-color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-sm {
  padding: 6px 14px;
  font-size: var(--fs-xs);
}

.btn-lg {
  padding: 16px 40px;
  font-size: var(--fs-md);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
  overflow: hidden;
  text-align: center;
  background: var(--bg-primary);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0?w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.06), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.04), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--ff-brand);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero h1 .gold-text {
  color: var(--gold-bright);
}

.hero h1 .white-text {
  color: #FFFFFF;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.hero-stats .gold-price {
  color: var(--gold-bright);
}

.hero-stats .silver-price {
  color: rgba(255, 255, 255, 0.7);
}

.hero-stats .platinum-price {
  color: rgba(255, 255, 255, 0.55);
}

.hero-stats .update-date {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-stats .update-label {
  color: rgba(255, 255, 255, 0.6);
}

.gold-purity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}

.gold-purity-item {
  text-align: center;
  padding: var(--sp-2);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gold-purity-item .karat {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gold-purity-item .price {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}

/* ── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-dark { background: var(--bg-secondary); }
.section-black { background: var(--bg-primary); }

.section-title {
  font-family: var(--ff-brand);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--text-primary);
  margin-bottom: var(--sp-6);
}

.section-title span { color: var(--gold-bright); }

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-top: -32px;
  margin-bottom: var(--sp-6);
}

/* ── TRUST CARDS ─────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.trust-card svg {
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.trust-card h3 {
  font-family: var(--ff-brand);
  font-size: var(--fs-md);
  color: var(--gold-rich);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── CATEGORY GRID ───────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.top-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--gold-border);
}

.top-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-bright);
}

.top-product-card .card-image {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.top-product-card .card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.top-product-card .card-image .placeholder-icon {
  color: var(--gold-bright);
  opacity: 0.3;
  font-size: 2rem;
}

.top-product-card .card-body {
  padding: 14px 16px;
}

.top-product-card .card-code {
  font-size: var(--fs-xs);
  color: var(--gold-bright);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.top-product-card .card-name {
  font-size: var(--fs-sm);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 6px;
}

.top-product-card .card-section {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .top-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .top-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .top-product-card .card-body {
    padding: 10px 12px;
  }
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.05s; }
.category-card:nth-child(2) { animation-delay: 0.1s; }
.category-card:nth-child(3) { animation-delay: 0.15s; }
.category-card:nth-child(4) { animation-delay: 0.2s; }
.category-card:nth-child(5) { animation-delay: 0.25s; }
.category-card:nth-child(6) { animation-delay: 0.3s; }

.category-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.category-card .card-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
}

.category-card .card-image svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.category-card .card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.category-card .card-title {
  font-family: var(--ff-brand);
  font-size: var(--fs-lg);
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-card .card-meta {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}

.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
}

.category-card:hover .card-title {
  color: var(--gold-bright);
}

.category-count {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 4px;
}

/* ── PRODUCT CARDS ───────────────────────────────────── */
.product-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-grid {
  flex: 1;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.product-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.product-card .card-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card:hover .card-image img {
  transform: scale(1.05);
}

.product-card .card-body {
  padding: 16px;
}

.product-card .card-title {
  font-family: var(--ff-brand);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-card .card-meta {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.card .card-image {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card .card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card .card-image .placeholder-icon {
  color: var(--gold-bright);
  opacity: 0.2;
  font-size: 48px;
}

.card .card-body {
  padding: 20px;
}

.card .card-title {
  font-family: var(--ff-brand);
  font-size: var(--fs-md);
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card .card-meta {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card .card-price {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.product-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-bright);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── ABOUT TEASER ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.about-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-text h2 {
  font-family: var(--ff-brand);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text h2 span { color: var(--gold-bright); }

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CUSTOM CTA ──────────────────────────────────────── */
.custom-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.custom-box h2 {
  font-family: var(--ff-brand);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.custom-box h2 span { color: var(--gold-bright); }

.custom-box p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ── SERVICES GRID ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-card .card-image {
  height: 200px;
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .card-body {
  padding: 24px;
}

.service-card .card-title {
  font-family: var(--ff-brand);
  font-size: var(--fs-lg);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-card .card-meta {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--bg-primary);
  padding: 60px 0 24px;
  border-top: 1px solid var(--gold-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-brand .brand-name {
  font-family: var(--ff-brand);
  font-weight: 700;
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-bottom: 16px;
}

.footer-col h6 {
  font-family: var(--ff-brand);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold-rich); }

.footer-address {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: var(--fs-xs);
}

.footer-bottom a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--gold-rich); }

/* ── PRODUCT DETAIL ──────────────────────────────────── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.product-gallery-col {
  position: sticky;
  top: 80px;
}

@media (max-width: 767px) {
  .product-gallery-col {
    position: static;
  }
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  border: 1px solid var(--gold-border);
}

.product-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--gold-bright);
  opacity: 1;
}

.product-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-detail-info {
  padding-top: var(--sp-2);
}

.product-detail-info h1 {
  font-family: var(--ff-brand);
  font-size: var(--fs-2xl);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.product-detail-info .italian-name {
  font-size: var(--fs-md);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--sp-3);
}

.product-stats {
  display: flex;
  gap: 32px;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--gold-border);
}

.product-stat-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.product-stat-value {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.text-gold { color: var(--gold-bright); }

.product-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: var(--sp-4);
}

.product-spec-item {
  padding: 16px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--gold-border);
}

.product-spec-item .label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.product-spec-item .value {
  font-weight: 600;
  color: var(--text-primary);
}

.variant-selector {
  margin-bottom: var(--sp-4);
}

.variant-selector label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.variant-selector select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: var(--fs-base);
  appearance: none;
}

.variant-selector select:focus {
  outline: none;
  border-color: var(--gold-bright);
}

.variant-info-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  margin-bottom: var(--sp-3);
}

.vi-drawing {
  margin-bottom: 12px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vi-drawing img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.vi-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-border);
}

.vi-row:last-child { border-bottom: none; }

.vi-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.vi-value {
  font-weight: 600;
  color: var(--text-primary);
}

/* ── SPEC TABLE ──────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-4);
}

.spec-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--gold-border);
  font-weight: 600;
}

.spec-table td {
  padding: 12px 16px;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  border-bottom: 1px solid var(--gold-border);
}

.spec-table tr:hover td {
  background: rgba(212, 175, 55, 0.03);
}

/* ── LIGHTBOX ────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(255,255,255,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(26,26,26,0.05);
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(212, 175, 55, 0.1); }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-counter {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-top: 16px;
}

/* ── CART SIDEBAR ────────────────────────────────────── */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  max-width: 90vw;
  background: var(--bg-primary);
  border-left: 1px solid var(--gold-border);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open { transform: translateX(0); }

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1050;
}

.cart-overlay.open { display: block; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--gold-border);
}

.cart-header h3 {
  font-family: var(--ff-brand);
  font-size: var(--fs-lg);
  color: var(--text-primary);
}

.cart-close {
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 50%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-border);
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--fs-sm);
  line-height: 1.3;
}

.cart-item-line {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-top: 2px;
}

.cart-item-variant {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

.cart-item-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.cart-item-meta span { color: var(--text-light); }

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-top: 8px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item-remove:hover { color: #e74c3c; }

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--gold-border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--gold-border);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.cart-total-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.cart-total-value {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 1.25rem;
  white-space: nowrap;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

/* ── QUANTITY INPUT ────────────────────────────────────── */
.qty-input {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}

.qty-input:focus-within {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.qty-btn:hover { background: var(--gold-pale); color: var(--gold-rich); }
.qty-btn:active { transform: scale(0.92); }

.qty-val {
  width: 34px;
  height: 32px;
  border: none;
  background: #FFFFFF;
  text-align: center;
  font: 600 0.95rem/1 var(--ff-body);
  color: var(--text-primary);
  -moz-appearance: textfield;
}

.qty-val::-webkit-outer-spin-button,
.qty-val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-val:focus { outline: none; }

/* ── CART MOBILE ─────────────────────────────────────── */
@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
    max-width: 100vw;
    border-left: none;
  }

  .cart-header {
    padding: 18px 16px;
    position: relative;
    justify-content: center;
  }

  .cart-header h3 {
    font-size: var(--fs-md);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
  }

  .cart-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .cart-items {
    padding: 14px 16px;
  }

  .cart-item {
    gap: 10px;
    padding: 14px 0;
  }

  .cart-item-name {
    font-size: 0.95rem;
    line-height: 1.35;
    padding-right: 4px;
  }

  .cart-item-line {
    font-size: 1rem;
  }

  .cart-item-remove {
    font-size: 0.85rem;
  }

  .cart-footer {
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .cart-total {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .cart-total-label {
    font-size: 0.9rem;
  }

  .cart-total-value {
    font-size: 1.6rem;
  }

  .cart-footer .btn {
    font-size: 1rem;
    padding: 14px;
  }
}

/* ── PRICE PAGE ──────────────────────────────────────── */
.price-hero {
  padding: 120px 0 40px;
  text-align: center;
  background: var(--bg-primary);
}

.price-hero h1 {
  font-family: var(--ff-brand);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.price-hero p {
  color: var(--text-secondary);
  max-width: 520px;
}

.price-updated {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.price-updated::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.price-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: var(--sp-6);
}

.price-summary-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.price-summary-card .metal-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.price-summary-card .metal-price {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.price-summary-card .metal-unit {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

.price-summary-card .metal-change {
  font-size: var(--fs-xs);
  margin-top: 8px;
}

.price-summary-card .metal-change.up { color: #4caf50; }
.price-summary-card .metal-change.down { color: #e74c3c; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

.price-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--gold-border);
  font-weight: 600;
  white-space: nowrap;
}

.price-table td {
  padding: 12px 16px;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  border-bottom: 1px solid var(--gold-border);
}

.price-table tr:hover td {
  background: rgba(212, 175, 55, 0.03);
}

.price-table .price-cell {
  font-weight: 600;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}

.price-table .metal-name {
  font-weight: 600;
}

.price-table .metal-detail {
  color: var(--text-muted);
  font-size: var(--fs-xs);
}

/* ── PRICE CARDS ──────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.metal-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.price-card h3 {
  font-family: var(--ff-brand);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.metal-symbol {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin: 8px 0 2px;
  line-height: 1;
}

.price-gold-current { color: var(--gold-bright); }
.price-silver-current { color: #888888; }
.price-platinum-current { color: #666666; }

.price-unit {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.update-time {
  font-size: 0.7rem;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid var(--gold-border);
}

/* ── SPOT PRICE TABLE ────────────────────────────────── */
.spot-price-section {
  padding: 40px 0 80px;
  background: var(--bg-primary);
}

.metal-table-group {
  margin-bottom: 40px;
}

.metal-table-title {
  font-family: var(--ff-brand);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spot-price-section .price-table th,
.spot-price-section .price-table td {
  text-align: center;
}

.loading-cell {
  text-align: center;
  color: var(--text-muted);
  padding: 24px !important;
  font-style: italic;
}

.price-up {
  color: #4CAF50;
  font-weight: 500;
}

.price-down {
  color: #E74C3C;
  font-weight: 500;
}

@media (max-width: 768px) {
  .spot-price-section .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
    border-radius: var(--radius);
  }

  .spot-price-section .price-table {
    font-size: 0.8rem;
    min-width: 0;
    width: 100%;
  }

  .spot-price-section .price-table th,
  .spot-price-section .price-table td {
    padding: 10px 10px;
    white-space: normal;
    word-break: break-word;
  }

  .metal-table-title {
    font-size: var(--fs-md);
  }
}

.price-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0 0 64px;
  line-height: 1.6;
}

/* ── SECTION CENTERING ────────────────────────────────── */
.home-section { text-align: center; }
.home-section .section-header { margin-bottom: 48px; }
.home-section .section-header p { margin: 0 auto; }

.trust-grid { max-width: 1000px; margin: 0 auto; }
.category-grid { max-width: 1200px; margin: 0 auto; }
.featured-grid { max-width: 1200px; margin: 0 auto; }
.about-section { max-width: 1100px; margin: 0 auto; }
.about-section .about-grid { text-align: left; }

/* ── SHOP SHOWCASE ───────────────────────────────────── */
.shop-showcase {
  padding: 80px 0;
  background: var(--bg-primary);
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.shop-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.shop-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.shop-address {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-address span {
  font-size: 1.5rem;
}

.shop-address strong {
  color: var(--text-primary);
  font-size: 1rem;
}

.shop-address p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.shop-tag {
  display: inline-block;
  color: var(--gold-bright);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.shop-story h2 {
  font-family: var(--ff-brand);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.shop-story h2 span {
  color: var(--gold-bright);
}

.shop-story > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.google-reviews {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stars {
  color: var(--gold-bright);
  font-size: 1rem;
}

.review-score {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.review-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.review-excerpt p {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.review-author {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-image img {
    height: 400px;
  }
}

/* ── SEARCH SECTION ──────────────────────────────────── */
.catalogue-header {
  padding: 100px 0 30px;
  background: var(--bg-primary);
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}

.catalogue-header h1 {
  font-family: var(--ff-brand);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.catalogue-header h1 span {
  color: var(--gold-bright);
}

.catalogue-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.catalogue-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
}

.catalogue-stats span {
  color: var(--text-light);
  font-size: 0.8rem;
}

.catalogue-stats span::before {
  content: "✦ ";
  color: var(--gold-bright);
}

.search-section {
  padding: 24px 0 32px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--gold-border);
}

.search-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.search-input-group:focus-within {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-light);
  font-size: 1rem;
}

.search-input {
  width: 100%;
  padding: 16px 50px 16px 48px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-clear {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  display: none;
}

.search-clear.visible {
  display: block;
}

.search-clear:hover {
  color: var(--text-primary);
}

.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
  border-color: var(--gold-bright);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gold-bright);
  color: #FFFFFF;
  border-color: var(--gold-bright);
}

.search-results-count {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 16px;
}

.search-results-count span {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── FILTER TOGGLE + SIDEBAR ─────────────────────────── */
.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin: 20px 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-toggle:hover {
  border-color: var(--gold-bright);
}

.filter-icon {
  font-size: 1.1rem;
}

.filter-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-primary);
  border-left: 1px solid var(--gold-border);
  z-index: 10002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.filter-sidebar.open {
  right: 0;
}

.sidebar-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h3 {
  font-family: var(--ff-brand);
  color: var(--text-primary);
  font-size: 1.2rem;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.3s ease;
}

.sidebar-close:hover {
  color: var(--text-primary);
}

.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h4 {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 6px 0;
  cursor: pointer;
}

.filter-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-bright);
  cursor: pointer;
}

.sidebar-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gold-border);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── NO RESULTS ──────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  color: var(--text-light);
}

.no-results h3 {
  color: var(--text-primary);
  font-family: var(--ff-brand);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.no-results p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── CATALOGUE RESULTS ───────────────────────────────── */
.catalogue-results-section {
  padding: 40px 0 80px;
}

/* ── SERVICES HOME ───────────────────────────────────── */
.services-home {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 12px;
}

.service-card h3 {
  color: var(--text-primary);
  font-family: var(--ff-brand);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-link {
  color: var(--gold-rich);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  color: var(--gold-bright);
  gap: 8px;
}

/* ── FORM ELEMENTS ───────────────────────────────────── */
input, textarea, select {
  font-family: inherit;
}

.form-group {
  margin-bottom: var(--sp-3);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: var(--fs-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-bright);
}

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

/* ── UTILITIES ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold-bright); }
.text-muted { color: var(--text-muted); }
.text-soft { color: var(--text-secondary); }
.text-sm { font-size: var(--fs-sm); }
.uppercase { text-transform: uppercase; }
.mb-1 { margin-bottom: var(--sp-1); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }

/* ── PRODUCT PAGE EXTRAS ─────────────────────────────── */
.product-code {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--sp-3);
}

.variant-selector h4 {
  font-family: var(--ff-brand);
  font-size: var(--fs-lg);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.selector-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-3);
}

.selector-row label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.selector-row select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: var(--fs-base);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.selector-row select:focus {
  outline: none;
  border-color: var(--gold-bright);
}

.selected-variant-info {
  margin-top: var(--sp-2);
}

.variants-section {
  padding: 60px 0;
}

.variants-section h3 {
  font-family: var(--ff-brand);
  font-size: var(--fs-xl);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

/* ── VISUAL VARIANT SELECTOR ─────────────────────────── */
.variant-selector {
  margin-top: 16px;
}

.variant-selector h4 {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.variant-option {
  padding: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variant-drawing {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  margin-bottom: 8px;
}

.variant-drawing.empty {
  opacity: 0.3;
  background-image: linear-gradient(135deg, #e8e4da 25%, #fff 25%, #fff 50%, #e8e4da 50%, #e8e4da 75%, #fff 75%, #fff 100%);
  background-size: 12px 12px;
}

.variant-option:hover {
  border-color: var(--gold-bright);
}

.variant-option.active {
  border-color: var(--gold-bright);
  background: var(--gold-glow);
}

.variant-size {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.variant-price {
  display: block;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 600;
}

.variant-stock {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
}

.variant-stock.low-stock {
  color: #E8A838;
}

.variant-stock.out-of-stock {
  color: #8B3A3A;
}

/* ── PREMIUM PRICE TABLE ─────────────────────────────── */
.price-list-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.table-wrapper {
  overflow-x: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  table-layout: fixed;
}

.price-table thead {
  background: var(--bg-primary);
}

.price-table th {
  padding: 14px 20px;
  text-align: center;
  color: var(--gold-rich);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--gold-border);
}

.price-table th:nth-child(1) { width: 40%; }
.price-table th:nth-child(2) { width: 25%; }
.price-table th:nth-child(3) { width: 35%; }

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gold-border);
  color: var(--text-primary);
  text-align: center;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: rgba(212, 175, 55, 0.03);
}

.price-table strong {
  color: var(--text-primary);
  font-weight: 500;
}

.metal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.metal-dot.gold { background: var(--gold-bright); }
.metal-dot.white-gold { background: #E8E8E8; }
.metal-dot.rose-gold { background: #E8A87C; }

.price-cell {
  color: var(--gold-bright);
  font-weight: 600;
}

.btn-table {
  display: inline-block;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  color: var(--gold-rich);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-table:hover {
  background: var(--gold-bright);
  color: #FFFFFF;
}

.table-note {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 16px;
  text-align: center;
}

/* ── PRICE TABLE SECTION ─────────────────────────────── */
.price-table-section {
  padding: 40px 0 80px;
  background: var(--bg-secondary);
}

.price-table-section h2 {
  font-family: var(--ff-brand);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.price-table-section h2 span {
  color: var(--gold-bright);
}

/* ── SERVICE PAGE ────────────────────────────────────── */
.services-hero {
  padding: 120px 0 40px;
  text-align: center;
  background: var(--bg-primary);
}

.service-hero h1 {
  font-family: var(--ff-brand);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-hero h1 span,
.services-hero h1 span {
  color: var(--gold-bright);
}

.service-hero p,
.services-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ── SERVICE DETAIL WITH IMAGES ──────────────────────── */
.service-detail-alt {
  padding: 80px 0;
  background: var(--bg-primary);
  scroll-margin-top: 80px;
}

.service-detail-alt.alt-bg {
  background: var(--bg-secondary);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.service-detail-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  pointer-events: none;
}

.service-detail-content .service-number {
  font-family: var(--ff-brand);
  font-size: 3rem;
  color: var(--gold-bright);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: -8px;
}

.service-detail-content h2 {
  font-family: var(--ff-brand);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-detail-content h2 span {
  color: var(--gold-bright);
}

.service-detail-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-detail-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 4px 0 4px 24px;
  position: relative;
}

.service-detail-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-bright);
}

/* ── CONNECT SECTION ─────────────────────────────────── */
.connect-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 32px auto 0;
}

.connect-card {
  padding: 32px;
  background: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

.connect-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-4px);
}

.connect-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.connect-card h3 {
  color: var(--text-primary);
  font-family: var(--ff-brand);
  font-size: 1.1rem;
}

.connect-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.trust-services {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.why-choose {
  padding: 80px 0;
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.why-item:hover {
  border-color: var(--gold-bright);
  transform: translateY(-4px);
}

.why-number {
  font-family: var(--ff-brand);
  font-size: 2.5rem;
  color: var(--gold-bright);
  opacity: 0.2;
  margin-bottom: 8px;
}

.why-item h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-list {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.service-row {
  padding: 32px;
  margin-bottom: 16px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-row:hover {
  border-color: var(--gold-bright);
}

.service-tag {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.service-row h3 {
  font-family: var(--ff-brand);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-row p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-benefits li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.service-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold-bright);
  font-weight: 700;
}

/* ── OUR STORY PAGE ──────────────────────────────────── */
.story-hero {
  padding: 100px 0 var(--sp-8);
}

.story-hero h1 {
  font-family: var(--ff-brand);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.story-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}

.story-content p:last-child {
  margin-bottom: 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-info h1 {
  font-family: var(--ff-brand);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.contact-info p.text-soft {
  color: var(--text-secondary);
  line-height: 1.7;
}

.quote-form h3 {
  font-family: var(--ff-brand);
  font-size: var(--fs-xl);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: var(--sp-3);
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold-bright);
  margin-top: 4px;
  stroke: var(--gold-bright);
  fill: none;
}

.contact-detail .font-medium {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-detail .text-muted {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: var(--fs-base);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-bright);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* ── FEATURES ROW (about page) ───────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.section-header h2 {
  font-family: var(--ff-brand);
  font-size: var(--fs-2xl);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.section-header p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.feature-item {
  padding: var(--sp-4);
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold-bright);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.feature-item h6 {
  font-family: var(--ff-brand);
  font-size: var(--fs-base);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── REVIEWS SECTION ─────────────────────────────────── */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.review-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--gold-bright);
}

.review-stars {
  color: var(--gold-bright);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.review-stars-small {
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.review-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.review-author strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.review-author span {
  display: block;
  color: var(--text-light);
  font-size: 0.8rem;
}

.review-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--gold-border);
}

.review-stats div {
  text-align: center;
}

.review-stats div span:first-child {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.review-stats div span:nth-child(2) {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.review-stats div span:last-child {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 100px 0 var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.breadcrumb a:hover { color: var(--gold-bright); }

.breadcrumb .sep {
  color: var(--text-light);
}

.text-xs { font-size: var(--fs-xs); }

/* ── RESPONSIVE: TABLET ──────────────────────────────── */
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .search-box {
    width: 280px;
  }
}

/* ── RESPONSIVE: DESKTOP ─────────────────────────────── */
@media (min-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid {
    grid-template-columns: 7fr 5fr;
  }

  .features-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail-layout {
    grid-template-columns: 3fr 2fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }

  .spot-prices-desktop {
    display: flex;
  }

  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .cart-toggle {
    display: flex;
  }
}

/* ── RESPONSIVE: MOBILE ──────────────────────────────── */
@media (max-width: 767px) {
  .cart-toggle {
    display: none;
  }
}

/* ── RESPONSIVE: LARGE DESKTOP ───────────────────────── */
@media (min-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 3fr 2fr;
  }
}

/* ── RESPONSIVE: SMALL SCREENS ──────────────────────── */
@media (max-width: 639px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .price-grid {
    grid-template-columns: 1fr;
    padding: 24px 0 48px;
  }

  .gold-purity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .connect-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .catalogue-header {
    padding: 80px 0 20px;
  }

  .catalogue-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .service-detail-grid,
  .service-detail-grid.reverse {
    direction: ltr;
  }

  .service-detail-image img {
    height: 220px;
  }

  .services-hero {
    padding: 90px 0 20px;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .price-hero {
    padding: 90px 0 20px;
  }

  .price-hero h1 {
    font-size: 2rem;
  }

  .review-stats {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-bg-image {
    background-position: 20% center;
  }

  .hero-bg-overlay {
    background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(0, 0, 0, 0.65) 100%
    );
  }

  .gold-purity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2);
  }
}

/* ── TRANSLATE BUTTON ─────────────────────────────────── */
#google_translate_element {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.translate-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.translate-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--ff-body);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-small);
}

.translate-btn:hover {
  border-color: var(--gold-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.translate-btn svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.translate-btn span {
  white-space: nowrap;
}

.translate-dropdown {
  position: absolute;
  bottom: 48px;
  right: 0;
  background: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  padding: 6px;
  display: none;
  max-height: 320px;
  overflow-y: auto;
  min-width: 160px;
}

.translate-dropdown.open {
  display: block;
}

.translate-option {
  display: block;
  padding: 8px 14px;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: var(--ff-body);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.translate-option:hover {
  background: var(--gold-glow);
  color: var(--text-primary);
}

.translate-option.active {
  color: var(--gold-bright);
  background: var(--gold-glow);
}

.translate-dropdown::-webkit-scrollbar {
  width: 5px;
}
.translate-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.translate-dropdown::-webkit-scrollbar-thumb {
  background: var(--gold-border);
  border-radius: 3px;
}

/* Hide Google Translate banner */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

@media (max-width: 768px) {
  .translate-container {
    bottom: 16px;
    right: 16px;
  }
  .translate-btn {
    padding: 8px 12px;
  }
  .translate-btn span {
    display: none;
  }
  .translate-dropdown {
    bottom: 44px;
    right: 0;
  }
}
