.flash-section .product-card {
  display: flex;
  flex-direction: column;
  min-width: 155px;
  max-width: 155px;
  width: 155px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
}

.flash-section .product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.flash-section {
  padding: 0 0 1.5rem 0;
  background: var(--white);
  border-bottom: 8px solid var(--gray-light);
}

.flash-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 14px 12px;
  margin-bottom: 0;
}

.flash-section .section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.flash-section .section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

/*Tablettes (Mode paysage) et petits ordinateurs */
@media (min-width: 769px) {
  .flash-section {
    padding: 0 0 2rem 0;
  }
  .flash-section .section-title { font-size: 20px; }
  
  .flash-section .products-scroll {
    display: flex !important;
    overflow-x: auto;
    padding: 0 32px 8px;
    gap: 16px;
  }
  
  .flash-section .product-card {
    min-width: 200px;
    max-width: 200px;
    width: 200px;
  }
  
  .flash-section .product-img { height: 220px; }
  .flash-section .product-name { font-size: 13px; }
  .flash-section .product-price ins { font-size: 15px; }
  .flash-section .add-btn { font-size: 12px; padding: 10px 8px; }

  .flash-section .section-header {
    padding: 24px 32px 16px;
  }
  .flash-section .products-scroll {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 14px 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.flash-section .products-scroll::-webkit-scrollbar {
  display: none;
}

.flash-section .product-img {
  position: relative;
  width: 100%;
  height: 145px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.flash-section .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flash-section .product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  z-index: 1;
}

.flash-section .product-wish {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.flash-section .product-wish svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #bbb;
  stroke-width: 2;
}

.flash-section .product-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}
.flash-section .product-name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.flash-section .product-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.flash-section .star-icon {
  width: 12px;
  height: 12px;
  fill: #F59E0B;
  stroke: none;
}
.flash-section .rating-val {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
}
.flash-section .rating-count {
  font-size: 11px;
  color: #aaa;
}

.flash-section .product-price { line-height: 1.3; }
.flash-section .product-price del {
  font-size: 11px;
  color: #aaa;
  display: block;
}
.flash-section .product-price ins {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}

.flash-section .add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 8px 4px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
  white-space: nowrap;
  transition: background 0.15s;
}
.flash-section .add-btn:hover,
.flash-section .add-btn:active {
  background: #d94f00;
  color: #fff;
}
}


/*Ordinateurs portables et écrans standards */
@media (min-width: 1025px) {
  /* Votre CSS ici */
}