	 
 :root{
    --orange: #ffb80e;       /* Add to Cart */
    --deep-orange: #014eaa;  /* Buy Now */
    --radius: 6px;
  }


  .cta-wrap{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;      /* stack if narrow */
  }

  .cta{
    appearance: none;
    border: 0;
    outline: 0;
    color: #fff;
    background: #999;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .3px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(0,0,0,.15);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .cta.add { background: var(--orange); }
  .cta.buy { background: var(--deep-orange); }

  .cta:hover { filter: brightness(0.95); }
  .cta:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,.18); }

  /* Icons via CSS (no external libs) */
  .cta.add::before { content: ""; font-size: 18px; line-height: 1; }
  .cta.buy::before { content: ""; font-size: 18px; line-height: 1; }

  /* Optional: make them expand evenly if you want full row on small screens */
  @media (max-width: 520px){
    .cta-wrap { width: 100%; }
    .cta { flex: 1 1 100%; justify-content: center; }
  }
	 
	 
  /* Container */
  .faq {
    max-width: 900px;
    margin: 1.5rem auto;
    padding: 0 1rem;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
    color: #111;
  }

  .faq h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
  }

  /* Each item */
  .faq details {
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    margin: 0.6rem 0;
    padding: 0.5rem;
    transition: box-shadow .22s ease, transform .12s ease;
    overflow: hidden;
  }

  /* Slight lift when open */
  .faq details[open] {
    box-shadow: 0 8px 20px rgba(20,20,30,0.06);
    transform: translateY(-2px);
  }

  /* Summary styling (question row) */
  .faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.6rem;
    border-radius: 8px;
    user-select: none;
    outline: none;
  }

  /* Remove default triangle in some browsers */
  .faq summary::-webkit-details-marker { display: none; }

  /* Custom icon */
  .faq .q-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: linear-gradient(180deg,#ffffff,#f6f8fa);
    border: 1px solid rgba(0,0,0,0.05);
    font-weight: 700;
    color: #0b6cff;
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
    transition: transform .2s ease;
  }

  /* Icon rotates when open */
  .faq details[open] .q-icon {
    transform: rotate(90deg);
  }

  .faq .question {
    font-size: 1rem;
    font-weight: 600;
  }

  .faq .chev {
    margin-left: auto;
    transition: transform .22s ease;
    color: rgba(10,10,10,0.45);
    font-size: 1.1rem;
    transform-origin: center;
  }

  .faq details[open] .chev { transform: rotate(90deg); color: rgba(10,10,10,0.6); }

  /* Answer content */
  .faq .answer {
    padding: 0.6rem 0.6rem 0.9rem 0.6rem;
    color: #222;
    line-height: 1.5;
    font-size: 0.96rem;
    border-top: 1px dashed rgba(0,0,0,0.04);
    margin-top: 0.4rem;
  }

  /* small screens */
  @media (max-width: 520px) {
    .faq .q-icon { width: 34px; height: 34px; min-width: 34px; font-size: 0.9rem; }
    .faq h2 { font-size: 1.25rem; }
  }

/* ====== Pure CSS styling ====== */
.share-box{
  --bg:#f7f7fb; --fg:#0f1226; --muted:#6b6f7b; --ring:#e5e7ff; --bd:#e6e7ee;
  --btn:#ffffff; --btnbd:#e6e7ee; --btnhover:#f0f1f7;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg); color:var(--fg);
  padding:16px; border-radius:16px; border:1px solid var(--bd);
  max-width:720px; box-shadow:0 1px 3px rgba(15,18,38,.05);
}
.share-title{font-weight:600; font-size:16px; margin-bottom:10px;}
.share-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.share-btn{
  display:flex; align-items:center; gap:8px; justify-content:center;
  padding:10px 12px; border-radius:12px; border:1px solid var(--btnbd);
  background:var(--btn); cursor:pointer; text-decoration:none; color:inherit;
  font-size:14px; transition:transform .06s ease, background .2s ease, border-color .2s ease;
}
.share-btn:hover{ background:var(--btnhover); transform: translateY(-1px); }
.share-btn:active{ transform: translateY(0); }
.share-btn svg{ display:block; }
.native-share{
  width:100%; margin-bottom:10px; border-style:dashed; background:#fff;
}
.share-msg{ margin-top:10px; font-size:13px; color:var(--muted); min-height:1em; }

/* Platform tints (optional, no external deps) */
.wa:hover{ border-color:#25D36633; }
.tw:hover{ border-color:#1DA1F233; }
.fb:hover{ border-color:#1877F233; }
.ig:hover{ border-color:#C1358433; }
.yt:hover{ border-color:#FF000033; }
.copy:hover{ border-color:#00000022; }

/* Small screens */
@media (max-width:480px){
  .share-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}



@media (max-width: 769px) {
    .zoom-image-hover {
        pointer-events: none;   /* No interaction */
        transform: none !important; /* No zoom */
    }
}

 
 
  /* === Namespaced styles to avoid conflicts === */
  .bbk-overlay {
    display: none;                 /* hidden by default */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2147483647;           /* sit above everything */
    justify-content: center;
    align-items: center;
  }
  .bbk-overlay.bbk-open { display: flex; }

  .bbk-modal-box {
    background: #ffffff;
    color: #111827;
    width: min(92vw, 420px);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    padding: 22px 20px 18px;
    position: relative;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
  }
  .bbk-overlay.bbk-open .bbk-modal-box {
    transform: translateY(0);
    opacity: 1;
  }

  .bbk-close {
    position: absolute;
    top: 10px; right: 12px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
  }
  .bbk-close:hover { color: #111827; }

  .bbk-title {
    margin: 6px 0 18px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
  }

  .bbk-google-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    background: #DB4437;           /* Google red */
    color: #fff;
    transition: filter .15s ease, transform .02s ease-in-out;
  }
  .bbk-google-btn:active { transform: scale(0.995); }
  .bbk-google-btn:hover { filter: brightness(0.95); }

  .bbk-g-icon {
    width: 20px; height: 20px;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
  }

  .bbk-divider {
    display: flex; align-items: center; gap: 10px;
    margin: 18px 0;
  }
  .bbk-divider hr {
    flex: 1; border: none; border-top: 1px solid #e5e7eb;
  }
  .bbk-divider span { font-size: 12px; color: #6b7280; }

  .bbk-terms {
    text-align: center;
    font-size: 12px;
    color: #374151;
    line-height: 1.45;
  }
  .bbk-terms a { color: #2563eb; text-decoration: none; }
  .bbk-terms a:hover { text-decoration: underline; }

  .bbk-open-demo {
    display: inline-block;
    margin: 48px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }
  .bbk-open-demo:hover { filter: brightness(0.95); }

  /* Small accessibility tweaks */
  .bbk-modal-box:focus { outline: 2px solid #2563eb; outline-offset: 2px; }
  
  .mobile-btn {
  display: ;
}

/* Show only on mobile screens (max-width 768px) */
@media (max-width: 768px) {
  .mobile-btn {
    display: inline-block;
    padding: 10px 20px;
    background: ;
    color:#fdb50c;
    border: 1px solid #0350ac !important;
    border-radius:;
    cursor: pointer;
    margin:5px;
  }
}
@media (min-width: 768px) {
  .mobile-btn {
    padding: 10px 20px;
    color:#fdb50c;
    border: 1px solid #0350ac !important;
    border-radius:;
    cursor: pointer;
   margin-top:10px !important;
  }
}
@media (min-width: 768px) {
  .cta {
    
   margin-top:15px !important;
  }
}
 
  
   @media (min-width: 768px) {
  .ajax-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;   /* Always above page */
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  margin-top:-10px;
  margin-left:-10px;
}
.ajax-modal-box {
  background: #fff;
  width: 100%;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;   /* important: allows absolute child */
  animation: ajaxModalFadeIn 0.3s ease-in-out;
  overflow-y: auto;
  overflow-x: auto;
  box-sizing: border-box;
  z-index: 10000; /* ensure box above overlay */
  margin-top:-10px;
  margin-left:-10px;
}

}
  /* Modal Overlay */
.ajax-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;   /* Always above page */
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  margin-top:-10px;
  margin-left:-10px;
}

/* Modal Box */
.ajax-modal-box {
  background: #fff;
  width: 100%;
  max-width: 110%;
  max-height: 110%;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;   /* important: allows absolute child */
  animation: ajaxModalFadeIn 0.3s ease-in-out;
  overflow-y: auto;
  overflow-x: auto;
  box-sizing: border-box;
  z-index: 10000; /* ensure box above overlay */
  margin-top:-10px;
  margin-left:-10px;
}

@media (min-width: 768px) {
  .ajax-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;   /* Always above page */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  margin-top:-10px;
  margin-left:-10px;
}
.ajax-modal-box {
  background: #fff;
  width: 100%;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;   /* important: allows absolute child */
  animation: ajaxModalFadeIn 0.3s ease-in-out;
  overflow-y: auto;
  overflow-x: auto;
  box-sizing: border-box;
  z-index: 10000; /* ensure box above overlay */
  margin-top:-10px;
  margin-left:-10px;
}

}
/* Style Scrollbar (WebKit browsers: Chrome, Edge, Safari) */
.ajax-modal-box::-webkit-scrollbar {
  height: 10px;   /* horizontal scrollbar height */
  width: 10px;    /* vertical scrollbar width */
}

.ajax-modal-box::-webkit-scrollbar-track {
  background: blue;   /* Track color */
  border-radius: 10px;
}

.ajax-modal-box::-webkit-scrollbar-thumb {
  background: yellow;   /* Scroll thumb color */
  border-radius: 10px;
}

.ajax-modal-box::-webkit-scrollbar-thumb:hover {
  background: darkblue; /* Hover effect */
}
/* Firefox scrollbar */
.ajax-modal-box {
  scrollbar-color: #ffb70d blue; /* thumb, track */
  scrollbar-width: thin;
}


/* Responsive for small screens */
@media (max-width: 600px) {
  .ajax-modal-box {
    width: 100%;
    height: auto;
    max-height: 90%;
    padding: 15px;
  }
}

    /* Animation */
    @keyframes ajaxModalFadeIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

 .ajax-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  z-index: 100001; /* always above modal box */
}

.ajax-modal-close:hover {
  background: #1d4ed8;
}

    /* Responsive */
    @media (max-width: 600px) {
      .ajax-modal-box {
        width: 95%;
        padding: 15px;
      }
    }

    /* Custom Button */
    .ajax-modal-trigger {
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius:;
      background:;
      color:;
      cursor: pointer;
    }

    .ajax-modal-trigger:hover {
      background: ;
    }
    .hide-on-mobile {
  display: block; /* visible by default */
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}
   
   
body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}
h2 {
    margin-bottom: 10px;
}

/* Rating Summary */
.summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.summary-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}
.avg-rating {
    font-size: 32px;
    font-weight: bold;
}
.avg-rating span {
    font-size: 20px;
    color: #666;
}
.total-count {
    font-size: 13px;
    color: #555;
    text-align: center;
    margin-top: 4px;
}
.bars {
    flex: 1;
    padding: 0 20px;
}
.bar {
    display: flex;
    align-items: center;
    margin: 4px 0;
}
.bar span {
    width: 30px;
    font-size: 13px;
}
.progress {
    flex: 1;
    height: 6px;
    background: #eee;
    margin: 0 6px;
    border-radius: 3px;
    overflow: hidden;
}
.fill {
    height: 100%;
}
.green { background: #4caf50; }
.yellow { background: orange; }
.red { background: red; }
.count {
    width: 30px;
    font-size: 12px;
    text-align: right;
}
.summary-right button {
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}
.summary-right button:hover {
    background: #f0f0f0;
}

/* Reviews */
.star {
    color: #fff;
    background: #28a745;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}
.review {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}
.review:last-child {
    border-bottom: none;
}
.title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 6px;
}
.comment {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.5;
}
.meta {
    font-size: 13px;
    color: #666;
}
#loading-text {
    display: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
#loading-text2 {
    display: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
/* --- Utility: hide label but keep it accessible --- */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0; margin: -1px; padding: 0;
}

/* --- Container --- */
.css-search{
  position: relative;
  width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* --- Input --- */
.css-search input[type="search"]{
  width: 100%;
  box-sizing: border-box;
  padding: 11px 44px 11px 16px;
  border-radius: 999px;
  border: 1px solid #d0d6dc;
  background: white;
  font-size: 15px;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.css-search input[type="search"]:focus{
  border-color: #6aa0ff;
  box-shadow: 0 4px 14px rgba(35,99,255,0.12);
}

/* --- Button --- */
.css-search button{
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #0b76ff;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(11,118,255,0.18);
}

.css-search button::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.css-search button::after{
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 8px;
  height: 3px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}

.css-search button:focus{
  outline: 3px solid rgba(11,118,255,0.2);
  outline-offset: 2px;
}

@media (max-width: 380px){
  .css-search{ width: 100%; }
  .css-search input[type="search"]{ padding-right:48px; }
}


/* --- Suggestions dropdown --- */
.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}
.suggestions div {
  padding: 10px 16px;
  cursor: pointer;
}
.suggestions div:hover {
  background: #f0f0f0;
}
.suggestions a {
  display: block;
  padding: 10px 16px;
  color: inherit;
}
.suggestions a:hover {
  background: #f0f0f0;
}
.loader2 {
  text-align: center;
  padding: 10px;
}
.loader2 img {
  width: 24px;
  height: 24px;
} 
.mn-new-product{
    display:none;
}
@media (max-width: 780px){
.mn-img{
 height:300px;   
}
}
@media (min-width: 780px){
.mn-img{
 height:200px;   
}
}