
/* -------------------------
   ✅ MAIN PRODUCT IMAGE 
------------------------- */
.p_img {
  width: 100%;
  position: relative;
  max-width: 600px;
  margin: auto;
}

.p_img img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 5px;
}

/* -------------------------
   ✅ SOLD TAG
------------------------- */
/*.sold {*/
/*  position: absolute;*/
/*  top: 10px;*/
/*  left: 10px;*/
/*}*/

/*.sold img {*/
/*  width: 90px;*/
/*}*/

/* -------------------------
   ✅ PICLIST (SMALL IMAGES)
------------------------- */
.piclist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.piclist li {
  margin: 8px;
}

.piclist img {
    width: 150px;
    height: 150px;
    padding: 6px;
    object-fit: contain;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: 0.3s;
}

.piclist img:hover {
  transform: scale(1.05);
}

/* -------------------------
   ✅ PRODUCT TABLE
------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table td {
  padding: 10px;
  border: 1px solid #000;
  background: #fafafa;
}

/* -------------------------
   ✅ ENQUIRY BUTTON
------------------------- */
.enq {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 25px 0;
}

.enq img {
  max-width: 250px;
  margin-top: 20px;
  transition: 0.3s;
  display: block;
}


.enq img:hover {
  transform: scale(1.1);
}

/* -------------------------
   ✅ REMOVE PAGE SCROLL WHEN LIGHTBOX OPENS
------------------------- */
.no-scroll {
  overflow: hidden !important;
  touch-action: none !important;
}

/* -------------------------
   ✅ MOBILE FIXES
------------------------- */
@media (max-width: 600px) {
  .heading {
    font-size: 26px;
  }

  .sold img {
    width: 70px;
  }

.piclist img {
    width: 150px;
    height: 150px;
    padding: 6px;
    object-fit: contain;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: 0.3s;
}

}

/* ✅ Main image container */
.p_img {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.p_img img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  padding: 5px;
  background: #fff;
  border-radius: 4px;
}

/* ✅ Thumbnail images */
.piclist {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: center;
}

.piclist li {
  display: inline-block;
  margin: 10px;
}


.piclist li img:hover {
  transform: scale(1.05);
}

/* ✅ VIEW ALL BUTTON */
.view-all-box {
  text-align: center;
  margin: 20px 0 40px 0;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ed1d25;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-all-btn:hover {
  background: #c8161d;
  transform: scale(1.05);
}