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

body{
  font-family:"Inter", sans-serif;
  overflow-x:hidden;
  background:white;
}

/* ========================================== FIN MENU  ==================================== */

.hero-split{
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-split img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.products {
  padding: 40px 40px;
}

.products h3 {
  font-size: 22px;        
  font-weight: 600;       
  margin: 0 0 8px;        
  letter-spacing: 0.3px;  
  color: #111;   
  margin: 0 0 15px;
  line-height: 1.4;        
}

.product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 10px
}

.product-card {
  cursor: pointer;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #f7f7f7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

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

.product-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e60023;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  padding-top: 12px;
}

.product-info h4 {
   margin: 0 0 6px;
  font-size: 14px;  
  font-weight: 700; 
  line-height: 1.3;
}

.product-info p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #666;
}

.price,
.new {
  font-size: 16px;
  font-weight: 500;
}

.old {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume {
  font-size: 13px;
  color: #888;
}

/* =========================
   PRODUCTS GRID FIX
========================= */

.product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD STYLE */
.product-card {
  cursor: pointer;
  transition: 0.3s ease;
}

/* IMAGE FORMAT CLEAN */
.product-image {
  width: 100%;
  aspect-ratio: 3 / 4; /* 👈 IMPORTANT (format e-commerce) */
  overflow: hidden;
  background: #f7f7f7;
  border-radius: 12px;
}

/* IMAGE FIT */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-4px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 900px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-image {
    aspect-ratio: 1 / 1; /* carré sur mobile */
  }
}
  /* ========================================== BRAND ============================== */


.brands {
  padding: 50px 40px;
}

.brand-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  margin-top: 10px
}

.brand-scroll::-webkit-scrollbar {
  display: none;
}

.brand-scroll span {
  white-space: nowrap;
  background: #f1f1f1;
  padding: 12px 20px;
  font-size: 14px;
}