:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}







* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    /* background-color: #fff; */
}

#saleAlert {
    position: fixed;
    top: 20px;
    right: -400px;
    display: none;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 320px;
    z-index: 9999;
    transition: right 0.5s ease;
}

#saleAlert img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 6px;
}
.alert-text {
    font-size: 14px;
    line-height: 1.4;
}
.alert-text strong {
    color: #2e7d32;
}
.navbar {
    padding: 8px 0 !important;
    background-color: #0a9e21 !important;
    display: flex;
    flex-direction: column;
    height: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.navbar img {
    height: 45px;
}
.bg-white {
    padding-bottom: 40px;
}
/* Box-sizing और ओवरफ्लो फिक्स */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* सभी मीडिया एलिमेंट्स को फ्लूइड बनाएं */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* नेवबार को फ्लेक्सिबल और क्लीन रखें */
.navbar {
  height: auto !important;
  min-height: 60px;
  padding: 10px 15px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
}

.navbar img {
  height: 38px;
  width: auto;
}

.navbar h1 {
  font-size: 14px !important;
  text-align: center;
  line-height: 1.2;
}

/* फॉर्म कंटेनर और बॉर्डर्स */
#orderFormBorder {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

/* बटन्स और मुख्य टेक्स्ट स्केलिंग */
.button-bottom a, .btn, .submit-form {
  max-width: 100% !important;
  width: 100%;
  display: inline-block;
  white-space: normal;
  word-break: break-word;
}

/* मीडिया क्वेरीज़ (Mobile & Tablet) */
@media (max-width: 768px) {
  h2 {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }
  
  .price.new {
    font-size: 42px !important;
  }
  
  .price.strike {
    font-size: 20px !important;
  }

  /* फेक सेल अलर्ट को मोबाइल स्क्रीन के अनुसार एडजस्ट करें */
  #saleAlert {
    width: 90% !important;
    left: 5% !important;
    right: auto !important;
    top: -150px;
    transition: top 0.4s ease;
  }
  
  #saleAlert.show {
    top: 15px;
    right: auto !important;
  }

  /* कमेंट्स सेक्शन में इमेज और पैडिंग फिक्स */
  .comments {
    padding: 12px !important;
  }

  .comments__body img {
    max-width: 100% !important;
  }

  /* स्टिकी बॉटम CTA के लिए बॉडी में पैडिंग */
  body {
    padding-bottom: 75px !important;
  }

  .sticky-cta .container {
    flex-direction: column;
    text-align: center;
    gap: 6px !important;
  }
}

@media (max-width: 480px) {
  .navbar h1 {
    font-size: 12px !important;
  }
  
  .navbar img {
    height: 30px;
  }
  
  .ticker-item {
    font-size: 10px;
    padding: 0 14px;
  }
}

.offer-ticker {
    width: 100%;
    background: #28a745;
    overflow: hidden;
    padding: 10px 0;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 22s linear infinite;
}
.badge-info {
    color: #fff;
    background-color: #17a2b8;
}


.offer-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  margin-right: 35px;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background: #198754;
  border-radius: 50%;
  display: inline-block;
  margin-left: 35px;
}

/* Continuous Left Scroll */
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ticker-item {
    font-size: 14px;
  }

  .ticker-track {
    animation-duration: 22s;
  }
}
.button-bottom a {
    display: inline-flex;
    height: 60px;
    background: #0a9e21 !important;
    cursor: pointer;
    border-radius: 10px;
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-width: 123x;
    padding: 2px 0px 0 0px;
    font-size: 14px;
}



.form-table {
    border: 2px solid white;
    width: 100%;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

label {
    font-weight: bold;
    display: block;
    margin: 15px 0 5px;
    color: white;
    font-size: clamp(14px, 2vw, 16px);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: clamp(8px, 2vw, 12px);
    border: none;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 16px);
    background: rgba(255, 255, 255, 0.9);
}

.btn-form {
    margin-top: 20px;
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    font-size: clamp(16px, 2vw, 18px);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    animation: blink 0.90s infinite;
    transition: all 0.3s ease;
}

.btn-form:hover {
    background-color: red;
    color: white;
    transform: scale(1.05);
}

.note {
    font-size: clamp(11px, 1.5vw, 12px);
    margin-top: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    line-height: 1.4;
}

.note span {
    color: orange;
    font-weight: bold;
}

/* Card styles */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.5;
}

/* Section titles */
.problem-text,
.doctor-text,
.benefits-text,
.suggestion-text {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: bold;
    color: white;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Thank you page */
.box-thank {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: clamp(20px, 4vw, 40px) auto 0;
    padding: clamp(15px, 3vw, 20px);
}

.thank-you-text {
    color: #990000;
    font-size: clamp(24px, 6vw, 40px);
    font-weight: bold;
    margin: 10px 0;
    line-height: 1.3;
}

.thank-you-hindi {
    font-size: clamp(18px, 4vw, 28px);
    color: #1c1c1c;
    font-weight: 600;
    margin: 10px 0 30px;
    line-height: 1.4;
}

.footer {
    font-size: clamp(11px, 1.5vw, 12px);
    color: #555;
    margin-top: 40px;
    line-height: 1.5;
}

/* Custom Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #ff9900, #ff5500);
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
    background: #f8f9fa;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
    border-color: #ff9900;
}

.quantity-controls {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.quantity-controls .btn-warning {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    background: #ff9900;
    color: white;
}

.quantity-controls .form-control {
    height: 40px;
    font-size: 1.2rem;
    font-weight: 500;
}

.note {
    background: #fff3e6;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff9900;
}

.note p {
    margin: 0;
    font-size: 0.9rem;
    color: #664d00;
}

.btn-submit {
    background: linear-gradient(135deg, #ff9900, #ff5500);
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.product-preview {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-preview img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.new-price {
    color: #ff5500;
    font-size: 1.5rem;
    font-weight: bold;
}

.order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #000000, #1a0000);
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(255, 0, 0, 0.2);
    gap: 15px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.round-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: star-spin 3s linear infinite;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.round-icon span {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .box-order {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .small-img {
        max-width: 48%;
    }

    .card-img-top {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .main-order {
        width: 100%;
    }

    .small-img {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .rate-box {
        padding: 10px;
    }

    .card-img-top {
        height: 160px;
    }

    .form-table {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .main-order {
        width: 100%;
    }

    .box-order {
        padding: 15px;
        margin: 10px auto;
    }

    .form-table {
        padding: 10px;
    }

    .highlight-box {
        padding: 8px;
    }

    .card-img-top {
        height: 140px;
    }
}

@media (max-width: 375px) {
    .head {
        font-size: 1.5rem;
    }

    .head-text {
        font-size: 0.9rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .benefits-p {
        font-size: 0.9rem;
    }

    .card-img-top {
        height: 120px;
    }
}

.limited-offer-gif {
    max-width: 80%;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 15px auto;
}

@media screen and (max-width: 768px) {
    .limited-offer-gif {
        height: 80px;
        max-width: 85%;
    }
}

@media screen and (max-width: 480px) {
    .limited-offer-gif {
        height: 60px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .order-btn {
        font-size: 16px;
        padding: 8px 20px;
    }

    .round-icon {
        width: 32px;
        height: 32px;
        margin: 0 10px;
    }

    .round-icon span {
        font-size: 16px;
    }
}
.product-img-order-thank
{
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px auto;
    object-fit: contain;
    display: block;
}