@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-accent: #52e308;
  --color-accent-2: #3baae4;
  --color-accent-3: #db48e1;
  --color-accent-warm: #e39e3d;
  --color-accent-soft: #e8f2e3;
  --color-accent-2-soft: #e4ecf0;
  --color-accent-3-soft: #f0e4f0;
  --color-accent-warm-soft: #f0ebe4;

  --color-bg: #ffffff;
  --color-bg-2: #f7f7f7;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 255, 255, 255;
  --color-bg-white-rgb: 255, 255, 255;

  --color-surface: rgba(0,0,0,0.02);
  --color-surface-hover: rgba(0,0,0,0.05);

  --color-text: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-text-muted: #999999;

  --color-border: #e0e0e0;
  --color-border-light: #f0f0f0;

  --color-footer-bg: #1a1a1a;
  --color-footer-text: #f0f0f0;
  --color-footer-muted: #888888;
  --color-footer-link: #cccccc;
  --color-footer-border: rgba(255,255,255,0.1);
  --color-footer-social-bg: rgba(255,255,255,0.06);
  --color-footer-social-border: rgba(255,255,255,0.12);

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

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.10);
}

/* ── Editorial Announcement Bar ─────────────────────────────── */
.announcement-bar {
  background: #1a1a1a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

/* ── Header — clean editorial ────────────────────────────────── */
.site-header {
  border-bottom: 2px solid #1a1a1a;
}

.logo-text {
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-link {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 0;
  padding: 8px 16px;
}

.nav-link:hover {
  background: transparent;
  color: #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
}

.nav-link.active {
  background: transparent;
  color: #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  font-weight: 700;
}

/* ── Hero — high-contrast editorial ──────────────────────────── */
.hero {
  background: #ffffff;
  padding: 120px 0 100px;
  border-bottom: 2px solid #1a1a1a;
}

.hero::before {
  display: none;
}

.hero-badge {
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 3px;
  padding: 10px 24px;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.0;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #666666;
  max-width: 480px;
}

/* ── Buttons — editorial style ───────────────────────────────── */
.btn-primary {
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  padding: 16px 40px;
  font-weight: 700;
}

.btn-primary:hover {
  background: #333333;
  box-shadow: none;
  filter: none;
}

.btn-outline {
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  padding: 16px 40px;
  font-weight: 700;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.btn-cta {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  box-shadow: none;
}

.btn-cta:hover {
  box-shadow: none;
  filter: brightness(0.9);
}

/* ── Section Titles — editorial typography ───────────────────── */
.section-title {
  font-size: 38px;
  letter-spacing: -1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #1a1a1a;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #999999;
}

/* ── Product Cards — magazine editorial style ────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: #1a1a1a;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.card-brand {
  letter-spacing: 2px;
  font-size: 10px;
  color: #999999;
}

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

.card-badge {
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #1a1a1a;
}

.card-quick-view {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  background: rgba(26,26,26,0.92);
}

.card-image-wrapper {
  background: #f5f5f5;
}

/* ── Category Cards — minimal editorial ──────────────────────── */
.category-card {
  border-radius: 0;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Filters — sharp editorial ───────────────────────────────── */
.filter-btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  border: 1px solid #cccccc;
}

.filter-btn:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.filter-btn.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

/* ── Newsletter — editorial band ─────────────────────────────── */
.newsletter-section {
  background: #1a1a1a;
  border: none;
  padding: 72px 0;
}

.newsletter-text h3 {
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-text p {
  color: #999999;
}

.newsletter-form input {
  border-radius: 0;
  border: 1px solid #444444;
  background: #2a2a2a;
  color: #ffffff;
}

.newsletter-form input::placeholder {
  color: #777777;
}

.newsletter-form input:focus {
  border-color: #ffffff;
}

.newsletter-form button {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  padding: 12px 32px;
}

/* ── FAQ — clean editorial ───────────────────────────────────── */
.faq-item {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

.faq-question {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

/* ── Guide Cards ─────────────────────────────────────────────── */
.guide-card {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

.guide-card:hover {
  border-color: #1a1a1a;
}

.guide-number {
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 16px;
}

.guide-card-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Testimonials — editorial quotes ─────────────────────────── */
.testimonial-card {
  border-radius: 0;
  border: 1px solid #e0e0e0;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: #e0e0e0;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-avatar {
  border-radius: 0;
}

/* ── Comparison Table ────────────────────────────────────────── */
.comparison-table {
  border-radius: 0;
}

.comparison-table th {
  background: #1a1a1a;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
}

/* ── Stats Section ───────────────────────────────────────────── */
.stats-section {
  background: #1a1a1a;
}

.stat-number {
  font-size: 42px;
  letter-spacing: -1px;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
}

/* ── Top Picks ───────────────────────────────────────────────── */
.top-pick-item {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

.top-pick-item:hover {
  border-color: #1a1a1a;
}

.top-pick-rank {
  font-size: 28px;
}

.top-pick-tag {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
}

/* ── Price History ───────────────────────────────────────────── */
.price-history-section {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

.chart-bar {
  border-radius: 0;
}

.chart-note {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

/* ── User Reviews ────────────────────────────────────────────── */
.user-reviews-section {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

.review-card {
  border-radius: 0;
}

.review-avatar {
  border-radius: 0;
}

.review-bar-track {
  border-radius: 0;
}

.review-bar-fill {
  border-radius: 0;
}

/* ── Pros & Cons ─────────────────────────────────────────────── */
.pros-cons-widget {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

.pros-cons-widget h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* ── Delivery Widget ─────────────────────────────────────────── */
.delivery-widget {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

/* ── Social Proof Popup ──────────────────────────────────────── */
.social-proof-popup {
  border-radius: 0;
  border: 2px solid #1a1a1a;
}

/* ── Banner Row ──────────────────────────────────────────────── */
.banner-link {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

.banner-link:hover {
  border-color: #1a1a1a;
}

.banner-row-3 .banner-link {
  border-radius: 0;
}

/* ── Brand Showcase ──────────────────────────────────────────── */
.brand-card {
  border-radius: 0;
}

.brand-initial {
  border-radius: 0;
}

/* ── Trending ────────────────────────────────────────────────── */
.trending-item {
  border-radius: 0;
}

.trending-hot {
  border-radius: 0;
  letter-spacing: 1px;
}

/* ── Pagination — sharp editorial ────────────────────────────── */
.page-btn, .page-num {
  border-radius: 0;
}

/* ── Product Page ────────────────────────────────────────────── */
.gallery-main {
  border-radius: 0;
}

.thumb {
  border-radius: 0;
}

.product-title {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.product-brand-link {
  color: #999999;
  letter-spacing: 3px;
}

.product-price-block {
  border-radius: 0;
  border: 2px solid #1a1a1a;
  background: #ffffff;
}

.price-save {
  border-radius: 0;
}

.gallery-badge {
  border-radius: 0;
}

.mini-badge {
  border-radius: 0;
}

/* ── Cookie Banner ───────────────────────────────────────────── */
.cookie-banner button {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

/* ── Search ──────────────────────────────────────────────────── */
.search-input {
  border-radius: 0;
}

/* ── Decorative Editorial Divider ────────────────────────────── */
.section + .section {
  border-top: 1px solid #e0e0e0;
}

/* ── Editorial Hover Line on Product Cards ───────────────────── */
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #1a1a1a;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}

.product-card:hover::after {
  width: 100%;
}

/* ── Page Title — editorial underline ────────────────────────── */
.page-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 20px;
  border-bottom: 3px solid #1a1a1a;
  display: inline-block;
}

/* ── Footer — editorial refinement ───────────────────────────── */
.footer-logo {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 18px;
}

.footer-col h4 {
  letter-spacing: 2px;
}

.social-links a {
  border-radius: 0;
}