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

/* ============================================================
   MELODZIA - Premium Musical Instruments Review Website
   Color Palette: Deep Navy, Warm Amber/Gold, Cream/Ivory
   Fonts: Playfair Display (headings), Inter (body)
   ============================================================ */

/* ============================================================
   ROOT VARIABLES & RESET
   ============================================================ */
*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Navy Blues */
  --navy-900: #0a1628;
  --navy-800: #131d35;
  --navy-700: #1a2744;

  /* Warm Amber/Gold */
  --gold-primary: #d4a24e;
  --gold-light: #e8b95a;
  --gold-lighter: #f0c96e;

  /* Cream/Ivory */
  --bg-cream: #faf8f5;
  --bg-light: #f5f2ed;
  --bg-white: #ffffff;

  /* Text Colors */
  --text-dark: #1a1a2e;
  --text-muted: #3a3a4a;
  --text-light: rgba(255, 255, 255, 0.85);

  /* Borders & Shadows */
  --border-light: #e8e5e0;
  --border-dark: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 24px rgba(212, 162, 78, 0.3);

  /* Border Radius */
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-primary);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* ============================================================
   UTILITIES & COMMON
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 24px;
  font-weight: 400;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto;
}

.visible {
  display: block !important;
}

.placeholder {
  background: var(--bg-light);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 162, 78, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 162, 78, 0.5);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy-900);
  border-bottom: 2px solid var(--gold-primary);
  backdrop-filter: blur(10px);
  background-color: rgba(10, 22, 40, 0.95);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

header:hover {
  border-bottom-color: var(--gold-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--navy-900);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  margin: 0 40px;
  justify-content: center;
}

nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.3px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  transform-origin: left;
}

nav a:hover {
  color: var(--gold-light);
  text-decoration: none;
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)) !important;
  color: var(--navy-900) !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-md) !important;
}

.nav-cta:hover {
  box-shadow: var(--shadow-glow) !important;
  text-decoration: none !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a24e' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.8), rgba(19, 29, 53, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 162, 78, 0.15);
  border: 1px solid rgba(212, 162, 78, 0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: slideDown 0.6s ease;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.3s both;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
  flex: 0 0 auto;
}

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 500;
}

/* Hero right side - logo area */
.hero-content > :last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   AFFILIATE BAR
   ============================================================ */
.aff-bar {
  background: linear-gradient(90deg, rgba(212, 162, 78, 0.08), rgba(232, 185, 90, 0.05));
  border-bottom: 1px solid rgba(212, 162, 78, 0.2);
  padding: 12px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.aff-bar strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================================
   FEATURED STRIP - PREMIUM SHOWCASE
   ============================================================ */
.featured-strip {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.featured-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.featured-strip .section-head h2 {
  color: var(--bg-white);
  letter-spacing: -0.5px;
}

.featured-strip .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.featured-strip .divider {
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 960px) {
  .featured-grid { grid-template-columns: 1fr; }
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(212, 162, 78, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
  text-decoration: none;
  color: inherit;
}

.featured-card:hover {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212, 162, 78, 0.2);
  text-decoration: none;
  color: inherit;
}

.featured-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--navy-700);
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-img img {
  transform: scale(1.05);
}

.featured-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.featured-rank {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.featured-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}

.featured-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.featured-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 4px 0;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition-fast);
  width: fit-content;
  margin-top: auto;
  padding-top: 8px;
}

.featured-link::after {
  content: '→';
}

.featured-link:hover {
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   BRAND CLOUD - ELEGANT PILL BUTTONS
   ============================================================ */
.brand-cloud-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-light);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(212, 162, 78, 0.3);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.brand-tag::before {
  content: '♪';
  font-size: 1rem;
}

.brand-tag:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--navy-900);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.brand-tag.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--navy-900);
  border-color: var(--gold-light);
  font-weight: 700;
}

.brand-cloud-label {
  display: none;
}

/* ============================================================
   CATEGORY FILTER - BEAUTIFUL GRID
   ============================================================ */
.category-filter-section {
  background: var(--bg-cream);
  padding: 80px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: all var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.category-card::before {
  content: attr(data-emoji);
  font-size: 3rem;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.category-card .count {
  font-size: 0.9rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.category-card:hover {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, var(--bg-white), rgba(212, 162, 78, 0.05));
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.category-card.active {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(212, 162, 78, 0.1), rgba(212, 162, 78, 0.03));
  box-shadow: 0 0 0 2px var(--gold-primary), var(--shadow-sm);
}

/* ============================================================
   PRODUCT CARDS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  animation: fadeInUp 0.5s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.card-img-placeholder {
  font-size: 3.5rem;
  opacity: 0.4;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 10;
}

.card-rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 22, 40, 0.9);
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  border: 1px solid rgba(212, 162, 78, 0.3);
}

.card-rating-badge .si {
  color: var(--gold-light);
  font-size: 0.9rem;
}

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

.card-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.card-snippet {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.stars-char {
  color: var(--gold-primary);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-num {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.rating-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.btn-review {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-light);
  padding: 11px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: 1px solid rgba(212, 162, 78, 0.3);
  letter-spacing: 0.3px;
}

.btn-review:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--navy-900);
  text-decoration: none;
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================
   TOP 10 SECTION - PREMIUM RANKED LIST
   ============================================================ */
.top10-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.top10-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .top10-list { grid-template-columns: 1fr; }
}

.top10-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

.top10-item:hover {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, var(--bg-white), rgba(212, 162, 78, 0.06));
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  color: inherit;
}

.top10-rank {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  min-width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.top10-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-light);
  background: var(--bg-light);
}

.top10-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top10-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top10-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.top10-brand {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.top10-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.top10-stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.top10-score {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.top10-bar {
  width: 80px;
  height: 5px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}

.top10-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 3px;
  transition: width 0.6s ease;
}

.top10-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.82rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.top10-link:hover {
  gap: 10px;
  color: var(--gold-light);
  text-decoration: none;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.page-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-dark);
}

.page-btn:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--navy-900);
  border-color: var(--gold-light);
  transform: scale(1.05);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--navy-900);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-glow);
}

.page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.page-nav {
  padding: 0 16px;
  width: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.filter-select {
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--gold-primary);
  outline: none;
}

.filter-reset {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  margin-left: auto;
}

.filter-reset:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.filter-results {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* ============================================================
   COMPARE SECTION
   ============================================================ */
.compare-section {
  background: var(--bg-white);
  padding: 60px 0;
  border-top: 2px solid var(--border-light);
}

.compare-section .section-head h2 {
  color: var(--text-dark);
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
}

.compare-table thead {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--bg-white);
}

.compare-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  border: 1px solid var(--border-dark);
}

.compare-table td {
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.compare-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.compare-table tbody tr:hover {
  background: rgba(212, 162, 78, 0.08);
}

.compare-rank {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.compare-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.compare-name {
  font-weight: 600;
  color: var(--text-dark);
}

.compare-brand-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-score {
  font-weight: 700;
  color: var(--text-dark);
}

.compare-bar {
  width: 80px;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0;
}

.compare-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 3px;
}

.compare-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.compare-link:hover {
  gap: 10px;
  color: var(--gold-light);
}

/* ============================================================
   SIDEBAR & CONTENT LAYOUT
   ============================================================ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-widget h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.sidebar-item:hover {
  background: rgba(212, 162, 78, 0.08);
}

.sidebar-rank {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-align: center;
}

.sidebar-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  grid-column: 1;
  grid-row: 1 / 4;
}

.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: 2;
}

.sidebar-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.sidebar-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
}

.sidebar-stars .si {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.sidebar-link:hover {
  gap: 8px;
  color: var(--gold-light);
}

/* ============================================================
   PRODUCT PAGE - LAYOUT & HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  padding: 40px 0;
  color: var(--bg-white);
}

.page-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold-light);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold-lighter);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
}

/* Gallery */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-light);
  transition: all var(--transition-fast);
  background: var(--bg-light);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 162, 78, 0.3);
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-brand {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
}

.p-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.p-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-rating .si {
  color: var(--gold-primary);
  font-size: 1rem;
}

.p-rating span {
  font-weight: 600;
  color: var(--text-dark);
}

.score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.score-bar-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 100px;
}

.score-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 4px;
  transition: width 0.6s ease;
}

.verdict-box {
  background: linear-gradient(135deg, rgba(212, 162, 78, 0.1), rgba(232, 185, 90, 0.05));
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.verdict-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.verdict-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-read-reviews {
  flex: 1;
  min-width: 200px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--navy-900);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-read-reviews:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.pros-box,
.cons-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.pros-box {
  border-left: 4px solid var(--gold-primary);
}

.cons-box {
  border-left: 4px solid #d97e7e;
}

.box-head {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.pros-box .box-head {
  color: var(--gold-primary);
}

.cons-box .box-head {
  color: #d97e7e;
}

.pros-box ul,
.cons-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.pros-box li,
.cons-box li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.pros-box li::before {
  content: '+';
  font-weight: 700;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.cons-box li::before {
  content: '–';
  font-weight: 700;
  color: #d97e7e;
  flex-shrink: 0;
}

/* Product Description */
.product-desc {
  background: var(--bg-white);
  border-top: 2px solid var(--border-light);
  padding: 60px 0;
  margin-top: 40px;
}

.product-desc h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.product-desc p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.reviews-section .section-head {
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.review-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-white);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .si {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.review-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Related Products */
.related-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.related-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--gold-primary);
}

.related-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-light);
}

.related-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.related-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.related-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  margin-top: auto;
}

.related-stars .si {
  color: var(--gold-primary);
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 12px;
  transition: all var(--transition-fast);
}

.related-link:hover {
  gap: 10px;
}

/* ============================================================
   STATIC PAGES
   ============================================================ */
.static-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  padding: 80px 0;
  color: var(--bg-white);
  text-align: center;
}

.static-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.static-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

.static-content {
  background: var(--bg-white);
  padding: 60px 0;
}

.static-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  margin-top: 40px;
}

.static-content h2:first-of-type {
  margin-top: 0;
}

.static-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.about-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-smooth);
}

.about-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-white);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.about-card p {
  margin-bottom: 0;
}

/* ============================================================
   FOOTER - PREMIUM DARK DESIGN
   ============================================================ */
footer {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--text-light);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 2px solid var(--gold-primary);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='100' viewBox='0 0 200 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q50,25 100,50 T200,50' stroke='%23d4a24e' stroke-width='2' fill='none' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  opacity: 0.5;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-900);
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bg-white);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 300px;
}

/* Footer columns */
footer h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  position: relative;
}

footer a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width var(--transition-fast);
}

footer a:hover {
  color: var(--gold-light);
}

footer a:hover::before {
  width: 100%;
}

/* Social icons - uses .footer-social and .social-link from hero-logo section */

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(212, 162, 78, 0.3);
  padding-top: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-top: 2px solid var(--gold-primary);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  flex: 1;
  min-width: 250px;
}

.cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  letter-spacing: 0.3px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--navy-900);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ============================================================
   AD PLACEMENTS
   ============================================================ */
.ad-placement {
  background: var(--bg-light);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  margin: 40px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ad-placement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.ad-unit {
  width: 100%;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .logo {
    font-size: 1.3rem;
  }

  nav {
    margin: 0 20px;
    gap: 4px;
  }

  nav a {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .top10-item {
    grid-template-columns: 50px 100px 1fr 80px;
    gap: 16px;
    padding: 16px;
  }

  .top10-rank {
    font-size: 1.8rem;
  }

  .top10-img {
    width: 80px;
    height: 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy-800);
    padding: 16px;
    gap: 4px;
    z-index: 150;
    border-bottom: 2px solid var(--gold-primary);
    animation: slideDown 0.3s ease;
  }

  nav.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .featured-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-rank {
    font-size: 2.2rem;
    order: -1;
  }

  .featured-img {
    width: 100%;
    height: 150px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-stats {
    gap: 32px;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .product-layout {
    gap: 30px;
  }

  .section {
    padding: 60px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  .top10-item {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .top10-img {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 50px;
    height: 50px;
  }

  .top10-rating {
    display: none;
  }

  .top10-link {
    grid-column: 2;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-text {
    min-width: auto;
    width: 100%;
  }

  .cookie-btns {
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-direction: column;
    gap: 12px;
  }

  .filter-reset {
    margin-left: 0;
    width: 100%;
  }

  .filter-results {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.1rem;
    gap: 8px;
  }

  .logo-icon,
  .logo-img {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .hero h1 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head h2 {
    font-size: 1.4rem;
  }

  .section-head p {
    font-size: 0.9rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-img-wrap {
    height: 180px;
  }

  .featured-card {
    gap: 12px;
    padding: 16px;
  }

  .featured-rank {
    font-size: 1.8rem;
  }

  .featured-img {
    height: 120px;
  }

  .featured-title {
    font-size: 1.1rem;
  }

  .brand-tag {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    padding: 32px 20px;
  }

  .top10-item {
    padding: 12px;
    gap: 12px;
  }

  .top10-img {
    width: 50px;
    height: 50px;
  }

  .top10-name {
    font-size: 0.95rem;
  }

  .top10-bar {
    display: none;
  }

  .top10-link {
    font-size: 0.8rem;
  }

  .product-card {
    margin: 0;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 8px;
  }

  .page-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .gallery-main {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-info {
    gap: 16px;
  }

  .p-title {
    font-size: 1.4rem;
  }

  .pros-cons {
    gap: 16px;
  }

  .pros-box,
  .cons-box {
    padding: 16px;
  }

  .footer-logo {
    margin-bottom: 16px;
  }

  footer h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  footer ul {
    gap: 8px;
  }

  footer a {
    font-size: 0.85rem;
  }

  .footer-disclaimer {
    width: 100%;
    text-align: center;
  }

  .cookie-text {
    font-size: 0.85rem;
  }

  .cookie-accept,
  .cookie-decline {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .static-hero h1 {
    font-size: 1.6rem;
  }

  .static-hero p {
    font-size: 0.95rem;
  }

  .static-content h2 {
    font-size: 1.3rem;
  }

  .about-card {
    padding: 24px 16px;
  }

  .about-card h3 {
    font-size: 1rem;
  }

  .btn-read-reviews {
    width: 100%;
    min-width: auto;
  }

  .cta-group {
    flex-direction: column;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .aff-bar {
    font-size: 0.8rem;
    padding: 10px;
  }

  .filter-bar {
    padding: 16px 0;
  }

  .page-hero {
    padding: 30px 0;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* ============================================================
   HERO LOGO ANIMATION
   ============================================================ */
.hero-logo-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-logo-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(212, 162, 78, 0.25));
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-logo-img.animated {
  opacity: 1;
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   FOOTER SOCIAL & WAVE
   ============================================================ */
.footer-wave {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), var(--gold-primary), transparent);
  border-radius: 2px;
  margin-bottom: 3rem;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  letter-spacing: -0.02em;
}

.social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 162, 78, 0.1);
  text-decoration: none;
}

/* Card entrance animation */
.product-card,
.top10-item,
.featured-card,
.category-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-card.visible,
.top10-item.visible,
.featured-card.visible,
.category-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-logo-img-container {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

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

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  header,
  footer,
  .cookie-banner,
  .ad-placement,
  .nav-toggle {
    display: none !important;
  }

  .product-card,
  .featured-card,
  .review-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  a {
    text-decoration: underline;
  }

  body {
    background: white;
    color: black;
  }
}
