
.buynow_btn {
  display: inline-flex;
  align-items: center;
  gap: 7px; /* space between icon and text */
  background-color: red;
  color: #FFFFFF !important;
  padding: 10px 12px 10px 12px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s;
position: relative;
    right: 30px;

}

.buy-now-btn:hover {
  background-color: darkred;
}

/**********/



/* Conteneur produit */
.product-card {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  padding-top: 60px;
  padding-bottom: 80px;
  padding-left: 10px;
  padding-right: 10px;
}

/* Galerie */
.product-gallery {
  flex: 1 1 420px;
}
.product-gallery .main-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.product-gallery .thumbs img {
  width: 60px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s;
  display: inline !important;
}

.product-gallery .thumbs img:hover {
  transform: scale(1.1);
}

/* Infos produit */
.product-info {
  flex: 1 1 300px;
}
.product-title {
  font-size: 24px;
  margin-bottom: 10px;
}
.product-description {
  margin-bottom: 20px;
}

/* Bouton Buy Now */
.buy-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: red;
  color: #FFFFFF !important;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: background-color 0.3s;
  cursor: pointer;
}
.buy-now-btn:hover {
  background-color: darkred;
}
