
  /* ---- PRODUCT PAGE CUSTOM STYLE ---- */
  .product-cards {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 20px;
  }
  .main-image {
    border-radius: 16px;
    height:450px;
    max-height: 450px;
    object-fit: cover;
    width: 100%;
   
    transition: transform 0.3s ease;
  }

  
 
  .main-image:hover {
    transform: scale(1.03);
  }
  /* Zoomed image container */
  .zoom-wrap { position: relative; overflow: hidden; border-radius: 16px; }
  .zooming .main-image { transition: none; }
  .thumbnail-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none; /* hide scrollbar */
    -webkit-overflow-scrolling: touch;
    padding: 5px 0;
    flex: 1;
}

.thumbnail-container::-webkit-scrollbar {
    display: none; /* hide scrollbar */
}

.thumbnail-img {
    flex: 0 0 auto;
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-img:hover,
.thumbnail-img.active {
    border-color: #1e1e2f;
    transform: scale(1.05);
}
#zoomContainer video {
    object-fit: contain;
}

#zoomContainer video:not([src]) {
    display: none;
}

#zoomContainer video:not([src]) {
    display: none !important;
}

/* Scroll buttons */
.thumb-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(0,0,0,0.3);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-scroll-btn.left {
    left: 0;
}

.thumb-scroll-btn.right {
    right: 0;
}

.thumb-scroll-btn:hover {
    background: rgba(0,0,0,0.6);
}

/* Responsive: smaller thumbnails on small screens */
@media (max-width: 768px) {
    .thumbnail-img {
        width: 70px;
        height: 70px;
    }
}

  .price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #1e1e2f;
  }
  .old-price {
    text-decoration: line-through;
    font-size: 16px;
    color: #777;
  }
  .offer-badge {
    background: #d4edda;
    color: #155724;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    padding: 5px 12px;
  }
  .badge-bv, .badge-bonus {
    /* border-radius: 6px; */
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.05);
  }
  .badge-bv { background-color: #e3f8f6; }
  .badge-bonus { background-color: #fff3cd; }
  .deal-badge-active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .deal-badge-expired {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(127, 140, 141, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .add-cart-btn {
    font-size: 18px;
    font-weight: 600;
    padding: 12px;
    border-radius: 12px;
    transition: transform 0.2s ease;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  .add-cart-btn:hover {
    background-color: crimson;
  }

   /* Custom Styling for Unique Look */
   .btn-add-cart {
  border: 2px solid #1e1e2f;
  background: transparent;
  color: #222;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-add-cart:hover {
  background:#1e1e2f;
  color: #fff;
}
.btn-buy-now {
  background: #1e1e2f;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s ease;
}

.btn-buy-now:hover {
  background: #1e1e2f;
  transform: translateY(-2px);
}

  /* .btn-buy-now { background: linear-gradient(90deg,#ff6b00,#ff3b30); color: #fff; font-weight: 800; border: none; border-radius: 12px; box-shadow: 0 8px 18px rgba(255,107,0,.25); }
  .btn-buy-now:hover { filter: brightness(1.02); }
  .btn-add-cart { background: #ffd814; color: #111; font-weight: 800; border: 1px solid #f5c200; border-radius: 12px; box-shadow: 0 6px 14px rgba(255,216,20,.25); }
  .btn-add-cart:hover { background: #ffcd00; } */
  .info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  @media (min-width: 992px){ .info-cards { grid-template-columns: repeat(4, 1fr); } }
  .info-card { background: #ffffff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 12px; display: flex; align-items: center; gap: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
  .info-ico { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
  .ico-secure { background: #eaf7ef; color: #198754; }
  .ico-delivery { background: #eef5ff; color: #0d6efd; }
  .ico-returns { background: #fff5e6; color: #fd7e14; }
  .ico-rating { background: #fff0f0; color: #dc3545; }
  .info-text { line-height: 1.1; }
  .info-title { font-weight: 700; font-size: 0.92rem; }
  .info-sub { font-size: 0.78rem; color: #6c757d; }

  /* Right details enhanced UI */
  .detail-head { border-bottom: 1px solid #f0f0f0; padding-bottom: 8px; margin-bottom: 12px; }

  .small-muted { color: #6c757d; font-size: .9rem; }
  .price-box { background: #fff8f8; border: 1px solid #ffe3e3; border-radius: 12px; padding: 12px; margin-bottom: 12px; }
  .coupon-tag { background: #fff5e6; color: #7a4e00; border-radius: 999px; padding: 4px 10px; font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; }
  .meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
  .meta-chip { background: #f6f7f9; border-radius: 10px; padding: 6px 10px; font-weight: 600; font-size: .9rem; }
  .pincode-check { border: 1px dashed #e0e0e0; border-radius: 10px; padding: 10px; display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
  .pincode-check input { max-width: 160px; }
  .policy-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 10px; }
  .policy-item { background: #f8f9fa; border: 1px solid #f0f0f0; border-radius: 10px; padding: 10px; display: flex; gap: 8px; align-items: center; }
  .policy-item i { color: #198754; }
  .highlights { list-style: disc; margin-left: 18px; color: #444; }

.small-swal-popup {
    width: 350px !important;   /* default ~450px */
    min-height: 120px !important; /* reduce height */
    padding: 10px !important;
   
}

.small-swal-title {
    font-size: 16px !important;  /* Title size */
}

.small-swal-text {
    font-size: 13px !important; /* Body text size */
}

.small-swal-icon {
    transform: scale(0.7) !important; /* Icon size smaller */
}

  .size-card.border-danger {
    border: 2px solid #dc3545 !important;
    box-shadow: 0 2px 6px rgba(220, 53, 69, .3);
}

.size-card {
    transition: 0.2s;
}

.size-card.border-danger {
    border: 2px solid #7c267f !important; 
    background: rgba(130, 64, 160, 0.18);   
    box-shadow: 0 2px 6px rgba(125, 36, 108, 0.18); 
}

.size-label{
  color: #7c267f;
  font-weight: 500;
}


  /* Default large screen */
.size-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.size-label {
    font-size: 16px;
}

.size-price {
    font-size: 15px;
}

.size-mrp {
    font-size: 14px;
}
.desc-text-responsive{
  font-size: 1.18rem;
  letter-spacing: 2px;
  color: black;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .size-card {
        padding: 6px !important;
    }

    .size-img {
        width: 60px;
        height: 60px;
    }

    .size-label {
        font-size: 14px;
    }

    .size-price {
        font-size: 13px;
    }

    .size-mrp {
        font-size: 12px;
    }
    /* .stars { color: #ffa500; font-size: 0.60rem;} */
}

/* Extra small devices */
@media (max-width: 400px) {
    .size-img {
        width: 50px;
        height: 50px;
    }

    .size-label {
        font-size: 12px;
    }

    .size-price {
        font-size: 12px;
    }

    .size-mrp {
        font-size: 11px;
    }
}
 

  /* body{ background-color: #f9f9f9;
  } */

    .temple-section {
      /* background-color: #f9f9f9; */
      border-radius: 0 0 60px 60px;
      padding: 60px 20px;
      margin-bottom: 40px;
    }
    .temple-section h2 {
      font-weight: 700;
      color: #002366;
    }
    .temple-section p {
      font-size: 18px;
      color: #444;
      line-height: 1.7;
    }
    .temple-image {
      width: 100%;
      /* height: 750px;  */
      /* min-width: 400px; */
      max-height: 450px;
      min-height: 450px;
      border-radius: 15px;
      object-fit: contain; 
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .temple-image img{
      object-fit: contain;
    }
    /* .section-divider {
      width: 100%;
      text-align: center;
      margin: 0 auto 80px;
      margin-top: 40px;
    } */
    /* .section-divider img {

        max-width: 1000px;
    } */

    @media (max-width: 767px) {
      .temple-section {
        text-align: center;
        border-radius: 0 0 30px 30px;
      }
       .section-divider {
      width: 100%;
     
      margin-top: 20px;
    }
    .section-divider img {
      max-width: 330px;
      /* border: 2px solid rgb(20, 170, 212); */
      
    }
    }
     .rounded-slider-section {
      background: #ffffff;
      border-bottom-left-radius: 80px;
      border-bottom-right-radius: 80px;
      padding: 40px 40px;
      
    }

    .rounded-slider-section h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #002366;
      margin-bottom: 20px;
    }

    .rounded-slider-section p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
      max-width: 600px;
    }

    .rounded-slider-section .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    max-width: 500px;
    max-height: 700px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.rounded-slider-section .image-box img.show {
    opacity: 1;
    transform: translateY(0);
}

    .h2_heading{
     
      font-family:'Times New Roman', Times, serif;
    }
    .btn-outline-dark:hover, .btn-outline-dark:focus {
      background: #212529 !important;
      color: #fff !important;
      border-color: #212529 !important;

    }

    .review-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
    @media (max-width: 768px) {
      .rounded-slider-section {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        text-align: center;
      }

      .rounded-slider-section .text-box {
        margin-bottom: 30px;
      }
    }


    .btn-lg {
    font-size: 1.25rem; /* default large button font */
}

/* For mobile screens */
@media (max-width: 768px) {
    .btn-lg {
        font-size: 0.9rem; /* smaller font on mobile */
        padding: 0.5rem 1rem; /* optional: adjust padding */
    }
}
.prd-rating-box {
    background: #fff;
    width: 100%;
    max-width: 300px;

    /* CENTER MAGIC */
    margin: 0 auto;

    padding: 12px 10px;
}

.prd-rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.prd-rating-stars {
    min-width: 70px;
    font-size: 1.7rem;
    color: #FFD700;
    line-height: 1;
}

.prd-rating-bar {
    flex: 1;
    height: 15px;
    background: #eaeaea;
    margin: 0 6px;
    overflow: hidden;
}

.prd-rating-fill {
    height: 100%;
    background: #FFD700;
}
.prd-rating-count{
  margin-left: 8px;
}


/* ---- RIGHT SIDE SCROLL SECTION ---- */
.right-detail-box {
    height: 100vh;
    overflow-y: auto;
    padding-right: 10px;
    /* border: 2px solid red; */ /* Remove or comment out if not needed */
}

/* Hide scrollbar for clean look */
.right-detail-box::-webkit-scrollbar {
    width: 0;
}


/* ---- LEFT SECTION FIXED HEIGHT ---- */
/* .left-product-box {
    height: 100vh; 
    /* border-right: 1px solid #eee; */
    /* position: sticky;
    top: 0;
    overflow: hidden; */

/* } */
