
 /* Comparison Table */
  .compare-table {
    width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px;
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }
  .compare-table th { background: var(--dark); color: #fff; padding: 12px 8px; font-size: 13px; text-align: center; }
  .compare-table th.highlight { background: var(--green-darker); }
  .compare-table td { padding: 12px 8px; text-align: center; border-bottom: 1px solid #e5e7eb; font-size: 13px; }
  .compare-table td.label { text-align: left; font-weight: 700; background: #fafafa; }
  .compare-table td.yes { color: var(--green-dark); font-weight: 800; background: #f0fdf4; }
  .compare-table td.no { color: var(--red); font-weight: 700; }
  
/* 4-Image Auto Slider */
  .auto-slider-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--green);
  }
  .auto-slider-wrapper {
    display: flex;
    width: 400%; /* 4 images के लिए 400% */
    animation: autoSlide4 12s infinite ease-in-out; /* 12 सेकंड का लूप (हर इमेज पर 3 सेकंड) */
  }
  .auto-slider-slide {
    width: 25%; /* 100% / 4 */
    flex-shrink: 0;
  }
  .auto-slider-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  /* 4 इमेजेस के लिए परफेक्ट एनिमेशन टाइमिंग */
  @keyframes autoSlide4 {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-25%); }
    50%, 70% { transform: translateX(-50%); }
    75%, 95% { transform: translateX(-75%); }
    100% { transform: translateX(0); } /* वापस पहली इमेज पर स्मूथली आने के लिए */
  }
.stock-bar {
    background: #fff; border-radius: 8px; padding: 12px;
    margin: 12px 0; border: 1px solid #fed7aa;
  }
  .stock-bar .label { font-size: 12px; color: var(--gray); margin-bottom: 6px; font-weight: 700; }
  .stock-progress { background: #fef3c7; border-radius: 10px; height: 14px; overflow: hidden; }
  .stock-progress-bar {
    background: linear-gradient(90deg, var(--orange), var(--red));
    height: 100%; width: 18%; border-radius: 10px;
    animation: shimmer 2s infinite;
  }
  @keyframes shimmer { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
  .stock-text { font-size: 12px; color: var(--red); font-weight: 800; margin-top: 6px; }
  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
  :root {
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-darker: #15803d;
    --orange: #f97316;
    --red: #526e75;
    --dark: #111827;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --gold: #fbbf24;
    --blue: #2563eb;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Noto Sans Gujarati', 'Mukta', 'Segoe UI', Arial, sans-serif;
    line-height: 1.65;
    color: var(--dark);
    background: #fff;
    font-size: 17px;
  }

  /* News Header */
  .news-header { background: #fff; border-bottom: 1px solid #e5e7eb; }
  .news-main { padding: 12px 0; border-bottom: 2px solid var(--red); }
  .news-logo { display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
  .logo-text { font-weight: 900; font-size: 24px; color: var(--red); letter-spacing: -0.5px; }
  .logo-text span { color: var(--dark); }
  .live-badge { background: var(--red); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
  .live-badge::before { content: ""; width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: blink 1.2s infinite; }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
  
  .container { max-width: 720px; margin: 0 auto; padding: 0 16px; }
  .breadcrumb { padding: 14px 0 8px; font-size: 13px; color: var(--gray); }
  .breadcrumb a { color: var(--red); text-decoration: none; font-weight: 600; }
  .breadcrumb .sep { margin: 0 6px; }
  .article-tag { display: inline-block; background: var(--red); color: #fff; padding: 4px 10px; border-radius: 3px; font-size: 11px; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; }
  
  h1 { font-size: 26px; line-height: 1.3; color: var(--dark); margin-bottom: 16px; font-weight: 900; }
  h1 .red { color: var(--red); }
  article p { margin-bottom: 16px; font-size: 17px; line-height: 1.7; }
  article p strong { color: var(--dark); font-weight: 700; }
  article h2 { font-size: 22px; margin: 28px 0 14px; color: var(--dark); font-weight: 900; line-height: 1.3; }
  
  .hero-img img { width: 100%; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
  .hero-caption { font-size: 12px; color: var(--gray); text-align: center; font-style: italic; margin: 8px 0 16px; }

  /* Doctor Video Section */
  .doctor-section { background: #eff6ff; padding: 20px; border-radius: 12px; text-align: center; margin: 20px 0; border: 1px solid #bfdbfe; }
  .doctor-section h3 { color: var(--blue); font-size: 20px; margin-bottom: 12px; font-weight: 900;}
  .video-card { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); background:#000;}
  .video-card video { width: 100%; display: block; }
  .unmute-btn { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); padding: 8px 16px; background: rgba(220, 38, 38, 0.9); color: white; border: none; border-radius: 20px; font-weight: 700; cursor: pointer; }
  .badges { font-size: 14px; color: var(--blue); font-weight: 700; margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

  /* Lists & Callouts */
  .alert-box { background: #f0fdf4; border-left: 5px solid var(--green); padding: 16px; margin: 20px 0; border-radius: 0 8px 8px 0; }
  .alert-box h4 { color: var(--green-darker); margin-bottom: 8px; }
  article ul { margin: 12px 0 16px; padding-left: 0; list-style: none; }
  article ul li { padding: 6px 0 6px 28px; position: relative; font-size: 16px; }
  article ul.check li::before { content: "✅"; position: absolute; left: 0; top: 6px; font-size: 13px; }

  /* Apply Form */
  .order-box { background: linear-gradient(180deg, #fff7ed, #fef3c7); border: 3px dashed var(--orange); border-radius: 12px; padding: 24px 18px; margin: 24px 0; text-align: center; }
  .price-row { display: flex; justify-content: center; align-items: baseline; gap: 14px; margin: 16px 0; }
  .price-old { font-size: 22px; color: var(--gray); text-decoration: line-through; }
  .price-new { font-size: 44px; color: var(--red); font-weight: 900; line-height: 1; }
  
  .apply-form { width:100%; display:flex; flex-direction:column; gap:12px; margin-top:20px; text-align: left;}
  .apply-form label { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: -8px; }
  .apply-form input, .apply-form textarea { width:100%; padding:14px; border:1px solid #ccc; border-radius:8px; font-size:16px; }
  .apply-form textarea { height:90px; resize:none; }
  .apply-form button { width:100%; background:linear-gradient(180deg, #22c55e, #15803d); color:#fff; border:none; padding:18px; font-size:18px; font-weight:900; border-radius:10px; cursor:pointer; text-transform: uppercase; animation: pulseCta 2s infinite; box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4); border: 2px solid #fff; outline: 2px solid var(--green-darker);}
  @keyframes pulseCta { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }

  /* Trust Strip */
  .trust-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 16px 0; }
  .trust-item { background: #fff; border: 1px solid #e5e7eb; padding: 10px 8px; border-radius: 8px; text-align: center; font-size: 12px; font-weight: 700; }
  .trust-item .ico { font-size: 22px; display: block; margin-bottom: 2px; }

  /* Reviews */
  .section-title { text-align: center; margin: 28px 0 16px; padding: 0 16px; }
  .section-title h2 { font-size: 22px; color: var(--dark); font-weight: 900; }
  .review { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 18px; margin-bottom: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
  .review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
  .review-pic { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
  .review-name { font-weight: 800; font-size: 15px; }
  .review-stars { color: var(--gold); font-size: 16px; margin: 6px 0; }
  .verified-purchase { background: #f0fdf4; color: var(--green-darker); padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 800; margin-left: 6px; }
  .review-text { font-size: 15px; color: #374151; line-height: 1.6; }

  /* Timeline */
  .delivery-timeline { border: 2px solid var(--green); padding: 15px; border-radius: 12px; margin: 20px 0; text-align: center; background: #f0fdf4; }
  .timeline-container { display: flex; justify-content: space-between; align-items: flex-start; position: relative; gap: 10px; }
  .timeline-step { flex: 1; position: relative; z-index: 2; }
  .timeline-step strong { font-size: 13px; display: block; margin-bottom: 6px; color: var(--dark); }
  .circle { background: var(--green); border-radius: 50%; width: 45px; height: 45px; margin: auto; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 20px;}
  .timeline-step p { margin-top: 8px; font-size: 12px; line-height: 1.3; font-weight: 700; }
  .timeline-container::before { content: ''; position: absolute; top: 45px; left: 10%; width: 80%; height: 3px; background: var(--green); z-index: 1; }

  /* Sale Alert */
.sale-alert { 
position: fixed; 
right: 20px; 
top: 80px;   /* yaha change kiya */
display: flex; 
align-items: center; 
gap: 12px; 
background: #ffffff; 
color: #333; 
font-size: 14px; 
padding: 12px 16px; 
border-radius: 12px; 
box-shadow: 0 5px 20px rgba(0,0,0,0.2); 
border: 1px solid #eee; 
opacity: 0; 
transform: translateY(-40px); 
transition: all 0.5s ease-in-out; 
z-index: 9999; 
}

.sale-alert.show { 
opacity: 1; 
transform: translateY(0); 
}

.sale-alert .dot { 
width: 10px; 
height: 10px; 
background: var(--green); 
border-radius: 50%; 
animation: blink 1.2s infinite; 
}

  /* Top Banner */
  .top-banner { background: var(--red); color: #fff; text-align: center; padding: 8px 12px; font-weight: 700; font-size: 13px; }
  
  @media (min-width: 768px) { h1 { font-size: 32px; } .trust-strip { grid-template-columns: repeat(4, 1fr); } }
  


   
   form {
  max-width: 600px;
  text-align: center;
  margin: 20px auto;
}
form input, form textarea {
  border: none;
    outline: none;
    padding: 12px 16px;
    border-radius: 10px;
    display: block;
    width: 100%;
    margin-top: 12px;
    font-weight: 400;
    font-family: 'Merriweather', sans-serif;
    background: #f9f9f9;
    transition: all 0.3s ease-in-out;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    
    &:hover {
        background: #f0f0f0;
    }

    &:focus {
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    &:active {
        transform: scale(0.98);
    }

    resize: none;
}
form input:focus, form textarea:focus {
  -moz-box-shadow: 0 0px 2px #e74c3c !important;
  -webkit-box-shadow: 0 0px 2px #e74c3c !important;
  box-shadow: 0 0px 2px #e74c3c !important;
}
form #input-submit {
  color: white;
  background: #9c6d25;
  cursor: pointer;
}
form #input-submit:hover {
  -moz-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
  -webkit-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
  box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
}
form textarea {
  height: 126px;
}

.payment-method-box {
  background: #f0fdf4;
  border: 2px solid #16a34a;
  border-radius: 12px;
  padding: 14px;
  margin: 14px 0;
  text-align: left;
}
.payment-title {
  font-size: 15px;
  font-weight: 800;
  color: #0B2C6B;
  margin-bottom: 12px;
  text-align: center;
}
.pay-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}
.pay-option input { margin-top: 4px; width: 18px; height: 18px; }
.pay-label { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.pay-label strong { font-size: 14px; color: #111827; }
.pay-label em { font-size: 12px; color: #6b7280; font-style: normal; }
.pay-price { font-size: 18px; font-weight: 800; color: #0B2C6B; margin-top: 4px; }
.pay-price-discount { color: #16a34a; }
.pay-price-discount small { font-size: 13px; color: #9ca3af; text-decoration: line-through; margin-left: 6px; }
.payment-summary {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  border: 1px dashed #16a34a;
}

.half {
  float: left;
  width: 48%;
  margin-bottom: 1em;
}

.right {
  width: 50%;
}

.left {
  margin-right: 2%;
}

@media (max-width: 480px) {
  .half {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }
}
/* Clearfix */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.cf:after {
  clear: both;
}


.call-now-responsive {
    background: #526e75;
    display: block;
    position: fixed;
    right: 0px;
    left: 0px;
    bottom: 0px;
    padding-bottom: 8px;
    z-index: 10;
    border-bottom: solid 0px #fff;
}

.call-now-responsive a {
    background-color: #dc0000;
    font-size: 18px;
    border-radius: 0px 0px 15px 15px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 18px 5px 18px;
    z-index: 10;
    border: solid 4px #ffc800;
    margin-right: 5px;
    line-height: 34px;
}

@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1.2,1.2);
    }
    100% {
        transform: scale(1,1);
    }
    }

  .cardcontainer {
    animation: zoominoutsinglefeatured 1s infinite ;
  }
  
  
.slider-container { max-width: 600px; margin: 30px auto; overflow: hidden; position: relative; height: 250px; }
        .slide { 
            position: absolute; 
            width: 100%; 
            opacity: 0; 
            transform: translateX(100%); 
            transition: opacity 1s ease-in-out, transform 1s ease-in-out;
        }
        .slide img { width: 100%; display: block; }
        .active { opacity: 1; transform: translateX(0); }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(100%); }
            to { opacity: 1; transform: translateX(0); }
        }



    #order-popup {
      position: fixed;
      bottom: 30px;
      left: 20px;
      background: #ffffff;
      color: #333;
      border: 1px solid #4caf50;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: none;
      z-index: 9999;
      font-family: 'Arial', sans-serif;
    }
  
    .ac_footer {        position: relative;        text-align: center;        overflow: hidden;        padding: 50px 0;        color: #A12000;    }    .ac_footer a {        color: #A12000;    }    .ac_footer p {        text-align: center;    }    img[height="1"], img[width="1"] {        display: none !important;    }
body{font-family:'Noto Sans Devanagari',sans-serif;}
    #mybutton {    position: fixed;    bottom: -4px;    right: 10px;}
    #mybutton {    position: fixed;    bottom: -4px;    right: 10px;}

.symptoms-section {
  text-align: center;
  padding: 0px 20px;
  font-family: "Noto Sans Gujarati", sans-serif;
}

.symptoms {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Always 2-column layout */
  gap: 20px;
  justify-content: center;
}

.symptom {
  background: #f9fff9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.symptom:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.symptom img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.symptom p {
  font-size: 15px;
  color: green;
  margin: 0;
  font-weight: 500;
}

/* Mobile fix */
@media(max-width:480px){
  .symptoms {
    grid-template-columns: repeat(2, 1fr); /* 2-column even on mobile */
  }
}


.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:12px;
width:100%;
margin:20px auto;
clear:both;
}

.trust-box{
background:#fff;
border:1px solid #ddd;
border-radius:10px;
padding:15px;
text-align:center;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.trust-icon{
font-size:32px;
margin-bottom:10px;
}

.trust-text{
font-size:16px;
font-weight:bold;
color:#0B2C6B;
line-height:1.4;
}

@media(max-width:768px){
.trust-grid{
grid-template-columns:repeat(2,1fr);
}
}
",links:["zslimimg-hi/calsivita.png","https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap","zslimimg-hi/bootstrap.min.css","zslimimg-hi/template.css","zslimimg-hi/style1.css"],headScripts:["f.txt","zslimimg-hi/bxslider.min.js"]},Cn={title:"धन्यवाद - Calsivita B12",styles:"
    body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #4bc7c7, #e0f9e2);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .container {
      background-color: #fff;
      border-radius: 20px;
      padding: 40px 30px;
      max-width: 500px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      text-align: center;
    }

    .container img {
      max-width: 120px;
      margin-bottom: 20px;
    }

    h1 {
      color: #2b5932;
      font-size: 32px;
      margin-bottom: 10px;
    }

    p {
      color: #333;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .btn {
      display: inline-block;
      background-color: #2a6041;
      color: #fff;
      text-decoration: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 16px;
      margin-top: 10px;
    }

    .footer {
      margin-top: 30px;
      font-size: 14px;
      color: #888;
    }
  ",links:[],headScripts:[]},zn={title:"Privacy Policy - Bright Herbal Care",styles:"
body{
font-family: Arial, sans-serif;
max-width: 900px;
margin: auto;
padding: 20px;
line-height: 1.8;
color: #333;
}

h1{
text-align: center;
color: #0B2C6B;
margin-bottom: 30px;
}

h2{
color: #0B2C6B;
margin-top: 25px;
}

p{
margin-bottom: 15px;
}
",links:[],headScripts:[]},Pn={title:"Terms & Conditions - Bright Herbal Care",styles:"
body{
font-family: Arial, sans-serif;
max-width: 900px;
margin: auto;
padding: 20px;
line-height: 1.8;
color: #333;
}

h1{
text-align:center;
color:#0B2C6B;
margin-bottom:30px;
}

h2{
color:#0B2C6B;
margin-top:25px;
}

p{
margin-bottom:15px;
}
",links:[],headScripts:[]},_n={title:"Refund & Return Policy - Bright Herbal Care",styles:"
body{
font-family: Arial, sans-serif;
max-width: 900px;
margin: auto;
padding: 20px;
line-height: 1.8;
color: #333;
}

h1{
text-align:center;
color:#0B2C6B;
margin-bottom:30px;
}

h2{
color:#0B2C6B;
margin-top:25px;
}

p{
margin-bottom:15px;
}
",links:[],headScripts:[]},Tn={title:"Disclaimer - Bright Herbal Care",styles:"
body{
font-family: Arial, sans-serif;
max-width: 900px;
margin: auto;
padding: 20px;
line-height: 1.8;
color: #333;
}

h1{
text-align:center;
color:#0B2C6B;
margin-bottom:30px;
}

h2{
color:#0B2C6B;
margin-top:25px;
}
",links:[],headScripts:[]};function Nn(){return l.jsx(bn,{children:l.jsxs(qe,{children:[l.jsxs(l.Fragment,{children:[l.jsx(Ve,{path:"/",element:l.jsx(Sn,{meta:En