@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap");

:root {
  --bg: #363fff;
  --bg2: #3138c6;
  --title: #293245;
  --secondary-light: rgb(34, 124, 112, 0.2);
  --secondary-light-2: rgb(127, 183, 126, 0.1);
  --white: #fff;
  --black: #393e46;
  --green: #00FF96;
  --blue: #00A2FF;

  --shadow: 0px 2px 8px 0px var(--secondary-light);
}

*{
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* accessoires Section */
.content {
  display: flex;
  padding: 300px 10% 50px 10%;
  background: linear-gradient(180deg, #124559, #16184f);
  color: var(--white);
  text-align: center;
  gap: 60px;
  flex-direction: column;
  justify-content: space-around;
}

.product-detail {
  display: flex;
  gap: 50px;
  padding: 300px 10% 50px 10%;
  background: linear-gradient(180deg, #124559, #16184f);
  color: var(--white);
  flex-wrap: wrap;
}

.product-gallery {
  flex: 1;
  min-width: 300px;
}

.product-gallery .main-image {
  width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.thumbnail-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbnail-row img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumbnail-row img:hover {
  border: 2px solid #fff;
}

.product-info {
  flex: 1;
  min-width: 300px;
  color: var(--white);
}

.product-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #d9d9d9;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.current-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
}

.discount {
  background-color: crimson;
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.availability {
  margin: 10px 0;
  color: #8fff8f;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.actions select {
  padding: 6px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

.btn, a {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
  text-decoration: none;
}

.add-to-cart {
  background-color: #fdd835;
  color: #000;
  text-align: center;
}

.add-to-cart:hover {
  background-color: #ffeb3b;
}

.buy-now {
  background-color: #1976d2;
  color: white;
}

.buy-now:hover {
  background-color: #1565c0;
}

.extra-info {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #ccc;
}
