/*
Theme Name: Ari Deals Magic Ultimate
Theme URI: https://arike.fr
Description: Thème ultra-premium pour dénicheur de bons plans Amazon - Version finale avec toutes les corrections appliquées. Design fidèle à l'original, système ASIN universel, URLs Amazon corrigées.
Author: Ari le magicien
Version: 4.0.0
License: GPL v2 or later
Text Domain: ari-deals-ultimate
Tags: ecommerce, amazon, deals, affiliate, responsive, modern, premium
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* === FONTS PREMIUM === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700;800&display=swap');

/* === VARIABLES CSS ULTRA-PRÉCISES === */
:root {
  /* Couleurs exactes du design original */
  --primary-orange: #FF9900;
  --secondary-gold: #FFD700;
  --accent-amber: #FFA500;
  --dark-navy: #16213E;
  --darker-navy: #0F1624;
  --light-cream: #FFF8F0;
  --pure-white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --border-light: #E5E7EB;
  --surface-light: #F8FAFC;

  /* Gradients magiques */
  --gradient-primary: linear-gradient(135deg, #FF9900 0%, #FFB800 25%, #FFD700 50%, #FFA500 75%, #FF9900 100%);
  --gradient-dark: linear-gradient(135deg, #0F1624 0%, #16213E 50%, #1E2A47 100%);
  --gradient-surface: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);

  /* Ombres professionnelles */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(255, 153, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(255, 153, 0, 0.25);

  /* Rayons de bordure */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

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

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET ULTRA-PROPRE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-variation-settings: 'wght' 400;
  color: var(--text-primary);
  background-color: var(--light-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* === CONTAINER SYSTÈME === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* === OVERLAY DE REDIRECTION PREMIUM === */
#redirectOverlay {
  position: fixed;
  inset: 0;
  background: var(--gradient-dark);
  backdrop-filter: blur(24px) saturate(180%);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  z-index: 9999;
  font-family: 'Space Grotesk', sans-serif;
  padding: var(--space-8);
}

#redirectOverlay.active {
  display: flex;
  animation: overlayFadeIn 0.4s var(--transition-normal);
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#redirectOverlay .icon {
  font-size: 5rem;
  margin-bottom: var(--space-8);
  animation: magicFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 2rem rgba(255, 153, 0, 0.6));
}

@keyframes magicFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  50% {
    transform: translateY(-4px) rotate(0deg);
  }
  75% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

#redirectOverlay h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-6);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
}

#redirectOverlay #asinText {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-8);
  opacity: 0.95;
  font-family: 'Inter', monospace;
}

#redirectOverlay .bar {
  width: min(320px, 80vw);
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: var(--space-8) 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

#redirectOverlay .fill {
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  animation: magicFill 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 1rem rgba(255, 153, 0, 0.8);
}

@keyframes magicFill {
  to {
    width: 100%;
  }
}

/* === PARTICULES MAGIQUES === */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, var(--secondary-gold) 0%, var(--primary-orange) 100%);
  border-radius: 50%;
  opacity: 0;
  animation: particleJourney 12s linear infinite;
  box-shadow: 0 0 8px var(--primary-orange);
}

@keyframes particleJourney {
  0% {
    opacity: 0;
    transform: translateY(100vh) translateX(-50px) scale(0) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(-30px) scale(1) rotate(45deg);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) translateX(30px) scale(1) rotate(315deg);
  }
  100% {
    opacity: 0;
    transform: translateY(0) translateX(-50px) scale(0) rotate(360deg);
  }
}

/* === HEADER PREMIUM === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 153, 0, 0.1);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.navbar {
  padding: var(--space-4) 0;
}

.header.scrolled .navbar {
  padding: var(--space-3) 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
  transition: transform var(--transition-normal);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.logo-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, var(--primary-orange), var(--secondary-gold), var(--accent-amber), var(--primary-orange));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.logo:hover .logo-img::before {
  opacity: 1;
  animation: logoGlow 2s linear infinite;
}

@keyframes logoGlow {
  to {
    transform: rotate(360deg);
  }
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text a {
  text-decoration: none;
  color: inherit;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-2) var(--space-1);
  position: relative;
  transition: all var(--transition-normal);
  border-radius: var(--radius-md);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--primary-orange);
  transform: translateY(-1px);
}

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

.nav-link--special {
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.nav-link--special:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.nav-link--special::after {
  display: none;
}

/* === HERO SECTION SPECTACULAIRE === */
.hero {
  padding: calc(var(--space-24) + var(--space-16)) 0 var(--space-24);
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: heroAmbience 20s ease-in-out infinite;
}

@keyframes heroAmbience {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: white;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  opacity: 0.95;
  line-height: 1.3;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-10);
  opacity: 0.9;
  max-width: 560px;
}

/* === BOUTONS ULTRA-PREMIUM === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-2xl);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::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 var(--transition-slow);
}

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

.btn--primary {
  background: var(--pure-white);
  color: var(--primary-orange);
  box-shadow: var(--shadow-xl);
}

.btn--primary:hover {
  color: var(--primary-orange);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.btn-sparkle {
  font-size: 1.25em;
  animation: sparkleRotate 2s ease-in-out infinite;
}

@keyframes sparkleRotate {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(15deg) scale(1.1);
  }
}

/* === HERO IMAGE 3D === */
.hero-image {
  position: relative;
  perspective: 1200px;
}

.hero-visual {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: var(--gradient-surface);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  position: relative;
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: all var(--transition-normal);
}

.hero-visual:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-visual-icons {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  display: flex;
  gap: var(--space-2);
  animation: iconsFloat 4s ease-in-out infinite;
}

@keyframes iconsFloat {
  0%, 100% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(-5px);
  }
  66% {
    transform: translateY(5px);
  }
}

.hero-visual-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === SECTIONS === */
.section {
  padding: var(--space-24) 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-6);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: var(--space-16);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === ABOUT SECTION === */
.about {
  background: var(--gradient-surface);
}

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

.about-text .section-title {
  text-align: left;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  height: 400px;
  background: var(--gradient-dark);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary-gold);
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.about-visual-icons {
  margin-bottom: var(--space-4);
  display: flex;
  gap: var(--space-2);
}

.about-visual-title {
  font-size: 1.125rem;
  font-weight: 600;
  opacity: 0.9;
}

.about-stars {
  position: absolute;
  color: var(--secondary-gold);
  font-size: 1.5rem;
  animation: starTwinkle 2s ease-in-out infinite alternate;
}

.about-stars:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.about-stars:nth-child(2) {
  top: 25%;
  right: 20%;
  animation-delay: 0.7s;
}

.about-stars:nth-child(3) {
  bottom: 30%;
  left: 25%;
  animation-delay: 1.4s;
}

@keyframes starTwinkle {
  from {
    opacity: 0.4;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

.magic-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.stat {
  text-align: center;
  padding: var(--space-8);
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  color: white;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

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

.stat-number {
  display: block;
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: var(--space-2);
  font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.4;
}

/* === CATEGORIES SECTION === */
.categories {
  background: linear-gradient(135deg, var(--surface-light) 0%, #F1F5F9 100%);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.category-card {
  background: var(--gradient-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 153, 0, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transition: left var(--transition-slow);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 153, 0, 0.3);
}

.category-card:hover::before {
  left: 0;
}

.category-icon {
  font-size: 4rem;
  margin-bottom: var(--space-6);
  display: inline-block;
  transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-magical-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: var(--space-2);
  font-family: 'Space Grotesk', sans-serif;
}

.category-real-name {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--space-6);
  font-weight: 500;
}

.category-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.category-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
  box-shadow: var(--shadow-md);
}

.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--gradient-surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.step {
  text-align: center;
  padding: var(--space-12);
  background: var(--pure-white);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 153, 0, 0.1);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

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

.step-icon {
  font-size: 4rem;
  margin-bottom: var(--space-8);
  display: inline-block;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: var(--space-6);
  font-family: 'Space Grotesk', sans-serif;
}

.step-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* === DEALS SECTION === */
.latest-deals {
  background: var(--gradient-surface);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.deal-preview {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 153, 0, 0.1);
  transition: all var(--transition-normal);
  cursor: pointer;
}

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

.deal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: var(--space-2);
}

.deal-asin {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--space-4);
  font-family: 'Inter', monospace;
}

.deal-asin code {
  background: var(--surface-light);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.deal-prices {
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.deal-old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.deal-new-price {
  font-weight: 700;
  color: var(--primary-orange);
  font-size: 1.125rem;
}

.deal-discount {
  background: #DC2626;
  color: white;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.deal-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.deal-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* === CTA SECTION === */
.cta-section {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: var(--space-12);
  opacity: 0.95;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-3px);
}

/* === FOOTER === */
.footer {
  background: var(--gradient-dark);
  color: white;
  padding: var(--space-24) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-section h3,
.footer-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--secondary-gold);
  font-family: 'Space Grotesk', sans-serif;
}

.footer-section p {
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: var(--space-4);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: var(--space-3);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-normal);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-section ul li a:hover {
  color: var(--secondary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  text-align: center;
}

.footer-bottom p {
  opacity: 0.6;
  margin-bottom: var(--space-2);
}

.footer-tech {
  font-size: 0.875rem;
  opacity: 0.4;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }

  .about-text .section-title {
    text-align: center;
  }

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

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

@media (max-width: 768px) {
  .navbar-content {
    flex-direction: column;
    gap: var(--space-4);
  }

  .nav-menu {
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: var(--space-24) 0 var(--space-16);
    min-height: auto;
  }

  .hero-visual {
    height: 300px;
  }

  .categories-grid,
  .deals-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* === UTILITAIRES === */
.text-center { text-align: center; }
.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;
}

/* === FOCUS ET ACCESSIBILITÉ === */
.btn:focus,
.nav-link:focus,
.category-btn:focus,
.deal-btn:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

/* === ANIMATIONS === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}