.hero-small {
    height: 45vh;
    background: url("../../images/boutique.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FAF9F6;
    text-align: center;
}

.hero-small-content {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 60px 70px;
    max-width: 600px;
    text-align: center;
}

.hero-small h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.hero-small p {
    font-size: 17px;
    margin-top: 10px;
    opacity: 0.8;
}

    .boutique-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 60px;
      padding: 80px 10%;
    }

    /* FILTRES */
    .filters {
      position: sticky;
      top: 100px;
      height: fit-content;
    }

    .filters h3 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #6E6A66;
      margin-bottom: 20px;
      font-family: Arial, sans-serif;
      font-weight: bold;
    }

    .filter-group {
      margin-bottom: 35px;
      border-bottom: 1px solid #eae7e1;
      padding-bottom: 25px;
    }

    .filter-group h4 {
      font-size: 14px;
      color: #1F3D2B;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .filter-group label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #4A4A4A;
      margin-bottom: 10px;
      cursor: pointer;
      transition: color 0.2s;
    }

    .filter-group label:hover {
      color: #1F3D2B;
    }

    .filter-group input[type="checkbox"] {
      accent-color: #1F3D2B;
      width: 15px;
      height: 15px;
    }

    .price-range {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .price-range input {
      width: 80px;
      padding: 8px;
      border: 1px solid #eae7e1;
      font-size: 13px;
      color: #1F3D2B;
      outline: none;
    }

    /* PRODUITS */
    .products-area {}

    .products-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .products-top span {
      font-size: 14px;
      color: #6E6A66;
    }

    .products-top select {
      padding: 10px 15px;
      border: 1px solid #eae7e1;
      font-size: 14px;
      color: #1F3D2B;
      outline: none;
      cursor: pointer;
      background: white;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

.product-card {
  background: white;
  border: 1px solid #eae7e1;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(31, 61, 43, 0.12);
  border-color: #D8A78A;
}

    .product-card .badge-new {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #1F3D2B;
      color: #FAF9F6;
      font-size: 11px;
      padding: 4px 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

/* Badge */
.product-card .badge-unique {
  position: absolute;
  top: 12px;
  left: 0;               /* colle au bord gauche */
  background: #D8A78A;
  color: white;
  font-size: 10px;
  padding: 5px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 1;
  /* petit coup de style "ruban" */
  border-radius: 0 3px 3px 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.product-info {
  padding: 16px 18px 12px;
  flex: 1;               /* pousse les actions tout en bas */
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-info .category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #D8A78A;
  font-weight: bold;
}

.product-info h4 {
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  color: #1F3D2B;
  margin: 4px 0 6px;
  line-height: 1.3;
}

.product-info .price {
  font-size: 20px;
  font-weight: bold;
  color: #1F3D2B;
  margin-top: 8px;
  border-left: 3px solid #D8A78A;
  padding-left: 10px;
}

.product-info .size {
  font-size: 11px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-info .size-tag {
  font-size: 12px;
  color: #6E6A66;
}

.product-actions {
  display: flex;
  gap: 0;
  border-top: 1px solid #eae7e1;
}

.btn-cart {
  flex: 1;
  padding: 14px;
  background: #1F3D2B;      /* vert foncé = plus d'impact */
  color: #FAF9F6;
  border: none;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.25s ease;
  text-align: center;
}

.btn-cart:hover:not(:disabled) {
  background: #D8A78A;
  color: white;
}


    /* PAGINATION */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 60px;
    }

    .pagination button {
      width: 40px;
      height: 40px;
      border: 1px solid #eae7e1;
      background: white;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s;
      color: #1F3D2B;
    }

    .pagination button.active,
    .pagination button:hover {
      background: #1F3D2B;
      color: #FAF9F6;
      border-color: #1F3D2B;
    }
    
    .product-card a {
  text-decoration: none;
  color: inherit;
}
.product-title-link h4:hover {
  text-decoration: underline;
}

.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.stock-dot.green { background: #4CAF50; }
.stock-dot.red   { background: #e53935; }

/* ================================================
   RESPONSIVE — boutique.css
   ================================================ */

/* ── Tablette (max 1024px) ── */
@media (max-width: 1024px) {

  .boutique-layout {
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 60px 6%;
  }

  /* Produits : 3 colonnes → 2 colonnes */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

  .hero-small {
    height: 40vh;
  }

  .hero-small-content {
    padding: 36px 30px;
    max-width: 90%;
  }

  /* Filtres cachés → layout 1 colonne */
  .boutique-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 5%;
  }

  /* Filtres : plus sticky, affichés en haut */
  .filters {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .filter-group {
    flex: 1 1 160px;
    border-bottom: none;
    border: 1px solid #eae7e1;
    padding: 16px;
    margin-bottom: 0;
  }
}

/* ── Mobile (max 600px) ── */
@media (max-width: 600px) {

  .hero-small-content {
    padding: 24px 20px;
  }

  .boutique-layout {
    padding: 36px 4%;
  }

  /* Produits : 2 colonnes → 1 colonne */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .products-top select {
    width: 100%;
  }

  /* Carte produit */
  .product-info h4 {
    font-size: 15px;
  }

  .product-info .price {
    font-size: 17px;
  }

  .btn-cart {
    padding: 12px;
    font-size: 12px;
  }

  /* Pagination */
  .pagination {
    gap: 6px;
    margin-top: 40px;
  }

  .pagination button {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}
