@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600;1,9..144,700&family=Lexend:wght@300;400;500;600;700&display=swap');

:root {
  --color-accent: #3bcde4;
  --color-accent-2: #c547e2;
  --color-accent-3: #e28a46;
  --color-accent-warm: #e6580a;
  --color-accent-soft: #e4eff0;
  --color-accent-2-soft: #eee4f0;
  --color-accent-3-soft: #f0e9e4;
  --color-accent-warm-soft: #f2e8e3;
  --color-bg: #fdfaf2;
  --color-bg-2: #f7f0dc;
  --color-bg-white: #fffdf7;
  --color-bg-rgb: 253, 250, 242;
  --color-bg-white-rgb: 255, 253, 247;
  --color-text: #3d2f12;
  --color-text-secondary: #6b5a2e;
  --color-text-muted: #a89870;
  --color-border: #ebe1c2;
  --color-border-light: #f3ebd2;
  --color-footer-bg: #2a2008;
  --color-footer-text: #fef08a;
  --color-footer-muted: #b8a87a;
  --color-footer-link: #f3e8b0;
  --color-footer-border: rgba(254, 240, 138, 0.15);
  --color-footer-social-bg: rgba(254, 240, 138, 0.08);
  --color-footer-social-border: rgba(254, 240, 138, 0.15);
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Lexend', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(120, 90, 20, 0.08);
  --shadow-md: 0 4px 12px rgba(120, 90, 20, 0.10);
  --shadow-lg: 0 10px 30px rgba(120, 90, 20, 0.12);
  --shadow-xl: 0 20px 45px rgba(120, 90, 20, 0.15);
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, -1%); }
}

@keyframes sun-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.04); }
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(254, 240, 138, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(254, 240, 138, 0.22) 0%, transparent 45%),
    var(--color-bg);
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.1  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  animation: grain-shift 14s steps(6) infinite;
}

.site-header,
.hero,
.section,
main,
footer { position: relative; z-index: 2; }

.hero-title,
.section-title,
.product-title,
.page-title,
.hero-title--gradient {
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  letter-spacing: -1.2px;
}

.hero-title em,
.section-title em { font-style: normal; }

.hero {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(254, 240, 138, 0.65) 0%, transparent 55%),
    linear-gradient(180deg, #fffaeb 0%, #fdfaf2 100%);
  padding: 60px 0 56px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(254, 240, 138, 0.55) 0%, rgba(254, 240, 138, 0.15) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: sun-pulse 9s ease-in-out infinite;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero,
.hero--split .hero-content { text-align: center; }
.hero-actions,
.hero--split .hero-actions { justify-content: center; }
.hero-subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  background: #fef08a;
  color: #6b5a14;
  border: 1px solid #eddc6a;
  box-shadow: 0 2px 8px rgba(254, 240, 138, 0.4);
  font-family: var(--font-body);
  font-style: normal;
}

.announcement-bar {
  background: #3d2f12;
  color: #fef08a;
}
.announcement-bar strong { color: #fffbcc; }

.site-header {
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid #ebe1c2;
}

.logo-text {
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-link.active {
  background: #fef08a;
  color: #5a4a14;
}

.btn-primary {
  background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
  color: #3d2f12;
  border: 1px solid #eddc6a;
  box-shadow: 0 4px 14px rgba(253, 224, 71, 0.35);
  font-weight: 600;
}
.btn-primary:hover {
  filter: brightness(0.96);
  box-shadow: 0 6px 22px rgba(253, 224, 71, 0.5);
}

.btn-cta {
  background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
  color: #3d2f12;
  border: 1px solid #eddc6a;
  box-shadow: 0 2px 8px rgba(253, 224, 71, 0.3);
}
.btn-cta:hover {
  filter: brightness(0.96);
  box-shadow: 0 5px 16px rgba(253, 224, 71, 0.45);
}

.btn-outline {
  background: var(--color-bg-white);
  border-color: #3d2f12;
  color: #3d2f12;
}
.btn-outline:hover {
  background: #fef08a;
  border-color: #3d2f12;
  color: #3d2f12;
}

.section { padding: 88px 0; }
.section-header { margin-bottom: 56px; }

.product-card {
  display: flex !important;
  flex-direction: column !important;
  background: var(--color-bg-white);
  border: 1px solid #ebe1c2;
  box-shadow: 0 1px 0 rgba(254, 240, 138, 0.4) inset, var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, border-color 0.35s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(180, 140, 30, 0.18), 0 0 0 1px #fef08a inset;
  border-color: #fde047;
}

.card-body { flex: 1 !important; display: flex !important; flex-direction: column !important; padding: 22px; }

.card-brand {
  color: #8a6f1c;
  font-family: var(--font-body);
  font-weight: 600;
}

.card-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.price-current {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  color: #3d2f12;
}

.card-badge {
  background: #e6580a;
  color: #fffbcc;
  box-shadow: 0 2px 8px rgba(230, 88, 10, 0.3);
}

.category-card {
  background: var(--color-bg-white);
  border: 1px solid #ebe1c2;
  padding: 48px 24px;
}
.category-card:hover {
  border-color: #fde047;
  box-shadow: 0 10px 28px rgba(180, 140, 30, 0.15);
  background: linear-gradient(180deg, #fffdf7 0%, #fffaeb 100%);
}
.category-icon {
  background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
  color: #5a4a14;
  box-shadow: 0 4px 12px rgba(253, 224, 71, 0.3);
}

.newsletter-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(254, 240, 138, 0.5) 0%, transparent 60%),
    #fffaeb;
  border-color: #ebe1c2;
}
.newsletter-text h3 { font-style: italic; }
.newsletter-form input { background: var(--color-bg-white); border-color: #ebe1c2; }
.newsletter-form input:focus { border-color: #fde047; box-shadow: 0 0 0 3px rgba(254, 240, 138, 0.4); }
.newsletter-form button {
  background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
  color: #3d2f12;
}

.faq-section { background: #fffaeb; }
.faq-item { background: var(--color-bg-white); border-color: #ebe1c2; }
.faq-item[open] { border-color: #fde047; box-shadow: 0 4px 14px rgba(254, 240, 138, 0.3); }
.faq-question { font-family: var(--font-body); }
.faq-item[open] .faq-question::after { color: #ca8a04; }

.testimonials-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(254, 240, 138, 0.35) 0%, transparent 50%),
    #fdf6e0;
}
.testimonial-card { background: var(--color-bg-white); border: 1px solid #ebe1c2; }
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  color: #5a4a2e;
}
.testimonial-avatar {
  background: linear-gradient(135deg, #fef08a, #fde047);
  color: #3d2f12;
}

.top-picks-section {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(254, 240, 138, 0.4) 0%, transparent 55%),
    #fffaeb;
}
.top-pick-item { background: var(--color-bg-white); border: 1px solid #ebe1c2; }
.top-pick-item:hover {
  border-color: #fde047;
  box-shadow: 0 8px 22px rgba(180, 140, 30, 0.15);
  transform: translateX(4px);
}
.top-pick-rank {
  color: #ca8a04;
  font-style: italic;
}
.top-pick-tag {
  background: #fef08a;
  color: #6b5a14;
}

.guide-card { background: var(--color-bg-white); border: 1px solid #ebe1c2; }
.guide-card:hover { border-color: #e6580a; box-shadow: 0 8px 22px rgba(230, 88, 10, 0.1); }
.guide-number {
  background: linear-gradient(135deg, #e6580a 0%, #c44808 100%);
  color: #fffbcc;
}

.stats-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(254, 240, 138, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #fde047 0%, #facc15 100%);
}
.stat-number { color: #3d2f12; font-style: italic; }
.stat-label { color: rgba(61, 47, 18, 0.75); }

.trust-section { border-bottom-color: #ebe1c2; }
.trust-item svg { color: #ca8a04; }

.price-history-section {
  background:
    linear-gradient(180deg, #fffdf7 0%, #fffaeb 100%);
  border: 1px solid #ebe1c2;
  box-shadow: 0 4px 16px rgba(180, 140, 30, 0.08);
}
.chart-bar {
  background: linear-gradient(180deg, #fef9c3 0%, #fde047 100%);
  border-radius: 8px 8px 0 0;
}
.chart-bar-current {
  background: linear-gradient(180deg, #fde047 0%, #ca8a04 100%) !important;
  box-shadow: 0 0 16px rgba(202, 138, 4, 0.4);
}
.chart-note {
  background: rgba(254, 240, 138, 0.5);
  color: #6b5a14;
}

.user-reviews-section {
  background: linear-gradient(180deg, #fffdf7 0%, #fffaeb 100%);
  border: 1px solid #ebe1c2;
  box-shadow: 0 4px 16px rgba(180, 140, 30, 0.08);
}
.reviews-big-number { font-style: italic; color: #3d2f12; }
.review-card { background: #fffaeb; border-color: #f3ebd2; }
.review-bar-fill { background: linear-gradient(90deg, #fde047, #ca8a04); }
.review-avatar { background: linear-gradient(135deg, #fde047, #ca8a04); color: #3d2f12; }

.pros-cons-widget {
  background: linear-gradient(180deg, #fffdf7 0%, #fffaeb 100%);
  border: 1px solid #ebe1c2;
}
.pros-cons-widget h3 { font-style: italic; }

.delivery-widget {
  background: #fffaeb;
  border: 1px solid #ebe1c2;
}
.delivery-item svg { color: #ca8a04; }

.social-proof-popup {
  background: var(--color-bg-white);
  border: 1px solid #fde047;
  box-shadow: 0 12px 32px rgba(180, 140, 30, 0.2);
}
.popup-icon {
  background: linear-gradient(135deg, #fde047, #ca8a04);
  color: #3d2f12;
}

.brand-showcase-section { background: #fffaeb; }
.brand-card { background: var(--color-bg-white); border-color: #ebe1c2; }
.brand-card:hover { border-color: #fde047; }
.brand-initial {
  background: linear-gradient(135deg, #fef08a 0%, #ca8a04 100%);
  color: #3d2f12;
}
.brand-name { font-style: italic; }

.trending-section { background: var(--color-bg-white); }
.trending-item { background: #fffaeb; border-color: #f3ebd2; }
.trending-rank { color: #ca8a04; font-style: italic; }
.trending-hot {
  background: rgba(230, 88, 10, 0.12);
  color: #c44808;
}

.product-price-block {
  background: linear-gradient(135deg, #fffaeb 0%, #fef9c3 100%);
  border: 1px solid #fde68a;
}
.price-big { font-style: italic; }
.price-save {
  background: #fef08a;
  color: #6b5a14;
}

.gallery-main { background: #fffaeb; border-color: #ebe1c2; }
.thumb { border-color: #ebe1c2; background: #fffaeb; }
.thumb.active, .thumb:hover { border-color: #fde047; }

.product-brand-link { color: #8a6f1c; }
.product-title { font-style: italic; }

.mini-badge { background: #fffaeb; border-color: #ebe1c2; }
.mini-badge svg { color: #ca8a04; }

.filter-btn {
  background: var(--color-bg-white);
  border-color: #ebe1c2;
}
.filter-btn:hover { border-color: #fde047; color: #6b5a14; }
.filter-btn.active {
  background: #fef08a;
  color: #3d2f12;
  border-color: #eddc6a;
}

.page-num.active {
  background: #fef08a;
  color: #3d2f12;
  border-color: #eddc6a;
}

.site-footer {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(254, 240, 138, 0.06) 0%, transparent 50%),
    var(--color-footer-bg);
}
.footer-logo { font-style: italic; }

@media (max-width: 768px) {
  .hero { padding: 44px 0 40px; }
  .hero::before { width: 380px; height: 380px; top: -20%; }
  .section { padding: 56px 0; }
  body::before { opacity: 0.35; }
}