/*
Theme Name: Climéo
Theme URI: https://climeo.fr
Author: Climéo
Author URI: https://climeo.fr
Description: Thème WordPress pour location de climatiseurs mobiles avec livraison express. Intégration WooCommerce complète.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: climeo
Tags: woocommerce, ecommerce, location, climatiseur, livraison
*/

/* =============================================
   CLIMÉO THEME — Design System
   ============================================= */

:root {
  /* Couleurs principales */
  --green-dark:    #0a2e20;
  --green-primary: #0f3d2e;
  --green-medium:  #1a5c42;
  --green-light:   #2d8c61;
  --green-accent:  #3ab87a;
  --green-pale:    #e8f5ee;

  /* Neutres */
  --white:         #ffffff;
  --off-white:     #f8faf9;
  --gray-100:      #f2f4f3;
  --gray-200:      #e4e8e6;
  --gray-400:      #9aada5;
  --gray-600:      #5c7068;
  --gray-800:      #2c3a35;
  --black:         #0a0f0d;

  /* Accents */
  --orange:        #ff6b35;
  --orange-light:  #fff0eb;
  --blue-ice:      #e0f4ff;

  /* Typography */
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'DM Mono', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10,46,32,.08);
  --shadow-md:  0 4px 24px rgba(10,46,32,.12);
  --shadow-lg:  0 12px 48px rgba(10,46,32,.18);
  --shadow-xl:  0 24px 80px rgba(10,46,32,.24);

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--gray-600); line-height: 1.75; }

.text-green  { color: var(--green-primary); }
.text-accent { color: var(--green-accent); }
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }

/* =============================================
   LAYOUT
   ============================================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

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

.section--gray { background: var(--off-white); }
.section--green { background: var(--green-primary); }
.section--dark { background: var(--green-dark); }

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--green-accent);
  color: var(--white);
  border-color: var(--green-accent);
}
.btn--primary:hover {
  background: var(--green-medium);
  border-color: var(--green-medium);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn--secondary:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--green-primary);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--green-pale);
  color: var(--green-primary);
  transform: translateY(-2px);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: #e55c2a;
  border-color: #e55c2a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,.35);
}

.btn--lg {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

.btn--sm {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.9rem var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-primary);
  text-decoration: none;
}

.site-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.site-logo span { color: var(--green-accent); }

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

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.3rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--green-primary); }
.main-nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-phone {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border-radius: var(--radius-full);
  color: var(--green-primary);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.cart-icon:hover {
  background: var(--green-accent);
  color: white;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 60%, var(--green-medium) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(58,184,122,.15);
  border: 1px solid rgba(58,184,122,.3);
  color: var(--green-accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-text h1 span { color: var(--green-accent); }

.hero-text p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat .value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  margin-top: 0.2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  width: 100%;
  max-width: 400px;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form .form-group {
  margin-bottom: var(--space-sm);
}

.booking-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.booking-form input::placeholder { color: rgba(255,255,255,.4); }
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--green-accent);
  background: rgba(255,255,255,.15);
}

.booking-form select option { color: var(--gray-800); background: white; }

.price-preview {
  background: rgba(58,184,122,.2);
  border: 1px solid rgba(58,184,122,.3);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-preview .total {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-accent);
}

.price-preview .per-day {
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
}

/* =============================================
   URGENCY BANNER
   ============================================= */

.urgency-banner {
  background: var(--orange);
  padding: 0.75rem;
  text-align: center;
}

.urgency-banner p {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.urgency-banner .highlight {
  font-weight: 800;
  text-decoration: underline;
}

/* =============================================
   FEATURES / AVANTAGES
   ============================================= */

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.8rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--green-accent);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem;
}

/* =============================================
   PRODUCTS / CATALOGUE
   ============================================= */

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

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: var(--space-xs);
}

.section-header h2 { margin-bottom: var(--space-sm); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--green-accent);
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.product-badge--popular { background: var(--green-accent); }
.product-badge--oos { background: #dc2626; }

/* Produit épuisé */
.product-card--oos .product-image { opacity: .55; filter: grayscale(.35); }
.product-card--oos .product-name a { color: var(--gray-500); }

.product-image {
  height: 220px;
  background: linear-gradient(135deg, var(--green-pale), var(--blue-ice));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-body {
  padding: var(--space-md);
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.3rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.spec-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: var(--space-sm);
}

.product-price .amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-primary);
}

.product-price .period {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.product-price .old-price {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.product-footer {
  padding: 0 var(--space-md) var(--space-md);
  display: flex;
  gap: 0.5rem;
}

.product-footer .btn { flex: 1; text-align: center; justify-content: center; }

/* =============================================
   HOW IT WORKS
   ============================================= */

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--green-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-accent);
}

.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-accent);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.review-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-primary);
  font-size: 0.9rem;
}

.review-meta .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.review-meta .location {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  text-align: center;
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '❄️';
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  right: -2rem;
  bottom: -2rem;
}

.cta-section h2 { color: white; margin-bottom: var(--space-sm); }
.cta-section p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: var(--space-lg); }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

/* =============================================
   FOOTER — Style ClimLoc (épuré, 3 colonnes)
   ============================================= */

.site-footer {
  background: var(--green-dark);
  padding: var(--space-2xl) 0 0;
}

/* ─── GRILLE PRINCIPALE ─────────────────── */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ─── COL 1 : MARQUE ────────────────────── */
.footer-brand-col { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: white;
  flex-shrink: 0;
}

.footer-logo em { color: var(--green-accent); font-style: normal; }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  max-width: 300px;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: white;
}

/* ─── COL 2 : NAVIGATION ────────────────── */
.footer-nav-col {
  display: flex;
  gap: var(--space-lg);
}

.footer-nav-group { flex: 1; }

.footer-nav-group h4,
.footer-contact-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-nav-group a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-nav-group a:hover { color: var(--green-accent); }

/* ─── COL 3 : CONTACT ───────────────────── */
.footer-contact-col {}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

.footer-contact-list a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: color var(--transition);
}

.footer-contact-list a:hover { color: var(--green-accent); }

.contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ─── BARRE BASSE ───────────────────────── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-legal-nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-nav a:hover { color: rgba(255,255,255,.6); }

/* =============================================
   WOOCOMMERCE — CART
   ============================================= */

.woocommerce-page .page-title {
  background: var(--green-primary);
  padding: var(--space-lg) 0;
  margin-bottom: var(--space-xl);
}

.woocommerce-page .page-title h1 { color: white; }

.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-lg);
  align-items: start;
}

.cart-table {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.cart-table table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  background: var(--gray-100);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
}

.cart-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.cart-collaterals {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: sticky;
  top: 100px;
}

/* =============================================
   WOOCOMMERCE — CHECKOUT
   ============================================= */

.woocommerce-checkout .woocommerce {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-lg);
  align-items: start;
}

.checkout-form-wrapper {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.checkout-form-wrapper h3 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--green-pale);
}

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: border-color var(--transition);
  margin-bottom: var(--space-sm);
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(58,184,122,.1);
}

.order-summary-box {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: sticky;
  top: 100px;
}

/* =============================================
   WOOCOMMERCE — SINGLE PRODUCT
   ============================================= */

.product-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.product-summary .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: var(--space-md);
}

.rental-dates {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.rental-dates h4 {
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.dates-grid label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
}

.dates-grid input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  background: white;
}

/* =============================================
   ADMIN — COMMANDES
   ============================================= */

.climeo-admin-wrap {
  background: var(--off-white);
  min-height: 100vh;
}

.admin-header {
  background: var(--green-primary);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.admin-stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border-left: 4px solid var(--green-accent);
}

.orders-table {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.order-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}

.order-status--pending    { background: #fff7ed; color: #c2410c; }
.order-status--processing { background: #eff6ff; color: #1d4ed8; }
.order-status--completed  { background: var(--green-pale); color: var(--green-primary); }
.order-status--cancelled  { background: #fef2f2; color: #dc2626; }

/* =============================================
   NOTICES / ALERTS
   ============================================= */

.notice {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notice--success { background: var(--green-pale); border-color: var(--green-accent); color: var(--green-primary); }
.notice--error   { background: #fef2f2; border-color: #dc2626; color: #dc2626; }
.notice--info    { background: var(--blue-ice); border-color: #3b82f6; color: #1d4ed8; }

/* ─── GALERIE PRODUIT ───────────────────────── */
.product-gallery {
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Image WooCommerce (wp_get_attachment_image / the_post_thumbnail) */
.product-gallery img,
.product-gallery img.product-main-image,
.product-gallery .attachment-large,
.product-gallery .wp-post-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  max-width: 100% !important;
  border-radius: var(--radius-xl);
}

/* Fallback emoji si pas d'image */
.product-gallery span { font-size: 6rem; }

.product-thumbs-strip {
  display: flex;
  gap: .5rem;
  margin-top: .65rem;
  flex-wrap: wrap;
}

.thumb-item {
  width: 72px;
  height: 72px;
  border: 2.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.thumb-item:hover,
.thumb-item.active { border-color: var(--green-accent); }

/* ─── BADGES CONFIANCE ──────────────────────── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .85rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
}

/* ─── KIT DE CALFEUTRAGE ────────────────────── */
.calfeutrage-box {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  margin-top: var(--space-md);
}

.calfeutrage-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.calfeutrage-box strong {
  display: block;
  color: #0369a1;
  font-size: .92rem;
  margin-bottom: .25rem;
}

.calfeutrage-box p {
  margin: 0;
  font-size: .83rem;
  color: #0c4a6e;
  line-height: 1.5;
}

/* ─── LIVRAISON À L'ÉTAGE ───────────────────── */
.floor-delivery-wrapper {}

.floor-label {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  background: white;
  transition: all var(--transition);
}

.floor-label:hover {
  border-color: var(--green-accent);
  background: var(--green-pale);
}

.floor-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green-accent);
  cursor: pointer;
}

.floor-content { flex: 1; }

.floor-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

/* ─── AUTOCOMPLETE ADRESSE (BAN) ────────────── */

/* Wrapper : position relative est ICI — le parent des suggestions */
.addr-field-wrap {
  position: relative;
}

.addr-pin-icon {
  position: absolute;
  left: .8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

/* Suggestions — positionnées PAR RAPPORT au .addr-field-wrap */
.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);   /* juste en dessous de l'input */
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid var(--green-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(10,46,32,.18);
  z-index: 9999;            /* très haut pour passer au-dessus de tout */
  list-style: none;
  margin: 0;
  padding: .3rem 0;
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.address-suggestions li {
  padding: .7rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s;
  line-height: 1.35;
}

.address-suggestions li:last-child { border-bottom: none; }

.address-suggestions li:hover,
.address-suggestions li.active {
  background: var(--green-pale);
}

.sug-text { flex: 1; min-width: 0; }
.sug-main { font-weight: 600; font-size: .9rem; color: var(--green-dark); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sug-city { font-size: .78rem; color: var(--gray-400); display: block; }

.sug-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.sug-badge--ok  { background: var(--green-pale); color: var(--green-primary); }
.sug-badge--out { background: #fff0eb; color: var(--orange); }

.address-no-result {
  padding: .85rem 1rem;
  font-size: .88rem;
  color: var(--gray-400);
  text-align: center;
  font-style: italic;
}

/* États de l'input selon validation */
#delivery_address_input.addr-valid {
  border-color: var(--green-accent) !important;
  background: var(--green-pale);
}
#delivery_address_input.addr-invalid {
  border-color: var(--orange) !important;
  background: #fff8f5;
}
#delivery_address_input:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(58,184,122,.1);
}

/* ─── INDICATEUR DE STOCK ───────────────────── */
.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  transition: all .3s;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* États */
.stock-ok    { background: var(--green-pale); color: var(--green-primary); }
.stock-ok    .stock-dot { background: var(--green-accent); }

.stock-low   { background: #fff7ed; color: #c2410c; }
.stock-low   .stock-dot { background: var(--orange); animation: blink 1s infinite; }

.stock-out   { background: #fef2f2; color: #dc2626; }
.stock-out   .stock-dot { background: #dc2626; }

.stock-loading { background: var(--gray-100); color: var(--gray-400); }
.stock-loading .stock-dot { background: var(--gray-400); }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ─── COMPTEUR QUANTITÉ ─────────────────────── */
.qty-counter {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: white;
  border: 2px solid var(--green-accent);
  border-radius: var(--radius-full);
  padding: .25rem .5rem;
  width: fit-content;
  margin-bottom: .75rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--green-pale);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  line-height: 1;
  user-select: none;
}

.qty-btn:hover  { background: var(--green-accent); color: white; }
.qty-btn:active { transform: scale(.92); }

/* ─── BOX COUVERTURE SURFACE ────────────────── */
.coverage-box {
  margin-top: .75rem;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.coverage-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
}

.coverage-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0 1rem;
}

.coverage-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.coverage-info { flex: 1; }

.coverage-mode {
  font-weight: 700;
  font-size: .9rem;
  color: var(--gray-800);
  margin-bottom: .15rem;
}

.coverage-desc {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.35;
}

.coverage-surface {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-primary);
  flex-shrink: 0;
  min-width: 55px;
  text-align: right;
  transition: all .25s;
}

.coverage-frais .coverage-surface { color: #2563eb; }
.coverage-clim  .coverage-surface { color: var(--green-primary); }

.coverage-note {
  padding: .5rem 1rem;
  font-size: .72rem;
  color: var(--gray-400);
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  font-style: italic;
}

/* Animation chiffre surface */
@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); color: var(--orange); }
  100% { transform: scale(1); }
}

.coverage-surface.bump {
  animation: bump .3s ease;
}

@media (max-width: 480px) {
  .qty-cards { gap: .3rem; }
  .qty-card .qty-num { font-size: 1.2rem; }
  .qty-card .qty-label { font-size: .65rem; }
  .coverage-row { padding: .7rem .85rem; gap: .6rem; }
  .coverage-surface { font-size: 1.05rem; }
}

/* ─── TARIFS PAR DÉLAI ──────────────────────── */
.delivery-price-tiers {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-top: .25rem;
}

.dpt-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .85rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-100);
  background: var(--off-white);
  font-size: .85rem;
  color: var(--gray-500);
  transition: all .2s;
}

.dpt-row.active {
  border-color: var(--green-accent);
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 600;
}

.dpt-icon { font-size: 1rem; flex-shrink: 0; }

.dpt-label { flex: 1; }

.dpt-price {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-400);
}

.dpt-row.active .dpt-price {
  color: var(--orange);
}

/* ─── CRÉNEAUX DE LIVRAISON ─────────────────── */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

.slot-card {
  cursor: pointer;
  display: block;
}

.slot-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.slot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .85rem .5rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: white;
  text-align: center;
  transition: all var(--transition);
}

.slot-card:hover .slot-inner {
  border-color: var(--green-accent);
  background: var(--green-pale);
}

.slot-card input:checked + .slot-inner {
  border-color: var(--green-accent);
  background: var(--green-pale);
  box-shadow: 0 0 0 3px rgba(58,184,122,.15);
}

.slot-emoji {
  font-size: 1.4rem;
  line-height: 1;
}

.slot-time {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
}

.slot-sub {
  font-size: .72rem;
  color: var(--gray-400);
  font-weight: 500;
}

.slot-card input:checked + .slot-inner .slot-time {
  color: var(--green-primary);
}

@media (max-width: 480px) {
  .slot-grid { grid-template-columns: 1fr; }
  .slot-inner { flex-direction: row; justify-content: flex-start; padding: .65rem .85rem; gap: .75rem; text-align: left; }
}

/* ─── BOUTON RÉSERVER FLOTTANT (mobile uniquement) ─── */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 1.15rem;
  right: 1rem;
  min-width: 138px;
  height: 54px;
  padding: 0 .95rem;
  background: linear-gradient(135deg, var(--green-primary) 0%, #0b5a3c 100%);
  color: white;
  border-radius: var(--radius-full);
  align-items: center;
  justify-content: center;
  gap: .45rem;
  box-shadow: 0 10px 26px rgba(24, 74, 53, 0.32);
  z-index: 999;
  animation: pulse-reserve 2.6s infinite;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.01em;
}
.mobile-call-btn:hover { color: white; transform: translateY(-1px); }
.mobile-reserve-btn__icon { font-size: 1.1rem; line-height: 1; }
.mobile-reserve-btn__text { font-size: .98rem; }
@keyframes pulse-reserve {
  0%   { box-shadow: 0 10px 26px rgba(24,74,53,.32), 0 0 0 0 rgba(24,74,53,.45); }
  70%  { box-shadow: 0 10px 26px rgba(24,74,53,.32), 0 0 0 16px rgba(24,74,53,0); }
  100% { box-shadow: 0 10px 26px rgba(24,74,53,.32), 0 0 0 0 rgba(24,74,53,0); }
}
@media (max-width: 768px) {
  .mobile-call-btn { display: flex; }
}

/* =============================================
   RESPONSIVE — Mobile-first refonte complète
   ============================================= */

/* ─── TABLETTE (≤ 1024px) ─────────────────── */
@media (max-width: 1024px) {
  .features-grid,
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-content  { gap: var(--space-lg); }
  .header-phone  { font-size: 0.85rem; }
}

/* ─── MOBILE (≤ 768px) ─────────────────────── */
@media (max-width: 768px) {

  /* === Spacing global réduit === */
  :root {
    --space-lg:  1.5rem;
    --space-xl:  2.5rem;
    --space-2xl: 3.5rem;
  }

  .container { padding: 0 1rem; }
  .section   { padding: var(--space-xl) 0; }

  /* === Typography ajustée === */
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1.1; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: 1.15rem; }
  body { font-size: 15px; }

  /* === HEADER === */
  .header-inner { padding: 0.7rem 1rem; gap: 0.5rem; }
  .site-logo { font-size: 1.3rem; }
  .site-logo .logo-icon { width: 34px; height: 34px; font-size: 1rem; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .header-cta .btn { display: none; }   /* Cache "Louer maintenant" — on l'a déjà dans le hero */
  .header-cta { gap: 0.4rem; }
  .cart-icon { width: 38px; height: 38px; font-size: 1rem; }

  /* === BANDEAU URGENCE === */
  .urgency-banner p {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .urgency-banner .highlight { display: inline; }
  .urgency-banner button { display: none; }

  /* === HERO === */
  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: var(--space-lg) 0 var(--space-xl);
  }
  .hero-text { text-align: center; }
  .hero-text .badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.85rem;
  }
  .hero-text p {
    font-size: 1rem;
    margin: 0 auto var(--space-md);
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats hero : compactes en 2 colonnes */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    text-align: center;
  }
  .hero-stat .value { font-size: 1.5rem; }
  .hero-stat .label { font-size: 0.75rem; }

  /* === FORMULAIRE DE RÉSERVATION HERO === */
  .hero-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
  }
  .hero-card-title { font-size: 0.95rem; margin-bottom: 1rem; }
  .booking-form input,
  .booking-form select {
    padding: 0.75rem 0.85rem;
    font-size: 16px;   /* IMPORTANT : iOS ne zoom plus si ≥16px */
  }
  .booking-form label {
    font-size: 0.72rem;
    margin-bottom: 0.25rem;
  }
  .price-preview { padding: 0.85rem; }
  .price-preview .total { font-size: 1.3rem; }

  /* === FEATURES === */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .feature-card {
    padding: 1.1rem 0.85rem;
    text-align: center;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
  }
  .feature-card h3 { font-size: 0.92rem; margin-bottom: 0.3rem; }
  .feature-card p  { font-size: 0.82rem; line-height: 1.5; }

  /* === PRODUCTS GRID === */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-image { height: 180px; font-size: 4rem; }
  .product-card { border-radius: var(--radius-md); }
  .product-body { padding: 1rem; }
  .product-footer {
    padding: 0 1rem 1rem;
    flex-direction: row;
  }
  .product-footer .btn { flex: 1; padding: 0.6rem; font-size: 0.82rem; }

  /* === STEPS === */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .step-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    text-align: left;
    align-items: center;
    gap: 1rem;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    margin: 0;
    border-width: 2px;
  }
  .step-card > div:not(.step-number) {
    display: contents;
  }
  .step-card h3 { font-size: 1rem; margin: 0 0 0.2rem; }
  .step-card p  { font-size: 0.85rem; margin: 0; line-height: 1.5; }

  /* === REVIEWS === */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .review-card { padding: 1.25rem; }
  .review-text { font-size: 0.9rem; }

  /* === FAQ === */
  .faq-question {
    padding: 0.85rem 1rem !important;
    font-size: 0.92rem !important;
  }
  .faq-answer { padding: 0 1rem 0.85rem !important; font-size: 0.88rem; }

  /* === CTA SECTION === */
  .cta-section { padding: var(--space-xl) 0; }
  .cta-section h2 { font-size: 1.6rem; }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* === FOOTER === */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
  .footer-contact-col { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 0;
  }
  .footer-legal-nav { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

  /* === WOOCOMMERCE PAGES === */
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce,
  .product-single { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Panier : scroll horizontal pour la table */
  .cart-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cart-table table { min-width: 580px; }

  .cart-collaterals,
  .order-summary-box {
    position: static;
    margin-top: 1.25rem;
  }

  /* Page produit */
  .product-gallery { height: 280px; font-size: 5rem; }
  .product-summary .price { font-size: 1.6rem; }

  /* Spec grid */
  .product-attrs > div,
  .climeo-zone-list > div {
    grid-template-columns: 1fr !important;
  }

  /* Vérificateur zone */
  #climeoZoneForm {
    flex-direction: column;
    gap: 0.5rem !important;
  }
  #climeoZoneForm input,
  #climeoZoneForm button { width: 100%; }

  /* Section bandeau confiance */
  .container > div[style*="justify-content:center"][style*="gap:var(--space-xl)"] {
    gap: 1.25rem !important;
  }
  .container > div[style*="justify-content:center"] > div { font-size: 0.8rem; }
  .container > div[style*="justify-content:center"] > div > div:first-child { font-size: 1.4rem !important; }

  /* Notice : tactile */
  .notice { padding: 0.85rem 1rem; font-size: 0.88rem; }

  /* Tous les boutons : touch-friendly */
  .btn { min-height: 44px; }
  .btn--sm { min-height: 38px; }

  /* Section header */
  .section-header { margin-bottom: var(--space-lg); }
  .section-header .eyebrow { font-size: 0.72rem; }

  /* === FICHE PRODUIT — nouveaux éléments === */
  .delivery-price-tiers { gap: .25rem; }
  .dpt-row { padding: .5rem .75rem; font-size: .82rem; }

  .calfeutrage-box { padding: .75rem; gap: .6rem; }
  .calfeutrage-icon { font-size: 1.2rem; }
  .calfeutrage-box strong { font-size: .85rem; }
  .calfeutrage-box p { font-size: .78rem; }

  .floor-label { padding: .65rem .85rem; }
  .floor-price { font-size: .9rem; }

  .product-thumbs-strip { gap: .3rem; }
  .thumb-item { width: 56px; height: 56px; }
  .trust-badge { font-size: .72rem; padding: .3rem .6rem; }

  /* === PAGE CONTACT === */
  .contact-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contact-info-panel { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: var(--space-md); }
}

/* ─── PETIT MOBILE (≤ 480px) ───────────────── */
@media (max-width: 480px) {
  :root {
    --space-md:  1.25rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
  }

  /* Logo plus petit */
  .site-logo { font-size: 1.15rem; }
  .site-logo .logo-icon { width: 30px; height: 30px; font-size: 0.9rem; }

  /* Hero ultra compact */
  .hero-text h1 { font-size: 1.85rem; }
  .hero-stats { gap: 0.75rem; }
  .hero-stat .value { font-size: 1.3rem; }

  /* Features : 1 colonne sur très petit */
  .features-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .feature-card {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1rem;
  }
  .feature-icon { margin: 0; flex-shrink: 0; }
  .feature-card > div:not(.feature-icon) { flex: 1; }
  .feature-card h3, .feature-card p { margin: 0; }

  /* Bandeau confiance : 2x2 */
  .container > div[style*="justify-content:center"][style*="gap:var(--space-xl)"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  .container > div[style*="justify-content:center"] > div[style*="color:rgba(255,255,255,.3)"] {
    display: none !important;
  }

  /* Ultra petit footer */
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav-col { flex-direction: column; gap: 1.25rem; }
  .footer-contact-col { grid-column: auto; }

  /* Tableau tarifs livraison : ultra compact */
  .dpt-row { padding: .45rem .65rem; font-size: .78rem; }
  .dpt-label { font-size: .78rem; }
  .dpt-price { font-size: .85rem; }

  /* Slot créneaux : 1 colonne sur très petit */
  .slot-grid { grid-template-columns: 1fr; }
  .slot-inner { flex-direction: row; padding: .6rem .85rem; justify-content: flex-start; gap: .75rem; text-align: left; }
  .slot-emoji { font-size: 1.1rem; }

  /* Bouton hamburger plus visible */
  .hamburger { padding: 0.6rem 0.4rem; }
  .hamburger span { width: 22px; }

  /* Date inputs côte à côte → empilés sur micro-écran */
  .dates-grid,
  .booking-form div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
}

/* ─── ULTRA PETIT (≤ 360px — vieux iPhones SE) ─── */
@media (max-width: 360px) {
  .container { padding: 0 0.75rem; }
  .hero-text h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  .btn { padding: 0.7rem 1.2rem; font-size: 0.88rem; }
  .urgency-banner p { font-size: 0.7rem; }
  .product-image { height: 160px; }
}

/* ─── PAYSAGE MOBILE ────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; }
  .hero-content { padding: 1.5rem 0; }
}

/* ─── ACCESSIBILITÉ TACTILE ─────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Désactiver les effets hover qui restent "collés" sur tactile */
  .product-card:hover,
  .feature-card:hover,
  .review-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  /* Tap targets minimum 44px */
  a, button, input[type="submit"] { min-height: 44px; }
}

/* ─── DARK MODE iOS Safari : préserver le contraste ─ */
@media (prefers-color-scheme: dark) {
  /* On garde le design clair — pas de dark mode pour l'instant */
  body { background: var(--white); color: var(--gray-800); }
}

/* ─── PRINT ─────────────────────────────────── */
@media print {
  .site-header, .site-footer, .urgency-banner, .cta-section { display: none; }
  body { color: black; background: white; }
}

/* =========================================================
   Climéo — WooCommerce classique
   Produits, panier et paiement gérés par WooCommerce natif.
   ========================================================= */
.woocommerce-page .site-main,
.woocommerce .site-main {
  background: var(--gray-50, #f8fafc);
}

.woocommerce .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce,
.single-product .woocommerce,
.woocommerce-page .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl, 3rem) var(--space-md, 1.5rem);
}

.woocommerce div.product,
.woocommerce-cart-form,
.woocommerce-checkout form.checkout,
.woocommerce-order,
.woocommerce table.shop_table,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce form.woocommerce-form,
.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details {
  background: #fff;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-lg, 18px);
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(15, 61, 46, .08));
}

.woocommerce div.product,
.woocommerce-checkout form.checkout,
.woocommerce-order {
  padding: clamp(1rem, 2vw, 2rem);
}

.woocommerce div.product .product_title,
.woocommerce-checkout h3,
.woocommerce-cart h2,
.woocommerce-order h2 {
  color: var(--green-dark, #0f3d2e);
  font-family: var(--font-display, 'Syne', sans-serif);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce .price {
  color: var(--green-primary, #176b4c);
  font-weight: 800;
}

.woocommerce .price-period {
  font-size: .85rem;
  color: var(--gray-500, #64748b);
  margin-left: .25rem;
  font-weight: 600;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
  background: var(--green-primary, #176b4c);
  color: #fff;
  border-radius: var(--radius-full, 999px);
  font-weight: 800;
  border: none;
  padding: .9rem 1.35rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--green-dark, #0f3d2e);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md, 0 10px 30px rgba(15, 61, 46, .14));
}

.woocommerce table.shop_table {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce table.shop_table th {
  color: var(--green-dark, #0f3d2e);
  font-weight: 800;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1.5px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-md, 12px);
  padding: .8rem 1rem;
  background: #fff;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: var(--green-accent, #3ab87a);
  outline: none;
  box-shadow: 0 0 0 3px rgba(58, 184, 122, .14);
}

.woocommerce-cart .cart-collaterals .cart_totals {
  padding: 1.25rem;
}

.woocommerce-checkout-review-order,
.woocommerce-checkout-payment {
  border-radius: var(--radius-lg, 18px);
}

.woocommerce .quantity .qty {
  min-width: 72px;
  text-align: center;
}

@media (max-width: 768px) {
  .woocommerce .woocommerce-notices-wrapper,
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce,
  .woocommerce-account .woocommerce,
  .single-product .woocommerce,
  .woocommerce-page .woocommerce {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* =============================================
   CLIMÉO — OPTIONS PRODUIT WOOCOMMERCE CLASSIQUE
   ============================================= */
.climeo-product-options {
  margin: var(--space-md) 0;
}

.climeo-product-options .rental-dates {
  border: 1px solid rgba(10,46,32,.08);
}

.climeo-product-options input[type="date"],
.climeo-product-options input[type="text"] {
  min-height: 46px;
}

.climeo-product-options .woocommerce-error,
.climeo-product-options .woocommerce-message,
.climeo-product-options .woocommerce-info {
  margin-bottom: var(--space-sm);
}

.single-product form.cart .quantity {
  margin: 0 .8rem .8rem 0;
}

.single-product form.cart .single_add_to_cart_button {
  min-height: 48px;
  border-radius: var(--radius-full);
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  font-weight: 800;
}

@media (max-width: 640px) {
  .climeo-product-options .dates-grid,
  .climeo-product-options [style*="grid-template-columns:1fr 1fr"],
  .climeo-product-options [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}


/* Liens d'ancrage accueil : évite que le header masque les sections */
#how-it-works, #reviews { scroll-margin-top: 110px; }


/* ========== MINI ESTIMATION SURFACE RAFRAÎCHIE (PAGE PRODUIT) ========== */
.climeo-coverage-mini {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(19, 64, 47, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  box-shadow: 0 10px 28px rgba(19, 64, 47, 0.06);
}

/* Encart info rafraîchisseur d'air */
.climeo-cooler-notice {
  margin-top: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.06);
}

.climeo-cooler-notice__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .65rem;
  font-size: 1rem;
  color: var(--gray-900);
}

.climeo-cooler-notice__icon {
  font-size: 1.3rem;
}

.climeo-cooler-notice p {
  font-size: .89rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0 0 .6rem;
}

.climeo-cooler-notice p:last-child {
  margin-bottom: 0;
}

.climeo-cooler-notice a {
  color: var(--green-accent);
  font-weight: 600;
}

.climeo-coverage-mini.is-large {
  margin-top: 1.1rem;
  margin-bottom: .9rem;
  padding: 1.15rem;
  border: 1.5px solid rgba(58, 184, 122, 0.28);
  box-shadow: 0 14px 34px rgba(24, 74, 53, 0.09);
}

.climeo-coverage-mini__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .85rem;
}

.climeo-coverage-mini__head strong {
  display: block;
  font-size: 1.18rem;
  color: var(--green-primary);
  margin-bottom: .25rem;
}

.climeo-coverage-mini__sub {
  margin: 0;
  font-size: .88rem;
  color: var(--gray-500);
  max-width: 42ch;
}

.climeo-coverage-mini__qty {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .4rem .7rem;
  background: #eef8f1;
  border: 1px solid rgba(58, 184, 122, 0.18);
  color: var(--green-primary);
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
}

.climeo-coverage-mini__qty-number {
  display: inline-grid;
  place-items: center;
  min-width: 1.9rem;
  height: 1.9rem;
  padding: 0 .4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #184a35 0%, #2f7d5d 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(24, 74, 53, 0.24);
}

.climeo-coverage-mini__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.climeo-coverage-mini__card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 1rem;
  border: 1.5px solid var(--gray-200);
  background: #fafafa;
}

.climeo-coverage-mini__card::after {
  content: '';
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: .18;
  pointer-events: none;
}

.climeo-coverage-mini__card.is-fresh {
  background: linear-gradient(180deg, #f4f9ff 0%, #eef6ff 100%);
  border-color: #d8e7f7;
}

.climeo-coverage-mini__card.is-fresh::after {
  background: radial-gradient(circle, #8ec5ff 0%, transparent 70%);
}

.climeo-coverage-mini__card.is-cool {
  background: linear-gradient(180deg, #f3f8f3 0%, #edf7ef 100%);
  border-color: #d6e7d7;
}

.climeo-coverage-mini__card.is-cool::after {
  background: radial-gradient(circle, #8ee0ae 0%, transparent 70%);
}

.climeo-coverage-mini__label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: .35rem;
}

.climeo-coverage-mini__value {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: .95;
  margin-bottom: .35rem;
  color: var(--gray-900);
  text-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.climeo-coverage-mini__desc {
  position: relative;
  z-index: 1;
  font-size: .9rem;
  color: var(--gray-500);
}

@media (max-width: 640px) {
  .climeo-coverage-mini__grid {
    grid-template-columns: 1fr;
  }

  .climeo-coverage-mini__qty {
    white-space: normal;
  }
}


/* Empêche le zoom automatique iOS sur le champ adresse et les champs du produit */
@media (max-width: 768px) {
  .single-product input,
  .single-product select,
  .single-product textarea,
  #delivery_address_input,
  .addr-field-wrap input,
  .address-suggestions,
  .address-suggestions * {
    font-size: 16px !important;
  }

  #delivery_address_input {
    min-height: 50px;
    line-height: 1.25;
  }
}


/* Correctif mobile : aucun bouton flottant en bas d'écran */
.mobile-call-btn,
.mobile-reserve-btn {
  display: none !important;
}

/* ─── MINI-CALENDRIER DISPONIBILITÉ ───────────── */
.climeo-cal {
  position: absolute;
  z-index: 60;
  top: calc(100% + 6px);
  left: 0;
  width: 300px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(15, 40, 30, 0.16);
  padding: .9rem;
}

.climeo-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .6rem;
  color: var(--gray-900);
}

.climeo-cal__nav {
  border: none;
  background: var(--green-pale);
  color: var(--green-primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}

.climeo-cal__nav:hover { background: var(--green-accent); color: #fff; }

.climeo-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.climeo-cal__dow {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-400);
  padding: .25rem 0;
}

.climeo-cal__day {
  border: none;
  border-radius: 8px;
  padding: .42rem 0;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform .1s;
}

.climeo-cal__day.is-free {
  background: #e4f3ea;
  color: #1e7a4d;
}

.climeo-cal__day.is-free:hover {
  background: var(--green-accent);
  color: #fff;
  transform: scale(1.08);
}

.climeo-cal__day.is-blocked {
  background: #fee2e2;
  color: #dc2626;
  cursor: not-allowed;
  text-decoration: line-through;
}

.climeo-cal__day.is-past {
  background: transparent;
  color: var(--gray-300);
  cursor: not-allowed;
}

.climeo-cal__day.is-selected {
  outline: 2px solid var(--green-primary);
  outline-offset: 1px;
}

.climeo-cal__legend {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: .65rem;
  font-size: .74rem;
  color: var(--gray-500);
}

.climeo-cal__legend .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: .3rem;
}

.climeo-cal__legend .dot--free    { background: #34a06a; }
.climeo-cal__legend .dot--blocked { background: #dc2626; }

@media (max-width: 480px) {
  .climeo-cal { width: 272px; left: 50%; transform: translateX(-50%); }
}
