@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-accent: #c5ed10;
  --color-accent-2: #0feccd;
  --color-accent-3: #8933e5;
  --color-accent-warm: #ec670f;
  --color-accent-soft: #eff1e3;
  --color-accent-2-soft: #e3f1ef;
  --color-accent-3-soft: #eae4f0;
  --color-accent-warm-soft: #f1e9e3;

  --color-bg: #f5f5f3;
  --color-bg-2: #ebebe8;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 245, 245, 243;
  --color-bg-white-rgb: 255, 255, 255;

  --color-text: #0a0a0a;
  --color-text-secondary: #2a2a2a;
  --color-text-muted: #707070;

  --color-border: #0a0a0a;
  --color-border-light: #d4d4d2;

  --color-footer-bg: #0a0a0a;
  --color-footer-text: #f5f5f3;
  --color-footer-muted: #909090;
  --color-footer-link: #d4d4d2;
  --color-footer-border: rgba(255,255,255,0.12);
  --color-footer-social-bg: rgba(197,237,16,0.1);
  --color-footer-social-border: rgba(197,237,16,0.3);

  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Barlow', sans-serif;

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

  --shadow-xs: 2px 2px 0 #0a0a0a;
  --shadow-sm: 3px 3px 0 #0a0a0a;
  --shadow-md: 5px 5px 0 #0a0a0a;
  --shadow-lg: 8px 8px 0 #0a0a0a;
  --shadow-xl: 12px 12px 0 #0a0a0a;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ── Heading style: punchy poster type ────────────────────────────────── */
.hero-title,
.section-title,
.page-title,
.product-title,
.logo-text {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.section-title { font-size: 44px; }
.page-title { font-size: 56px; }

/* ── Announcement Bar ─────────────────────────────────────────────────── */
.announcement-bar {
  background: #0a0a0a;
  color: #c5ed10;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid #c5ed10;
}
.announcement-bar strong { color: #ec670f; }

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 3px solid #0a0a0a;
}
.logo-text {
  font-size: 32px;
  letter-spacing: 2px;
  color: #0a0a0a;
}
.nav-link {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 0;
  font-weight: 400;
}
.nav-link.active {
  background: #0a0a0a;
  color: #c5ed10;
  border-radius: 0;
}
.nav-link:hover {
  background: #0a0a0a;
  color: #c5ed10;
}

/* ── HERO: full-bleed poster with diagonal stripe ─────────────────────── */
.hero {
  background: #0a0a0a;
  color: #f5f5f3;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 38%, #c5ed10 38%, #c5ed10 46%, transparent 46%, transparent 54%, #ec670f 54%, #ec670f 58%, transparent 58%),
    radial-gradient(ellipse at 50% 110%, rgba(197,237,16,0.18) 0%, transparent 60%);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
  animation: stripe-shift 14s ease-in-out infinite alternate;
}

@keyframes stripe-shift {
  0%   { background-position: 0% 0%, center; transform: scale(1); }
  100% { background-position: 6% 0%, center; transform: scale(1.04); }
}

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

.hero-badge {
  background: #c5ed10;
  color: #0a0a0a;
  border-radius: 0;
  font-family: var(--font-heading);
  letter-spacing: 3px;
  font-weight: 400;
  border: 2px solid #0a0a0a;
  box-shadow: 4px 4px 0 #ec670f;
  padding: 10px 22px;
}

.hero-title {
  color: #f5f5f3;
  font-size: clamp(56px, 8vw, 110px) !important;
  line-height: 0.92;
  letter-spacing: 2px;
  text-shadow: 6px 6px 0 #8933e5;
}

.hero-subtitle {
  color: #d4d4d2;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.hero-actions { justify-content: center; }

/* ── Buttons: hard-shadow poster style ────────────────────────────────── */
.btn {
  border-radius: 0;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  border: 2px solid #0a0a0a;
}

.btn-primary {
  background: #c5ed10;
  color: #0a0a0a;
  box-shadow: 5px 5px 0 #0a0a0a;
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #ec670f;
  filter: none;
  background: #c5ed10;
}

.btn-outline {
  background: transparent;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
  box-shadow: 5px 5px 0 #0feccd;
}
.btn-outline:hover {
  background: #0feccd;
  color: #0a0a0a;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #0a0a0a;
}

.btn-cta {
  background: #0a0a0a;
  color: #c5ed10;
  border-radius: 0;
  border: 2px solid #0a0a0a;
  box-shadow: 3px 3px 0 #ec670f;
  font-family: var(--font-heading);
  letter-spacing: 2px;
}
.btn-cta:hover {
  background: #c5ed10;
  color: #0a0a0a;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #0a0a0a;
  filter: none;
}

/* ── Product cards: bold rectangles with hard shadows ─────────────────── */
.product-card {
  background: var(--color-bg-white);
  border: 2px solid #0a0a0a;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 #0a0a0a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex !important;
  flex-direction: column !important;
}
.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #c5ed10;
  border-color: #0a0a0a;
}

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

.card-image-wrapper { background: #ebebe8; border-bottom: 2px solid #0a0a0a; }
.card-badge {
  background: #ec670f;
  color: #fff;
  border-radius: 0;
  border: 2px solid #0a0a0a;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  padding: 4px 10px;
}
.card-quick-view {
  background: #0a0a0a;
  color: #c5ed10;
  font-family: var(--font-heading);
  letter-spacing: 2px;
}
.card-brand {
  color: #8933e5;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 400;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  color: #0a0a0a;
}
.price-current {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 26px;
  color: #0a0a0a;
}

/* ── Categories ───────────────────────────────────────────────────────── */
.category-card {
  background: var(--color-bg-white);
  border: 2px solid #0a0a0a;
  border-radius: 0;
  box-shadow: 4px 4px 0 #0a0a0a;
  transition: transform 0.2s, box-shadow 0.2s;
}
.category-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #0feccd;
  border-color: #0a0a0a;
}
.category-icon {
  background: #0feccd;
  color: #0a0a0a;
  border-radius: 0;
  border: 2px solid #0a0a0a;
}
.category-card h3 {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  font-size: 20px;
  font-weight: 400;
}

/* ── Filters / pagination ─────────────────────────────────────────────── */
.filter-btn, .page-btn, .page-num {
  border-radius: 0;
  border: 2px solid #0a0a0a;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
}
.filter-btn.active, .page-num.active {
  background: #0a0a0a;
  color: #c5ed10;
  border-color: #0a0a0a;
}

/* ── Newsletter ───────────────────────────────────────────────────────── */
.newsletter-section {
  background: #0feccd;
  border-top: 3px solid #0a0a0a;
  border-bottom: 3px solid #0a0a0a;
}
.newsletter-text h3 { font-family: var(--font-heading); letter-spacing: 1.5px; font-size: 32px; color: #0a0a0a; }
.newsletter-form input {
  border: 2px solid #0a0a0a;
  border-radius: 0;
  background: #fff;
}
.newsletter-form button {
  background: #0a0a0a;
  color: #c5ed10;
  border-radius: 0;
  border: 2px solid #0a0a0a;
  font-family: var(--font-heading);
  letter-spacing: 2px;
}
.newsletter-form button:hover { background: #c5ed10; color: #0a0a0a; transform: translate(-1px,-1px); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-section { background: var(--color-accent-2-soft); }
.faq-item { border: 2px solid #0a0a0a; border-radius: 0; box-shadow: 4px 4px 0 #0a0a0a; background: #fff; }
.faq-item[open] { border-color: #0a0a0a; box-shadow: 4px 4px 0 #0feccd; }
.faq-question { font-family: var(--font-heading); letter-spacing: 1px; font-size: 18px; font-weight: 400; }

/* ── Guide / Top Picks (warm) ─────────────────────────────────────────── */
.guide-section .section-title,
.top-picks-section .section-title { color: #0a0a0a; }
.guide-card, .top-pick-item {
  border: 2px solid #0a0a0a;
  border-radius: 0;
  box-shadow: 4px 4px 0 #0a0a0a;
  background: #fff;
}
.guide-card:hover, .top-pick-item:hover {
  box-shadow: 6px 6px 0 #ec670f;
  transform: translate(-2px,-2px);
  border-color: #0a0a0a;
}
.guide-number {
  background: #ec670f;
  border: 2px solid #0a0a0a;
  border-radius: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
}
.guide-card-title, .top-pick-name {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.top-pick-rank { color: #ec670f; font-family: var(--font-heading); font-size: 36px; }
.top-pick-tag {
  background: #ec670f;
  color: #fff;
  border-radius: 0;
  border: 1px solid #0a0a0a;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
}

/* ── Testimonials ─────────────────────────────────────────────────────── */
.testimonials-section { background: var(--color-accent-3-soft); }
.testimonial-card {
  border: 2px solid #0a0a0a;
  border-radius: 0;
  box-shadow: 4px 4px 0 #0a0a0a;
  background: #fff;
}
.testimonial-card:hover { box-shadow: 6px 6px 0 #8933e5; transform: translate(-2px,-2px); }
.testimonial-avatar {
  background: #8933e5;
  color: #fff;
  border-radius: 0;
  border: 2px solid #0a0a0a;
  font-family: var(--font-heading);
}

/* ── Stats — full poster band ─────────────────────────────────────────── */
.stats-section {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #c5ed10;
  border-bottom: 3px solid #c5ed10;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(197,237,16,0.05) 22px 24px);
  pointer-events: none;
}
.stat-number { color: #c5ed10; font-family: var(--font-heading); letter-spacing: 2px; font-size: 44px; }
.stat-label { color: rgba(255,255,255,0.7); font-family: var(--font-heading); letter-spacing: 2px; }

/* ── Comparison ───────────────────────────────────────────────────────── */
.comparison-table { border: 2px solid #0a0a0a; border-radius: 0; }
.comparison-table th { background: #0a0a0a; color: #c5ed10; font-family: var(--font-heading); letter-spacing: 1.5px; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: #0a0a0a;
  border-top: 4px solid #c5ed10;
}
.footer-logo { font-family: var(--font-heading); letter-spacing: 2px; font-size: 28px; color: #c5ed10; }
.footer-col h4 { font-family: var(--font-heading); letter-spacing: 2px; color: #c5ed10; }
.social-links a:hover { background: #c5ed10; color: #0a0a0a; border-color: #c5ed10; }

/* ── Banners ──────────────────────────────────────────────────────────── */
.banner-link {
  border: 2px solid #0a0a0a;
  border-radius: 0;
  box-shadow: 5px 5px 0 #0a0a0a;
  transition: transform 0.2s, box-shadow 0.2s;
}
.banner-link:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 #c5ed10; }

/* ── Product page widgets ─────────────────────────────────────────────── */
.price-history-section,
.user-reviews-section,
.pros-cons-widget,
.delivery-widget {
  background: #fff;
  border: 2px solid #0a0a0a;
  border-radius: 0;
  box-shadow: 5px 5px 0 #0a0a0a;
}
.price-history-section .section-title,
.user-reviews-section .section-title { font-family: var(--font-heading); letter-spacing: 1.5px; }
.chart-bar { border-radius: 0; background: linear-gradient(180deg, #c5ed10 0%, #8933e5 100%); }
.chart-bar-current { background: #ec670f; box-shadow: 0 0 0 2px #0a0a0a; }
.chart-note { background: rgba(197,237,16,0.15); color: #0a0a0a; border-radius: 0; border: 1px solid #0a0a0a; }
.review-card { background: #f5f5f3; border-radius: 0; border: 1px solid #0a0a0a; }
.review-avatar { background: #8933e5; border-radius: 0; border: 2px solid #0a0a0a; font-family: var(--font-heading); }
.review-bar-track { background: #ebebe8; border-radius: 0; border: 1px solid #0a0a0a; }
.review-bar-fill { background: #ec670f; border-radius: 0; }
.delivery-item svg { color: #8933e5; }
.pros-cons-widget h3 { font-family: var(--font-heading); letter-spacing: 1.5px; }

.social-proof-popup {
  background: #0a0a0a;
  color: #f5f5f3;
  border: 2px solid #c5ed10;
  border-radius: 0;
  box-shadow: 6px 6px 0 #c5ed10;
}
.social-proof-popup .popup-text { color: #d4d4d2; }
.social-proof-popup .popup-text strong { color: #c5ed10; }
.popup-icon { background: #c5ed10; color: #0a0a0a; border-radius: 0; border: 2px solid #c5ed10; }
.popup-close { color: #c5ed10; }

/* ── Brand showcase / trending ────────────────────────────────────────── */
.brand-card, .trending-item {
  background: #fff;
  border: 2px solid #0a0a0a;
  border-radius: 0;
  box-shadow: 3px 3px 0 #0a0a0a;
}
.brand-card:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #c5ed10; }
.brand-initial {
  background: #0a0a0a;
  color: #c5ed10;
  border-radius: 0;
  border: 2px solid #c5ed10;
  font-family: var(--font-heading);
}
.brand-name { font-family: var(--font-heading); letter-spacing: 1.5px; }
.trending-rank { color: #ec670f; font-family: var(--font-heading); font-size: 28px; }
.trending-hot {
  background: #0a0a0a;
  color: #c5ed10;
  border-radius: 0;
  font-family: var(--font-heading);
  letter-spacing: 2px;
}

/* ── Card layout guards (mandatory) ───────────────────────────────────── */
.product-card { display: flex !important; flex-direction: column !important; }
.card-body { flex: 1 !important; display: flex !important; flex-direction: column !important; }
.card-body .btn-cta { margin-top: auto !important; }

/* ── Mobile ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero::before { background-size: 200% 100%, cover; opacity: 0.85; }
  .hero-title { font-size: 44px !important; text-shadow: 4px 4px 0 #8933e5; }
  .section-title { font-size: 32px; }
}