@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&display=swap');

:root {
  --color-bg: #fafaf9;
  --color-bg-2: #f5f5f4;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 250, 250, 249;
  --color-bg-white-rgb: 255, 255, 255;
  --color-surface: rgba(28,25,23,0.02);
  --color-surface-hover: rgba(180,83,9,0.05);
  --color-text: #292524;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-accent: #8e15ec;
  --color-accent-2: #e85729;
  --color-accent-3: #26e308;
  --color-accent-warm: #e39c3d;
  --color-accent-soft: #ebe3f1;
  --color-accent-2-soft: #f1e7e4;
  --color-accent-3-soft: #e5f2e3;
  --color-accent-warm-soft: #f0ebe4;
  --color-border: rgba(180,83,9,0.18);
  --color-border-light: rgba(180,83,9,0.08);
  --color-footer-bg: #1c1917;
  --color-footer-text: #f5f5f4;
  --color-footer-muted: #a8a29e;
  --color-footer-link: #d6d3d1;
  --color-footer-border: rgba(180,83,9,0.25);
  --color-footer-social-bg: rgba(180,83,9,0.15);
  --color-footer-social-border: rgba(180,83,9,0.3);
  --font-heading: 'Newsreader', 'Georgia', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(28,25,23,0.04);
  --shadow-sm: 0 1px 2px rgba(180,83,9,0.06), 0 1px 1px rgba(28,25,23,0.04);
  --shadow-md: 0 2px 6px rgba(180,83,9,0.08), 0 1px 3px rgba(28,25,23,0.05);
  --shadow-lg: 0 8px 24px rgba(180,83,9,0.1), 0 4px 8px rgba(28,25,23,0.05);
  --shadow-xl: 0 16px 40px rgba(180,83,9,0.12), 0 6px 14px rgba(28,25,23,0.06);
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(180,83,9,0.04) 0%, transparent 35%),
    radial-gradient(circle at 92% 88%, rgba(28,25,23,0.03) 0%, transparent 40%),
    var(--color-bg);
  letter-spacing: 0.01em;
}

.hero-title,
.section-title,
.product-title,
.page-title,
.logo-text,
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* ── Announcement & Header ───────────────────────────────────────────────── */
.announcement-bar {
  background: #292524;
  color: #fafaf9;
  border-bottom: 1px solid rgba(180,83,9,0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}
.announcement-bar strong {
  color: #b45309;
  font-weight: 600;
}

.site-header {
  background: rgba(250,250,249,0.88);
  border-bottom: 1px solid rgba(180,83,9,0.22);
  box-shadow: 0 1px 0 rgba(180,83,9,0.06);
}

.nav-link {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.nav-link.active {
  color: #b45309;
  background: rgba(180,83,9,0.08);
}
.nav-link.active::after {
  content: '';
  display: block;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(180deg, #fafaf9 0%, #f5f5f4 100%);
  text-align: center;
  border-bottom: 1px solid rgba(180,83,9,0.18);
}
.hero, .hero-content { text-align: center; }
.hero-actions { justify-content: center; }
.hero-subtitle { max-width: 560px; margin-left: auto; margin-right: auto; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(180,83,9,0.07) 0%, transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(41,37,36,0.05) 0%, transparent 35%),
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(180,83,9,0.04) 39px, rgba(180,83,9,0.04) 40px);
  pointer-events: none;
  opacity: 0.9;
}

.hero-badge {
  background: transparent;
  border: 1px solid #b45309;
  color: #b45309;
  border-radius: 2px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 7px 18px;
  position: relative;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid #b45309;
  background: transparent;
  margin-right: 2px;
}

.hero-title {
  font-style: italic;
  font-weight: 500;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  background: #b45309;
  color: #fafaf9;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(28,25,23,0.08);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid #b45309;
}
.btn-primary:hover {
  background: #92400e;
  border-color: #92400e;
  box-shadow: 0 4px 14px rgba(180,83,9,0.25);
  filter: none;
}

.btn-outline {
  border: 1px solid #292524;
  background: transparent;
  color: #292524;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.btn-outline:hover {
  background: #292524;
  color: #fafaf9;
  border-color: #292524;
}

.btn-cta {
  background: #b45309;
  border-radius: var(--radius-md);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.btn-cta:hover {
  background: #92400e;
  filter: none;
}

/* ── Section dividers ────────────────────────────────────────────────────── */
.section-header {
  position: relative;
  padding-bottom: 18px;
}
.section-header::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: #b45309;
  margin: 16px auto 0;
}

.section-title { font-weight: 500; }
.section-subtitle { font-style: italic; color: #78716c; }

/* ── PRODUCT GRID (mineral / masonry feel) ──────────────────────────────── */
.product-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0;
  position: relative;
  -webkit-column-count: 3;
  column-count: 3;
  column-gap: 24px;
  column-fill: balance;
}
.product-grid > .product-card-link,
.product-grid > .product-card {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  display: inline-block !important;
  width: 100%;
  margin-bottom: 24px;
}
.product-grid > .product-card-link > .product-card {
  display: flex !important;
  flex-direction: column !important;
}

.product-grid-4,
.product-grid.layout-large,
.product-grid.layout-compact {
  -webkit-column-count: 3;
  column-count: 3;
}

@media (max-width: 900px) {
  .product-grid,
  .product-grid-4,
  .product-grid.layout-large,
  .product-grid.layout-compact {
    -webkit-column-count: 2;
    column-count: 2;
    column-gap: 16px;
  }
  .product-grid > .product-card-link,
  .product-grid > .product-card { margin-bottom: 16px; }
}
@media (max-width: 480px) {
  .product-grid,
  .product-grid-4,
  .product-grid.layout-large,
  .product-grid.layout-compact {
    -webkit-column-count: 1;
    column-count: 1;
  }
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.18);
  border-radius: 2px;
  box-shadow: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  border-color: #b45309;
  box-shadow: 0 6px 20px rgba(180,83,9,0.12);
  transform: translateY(-2px);
}

.card-image-wrapper {
  background: #f5f5f4;
  border-bottom: 1px solid rgba(180,83,9,0.12);
}
.card-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(28,25,23,0.06) 100%);
  pointer-events: none;
  z-index: 1;
}

.card-badge {
  background: #292524;
  color: #fafaf9;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(180,83,9,0.4);
}

.card-brand {
  color: #b45309;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
}
.card-title a:hover { color: #b45309; }

.price-current { font-family: var(--font-heading); font-weight: 600; }

/* ── Categories — icons as simple circles ────────────────────────────────── */
.category-card {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.18);
  border-radius: 2px;
  padding: 36px 24px;
}
.category-card:hover {
  border-color: #b45309;
  box-shadow: 0 4px 16px rgba(180,83,9,0.1);
}
.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #b45309;
  color: #b45309;
  position: relative;
}
.category-icon::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(180,83,9,0.25);
  border-radius: 50%;
  pointer-events: none;
}
.category-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.category-count {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ── Filter chips ────────────────────────────────────────────────────────── */
.filter-btn {
  border-radius: 2px;
  border: 1px solid rgba(180,83,9,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.filter-btn:hover {
  border-color: #b45309;
  color: #b45309;
}
.filter-btn.active {
  background: #292524;
  border-color: #292524;
  color: #fafaf9;
}

.page-num.active {
  background: #b45309;
  border-color: #b45309;
}

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.newsletter-section {
  background: #292524;
  color: #fafaf9;
  border-top: 1px solid rgba(180,83,9,0.3);
  border-bottom: 1px solid rgba(180,83,9,0.3);
  position: relative;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(180,83,9,0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(180,83,9,0.1) 0%, transparent 35%);
  pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-text h3 {
  color: #fafaf9;
  font-style: italic;
  font-weight: 500;
}
.newsletter-text p { color: #d6d3d1; }
.newsletter-form input {
  background: rgba(250,250,249,0.08);
  border: 1px solid rgba(180,83,9,0.4);
  color: #fafaf9;
  border-radius: 2px;
}
.newsletter-form input::placeholder { color: #a8a29e; }
.newsletter-form input:focus { border-color: #e39c3d; }
.newsletter-form button {
  background: #b45309;
  color: #fafaf9;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.newsletter-form button:hover { background: #92400e; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section { background: #f5f5f4; }
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.15);
  border-radius: 2px;
}
.faq-item[open] { border-color: #b45309; }
.faq-item[open] .faq-question::after { color: #b45309; }
.faq-question { font-family: var(--font-heading); font-weight: 500; font-size: 16px; }

/* ── Guide ───────────────────────────────────────────────────────────────── */
.guide-card {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.18);
  border-radius: 2px;
}
.guide-card:hover { border-color: #b45309; }
.guide-number {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #b45309;
  color: #b45309;
  font-family: var(--font-heading);
  font-weight: 600;
}
.guide-card-title { font-family: var(--font-heading); font-weight: 500; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-section { background: #f5f5f4; }
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.15);
  border-radius: 2px;
}
.testimonial-text { font-family: var(--font-heading); font-style: italic; font-size: 15px; }
.testimonial-avatar {
  background: transparent;
  border: 1px solid #b45309;
  color: #b45309;
  font-family: var(--font-heading);
}

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats-section {
  background: #292524;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(180,83,9,0.2) 50%, transparent 100%);
  height: 1px;
  top: auto;
  bottom: 0;
}
.stat-number { color: #e39c3d; font-family: var(--font-heading); }
.stat-label { color: #d6d3d1; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }

/* ── Top Picks ───────────────────────────────────────────────────────────── */
.top-picks-section { background: #f5f5f4; }
.top-pick-item {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.15);
  border-radius: 2px;
}
.top-pick-item:hover { border-color: #b45309; }
.top-pick-rank {
  color: #b45309;
  font-family: var(--font-heading);
  font-style: italic;
}
.top-pick-name { font-family: var(--font-heading); font-weight: 500; }

/* ── Trust ───────────────────────────────────────────────────────────────── */
.trust-section { border-top: 1px solid rgba(180,83,9,0.15); }
.trust-item svg { color: #b45309; }

/* ── Product Page ────────────────────────────────────────────────────────── */
.product-brand-link { color: #b45309; }
.product-title { font-weight: 500; font-style: italic; }
.product-price-block {
  background: #f5f5f4;
  border: 1px solid rgba(180,83,9,0.18);
  border-radius: 2px;
}
.price-big { font-family: var(--font-heading); font-weight: 600; }
.price-save {
  background: rgba(38,227,8,0.12);
  color: #15803d;
  border-radius: 2px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
.mini-badge {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.2);
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.gallery-main {
  background: #f5f5f4;
  border: 1px solid rgba(180,83,9,0.15);
  border-radius: 2px;
}
.gallery-badge {
  background: #292524;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}
.thumb { border-radius: 2px; }
.thumb.active, .thumb:hover { border-color: #b45309; }

/* ── Widgets ─────────────────────────────────────────────────────────────── */
.delivery-widget {
  background: #f5f5f4;
  border: 1px solid rgba(180,83,9,0.15);
  border-radius: 2px;
}
.delivery-item svg { color: #b45309; }

.pros-cons-widget {
  background: #f5f5f4;
  border: 1px solid rgba(180,83,9,0.15);
  border-radius: 2px;
}
.pros-cons-widget h3 { font-family: var(--font-heading); font-weight: 500; }
.pros-heading { color: #15803d; letter-spacing: 0.05em; text-transform: uppercase; font-size: 12px; }
.cons-heading { color: #e85729; letter-spacing: 0.05em; text-transform: uppercase; font-size: 12px; }

.price-history-section {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.18);
  border-radius: 2px;
  box-shadow: none;
}
.price-history-section::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: #b45309;
  margin: 0 0 16px;
}
.chart-bar {
  background: linear-gradient(180deg, rgba(180,83,9,0.2) 0%, #b45309 100%);
  border-radius: 2px 2px 0 0;
}
.chart-bar-current {
  background: linear-gradient(180deg, rgba(38,227,8,0.3) 0%, #15803d 100%);
  box-shadow: 0 0 12px rgba(21,128,61,0.2);
}
.chart-note {
  background: rgba(21,128,61,0.06);
  color: #15803d;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.user-reviews-section {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.18);
  border-radius: 2px;
  box-shadow: none;
}
.user-reviews-section::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: #b45309;
  margin: 0 0 16px;
}
.reviews-big-number {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #b45309;
}
.review-card {
  background: #fafaf9;
  border: 1px solid rgba(180,83,9,0.12);
  border-radius: 2px;
}
.review-avatar {
  background: #b45309;
  border-radius: 50%;
  font-family: var(--font-heading);
}
.review-bar-fill { background: #e39c3d; }

.social-proof-popup {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.25);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(28,25,23,0.12);
}
.popup-icon {
  background: transparent;
  border: 1px solid #b45309;
  color: #b45309;
}
.popup-text strong { color: #292524; }

/* ── Brand & Trending ────────────────────────────────────────────────────── */
.brand-card {
  background: #ffffff;
  border: 1px solid rgba(180,83,9,0.15);
  border-radius: 2px;
}
.brand-card:hover {
  border-color: #b45309;
  box-shadow: 0 4px 12px rgba(180,83,9,0.1);
}
.brand-initial {
  background: transparent;
  border: 1px solid #b45309;
  color: #b45309;
  font-family: var(--font-heading);
}
.brand-name { font-family: var(--font-heading); font-weight: 500; }
.brand-tagline { letter-spacing: 0.05em; }

.trending-item {
  background: #f5f5f4;
  border: 1px solid rgba(180,83,9,0.12);
  border-radius: 2px;
}
.trending-rank { color: #b45309; font-family: var(--font-heading); font-style: italic; }
.trending-name { font-family: var(--font-heading); font-weight: 500; }
.trending-hot {
  background: rgba(232,87,41,0.1);
  color: #e85729;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: #1c1917;
  border-top: 2px solid #b45309;
}
.footer-logo { font-style: italic; color: #fafaf9; }
.footer-col h4 { color: #b45309; letter-spacing: 0.2em; }
.social-links a:hover {
  background: #b45309;
  border-color: #b45309;
}

/* ── Decorative mineral hairlines on hero corners ────────────────────────── */
.hero-content::before {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: #b45309;
  margin: 0 auto 20px;
}

@keyframes copper-shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.hero-badge::before {
  animation: copper-shimmer 3s ease-in-out infinite;
}

/* ── Mobile guards ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { text-align: center; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
}