.product-detail {
  font-family: 'Poppins', sans-serif;
}

/* IMAGEN */
.main-img {
 background: #f3f3f3;
  padding: 30px;
  max-width: 450px;
  margin: auto;
}

.main-img img {
  width: 100%;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbs img {
  width: 70px;
  background: #eee;
  padding: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.thumbs img:hover {
  border: 2px solid #ff3c3c;
}

/* PRECIO */
.price {
  background: #111;
  color: #fff;
  padding: 6px 12px;
  font-weight: bold;
}

.old-price {
  margin-left: 10px;
  color: #999;
  text-decoration: line-through;
}

/* TITULO */
.product-title {
  font-size: 40px;
  font-weight: 800;
}

/* RATING */
.rating i {
  color: red;
}

/* DESC */
.desc {
  color: #555;
}

/* CANTIDAD */
.qty-box {
  display: flex;
  margin: 20px 0;
}

.qty-box button {
  width: 40px;
  height: 40px;
  border: none;
  background: #333;
  color: #fff;
}

.qty-box input {
  width: 60px;
  text-align: center;
}

/* BOTONES */
.actions {
  display: flex;
  gap: 10px;
}

.btn-cart {
  background: #ff3c3c;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
}

.btn-dark2 {
  background: #222;
  color: #fff;
  border: none;
  padding: 12px;
}



.product-meta {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

/* LABEL */
.meta-label {
  font-weight: 600;
  color: #111;
}

/* VALOR */
.meta-value {
  color: #777;
}

/* LINKS */
.meta-link,
.meta-tag {
  color: #777;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.meta-link:hover,
.meta-tag:hover {
  color: #ff3c3c;
}

/* ESPACIADO */
.product-meta p {
  margin-bottom: 6px;
}

.meta-tag {
  background: #f3f3f3;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 5px;
  display: inline-block;
}