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

:root {
  --color-bg: #faf8f4;
  --color-bg-2: #f5f1e8;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 250, 248, 244;
  --color-bg-white-rgb: 255, 255, 255;
  --color-surface: rgba(212, 175, 55, 0.03);
  --color-surface-hover: rgba(212, 175, 55, 0.06);
  --color-text: #1a1614;
  --color-text-secondary: #6b6357;
  --color-text-muted: #a8a094;

  --color-accent: #29e754;
  --color-accent-2: #4150e3;
  --color-accent-3: #e24690;
  --color-accent-warm: #ec770f;
  --color-accent-soft: #e4f1e6;
  --color-accent-2-soft: #e4e5f0;
  --color-accent-3-soft: #f0e4ea;
  --color-accent-warm-soft: #f1eae3;

  --color-border: rgba(212, 175, 55, 0.25);
  --color-border-light: rgba(212, 175, 55, 0.12);

  --color-footer-bg: #1a1614;
  --color-footer-text: #f5f1e8;
  --color-footer-muted: #a8a094;
  --color-footer-link: #d4af37;
  --color-footer-border: rgba(212, 175, 55, 0.2);
  --color-footer-social-bg: rgba(212, 175, 55, 0.08);
  --color-footer-social-border: rgba(212, 175, 55, 0.25);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  --radius-sm: 0px;
  --radius-md: 2px;
  --radius-lg: 4px;
  --radius-xl: 6px;

  --shadow-xs: 0 1px 2px rgba(26, 22, 20, 0.03);
  --shadow-sm: 0 2px 8px rgba(26, 22, 20, 0.04);
  --shadow-md: 0 6px 18px rgba(26, 22, 20, 0.06);
  --shadow-lg: 0 14px 36px rgba(26, 22, 20, 0.08);
  --shadow-xl: 0 28px 60px rgba(26, 22, 20, 0.1);
}

body {
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* ── Champagne gold thin-stroke decorative line ─────────────────────────── */
@keyframes vitrine-shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.announcement-bar {
  background: #1a1614;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid #d4af37;
}
.announcement-bar strong { color: #d4af37; font-weight: 500; }

.site-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.94);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 20px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.4s ease, left 0.4s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}
.nav-link.active { background: transparent; color: #1a1614; }
.nav-link:hover { background: transparent; }

/* ── HERO — museum vitrine ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%) top center / 180px 1px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%) bottom center / 180px 1px no-repeat,
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { text-align: center; }
.hero-actions { justify-content: center; }

.hero-badge {
  background: transparent;
  border: 1px solid #d4af37;
  color: #8a7028;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 3px;
  font-size: 10px;
  border-radius: 0;
  padding: 8px 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.5px;
  font-style: italic;
}
.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: #d4af37;
  margin: 28px auto 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.5px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  color: #6b6357;
}

/* ── Buttons — thin gold strokes ────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 16px 36px;
}

.btn-primary {
  background: #1a1614;
  color: #ffffff;
  border: 1px solid #1a1614;
  box-shadow: none;
}
.btn-primary:hover {
  background: transparent;
  color: #1a1614;
  border-color: #d4af37;
  filter: none;
  transform: none;
}

.btn-outline {
  border: 1px solid #d4af37;
  color: #1a1614;
  background: transparent;
}
.btn-outline:hover {
  background: #d4af37;
  color: #ffffff;
  border-color: #d4af37;
}

.btn-cta {
  background: transparent;
  color: #1a1614;
  border: 1px solid #d4af37;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 24px;
}
.btn-cta:hover {
  background: #d4af37;
  color: #ffffff;
  transform: none;
  filter: none;
  box-shadow: none;
}

/* ── Section titles — editorial ─────────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 38px;
  letter-spacing: -0.3px;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: #d4af37;
  margin: 18px auto 0;
}
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8a094;
  margin-top: 12px;
}

.section { padding: 96px 0; }
.section-header { margin-bottom: 64px; }

/* ── Product cards — jewelry vitrine ────────────────────────────────────── */
.product-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: #d4af37;
  box-shadow: 0 20px 50px rgba(26, 22, 20, 0.08);
}

.card-image-wrapper {
  background: #faf8f4;
  padding-top: 110%;
}
.product-card:hover .card-image-wrapper img {
  transform: scale(1.03);
}

.card-body {
  padding: 22px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-brand {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a7028;
  font-weight: 500;
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 1.3;
  color: #1a1614;
}

.card-rating { justify-content: center; }

.card-price { justify-content: center; }
.price-current {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #1a1614;
}
.price-original {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1px;
}

.card-badge {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  padding: 5px 12px;
}

.card-quick-view {
  background: rgba(26, 22, 20, 0.92);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 500;
}

/* Compact captions per user's wish */
.product-grid {
  gap: 36px;
}

/* ── Filters & buttons ──────────────────────────────────────────────────── */
.filter-btn {
  border-radius: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
}
.filter-btn:hover { border-color: #d4af37; color: #8a7028; }
.filter-btn.active {
  background: #1a1614;
  border-color: #1a1614;
  color: #ffffff;
}

/* ── Categories ─────────────────────────────────────────────────────────── */
.category-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 0;
  padding: 48px 24px;
}
.category-card:hover {
  border-color: #d4af37;
  box-shadow: 0 16px 40px rgba(26, 22, 20, 0.06);
}
.category-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
}
.category-icon {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
}

/* ── Newsletter ─────────────────────────────────────────────────────────── */
.newsletter-section {
  background: #faf8f4;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  pointer-events: none;
}
.newsletter-text h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
}
.newsletter-form input {
  border-radius: 0;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-family: var(--font-body);
  letter-spacing: 1px;
  background: #ffffff;
}
.newsletter-form input:focus { border-color: #d4af37; }
.newsletter-form button {
  background: #1a1614;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.newsletter-form button:hover {
  background: #d4af37;
  transform: none;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-section { background: #ffffff; }
.faq-item {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.faq-item[open] { border-color: #d4af37; }
.faq-question {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
}
.faq-item[open] .faq-question::after { color: #d4af37; }

/* ── Guide ──────────────────────────────────────────────────────────────── */
.guide-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  padding: 36px 28px;
  text-align: center;
}
.guide-card:hover { border-color: #d4af37; }
.guide-number {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  font-family: var(--font-heading);
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}
.guide-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-section { background: #faf8f4; }
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  padding: 36px 30px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 64px;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1614;
}
.testimonial-avatar {
  background: transparent;
  border: 1px solid #d4af37;
  color: #8a7028;
  font-family: var(--font-heading);
}

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats-section {
  background: #1a1614;
  border-top: 1px solid #d4af37;
  border-bottom: 1px solid #d4af37;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  color: #d4af37;
  font-size: 44px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: #f5f1e8;
}

/* ── Top Picks ──────────────────────────────────────────────────────────── */
.top-picks-section { background: #ffffff; }
.top-pick-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  padding: 24px 16px;
}
.top-pick-item:hover { border-color: #d4af37; box-shadow: none; }
.top-pick-rank {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: #d4af37;
  font-size: 32px;
}
.top-pick-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
}
.top-pick-tag {
  background: transparent;
  border: 1px solid #d4af37;
  color: #8a7028;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ── Product page ───────────────────────────────────────────────────────── */
.product-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.3px;
}
.product-brand-link {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 2.5px;
}
.product-price-block {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0;
}
.price-big {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
}
.price-save {
  background: transparent;
  color: #8a7028;
  border: 1px solid #d4af37;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.mini-badge {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
}
.gallery-main {
  border-radius: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.thumb {
  border-radius: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.thumb.active, .thumb:hover { border-color: #d4af37; }

/* ── New widgets ────────────────────────────────────────────────────────── */
.price-history-section,
.user-reviews-section {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  box-shadow: none;
  padding: 40px;
  position: relative;
}
.price-history-section::before,
.user-reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: #d4af37;
}

.chart-bar {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.2) 0%, #d4af37 100%);
  border-radius: 0;
}
.chart-bar-current {
  background: linear-gradient(180deg, rgba(26, 22, 20, 0.5) 0%, #1a1614 100%);
  box-shadow: none;
}
.chart-note {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 0;
  color: #8a7028;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
}

.pros-cons-widget {
  background: #faf8f4;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  padding: 28px;
}
.pros-cons-widget h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
}
.pros-heading, .cons-heading {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.delivery-widget {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 0;
  padding: 22px;
}
.delivery-item svg { color: #d4af37; }
.delivery-item strong { font-family: var(--font-body); font-weight: 500; letter-spacing: 0.5px; }

.review-card {
  background: #faf8f4;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 0;
  padding: 22px;
}
.review-avatar {
  background: transparent;
  border: 1px solid #d4af37;
  color: #8a7028;
  font-family: var(--font-heading);
  font-weight: 500;
}
.reviews-big-number {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  color: #d4af37;
}

.social-proof-popup {
  background: #ffffff;
  border: 1px solid #d4af37;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(26, 22, 20, 0.12);
}
.popup-icon {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
}
.popup-text {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* ── Brand & trending ───────────────────────────────────────────────────── */
.brand-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  padding: 32px 20px;
}
.brand-card:hover { border-color: #d4af37; }
.brand-initial {
  background: transparent;
  border: 1px solid #d4af37;
  color: #8a7028;
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
}
.brand-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}
.trending-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 0;
}
.trending-rank {
  font-family: var(--font-heading);
  font-style: italic;
  color: #d4af37;
}
.trending-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid #d4af37;
}
.footer-logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  color: #d4af37;
  font-weight: 500;
}
.social-links a {
  border-radius: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.social-links a:hover {
  background: #d4af37;
  border-color: #d4af37;
}

/* ── Banners & misc ─────────────────────────────────────────────────────── */
.banner-link {
  border-radius: 0;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: none;
}
.banner-link:hover {
  border-color: #d4af37;
  box-shadow: 0 12px 30px rgba(26, 22, 20, 0.08);
}

.page-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
}

.cookie-banner {
  border-top: 1px solid #d4af37;
  border-radius: 0;
}
.cookie-banner button {
  background: #1a1614;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero::before { background-size: 120px 1px; }
  .section { padding: 64px 0; }
  .product-grid { gap: 20px; }
}