/** Shopify CDN: Minification failed

Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:27 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:29 Expected ":"
Line 25:14 Expected identifier but found whitespace
Line 25:16 Unexpected "{"
Line 25:26 Expected ":"
Line 26:16 Expected identifier but found whitespace
... and 14 more hidden warnings

**/
/* =============================================
   AUREVRA THEME — COMPLETE CSS
   Extracted from HTML prototypes
   ============================================= */

/* CSS VARIABLES (overridable via Shopify settings) */
:root {
  --bg-primary: {{ settings.bg_primary | default: '#FAF6F1' }};
  --bg-secondary: {{ settings.bg_secondary | default: '#F5EDE4' }};
  --text-dark: {{ settings.text_dark | default: '#2C2420' }};
  --text-medium: {{ settings.text_medium | default: '#6B5B4E' }};
  --text-light: {{ settings.text_light | default: '#9C8B7E' }};
  --accent-gold: {{ settings.accent_gold | default: '#C9A557' }};
  --accent-gold-hover: {{ settings.accent_gold_hover | default: '#B8934A' }};
  --error-sale: #C75050;
  --success: #5B8C6F;
  --border: {{ settings.border_color | default: '#E8DFD5' }};
  --white: #FFFFFF;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --section-py: 80px;
  --section-px: 40px;
  --card-padding: 20px;
  --grid-gap: 24px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(44,36,32,0.06);
  --shadow-md: 0 4px 16px rgba(44,36,32,0.08);
  --shadow-lg: 0 8px 32px rgba(44,36,32,0.10);
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: 48px; letter-spacing: -0.01em; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
.text-medium { color: var(--text-medium); }
.text-light { color: var(--text-light); }
.text-gold { color: var(--accent-gold); }
.italic { font-style: italic; }

/* =============================================
   UTILITY
   ============================================= */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--section-px); }
.section-padding { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1), transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}
.nav.scrolled {
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  padding: 14px 40px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.nav-logo img {
  max-height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-medium);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
}
.nav-links a:hover { color: var(--accent-gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icon {
  width: 20px; height: 20px;
  color: var(--text-medium);
  transition: color var(--transition-fast);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-icon:hover { color: var(--accent-gold); }
.nav-icon svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  width: 16px; height: 16px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge:empty,
.cart-badge[data-count="0"] { display: none; }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-mobile-toggle span {
  width: 22px; height: 1.5px;
  background: var(--text-dark);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
  gap: 60px;
  align-items: center;
}
.hero-content {
  padding-top: 80px;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.hero-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-visual {
  position: relative;
  height: 80vh;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f5ede4 0%, #e8d5b8 25%, #c9a557 50%, #a08040 75%, #6b5b3e 100%);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 55% 45%, rgba(255,255,255,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 35% 65%, rgba(201,165,87,0.3) 0%, transparent 60%);
  z-index: 1;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(44,36,32,0.15), transparent);
  z-index: 1;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
  cursor: pointer;
}
.hero-scroll-indicator svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold);
  color: var(--white);
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,165,87,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-gold);
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 1.5px solid var(--accent-gold);
  transition: color var(--transition-fast), gap var(--transition-base);
  cursor: pointer;
  border-top: none;
  border-left: none;
  border-right: none;
}
.btn-outline:hover { gap: 14px; }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

/* =============================================
   SHOP BY SYMBOL
   ============================================= */
.symbols-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 800px;
  margin: 0 auto;
}
.symbol-card {
  text-align: center;
  cursor: pointer;
}
.symbol-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.symbol-circle {
  width: 130px; height: 130px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  border: 2px solid var(--border);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}
.symbol-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.symbol-card:hover .symbol-circle {
  transform: scale(1.08);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 24px rgba(201,165,87,0.2);
}
.symbol-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.symbol-meaning {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* =============================================
   PRODUCT GRID & CARDS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.product-card {
  position: relative;
  cursor: pointer;
}
.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card__image-wrapper {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  background: var(--bg-secondary);
}
.product-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.product-card:hover .product-card__image-wrapper img {
  transform: scale(1.03);
}
.product-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
}
.product-card__overlay {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.product-card:hover .product-card__overlay {
  opacity: 1;
  transform: translateY(0);
}
.product-card__quick-add {
  width: 100%;
  background: var(--white);
  color: var(--text-dark);
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.product-card__quick-add:hover {
  background: var(--accent-gold);
  color: var(--white);
}
.product-card__info {
  padding: 0 2px;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.product-card__price {
  font-size: 15px;
  color: var(--accent-gold);
  font-weight: 500;
}
.product-card__price--sale {
  color: var(--accent-gold);
}
.product-card__price--compare {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 13px;
  margin-left: 8px;
  font-weight: 400;
}
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  z-index: 2;
}
.product-card__badge--sale {
  background: var(--error-sale);
}

/* Legacy product image classes for HTML prototypes */
.product-image {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}
.product-image-bg {
  width: 100%; height: 100%;
  transition: transform var(--transition-base);
}
.product-card:hover .product-image-bg { transform: scale(1.03); }
.product-image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,255,255,0.2), transparent);
}
.product-quick-add {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: var(--white);
  color: var(--text-dark);
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}
.product-quick-add:hover {
  background: var(--accent-gold);
  color: var(--white);
}
.product-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.product-price {
  font-size: 15px;
  color: var(--accent-gold);
  font-weight: 500;
}
.product-price-compare {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 13px;
  margin-left: 8px;
  font-weight: 400;
}

/* =============================================
   BRAND STORY
   ============================================= */
.brand-story {
  background: var(--bg-secondary);
}
.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-story-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.brand-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-story-visual-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8d5b8 0%, #c9a557 30%, #8b6914 60%, #5a4510 100%);
}
.brand-story-content h2 { margin-bottom: 20px; }
.brand-story-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 16px;
}

/* =============================================
   AUREVRA DIFFERENCE
   ============================================= */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.difference-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.difference-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}
.difference-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-secondary);
  font-size: 24px;
}
.difference-icon svg { width: 28px; height: 28px; }
.difference-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}
.difference-card p {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.7;
}

/* =============================================
   TESTIMONIALS / REVIEWS
   ============================================= */
.reviews-section,
.reviews-section-alt {
  background: var(--bg-secondary);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-stars,
.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.review-stars svg,
.star-rating svg {
  width: 16px; height: 16px;
  fill: var(--accent-gold);
}
.review-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.review-verified {
  font-size: 12px;
  color: var(--success);
  margin-top: 2px;
}

/* =============================================
   INSTAGRAM / UGC
   ============================================= */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.instagram-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram-item-bg {
  width: 100%; height: 100%;
  background: var(--bg-secondary);
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,36,32,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay svg {
  width: 28px; height: 28px;
  color: var(--white);
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  background: var(--text-dark);
  color: var(--bg-primary);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 {
  color: var(--bg-primary);
  margin-bottom: 10px;
}
.newsletter p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 14px;
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--bg-primary);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form input:focus { border-color: var(--accent-gold); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background var(--transition-fast);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--accent-gold-hover); }
.newsletter-success {
  color: var(--success);
  font-size: 14px;
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-dark);
  color: rgba(250,246,241,0.6);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-primary);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(250,246,241,0.5);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(250,246,241,0.35);
}
.footer-payments { display: flex; gap: 10px; }
.footer-payment-icon {
  width: 38px; height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-social a {
  color: rgba(250,246,241,0.5);
  transition: color var(--transition-fast);
}
.footer-social a:hover { color: var(--accent-gold); }
.footer-social svg { width: 20px; height: 20px; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  padding: 100px 0 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
}
.breadcrumb-list a { transition: color var(--transition-fast); }
.breadcrumb-list a:hover { color: var(--accent-gold); }
.breadcrumb-sep { font-size: 11px; }

/* =============================================
   COLLECTION BANNER
   ============================================= */
.collection-hero {
  padding: 32px 0 56px;
}
.collection-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.collection-hero-visual {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.collection-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-hero-content h1 {
  font-size: 44px;
  margin-bottom: 16px;
}
.collection-hero-content p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.8;
  max-width: 460px;
}

/* =============================================
   FILTER BAR (Collection page)
   ============================================= */
.filter-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 40px;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-count {
  font-size: 14px;
  color: var(--text-light);
  min-width: 90px;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-pill {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-medium);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.filter-pill:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.filter-pill.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
}
.filter-sort { min-width: 140px; text-align: right; }
.filter-sort select {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: var(--white);
  cursor: pointer;
  outline: none;
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail {
  padding: 24px 0 64px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 80px;
}
.product-main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  cursor: zoom-in;
  background: var(--bg-secondary);
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.product-thumbnail {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast), opacity var(--transition-fast);
}
.product-thumbnail.active { border-color: var(--accent-gold); }
.product-thumbnail:not(.active):hover { opacity: 0.75; }
.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info { padding-top: 8px; }
.product-title {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 6px;
}
.product-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 18px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.product-price-main {
  font-size: 24px;
  font-weight: 500;
  color: var(--accent-gold);
}
.product-price-original {
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
}
.product-price-save {
  font-size: 13px;
  color: var(--error-sale);
  font-weight: 500;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.product-rating-stars { display: flex; gap: 1px; }
.product-rating-stars svg { width: 16px; height: 16px; fill: var(--accent-gold); }
.product-rating-text { font-size: 14px; color: var(--text-medium); }
.product-rating-text strong { color: var(--text-dark); font-weight: 500; }
.product-rating-link {
  font-size: 14px;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
  transition: opacity var(--transition-fast);
}
.product-rating-link:hover { opacity: 0.7; }

.product-description {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* Option selectors */
.product-option-group { margin-bottom: 22px; }
.product-option-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: block;
}
.product-option-label span {
  font-weight: 400;
  color: var(--text-medium);
  text-transform: none;
  letter-spacing: 0;
}
.product-option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-medium);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.option-pill:hover { border-color: var(--text-medium); }
.option-pill.active {
  border-color: var(--text-dark);
  color: var(--text-dark);
  background: var(--bg-secondary);
}
.option-pill.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity + Add to Cart */
.product-add-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 16px;
}
.product-quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.product-quantity button {
  width: 40px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-medium);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.product-quantity button:hover {
  background: var(--bg-secondary);
  color: var(--text-dark);
}
.product-quantity input {
  width: 48px;
  text-align: center;
  font-size: 15px;
  font-family: var(--font-body);
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-dark);
}
.product-add-btn {
  flex: 1;
  padding: 14px 28px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}
.product-add-btn:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,165,87,0.3);
}
.product-add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-medium);
}
.trust-badge svg {
  width: 18px; height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* =============================================
   ACCORDION
   ============================================= */
.accordion { border-bottom: 1px solid var(--border); }
.accordion-item { border-top: 1px solid var(--border); }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}
.accordion-header:hover { color: var(--accent-gold); }
.accordion-icon {
  width: 20px; height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--text-light);
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1), padding 0.4s cubic-bezier(0.23,1,0.32,1);
}
.accordion-item.open .accordion-body {
  max-height: 600px;
  padding-bottom: 20px;
}
.accordion-body-content {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
}
.accordion-body-content p { margin-bottom: 12px; }
.accordion-body-content p:last-child { margin-bottom: 0; }
.accordion-body-content ul { margin: 0; padding: 0; }
.accordion-body-content ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-medium);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.accordion-body-content ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* =============================================
   CART DRAWER
   ============================================= */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,32,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}
.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: var(--bg-primary);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-size: 20px;
  font-weight: 500;
}
.cart-drawer-close {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-medium);
  transition: color var(--transition-fast);
}
.cart-drawer-close:hover { color: var(--text-dark); }
.cart-drawer-close svg { width: 20px; height: 20px; }

/* Free shipping progress */
.cart-free-shipping {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-free-shipping-text {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 8px;
}
.cart-free-shipping-text strong { color: var(--accent-gold); }
.cart-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.cart-progress-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Cart items */
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-secondary);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-details { flex: 1; }
.cart-item-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}
.cart-item-variant {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.cart-item-qty button {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-medium);
}
.cart-item-qty span {
  width: 28px;
  text-align: center;
  font-size: 13px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-gold);
}
.cart-item-remove {
  font-size: 12px;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
  margin-top: 4px;
}
.cart-item-remove:hover { color: var(--error-sale); }
.cart-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-light);
}
.cart-empty svg {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--border);
}

/* Cart footer */
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 16px;
}
.cart-subtotal-label { color: var(--text-medium); }
.cart-subtotal-value { font-weight: 600; color: var(--text-dark); }
.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  text-align: center;
  display: block;
}
.cart-checkout-btn:hover { background: var(--accent-gold-hover); }
.cart-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.cart-continue:hover { color: var(--accent-gold); }

/* =============================================
   CROSS-SELL / PRODUCT RECOMMENDATIONS
   ============================================= */
.cross-sell {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.cross-sell h2 {
  text-align: center;
  margin-bottom: 36px;
}
.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  max-width: 840px;
  margin: 0 auto;
}
.cross-sell-card { text-align: center; cursor: pointer; }
.cross-sell-card a { text-decoration: none; color: inherit; display: block; }
.cross-sell-image {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
  background: var(--bg-secondary);
}
.cross-sell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.cross-sell-card:hover .cross-sell-image img { transform: scale(1.03); }
.cross-sell-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.cross-sell-price {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 500;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-medium);
  transition: all var(--transition-fast);
}
.pagination a:hover {
  background: var(--bg-secondary);
  color: var(--text-dark);
}
.pagination .active {
  background: var(--text-dark);
  color: var(--white);
}
.pagination svg { width: 16px; height: 16px; }

/* =============================================
   RICH TEXT SECTION
   ============================================= */
.rich-text {
  padding: var(--section-py) 0;
}
.rich-text-inner {
  max-width: 780px;
  margin: 0 auto;
}
.rich-text-inner h2 {
  text-align: center;
  margin-bottom: 28px;
}
.rich-text-inner p {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.rich-text-inner p:last-child { margin-bottom: 0; }

/* =============================================
   SEO CONTENT
   ============================================= */
.seo-content {
  background: var(--bg-secondary);
}
.seo-content-inner {
  max-width: 780px;
  margin: 0 auto;
}
.seo-content h2 {
  text-align: center;
  margin-bottom: 28px;
}
.seo-content p {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-page { padding: 40px 0 80px; }
.cart-page h1 { margin-bottom: 32px; }
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.cart-table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-table-image {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
}
.cart-table-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-table-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}
.cart-table-variant {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}
.cart-summary {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}
.cart-summary-box {
  width: 360px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}
.cart-empty-page {
  text-align: center;
  padding: 80px 0;
}
.cart-empty-page h2 { margin-bottom: 16px; }
.cart-empty-page p {
  color: var(--text-light);
  margin-bottom: 28px;
}

/* =============================================
   BLOG / JOURNAL
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.blog-card { cursor: pointer; }
.blog-card a { text-decoration: none; color: inherit; display: block; }
.blog-card-image {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-secondary);
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.blog-card:hover .blog-card-image img { transform: scale(1.03); }
.blog-card-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Article */
.article-header {
  text-align: center;
  padding: 40px 0;
  max-width: 680px;
  margin: 0 auto;
}
.article-header h1 { margin-bottom: 12px; }
.article-meta {
  font-size: 14px;
  color: var(--text-light);
}
.article-featured-image {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.article-featured-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-content {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-medium);
}
.article-content p { margin-bottom: 24px; }
.article-content h2 {
  color: var(--text-dark);
  margin: 40px 0 16px;
}
.article-content h3 {
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.article-content blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-dark);
}
.article-content img {
  border-radius: var(--radius-md);
  margin: 32px 0;
}

/* =============================================
   SEARCH
   ============================================= */
.search-page { padding: 40px 0 80px; }
.search-form {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  gap: 0;
}
.search-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
  background: var(--white);
  transition: border-color var(--transition-fast);
}
.search-form input:focus { border-color: var(--accent-gold); }
.search-form button {
  padding: 14px 24px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border: none;
  cursor: pointer;
}
.search-form button:hover { background: var(--accent-gold-hover); }
.search-results-count {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* =============================================
   404 PAGE
   ============================================= */
.page-404 {
  text-align: center;
  padding: 120px 0;
}
.page-404 h1 {
  font-size: 120px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h2 { margin-bottom: 12px; }
.page-404 p {
  color: var(--text-light);
  margin-bottom: 28px;
}

/* =============================================
   CUSTOMER PAGES
   ============================================= */
.customer-page {
  max-width: 440px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.customer-page h1 {
  text-align: center;
  margin-bottom: 32px;
}
.customer-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.customer-form input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  margin-bottom: 18px;
  transition: border-color var(--transition-fast);
}
.customer-form input:focus { border-color: var(--accent-gold); }
.customer-form button {
  width: 100%;
  padding: 14px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.customer-form button:hover { background: var(--accent-gold-hover); }
.customer-links {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
}
.customer-links a {
  color: var(--accent-gold);
  transition: opacity var(--transition-fast);
}
.customer-links a:hover { opacity: 0.7; }

/* Account page */
.account-page { padding: 40px 0 80px; }
.account-page h1 { margin-bottom: 32px; }
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.account-section h3 { margin-bottom: 16px; }
.account-order {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account-order-id {
  font-weight: 500;
  font-size: 15px;
}
.account-order-date {
  font-size: 13px;
  color: var(--text-light);
}
.account-order-status {
  font-size: 13px;
  color: var(--success);
  font-weight: 500;
}

/* =============================================
   LIST COLLECTIONS
   ============================================= */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.collection-card {
  position: relative;
  cursor: pointer;
}
.collection-card a { text-decoration: none; color: inherit; display: block; }
.collection-card-image {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}
.collection-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.collection-card:hover .collection-card-image img { transform: scale(1.04); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,36,32,0.6), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.collection-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
}
.collection-card-count {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  .hero-title { font-size: 44px; }
  h2 { font-size: 30px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-hero-content h1 { font-size: 36px; }
  .product-detail-grid { gap: 36px; }
  .product-title { font-size: 32px; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --section-px: 20px;
  }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-primary);
    padding: 20px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav__container {
    width: 100%;
    padding: 0 16px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 100px;
  }
  .hero-title { font-size: 36px; }
  .hero-visual { height: 50vh; min-height: 300px; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin: 0 auto 28px; }
  .symbols-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .symbol-circle { width: 100px; height: 100px; font-size: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .brand-story-inner { grid-template-columns: 1fr; gap: 32px; }
  .brand-story-visual { aspect-ratio: 16/9; }
  .difference-grid { grid-template-columns: 1fr; gap: 16px; }
  .difference-card:last-child { max-width: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius-sm); }
  .newsletter-form button { border-radius: var(--radius-sm); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .breadcrumb { padding-top: 80px; }
  .collection-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .collection-hero-content h1 { font-size: 32px; }
  .filter-bar-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-gallery { position: static; }
  .product-title { font-size: 30px; }
  .trust-badges { flex-direction: column; gap: 12px; }
  .cross-sell-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-table { font-size: 14px; }
  .cart-summary-box { width: 100%; }
  .cart-summary { justify-content: stretch; }
  .blog-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .products-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .symbols-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cross-sell-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .product-add-row { flex-direction: column; }
  .filter-pills { gap: 6px; }
  .filter-pill { padding: 6px 14px; font-size: 12px; }
}

/* =============================================
   PAGE TEMPLATE
   ============================================= */
.page-template {
  padding: 40px 0 80px;
}
.page-template h1 {
  text-align: center;
  margin-bottom: 40px;
}
.page-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
}
.page-content p { margin-bottom: 20px; }
.page-content h2 {
  color: var(--text-dark);
  margin: 40px 0 16px;
}
.page-content h3 {
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.page-content img {
  border-radius: var(--radius-md);
  margin: 32px 0;
}
.page-content ul,
.page-content ol {
  margin: 0 0 20px 24px;
}
.page-content ul li,
.page-content ol li {
  margin-bottom: 8px;
}
