/* ==========================================================================
   Paravel Affiliate Website - Main Stylesheet
   Design System: Luxury Minimal, Editorial Aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary-bg: #f9f1e4;
  --color-secondary-bg: #DDD3CA;
  --color-gradient: linear-gradient(135deg, #F9F1E4 0%, #DDD3CA 100%);
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-text-muted: #777777;
  --color-border: #e0d8d0;
  --color-border-dark: #c5b9ad;
  --color-accent: #8B7355;
  --color-success: #2e7d32;
  --color-error: #c62828;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --header-height: 80px;

  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-gradient);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style-position: inside;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
}

.lead {
  font-size: var(--text-xl);
  line-height: 1.8;
  color: var(--color-text-light);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.container-wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(249, 241, 228, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  position: relative;
  padding: var(--space-2) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-black);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-text);
}

/* Dropdown Navigation */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  border-radius: var(--border-radius-sm);
}

.nav-dropdown a:hover {
  background: var(--color-primary-bg);
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: all var(--transition);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn-secondary:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-block {
  width: 100%;
}

/* CTA Button (Affiliate) */
.btn-cta {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-sm);
}

.card-body {
  padding: var(--space-6);
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.card-text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}

.card-price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
}

.card-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border);
  background: var(--color-primary-bg);
}

/* Product Card Variation */
.product-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card > a {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .card-image {
  aspect-ratio: 1/1;
  background: var(--color-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

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

.product-card .card-body {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .card-title {
  font-size: var(--text-lg);
}

.product-card .card-text,
.product-card .card-price {
  margin-top: auto;
}

/* Product Card Footer with CTA Button - Aligned at Bottom */
.product-card .card-footer {
  padding: var(--space-4) var(--space-5);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

/* Product Card CTA Button - Larger Size */
.product-card .btn-cta,
.product-card .btn-product,
.product-card .card-footer .btn {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all var(--transition);
  width: 100%;
  text-align: center;
}

.product-card .btn-cta:hover,
.product-card .btn-product:hover,
.product-card .card-footer .btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Remove btn-sm overrides for product cards */
.product-card .btn-sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   Grid Systems
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

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

.grid-auto {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-col {
  flex-direction: column;
}

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 241, 228, 0.9) 0%, rgba(221, 211, 202, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-title {
  font-size: var(--text-6xl);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero with side image */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
}

/* --------------------------------------------------------------------------
   Product Sections
   -------------------------------------------------------------------------- */
.products-section {
  padding: var(--space-20) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
}

.products-grid .product-card {
  flex: 0 0 calc(25% - var(--space-8));
  max-width: calc(25% - var(--space-8));
}

/* Products grid with 2 columns for smaller collections */
.products-grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.products-grid-2 .product-card {
  flex: 0 0 calc(50% - var(--space-4));
  max-width: calc(50% - var(--space-4));
}

/* Products grid with 3 columns */
.products-grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.products-grid-3 .product-card {
  flex: 0 0 calc(33.333% - var(--space-6));
  max-width: calc(33.333% - var(--space-6));
}

@media (max-width: 1200px) {
  .products-grid .product-card {
    flex: 0 0 calc(50% - var(--space-4));
    max-width: calc(50% - var(--space-4));
  }
}

@media (max-width: 600px) {
  .products-grid .product-card,
  .products-grid-2 .product-card,
  .products-grid-3 .product-card {
    flex: 0 0 100%;
    max-width: 350px;
  }

  .products-grid,
  .products-grid-2,
  .products-grid-3 {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Featured Product */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12);
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.featured-product-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-bg);
}

.featured-product-image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--color-primary-bg);
}

.featured-product-content h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.featured-product-content .price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

/* --------------------------------------------------------------------------
   Product Detail Page
   -------------------------------------------------------------------------- */
.product-detail {
  padding-top: calc(var(--header-height) + var(--space-12));
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.product-main-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
  background: var(--color-white);
}

.product-main-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/* Hide product thumbnails gallery - only show primary image */
.product-thumbnails {
  display: none;
}

.product-info {
  padding-left: var(--space-12);
}

.product-brand {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.product-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.product-price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.stars {
  color: #f5c518;
  letter-spacing: 2px;
}

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

.product-description {
  margin-bottom: var(--space-8);
  color: var(--color-text-light);
}

.product-cta {
  margin-bottom: var(--space-8);
}

.product-features {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-8);
}

.product-features h4 {
  margin-bottom: var(--space-4);
}

.product-features ul {
  list-style: none;
}

.product-features li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   Specifications Table
   -------------------------------------------------------------------------- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-6) 0;
}

.specs-table th,
.specs-table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.specs-table th {
  font-weight: 600;
  width: 40%;
  background: var(--color-primary-bg);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
  padding: var(--space-16) 0;
}

.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: var(--text-xl);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: var(--space-6);
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Comparison Table
   -------------------------------------------------------------------------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4) var(--space-5);
  text-align: center;
  border: 1px solid var(--color-border);
}

.comparison-table thead th {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.comparison-table thead th a {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.comparison-table thead th a:hover {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.comparison-table tbody th {
  text-align: left;
  font-weight: 600;
  background: var(--color-primary-bg);
}

.comparison-table tbody tr:hover {
  background: var(--color-primary-bg);
}

.check-icon {
  color: var(--color-success);
  font-weight: bold;
}

.x-icon {
  color: var(--color-error);
}

/* --------------------------------------------------------------------------
   Blog Styles
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-8);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.blog-card-body {
  padding: var(--space-6);
}

.blog-card-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.blog-card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.blog-card-title a:hover {
  color: var(--color-accent);
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}

.blog-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog Post Single */
.blog-post {
  padding-top: calc(var(--header-height) + var(--space-12));
}

.blog-post-header {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin: 0 auto var(--space-12);
}

.blog-post-category {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.blog-post-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
}

.blog-post-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.blog-post-featured-image {
  max-width: 1000px;
  margin: 0 auto var(--space-12);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  background: var(--color-white);
}

.blog-post-featured-image img {
  width: 100%;
  display: block;
}

.blog-post-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.blog-post-content h2 {
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
}

.blog-post-content h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.blog-post-content p {
  margin-bottom: var(--space-6);
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.blog-post-content li {
  margin-bottom: var(--space-2);
}

.blog-post-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
  font-style: italic;
  color: var(--color-text-light);
}

/* Table of Contents */
.toc {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow);
}

.toc-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.toc-list {
  list-style: none;
}

.toc-list li {
  padding: var(--space-2) 0;
}

.toc-list a {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.toc-list a:hover {
  color: var(--color-black);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer-description {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.footer-address {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  max-width: 500px;
  text-align: right;
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumbs-item::after {
  content: '/';
  color: var(--color-text-muted);
}

.breadcrumbs-item:last-child::after {
  display: none;
}

.breadcrumbs-link {
  color: var(--color-text-muted);
}

.breadcrumbs-link:hover {
  color: var(--color-text);
}

.breadcrumbs-current {
  color: var(--color-text);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Form Status Messages */
.form-status {
  padding: var(--space-4);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-4);
  font-weight: 500;
  text-align: center;
}

.form-status-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Cloudflare Turnstile container */
.cf-turnstile {
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.pt-header { padding-top: var(--header-height); }

.bg-white { background: var(--color-white); }
.bg-light { background: var(--color-primary-bg); }

.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Lazy loading placeholder */
.lazy-image {
  background: var(--color-primary-bg);
  opacity: 0;
  transition: opacity var(--transition);
}

.lazy-image.loaded {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Value Props Section
   -------------------------------------------------------------------------- */
.value-props {
  padding: var(--space-16) 0;
  background: var(--color-white);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.value-prop {
  text-align: center;
  padding: var(--space-6);
}

.value-prop-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.value-prop h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.value-prop p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--space-20) 0;
}

.testimonials-grid {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  align-items: stretch;
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  flex: 1;
  max-width: 380px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: var(--text-lg);
  font-style: italic;
  margin-bottom: var(--space-6);
  color: var(--color-text-light);
  flex: 1;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary-bg);
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-title {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .testimonials-grid {
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-4));
    max-width: calc(50% - var(--space-4));
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Newsletter Section
   -------------------------------------------------------------------------- */
.newsletter-section {
  padding: var(--space-16) 0;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.newsletter-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-8);
}

.newsletter-form {
  display: flex;
  gap: var(--space-4);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-4);
  border: none;
  border-radius: var(--border-radius);
}

.newsletter-form button {
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Category Hero
   -------------------------------------------------------------------------- */
.category-hero {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  background: var(--color-white);
}

.category-hero h1 {
  margin-bottom: var(--space-4);
}

.category-hero .lead {
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Sustainability Badge
   -------------------------------------------------------------------------- */
.sustainability-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: #e8f5e9;
  color: var(--color-success);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--border-radius);
}

.sustainability-badge::before {
  content: '♻';
}

/* --------------------------------------------------------------------------
   Press Logos
   -------------------------------------------------------------------------- */
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-12) 0;
  flex-wrap: wrap;
  opacity: 0.6;
}

.press-logos img {
  height: 30px;
  width: auto;
  filter: grayscale(100%);
  transition: filter var(--transition), opacity var(--transition);
}

.press-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Skip Link (Accessibility)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   Luxury Homepage Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Luxury Section
   -------------------------------------------------------------------------- */
.hero-luxury {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  background: linear-gradient(135deg, #f9f1e4 0%, #efe6d9 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-luxury-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-luxury-content {
  max-width: 560px;
}

.hero-tagline {
  display: inline-block;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.hero-luxury-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.hero-luxury-subtitle {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
}

.hero-luxury-cta {
  margin-bottom: var(--space-8);
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
}

.trust-badge svg {
  opacity: 0.7;
}

.hero-luxury-image {
  position: relative;
}

.hero-luxury-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* --------------------------------------------------------------------------
   Value Props Luxury
   -------------------------------------------------------------------------- */
.value-props-luxury {
  padding: var(--space-16) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.value-prop-luxury {
  text-align: center;
  padding: var(--space-6);
}

.value-prop-icon-luxury {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--color-accent);
}

.value-prop-icon-luxury svg {
  width: 32px;
  height: 32px;
}

.value-prop-luxury h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.value-prop-luxury p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Showcase Gallery
   -------------------------------------------------------------------------- */
.showcase-section {
  padding: var(--space-16) 0;
  background: var(--color-white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.showcase-item {
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
  aspect-ratio: 1/1;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.showcase-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Press Logos Luxury Grid
   -------------------------------------------------------------------------- */
.press-section-luxury {
  padding: var(--space-16) 0;
  background: var(--color-white);
}

.press-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  padding: var(--space-8) 0;
}

.press-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-6);
  min-width: 120px;
  height: 60px;
}

.press-logo-item img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter var(--transition), opacity var(--transition);
}

.press-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* --------------------------------------------------------------------------
   Sustainability Stats
   -------------------------------------------------------------------------- */
.sustainability-stats {
  background: linear-gradient(135deg, #f9f1e4 0%, #efe6d9 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-item {
  padding: var(--space-8) var(--space-4);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Testimonial Avatar Images
   -------------------------------------------------------------------------- */
.testimonial-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   Feature List in Aviator Section
   -------------------------------------------------------------------------- */
.feature-list {
  list-style: none;
  margin: var(--space-6) 0;
  padding: 0;
}

.feature-list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   Responsive Luxury Styles
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-luxury-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .hero-luxury-content {
    max-width: 100%;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-luxury-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .showcase-item.showcase-large {
    grid-column: span 2;
    height: 300px;
  }

  .showcase-item {
    height: 200px;
  }

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

  .press-logos-grid {
    gap: var(--space-6);
  }

  .press-logo-item {
    min-width: 100px;
    padding: var(--space-3) var(--space-4);
  }

  .press-logo-item img {
    max-height: 30px;
    max-width: 100px;
  }
}

@media (max-width: 576px) {
  .hero-luxury {
    padding-top: calc(var(--header-height) + var(--space-8));
    min-height: auto;
  }

  .hero-luxury-title {
    font-size: 2rem;
  }

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

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

  .showcase-item.showcase-large {
    grid-column: span 2;
    height: 200px;
  }

  .showcase-item {
    height: 150px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .stat-number {
    font-size: var(--text-3xl);
  }

  .press-logo-item {
    min-width: 80px;
    height: 50px;
  }

  .press-logo-item img {
    max-height: 24px;
    max-width: 80px;
  }
}

/* ==========================================================================
   Content Section Styling (Category Pages)
   ========================================================================== */

/* Text Content Block */
.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content p {
  margin-bottom: var(--space-6);
  line-height: 1.8;
}

.text-content .lead {
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.text-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.text-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.text-content ul,
.text-content ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.text-content li {
  margin-bottom: var(--space-2);
  line-height: 1.7;
}

/* Content Card - Styled content block */
.content-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-8);
}

.content-card h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.content-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.content-card p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   Legal Pages Content Styling (Privacy Policy, Terms, etc.)
   ========================================================================== */
.section .container-narrow h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  color: var(--color-text);
}

.section .container-narrow h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.section .container-narrow h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.section .container-narrow p {
  line-height: 1.8;
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
}

.section .container-narrow ul,
.section .container-narrow ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
  color: var(--color-text-light);
}

.section .container-narrow li {
  margin-bottom: var(--space-2);
  line-height: 1.7;
}

.section .container-narrow ul + h2,
.section .container-narrow ul + h3,
.section .container-narrow ol + h2,
.section .container-narrow ol + h3,
.section .container-narrow p + h2,
.section .container-narrow p + h3 {
  margin-top: var(--space-10);
}

/* Buying Guide Styled */
.buying-guide {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(249,241,228,0.9) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-12);
  margin: var(--space-12) 0;
}

.buying-guide h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--color-text);
}

.buying-guide h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.buying-guide p {
  line-height: 1.8;
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
}

.buying-guide ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
}

.buying-guide li {
  padding: var(--space-3) 0;
  padding-left: var(--space-8);
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.buying-guide li:last-child {
  border-bottom: none;
}

.buying-guide li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.3;
}

.buying-guide li strong {
  color: var(--color-text);
}

/* ==========================================================================
   Enhanced Category Page Content
   ========================================================================== */

/* Category Hero */
.category-hero {
  text-align: center;
  padding: var(--space-16) 0;
}

.category-hero .breadcrumb {
  margin-bottom: var(--space-4);
}

.category-hero h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

.category-hero .lead {
  font-size: var(--text-xl);
  max-width: 700px;
  margin: 0 auto var(--space-6);
  color: var(--color-text-light);
}

/* Category Content Sections */
.category-content {
  padding: var(--space-16) 0;
}

.category-content .container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* Content Grid - Two Column Layout */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.content-grid-item {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.content-grid-item h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.content-grid-item p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

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

/* Feature Cards for Category Pages */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin: var(--space-10) 0;
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-bg);
  border-radius: 50%;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
}

.feature-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

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

/* Info Box */
.info-box {
  background: var(--color-white);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-6);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: var(--space-8) 0;
}

.info-box h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.info-box p {
  margin: 0;
  color: var(--color-text-light);
}

/* Styled Paragraph with Drop Cap */
.intro-paragraph {
  font-size: var(--text-lg);
  line-height: 1.9;
  color: var(--color-text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.intro-paragraph::first-letter {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  float: left;
  line-height: 1;
  padding-right: var(--space-3);
  margin-top: var(--space-2);
  color: var(--color-accent);
}

/* Clean list styling for category pages */
.styled-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
}

.styled-list li {
  padding: var(--space-4) 0;
  padding-left: var(--space-10);
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.styled-list li:last-child {
  border-bottom: none;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B7355' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-white) 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--space-10);
  text-align: center;
  margin: var(--space-12) 0;
}

.highlight-box h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.highlight-box p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* Quick Stats Row */
.quick-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: var(--space-10) 0;
}

.quick-stat {
  text-align: center;
}

.quick-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-text);
  display: block;
}

.quick-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .quick-stats {
    flex-wrap: wrap;
    gap: var(--space-6);
  }

  .quick-stat {
    flex: 0 0 50%;
  }
}

/* ==========================================================================
   Blog Author Box
   ========================================================================== */
.author-bio {
  margin-top: var(--space-12);
  margin-bottom: var(--space-16);
}

.author-bio-inner {
  background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-white) 100%);
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  display: flex;
  gap: var(--space-6);
  align-items: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.author-info p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .author-bio-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Guide Page Products (Size Guide, Packing Guide)
   ========================================================================== */
.guide-products {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.guide-products .product-card {
  flex: 0 0 calc(33.333% - var(--space-4));
  max-width: 300px;
  min-width: 250px;
}

@media (max-width: 900px) {
  .guide-products .product-card {
    flex: 0 0 calc(50% - var(--space-3));
    max-width: none;
  }
}

@media (max-width: 600px) {
  .guide-products .product-card {
    flex: 0 0 100%;
    max-width: 350px;
  }
}

/* ==========================================================================
   Mobile Navigation - Enhanced
   ========================================================================== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-black);
    transition: all var(--transition);
  }

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

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

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

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 1000;
    padding: 100px var(--space-6) var(--space-6);
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link {
    display: block;
    padding: var(--space-4) 0;
    font-size: var(--text-lg);
    font-weight: 500;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 var(--space-4) var(--space-4);
    display: none;
    background: transparent;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item.active .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: var(--space-2) 0;
    font-size: var(--text-base);
    color: var(--color-text-light);
  }

  .nav-dropdown a:hover {
    color: var(--color-text);
    background: transparent;
    padding-left: var(--space-2);
  }

  /* Mobile menu overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
