/* --------------------------
   GLOBAL
-------------------------- */

body {
  background: #f4f5f7;

  min-height: 100dvh;
  font-family: Arial, Helvetica, sans-serif;
}

/* CARD */

.product-card {
  border: none;

  border-radius: 24px;

  overflow: hidden;
}

/* IMAGE */

.product-image {
  width: 100%;

  /* height: 100%; */

  object-fit: cover;
}

.cart-thumb{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
}
/* CONTENT */

.product-content {
  padding: 24px;

  display: flex;

  flex-direction: column;

  height: 100%;
}

/* SIZES */

.sizes-container {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.size-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.size-btn-liste {
  width: auto;
  min-width: 60px;
  white-space: nowrap;
  /* height: 40px; */

  border-radius: 16px;

  border: 2px solid #198754;

  background: white;

  font-weight: bold;
}

.size-btn-liste.selected {
  background: rgb(116, 104, 104);
}

.size-btn-liste.out {
  border-color: #dcdcdc;

  color: #b5b5b5;

  background: #f8f9fa;
  cursor: not-allowed;
}

/* .size-btn {

    width: 40px;

    height: 40px;

    border-radius: 16px;

    border: 2px solid #198754;

    background: white;

    font-weight: bold;
}
.size-btn.selected {


    background: rgb(116, 104, 104);


} */

.alert-primary {
  padding-bottom: 5px;
  padding-top: 5px;
}

/* .size-btn.out {
  border-color: #dcdcdc;

  color: #b5b5b5;

  background: #f8f9fa;
} */

/* BUTTON */

.add-cart-btn {
  margin-top: auto;

  border-radius: 14px;

  padding: 14px;
}

/* MOBILE */

@media (max-width: 767px) {
  .product-image {
    width: 75%;
    height: 260px;
  }

  .sizes-container {
    justify-content: center;
  }
}

/* TABLET */

@media (min-width: 768px) and (max-width: 1199px) {
  .product-image {
    min-height: 100%;
  }
}

/* DESKTOP */

@media (min-width: 1200px) {
  .product-card {
    min-height: 100%;
  }
}

.filter-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 4px;

  /* améliore le scroll sur mobile */
  -webkit-overflow-scrolling: touch;

  /* optionnel : cache la scrollbar */
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-scroll button {
  white-space: nowrap;
  flex: 0 0 auto;
  border-radius: 999px;
  /* style pill moderne */
}

.categories-scroll {

    display: flex;

    gap: 8px;

    overflow-x: auto;

    overflow-y: hidden;

    padding-bottom: 8px;

    scrollbar-width: thin;

    -webkit-overflow-scrolling: touch;

}

.categories-scroll::-webkit-scrollbar {

    height: 6px;

}

.categories-scroll a {

    flex: 0 0 auto;

    white-space: nowrap;

    border-radius: 20px;

}