/* =========================
   PRODUCT LISTING (GRID)
========================= */
.product-list{
  padding: 70px 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.product-list__wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.product-list__head{
  text-align: center;
  margin-bottom: 26px;
}

.product-list__title{
  font-size: clamp(26px, 3vw, 44px);
  margin: 0 0 8px;
  font-weight: 950;
  color: #07112a;
}

.product-list__sub{
  margin: 0;
  color: rgba(7,17,42,0.65);
  font-weight: 650;
  line-height: 1.6;
}

.product-list__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.product-list__card{
  border: none;
  background: #fff;
  text-align: left;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(7,17,42,0.10);
  border: 1px solid rgba(10,61,255,0.10);
  transition: transform .2s ease, box-shadow .2s ease;
  padding: 0;
}

.product-list__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(7,17,42,0.14);
}

.product-list__card img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: #eaf6ff;
}

.product-list__cardBody{
  padding: 14px 14px 16px;
}

.product-list__cardBody h4{
  margin: 0 0 6px;
  font-weight: 950;
  color: #07112a;
  font-size: 16px;
}

.product-list__cardBody p{
  margin: 0 0 10px;
  color: rgba(7,17,42,0.65);
  font-weight: 650;
  font-size: 13px;
}

.product-list__cardBody span{
  display: inline-block;
  font-weight: 900;
  color: #0a3dff;
  font-size: 13px;
}

/* Responsive grid */
@media (max-width: 1100px){
  .product-list__grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px){
  .product-list__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .product-list__grid{ grid-template-columns: 1fr; }
  .product-list__card img{ height: 365px; }
}


/* =========================
   PRODUCT DETAIL (SECTION1)
========================= */
.product-section1{
  padding: 78px 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.product-section1__wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

/* Gallery */
.product-section1__gallery{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-section1__big{
  border-radius: 22px;
  overflow: hidden;
  background: #eaf6ff;
  box-shadow: 0 18px 60px rgba(7,17,42,0.10);
  min-height: 460px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-section1__big img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease, transform .45s ease;
}

.product-section1__big img.product-section1__swap{
  opacity: 0;
  transform: scale(1.03);
}

.product-section1__thumbs{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-section1__thumb{
  border: 2px solid transparent;
  background: #fff;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor:pointer;
  width: 92px;
  height: 76px;
  box-shadow: 0 10px 28px rgba(7,17,42,0.10);
  transition: transform .2s ease, border-color .2s ease;
}




.product-section1__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.product-section1__thumb:hover{ transform: translateY(-2px); }
.product-section1__thumb.active{ border-color: rgba(10,61,255,0.70); }

/* Info */
.product-section1__topRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-section1__badge{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18,163,84,0.12);
  border: 1px solid rgba(18,163,84,0.22);
  color: #0a7a3b;
  font-weight: 900;
  font-size: 13px;
}

.product-section1__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(10,61,255,0.14);
  background: rgba(10,61,255,0.06);
  cursor:pointer;
  font-weight: 950;
  color:#0a3dff;
}

.product-section1__title{
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.6px;
  font-weight: 950;
  color: #07112a;
  margin: 0 0 12px;
}

.product-section1__meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.product-section1__sku{
  font-weight: 900;
  color: rgba(7,17,42,0.60);
  font-size: 13px;
}

.product-section1__price{
  font-weight: 950;
  color: #0a3dff;
  font-size: 18px;
}

.product-section1__desc{
  color: rgba(7,17,42,0.72);
  line-height: 1.75;
  /* font-weight: 650; */
  margin: 12px 0 14px;
}

.product-section1__highlights{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 10px 0 18px;
}

.product-section1__point{
  background: rgba(10,61,255,0.05);
  border: 1px solid rgba(10,61,255,0.10);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 850;
  color: #0b1a3a;
  font-size: 13px;
}

.product-section1__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.product-section1__btn{
  border:none;
  cursor:pointer;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 950;
  letter-spacing: .2px;
  transition: .2s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.product-section1__btnPrimary{
  color:#fff;
  background: linear-gradient(90deg, #0a3dff, #00b7ff);
  box-shadow: 0 18px 30px rgba(10,61,255,0.18);
  flex: 1;
  min-width: 220px;
}
.product-section1__btnPrimary:hover{ transform: translateY(-2px); }

.product-section1__btnGhost{
  background: transparent;
  border: 1px solid rgba(10,61,255,0.20);
  color:#0a3dff;
  flex: 1;
  min-width: 180px;
}
.product-section1__btnGhost:hover{
  transform: translateY(-2px);
  background: rgba(10,61,255,0.05);
}

/* Trust */
.product-section1__trust{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-section1__trustItem{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(7,17,42,0.04);
  border: 1px solid rgba(7,17,42,0.08);
  font-weight: 900;
  color: rgba(7,17,42,0.75);
  font-size: 12px;
}

/* Responsive detail */
@media (max-width: 980px){
  .product-section1__wrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .product-section1__big{ min-height: 360px; }
}
@media (max-width: 560px){
  .product-section1__highlights{
    grid-template-columns: 1fr;
  }
  .product-section1__thumb{
    width: 80px;
    height: 64px;
  }
}


/* //////////////////////////////////// product model ////////////////////////// */
/* ===== Enquiry Modal Base ===== */
/* ===== Modal Base ===== */
.enquiry-modal{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}
.enquiry-modal.show{ display:block; }

.enquiry-modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
}

/* Fixed size, never cut */
.enquiry-modal__box{
  position: relative;
  width: min(1000px, 92vw);
  max-height: 88vh;
  margin: 6vh auto;
  background:#fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  z-index: 2;
}

/* Close always clickable */
.enquiry-modal__close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.95);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.enquiry-modal__header{
  padding: 18px 20px 14px;
  border-bottom: 1px solid #eee;
}
.enquiry-modal__header h2{
  margin:0;
  font-size: 20px;
}
.enquiry-modal__sub{
  margin:6px 0 0;
  color:#666;
  font-size: 13px;
}

/* ✅ Scroll inside modal only */
.enquiry-modal__body{
  padding: 18px 20px 18px;
  overflow: auto;
  max-height: calc(88vh - 72px);
}

/* ===== Grid layout ===== */
.enquiry-modal__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* LEFT */
.enquiry-left{
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.enquiry-left__imgWrap{
  background:#f7f7f7;
  height: 320px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.enquiry-left__imgWrap img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.enquiry-left__info{
  padding: 14px 14px 16px;
}
.enquiry-left__title{
  margin: 0 0 6px;
  font-size: 18px;
}
.enquiry-left__sku{
  margin:0 0 10px;
  color:#666;
  font-size: 13px;
}
.enquiry-left__priceRow{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f6f7ff;
  border: 1px solid #e9eaff;
  margin-bottom: 12px;
}
.enquiry-left__price{
  font-weight: 800;
  font-size: 16px;
}
.enquiry-left__notes{
  display:grid;
  gap: 8px;
}
.enquiry-left__note{
  font-size: 13px;
  color:#222;
  padding: 8px 10px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
}

/* RIGHT */
.enquiry-right{
  display:grid;
  gap: 16px;
}
.enquiry-right__card{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}
.enquiry-right__title{
  margin:0 0 10px;
  font-size: 15px;
}
.enquiry-right__qr{
  display:flex;
  justify-content:center;
  align-items:center;
  background:#f7f7f7;
  border:1px dashed #ddd;
  border-radius: 14px;
  padding: 12px;
}
.enquiry-right__qr img{
  width: min(260px, 100%);
  height: auto;
  border-radius: 12px;
}
.enquiry-right__hint{
  margin: 10px 0 0;
  color:#666;
  font-size: 13px;
}

/* WhatsApp Button (proper button look, not link) */
.enquiry-whatsappBtn{
  width: 100%;
  margin-top: 14px;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: #17a34a;
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(23,163,74,.22);
}
.enquiry-whatsappBtn:hover{
  transform: translateY(-1px);
}
.enquiry-whatsappBtn__icon{
  font-size: 18px;
}

.enquiry-modal__foot{
  margin: 10px 0 0;
  font-size: 12px;
  color:#666;
  text-align:center;
}

/* ✅ Mobile responsive */
@media (max-width: 768px){
  .enquiry-modal__box{
    width: 94vw;
    margin: 4vh auto;
    max-height: 92vh;
  }
  .enquiry-modal__body{
    max-height: calc(92vh - 72px);
  }
  .enquiry-modal__grid{
    grid-template-columns: 1fr;
  }
  .enquiry-left__imgWrap{ height: 260px; }
}
