/** Shopify CDN: Minification failed

Line 1174:0 Expected "}" to go with "{"

**/
/* ============================================
   COLLECTION PAGES PREMIUM + LEGAL PAGES
   ============================================ */

/* === COLLECTION HERO PREMIUM === */
.collection-hero-premium {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.gradient-blue-bg {
  background: radial-gradient(ellipse at 80% 50%, rgba(45, 74, 92, 0.7) 0%, rgba(45, 74, 92, 0.3) 30%, rgba(0,0,0,0.9) 60%, #000 100%);
  position: relative;
}

.gradient-blue-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 74, 92, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.gradient-copper-bg {
  background: radial-gradient(ellipse at 80% 50%, rgba(200, 125, 92, 0.7) 0%, rgba(200, 125, 92, 0.3) 30%, rgba(0,0,0,0.9) 60%, #000 100%);
  position: relative;
}

.gradient-copper-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(200, 125, 92, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.gradient-green-bg {
  background: radial-gradient(ellipse at 80% 50%, rgba(74, 107, 92, 0.7) 0%, rgba(74, 107, 92, 0.3) 30%, rgba(0,0,0,0.9) 60%, #000 100%);
  position: relative;
}

.gradient-green-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 107, 92, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-nav-back {
  position: absolute;
  top: 100px;
  left: 2rem;
  z-index: 10;
}

.back-link-premium {
  color: var(--color-text);
  opacity: 0.7;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.back-link-premium:hover {
  opacity: 1;
  transform: translateX(-5px);
}

.collection-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-left {
  flex: 1;
}

.collection-title-premium {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.collection-subtitle-premium {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

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

.hero-product-image {
  max-width: 500px;
  width: 100%;
}

.hero-product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7));
  /* Suppression du carré noir - meilleure technique */
  background: transparent;
  isolation: isolate;
}

/* === PRODUCTS SECTION PREMIUM === */
.products-section-premium {
  padding: var(--spacing-2xl) 0;
}

.products-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-items: center;
  /* Centrer quand il y a moins de 3 produits */
  justify-content: center;
}

/* ================================================
   PRODUCT CARDS PREMIUM V2 - ULTRA CLASSE
   ================================================ */

.product-card-premium {
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  /* Légère ombre */
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Effet shine au survol */
.product-card-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.03) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.product-card-premium:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Bordure colorée animée en haut */
.product-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: all 0.4s ease;
}

.gradient-blue-bg ~ * .product-card-premium::before {
  background: linear-gradient(90deg, rgba(45, 74, 92, 1), rgba(74, 107, 92, 0.6));
}

.gradient-copper-bg ~ * .product-card-premium::before {
  background: linear-gradient(90deg, rgba(200, 125, 92, 1), rgba(180, 100, 70, 0.6));
}

.gradient-green-bg ~ * .product-card-premium::before {
  background: linear-gradient(90deg, rgba(74, 107, 92, 1), rgba(45, 74, 92, 0.6));
}

.product-card-premium:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
}

.product-card-premium:hover::before {
  opacity: 1;
  box-shadow: 0 0 20px currentColor;
}

/* Link flex */
.product-link-premium {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  height: 100%;
}

/* Image avec gradient overlay */
.product-image-premium {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: rgba(0,0,0,0.3);
}

/* Gradient overlay par catégorie - plus subtil */
.gradient-blue-bg ~ * .product-image-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(45, 74, 92, 0.15) 0%, transparent 70%);
  opacity: 0.8;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gradient-copper-bg ~ * .product-image-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 125, 92, 0.15) 0%, transparent 70%);
  opacity: 0.8;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gradient-green-bg ~ * .product-image-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74, 107, 92, 0.15) 0%, transparent 70%);
  opacity: 0.8;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card-premium:hover .product-image-premium::before {
  opacity: 1;
}

.product-image-premium img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
  padding: 2rem;
}

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

/* Info section avec flex-grow */
.product-info-premium {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.product-title-premium {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-card-premium:hover .product-title-premium {
  color: rgba(255,255,255,1);
}

.product-subtitle-premium {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Footer avec prix et stock */
.product-footer-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.product-price-premium {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.product-status-premium {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  background: rgba(76, 175, 80, 0.12);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.25);
}

/* Bouton Explorer amélioré */
.product-btn-premium {
  width: 100%;
  padding: 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.product-btn-premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.product-card-premium:hover .product-btn-premium::before {
  width: 300px;
  height: 300px;
}

.product-card-premium:hover .product-btn-premium {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: translateY(-2px);
}

.product-btn-premium span {
  position: relative;
  z-index: 1;
}


.empty-collection-premium {
  text-align: center;
  padding: 4rem 0;
  opacity: 0.7;
}

/* === OTHER COLLECTIONS CTA === */
.other-collections {
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.other-collections-text {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* === LEGAL PAGES === */
.legal-page {
  padding: var(--spacing-2xl) 0;
  min-height: 100vh;
}

.container-legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  padding-top: 80px;
}

.legal-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.legal-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.legal-content {
  margin-bottom: var(--spacing-xl);
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.legal-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.legal-content a {
  color: var(--color-accent-copper);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.legal-content a:hover {
  opacity: 0.7;
}

.legal-content strong {
  font-weight: 500;
}

.address-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  margin: 1.5rem 0;
  line-height: 1.8;
}

.legal-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--spacing-xl) 0 2rem;
  opacity: 0.8;
}

.legal-footer-logo svg {
  margin-bottom: 1rem;
}

.legal-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

.legal-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 3rem;
}

.legal-footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

/* Nuances de couleurs par page légale */
.legal-cgv .legal-header {
  border-bottom: 1px solid rgba(200, 125, 92, 0.2);
  padding-bottom: 2rem;
}

.legal-privacy .legal-header {
  border-bottom: 1px solid rgba(74, 107, 92, 0.2);
  padding-bottom: 2rem;
}

.legal-returns .legal-header {
  border-bottom: 1px solid rgba(45, 74, 92, 0.2);
  padding-bottom: 2rem;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .products-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collection-hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-right {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .collection-hero-premium {
    min-height: 60vh;
    padding-top: 80px;
  }
  
  .products-grid-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .collection-title-premium {
    font-size: 3rem;
  }
  
  .hero-product-image {
    max-width: 300px;
  }
  
  .legal-header {
    padding-top: 60px;
  }
  
  .legal-content h2 {
    font-size: 1.5rem;
  }
  
  .legal-footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ============================================
   CARDS PRODUIT - FOND COLORÉ + ALIGNEMENT
   ============================================ */

/* Card avec flexbox pour aligner le bouton en bas */
.product-card-premium {
  display: flex;
  flex-direction: column;
}

.product-link-premium {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-info-premium {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Pousser le bouton en bas automatiquement */
.product-btn-premium {
  margin-top: auto;
}

/* Fond coloré dans les images des cards - par catégorie */
/* Smart Clean - fond bleu */
.collection-hero-premium.gradient-blue-bg ~ .products-section-premium .product-image-premium,
.smart-clean-page .product-image-premium {
  background: linear-gradient(135deg, rgba(45, 74, 92, 0.3) 0%, rgba(45, 74, 92, 0.1) 100%) !important;
}

/* Beauty Tech - fond cuivre */
.collection-hero-premium.gradient-copper-bg ~ .products-section-premium .product-image-premium,
.beauty-tech-page .product-image-premium {
  background: linear-gradient(135deg, rgba(200, 125, 92, 0.3) 0%, rgba(200, 125, 92, 0.1) 100%) !important;
}

/* Home & Lifestyle - fond vert */
.collection-hero-premium.gradient-green-bg ~ .products-section-premium .product-image-premium,
.home-lifestyle-page .product-image-premium {
  background: linear-gradient(135deg, rgba(74, 107, 92, 0.3) 0%, rgba(74, 107, 92, 0.1) 100%) !important;
}

/* Fallback - fond coloré sur toutes les card images */
.product-image-premium {
  background: rgba(255,255,255,0.04) !important;
}

/* === FONDS COLORÉS PAR CATÉGORIE === */
.product-image-blue {
  background: linear-gradient(135deg, rgba(45, 74, 92, 0.35) 0%, rgba(20, 40, 60, 0.15) 100%) !important;
}

.product-image-copper {
  background: linear-gradient(135deg, rgba(200, 125, 92, 0.35) 0%, rgba(120, 60, 30, 0.15) 100%) !important;
}

.product-image-green {
  background: linear-gradient(135deg, rgba(74, 107, 92, 0.35) 0%, rgba(30, 60, 40, 0.15) 100%) !important;
}

/* Bordure supérieure colorée sur hover selon catégorie */
.cat-color-blue .product-card-premium:hover {
  border-color: rgba(45, 74, 92, 0.5);
  box-shadow: 0 8px 30px rgba(45, 74, 92, 0.2);
}

.cat-color-copper .product-card-premium:hover {
  border-color: rgba(200, 125, 92, 0.5);
  box-shadow: 0 8px 30px rgba(200, 125, 92, 0.2);
}

.cat-color-green .product-card-premium:hover {
  border-color: rgba(74, 107, 92, 0.5);
  box-shadow: 0 8px 30px rgba(74, 107, 92, 0.2);
}

.cat-color-blue .product-card-premium::before {
  background: linear-gradient(90deg, rgba(45, 74, 92, 0.9), rgba(45, 74, 92, 0.2)) !important;
}

.cat-color-copper .product-card-premium::before {
  background: linear-gradient(90deg, rgba(200, 125, 92, 0.9), rgba(200, 125, 92, 0.2)) !important;
}

.cat-color-green .product-card-premium::before {
  background: linear-gradient(90deg, rgba(74, 107, 92, 0.9), rgba(74, 107, 92, 0.2)) !important;
}
/* ================================================
   COLLECTION STORYTELLING V2 - ULTRA CLASSE
   ================================================ */

/* === HERO === */
.collection-hero-story {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.collection-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, 
    rgba(45, 74, 92, 0.3) 0%, 
    transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.gradient-blue-bg .collection-hero-bg {
  background: radial-gradient(ellipse at center top, rgba(45, 74, 92, 0.3) 0%, transparent 70%);
}

.gradient-copper-bg .collection-hero-bg {
  background: radial-gradient(ellipse at center top, rgba(200, 125, 92, 0.3) 0%, transparent 70%);
}

.gradient-green-bg .collection-hero-bg {
  background: radial-gradient(ellipse at center top, rgba(74, 107, 92, 0.3) 0%, transparent 70%);
}

.collection-hero-content-story {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.collection-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.collection-title-story {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.collection-subtitle-story {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.7;
  line-height: 1.6;
  font-weight: 300;
}

.collection-hero-image-story {
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 300px;
  height: 300px;
  opacity: 0.15;
  pointer-events: none;
  animation: floatImage 6s ease-in-out infinite;
}

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

.collection-hero-image-story img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(2px);
}

/* === BIO SECTION === */
.collection-bio {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.collection-bio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bio-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.bio-text {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
  opacity: 0.75;
}

.bio-text p {
  margin-bottom: 1.5rem;
}

/* === PRODUITS STORY === */
.collection-products-story {
  padding: 4rem 0;
}

.product-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 8rem;
  padding: 0 3rem;
  position: relative;
}

.product-story-block::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(255,255,255,0.1) 20%, 
    rgba(255,255,255,0.1) 80%, 
    transparent 100%);
  transform: translateX(-50%);
}

.product-story-block.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.product-story-block.reverse > * {
  direction: ltr;
}

/* Visual */
.product-story-visual {
  position: relative;
}

.story-visual-wrapper {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-story-block:hover .story-visual-wrapper {
  border-color: rgba(255,255,255,0.15);
  transform: scale(1.02);
}

.story-product-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
/* ================================================
   PAGES CATÉGORIES - VRAIMENT E-COMMERCE PRO
   ================================================ */

/* Hero simple et pro */
.collection-hero-story {
  padding: 4rem 2rem 3rem;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.collection-hero-content-story {
  max-width: 700px;
  margin: 0 auto;
}

.collection-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.8rem;
}

.collection-title-story {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.collection-subtitle-story {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.7;
  font-weight: 300;
  margin: 0;
}

.collection-description-full {
  display: none; /* Simplifié */
}

.collection-bio {
  display: none; /* Simplifié */
}

/* SECTION PRODUITS - GRILLE SHOPIFY STYLE */
.collection-products-story {
  padding: 3rem 0 4rem;
  background: #000000;
}

.collection-products-story .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* GRILLE PROPRE */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Masquer anciens blocs */
.product-story-block,
.product-gallery-card,
.product-ecommerce-card {
  display: none !important;
}

/* CARD PRODUIT PRO */
.product-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* IMAGE CONTAINER */
.product-card-image {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Ratio 1:1 */
  background: rgba(255,255,255,0.01);
  overflow: hidden;
}

.product-card-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* BADGE STOCK */
.product-card-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.7rem;
  padding: 0.35rem 0.7rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-badge.in-stock {
  color: rgba(150, 200, 150, 1);
  border-color: rgba(150, 200, 150, 0.3);
}

.product-card-badge.out-of-stock {
  color: rgba(200, 150, 150, 0.8);
  border-color: rgba(200, 150, 150, 0.3);
}

/* CONTENU */
.product-card-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* TITRE */
.product-card-title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
}

.product-card-title a:hover {
  opacity: 0.8;
}

/* DESCRIPTION COURTE */
.product-card-description {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.6;
  margin-bottom: 1rem;
  flex: 1;
}

/* FOOTER PRIX + BOUTON */
.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.product-card-price {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
}

.product-card-cta {
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.product-card-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}

/* CTA FINAL */
.collection-cta-final {
  padding: 3rem 0;
  text-align: center;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-final-text {
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.5;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .collection-hero-story {
    padding: 3rem 1.5rem 2rem;
  }
  
  .collection-products-story {
    padding: 2rem 0 3rem;
  }
  
  .collection-products-story .container {
    padding: 0 1.5rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
  }
  
  .product-card-content {
    padding: 1rem;
  }
  
  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .product-card-cta {
    text-align: center;
  }
}

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