/* ===== Mobile Styles - Correspond aux maquettes exactes ===== */

/* Applicable uniquement sur mobile (< 768px) */
@media (max-width: 767px) {
  
  /* Forcer visibilité du hero sur mobile (animation désactivée) */
  header .hero-reveal {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  
  /* Hero mobile simplifié */
  header {
    min-height: 600px !important;
    height: auto !important;
    flex-direction: column !important;
  }
  
  header > div:first-of-type {
    width: 100% !important;
    padding: 2rem 1.5rem !important;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  header h1 {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
  }
  
  header p {
    font-size: 0.875rem !important;
    margin-bottom: 2rem !important;
    max-width: 320px;
  }
  
  header .flex.justify-start {
    justify-content: center !important;
    width: 100%;
  }
  
  header .btn-cta {
    width: 100% !important;
    max-width: 320px;
  }
  
  /* Cacher l'image hero sur mobile */
  header .hero-img-wrap {
    display: none !important;
  }
  
  /* Benefits - 2 colonnes sur mobile */
  .grid-cols-2.md\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  
  /* About section - empilé sur mobile */
  section .flex-col.lg\:flex-row {
    flex-direction: column !important;
  }
  
  section .flex-col.lg\:flex-row > div {
    width: 100% !important;
  }
  
  /* Promo banner - simplifié mobile */
  .promo-shine .flex-col.lg\:flex-row {
    min-height: auto !important;
  }
  
  .promo-shine .flex-col.lg\:flex-row > div:first-child {
    padding: 2rem !important;
  }
  
  .promo-shine h2 {
    font-size: 2rem !important;
  }
  
  /* Testimonials - 1 colonne sur mobile */
  .testimonial-group {
    grid-template-columns: 1fr !important;
  }
  
  /* Footer - empilé */
  footer .grid {
    grid-template-columns: 1fr !important;
  }
  
  /* ===== Catalog Mobile ===== */
  
  /* Hero/Title section plus compact */
  section[class*="py-12"] h1,
  section[class*="py-20"] h1 {
    font-size: 2.5rem !important;
  }
  
  /* Filter bar - scroll horizontal sur mobile */
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  /* Product grid - 2 colonnes sur mobile */
  #product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  /* Product cards plus compacts */
  .product-card {
    padding: 0 !important;
  }
  
  .product-card img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  
  .product-card h3 {
    font-size: 0.875rem !important;
  }
  
  .product-card p {
    font-size: 0.75rem !important;
  }
}

