/* ================= PRODUCT LAYOUT ================= */

.product-detail {
  display: flex;
  gap: 40px;
  padding: 40px;
}

/* ================= SLIDER ================= */

.product-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 380px;
  touch-action: pan-y;
}

.slides {
  position: relative;
}

.slides img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  border-radius: 6px;
}

.slides img.active {
  opacity: 1;
  position: relative;
}

/* Slider arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}

.dot.active {
  background: #3E2723;
}

/* ================= PRODUCT INFO ================= */

.info h1 {
  font-size: 32px;
  color: #3E2723;
}

.price {
  font-size: 24px;
  color: #1C1C1C;
}

.old-price {
  text-decoration: line-through;
  margin-left: 10px;
  color: #888;
}

.save {
  color: #D32F2F;
  margin-left: 10px;
}

.specs {
  list-style: none;
  padding: 15px 0;
}

.cta-buttons .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  border-radius: 4px;
}

.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.btn.enquiry {
  background: #8D6E63;
  color: #fff;
}

/* ================= ENQUIRY ================= */

.enquiry-section {
  padding: 30px 40px;
  background: #fff;
  margin-top: 40px;
}

.enquiry-section input,
.enquiry-section textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #ccc;
}

/* ================= RELATED ================= */

.related-products {
  padding: 40px;
}

.related-products .grid {
  display: flex;
  gap: 15px;
}

.related-products .card {
  background: #F9F7F5;
  padding: 15px;
  text-decoration: none;
  color: #1C1C1C;
}