  /* ================= BASE ================= */
  /* body {
    margin: 0;
    font-family: Poppins, sans-serif;
    background: #f7f7f7;
  }
  html, body {
  width: 100%;
  overflow-x: hidden;
} */


  .page {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 60px;
  }

  /* ================= LAYOUT ================= */
  .product {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 50px;
  }

  /* ================= IMAGE ZOOM ================= */
  .image-area {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

  .zoom-lens {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid #d32f2f;
    background: rgba(255,255,255,0.35);
    display: none;
    pointer-events: none;
  }

.zoom-result {
  position: absolute;
  top: 0;
  left: calc(100% + 20px);
  width: 420px;
  height: 420px;
  display: none;
  background-repeat: no-repeat;
}


  /* ================= THUMBNAILS ================= */
  .thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }

  /* ================= PRODUCT INFO ================= */
  .info h1 {
    font-size: 30px;
    margin: 0 0 8px;
  }

  .meta {
    color: #777;
    font-size: 14px;
  }

  .desc {
    margin: 20px 0;
    color: #444;
    line-height: 1.7;
  }

  /* TAGS */
  .tags span {
    display: inline-block;
    background: #eee;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin: 4px 6px 0 0;
  }

  /* SPEC TABLE */
  .specs {
    margin-top: 25px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
  }

  .specs div {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
  }

  /* PACKAGING BOX */
  .packaging {
    margin-top: 30px;
    /* background: #fff; */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    display: grid;
    gap: 50px;
  }
   .packaging > div{
    background-color: white;
    padding: 10px;
    border-radius: 12px;
  } 

  .packaging h3 {
    margin-top: 0;
    color: #d32f2f;
  }

  .packaging li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* ===== ENQUIRY BUTTON ===== */
.enquiry-btn {
  margin-top: 25px;
  padding: 14px 28px;
  font-size: 15px;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.enquiry-btn:hover {
  background: #b71c1c;
}

/* ===== MODAL OVERLAY ===== */
.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ===== MODAL BOX ===== */
.enquiry-modal {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* FORM */
.enquiry-modal h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #d32f2f;
}

.enquiry-modal input,
.enquiry-modal textarea {
  width: 93%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.enquiry-modal button[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

.enquiry-modal button[type="submit"]:hover {
  background: #b71c1c;
}

.thumbs img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
}

.thumbs img.active {
  border-color: #d32f2f;
  box-shadow: 0 0 0 2px rgba(211,47,47,0.25);
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
  margin-top: 80px;
  padding: 40px 20px;
  background: #fff;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

/* SLIDER */
.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

/* CARD */
.related-card {
  min-width: 260px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.related-card h4 {
  margin: 12px 0 6px;
  font-size: 16px;
}

.related-card p {
  font-size: 13px;
  color: #666;
}

/* NAV BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: #d32f2f;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* Pause cursor hint */
.slider-wrapper:hover {
  cursor: grab;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.slider {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
}

.slider.dragging {
  cursor: grabbing;
}

.product-enquiry-widget{
  display: flex;
  align-items: center;
}

.product-enquiry-widget > a{
  width: 63px;
  height: 51px;
  margin-top: 10px;
  margin-left: 20px;
}


/* MOBILE */
@media (max-width: 768px) {
  .related-card {
    min-width: 200px;
  }

  .product-enquiry-widget > a{
    width: 82px;
    height: 59px;
  }
}

  /* MOBILE */
  @media (max-width: 900px) {
    .product {
      grid-template-columns: 1fr;
    }

    .zoom-result,
    .zoom-lens {
      display: none !important;
    }
  }
