body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px
}

h1 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700
}

h2 {
    font-size: 28px;
    font-weight: 700
}

p {
    font-size: 14.5px;
    line-height: 1.5
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #000;
    border-bottom: 1px solid #eee
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.text-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a {
    color: #fff;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none
}

.main-nav a:hover {
    color: #d62828;
    transform: translateY(-3px)
}

.header-cta {
    flex-shrink: 0
}

.btn-primary {
    background: #d62828;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap
}

.hamburger {
    display: none;
    width: 30px;
    cursor: pointer
}

.hamburger span {
    display: block;
    height: 3px;
    background: #000;
    margin: 6px 0
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
    text-align: center
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px
}

.mobile-menu li {
    margin: 12px 0
}

.mobile-menu a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none
}

.mobile-menu a:hover {
    color: #d62828;
    transform: translateY(-3px)
}

.mobile-cta {
    display: inline-block;
    background: #d62828;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700
}

.mobile-menu.active {
    display: block
}

@media (max-width:768px) {
    .header-flex {
        padding: 14px 18px
    }
    .main-nav,
    .header-cta {
        display: none
    }
    .hamburger {
        display: block;
        margin-left: auto;
        padding-right: 6px
    }
    .hamburger span {
        background: #fff
    }
    .text-logo {
        font-size: 22px
    }
}

.hero-section {
    background-image: url(../images/bnr-bg.jpg);
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat
}

.hero-overlay {
    background: rgb(30 90 120 / 0.25);
    padding: 35px 0
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 360px
}

.hero-content {
    max-width: 600px;
    color: #000;
    padding-left: 50px
}

.hero-content h1 strong {
    color: #D62828
}

.hero-content p {
    font-size: 16.5px
}

.hero-btn {
    background: #ffc107;
    color: #000;
    padding: 13px 30px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none
}

.hero-image {
    flex: 0 0 420px;
    padding-right: 0
}

.hero-image img {
    max-width: 280px
}

@media (max-width:768px) {
    .hero-overlay {
        padding: 30px 15px
    }
    .hero-flex {
        flex-direction: column;
        gap: 30px
    }
    .hero-content {
        padding-left: 0;
        text-align: center
    }
    .hero-image {
        padding-right: 0
    }
    .hero-image img {
        max-width: 420px
    }
}

.ingredients-section {
    padding: 55px 0
}

.ingredients-title {
    text-align: center;
    margin-bottom: 6px;
    font-size: 30px
}

.ingredients-title span {
    color: #9a1422
}

.ingredients-subtitle {
    text-align: center;
    font-size: 14.5px;
    margin-bottom: 30px
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px
}

.ingredient-card {
    background: #f3f3f3;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.ingredient-card img {
    width: 70px;          /* image size choti */
    height: 70px;
    object-fit: cover;
    border-radius: 50%;   /* full round */
    margin: 18px auto 0;  /* center + top spacing */
    display: block;
}

.ingredient-content {
    padding: 16px;
    text-align: center
}

.ingredient-content h3 {
    font-size: 16.5px;
    margin-bottom: 8px
}

.ingredient-content p {
    font-size: 13.5px;
    line-height: 1.45
}

@media (max-width:1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:900px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }
    .ingredient-card {
        max-width: 340px;
        margin: 0 auto;
        border-radius: 12px
    }
    .ingredient-card img {
        height: 110px
    }
    .ingredient-content {
        padding: 12px 14px
    }
    .ingredient-content h3 {
        font-size: 15px;
        margin-bottom: 6px
    }
    .ingredient-content p {
        font-size: 13px;
        line-height: 1.4
    }
}

.testimonials-section {
    background: #fff;
    padding: 40px 0;
    position: relative
}

.testimonials-title {
    text-align: center;
    color: #000;
    margin-bottom: 20px
}


.testimonials-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.testimonial-card {
    background: #CCE8E8;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.testimonial-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover
}

.testimonial-content p {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 10px
}

.testimonial-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px
}

.testimonial-rating {
    font-size: 14px;
    color: #ff9800
}

.testimonial-rating span {
    color: #555;
    font-size: 13px;
    margin-left: 6px
}

@media (max-width:768px) {
    .testimonials-divider {
        justify-content: center;
        margin-bottom: 15px
    }
    .testimonial-avatar img {
        width: 140px;
        height: 140px;
        border-radius: 8px
    }
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}

.benefits-section {
    padding: 60px 20px;
    background: #f7f9fb;
}

.benefits-main-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.benefits-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: #555;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: auto;
}

.benefit-box {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.benefit-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.benefit-box h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.benefit-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media(max-width:900px){
    .benefits-cards{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:520px){
    .benefits-cards{
        grid-template-columns: 1fr;
    }
}

.offer-section {
    padding: 60px 0;
    background: #fff
}

.offer-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px
}

.offer-heading span {
    color: #9a1422
}

.offer-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 34px
}

.time-box {
    background: #FA5E41;
    color: #fff;
    width: 68px;
    height: 68px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.time-box strong {
    font-size: 20px;
    line-height: 1
}

.time-box span {
    font-size: 11px;
    margin-top: 3px
}

.offer-card {
    background: #cce8e8;
    border-radius: 18px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 780px;
    margin: 0 auto
}

.offer-content {
    color: #000;
    max-width: 440px
}

.offer-content h3 {
    font-size: 21px;
    margin-bottom: 12px
}

.offer-note {
    font-size: 13px;
    margin-bottom: 8px
}

.offer-guarantee {
    font-size: 12.5px;
    margin-bottom: 18px
}

.offer-btn {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 12px 30px;
    border-radius: 28px;
    font-weight: 700;
    text-decoration: none
}

.offer-image {
    display: flex;
    justify-content: center;
    align-items: center
}

.offer-image img {
    max-width: 300px
}

@media (max-width:768px) {
    .offer-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px
    }
    .offer-content {
        max-width: 100%
    }
    .offer-image img {
        max-width: 250px;
        margin-top: 14px
    }
}

.best {
    background: #fff;
    border: 2px solid #9a1422;
    transform: scale(1.05);
    position: relative
}

.badge {
    background: #9a1422;
    color: #fff;
    padding: 6px 14px;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.rating-note {
    text-align: center;
    font-size: 14px;
    margin-top: 30px
}

@media (max-width:900px) {
    .pricing-grid {
        grid-template-columns: 1fr
    }
    .best {
        transform: none
    }
}

.support-content {
    flex: 1;
    max-width: 620px;
    padding: 0 80px 0 40px
}

.support-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111
}

.support-content p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333
}

.support-content .highlight {
    font-size: 15px;
    margin-bottom: 14px
}

.support-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.support-content {
    flex: 1;
    max-width: 620px;
    padding: 0 60px 0 40px
}

.support-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111
}

.support-content p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333
}

.support-content .highlight {
    font-size: 15px;
    margin-bottom: 14px
}

.support-image {
    flex: 0 0 420px;
    text-align: center
}

.support-image img {
    max-width: 420px;
    width: 100%;
    height: auto
}

.support-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 18px;
    margin: 20px 0 28px
}

.support-list li {
    list-style: none;
    font-size: 14.5px;
    color: #222
}

.support-btn {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 14px 48px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none
}

@media (max-width:900px) {
    .support-flex {
        flex-direction: column;
        text-align: center;
        gap: 35px
    }
    .support-content {
        max-width: 100%;
        padding: 0 18px
    }
    .support-content h2 {
        font-size: 24px
    }
    .support-content p {
        font-size: 15px
    }
    .support-image img {
        max-width: 300px;
        margin: 0 auto
    }
    .support-list {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        gap: 10px 14px
    }
    .support-btn {
        padding: 14px 36px;
        width: auto
    }
}

@media (max-width:480px) {
    .support-list {
        grid-template-columns: 1fr
    }
    .support-btn {
        width: 100%;
        max-width: 280px
    }
}



.guarantee-section {
    padding: 55px 0;
    background: #fff
}

.guarantee-box {
    max-width: 780px;
    margin: 0 auto;
    background: #Fff;
    border: 2px solid #0b4a6f;
    border-radius: 18px;
    padding: 32px 38px;
    text-align: center;
    box-shadow: 0 10px 26px rgb(0 0 0 / .1)
}

.guarantee-badge {
    max-width: 215px;
    margin-bottom: 16px
}

.guarantee-box h2 {
    font-size: 23px;
    color: #0b4a6f;
    margin-bottom: 8px
}

.guarantee-box h3 {
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600
}

.guarantee-box p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 12px
}

.guarantee-proven {
    max-width: 660px;
    margin-top: 22px
}

@media (max-width:768px) {
    .guarantee-box {
        max-width: 100%;
        padding: 26px 18px;
        border-radius: 14px
    }
    .guarantee-badge {
        max-width: 80px
    }
    .guarantee-box h2 {
        font-size: 20px
    }
    .guarantee-box h3 {
        font-size: 15px
    }
    .guarantee-box p {
        font-size: 14px
    }
    .guarantee-proven {
        max-width: 100%
    }
}

.pricing-section {
    padding: 70px 0;
    background: #fff;
    text-align: center
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px
}

.pricing-title span {
    color: #9a1422
}

.pricing-subtitle {
    font-size: 16px;
    margin-bottom: 40px
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1050px;
    margin: 0 auto
}

.pricing-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 18px;
    padding: 22px 20px 28px
}

.pricing-card.highlight {
    border-color: #FA5E41;
    transform: scale(1.05)
}

.pricing-head {
    padding: 14px;
    border-radius: 14px 14px 0 0;
    margin: -22px -20px 18px
}

.pricing-head.gray {
    background: #d9d9d9
}

.pricing-head.red {
    background: #FA5E41;
    color: #fff
}

.pricing-head h3 {
    font-size: 20px;
    margin-bottom: 4px
}

.pricing-head p {
    font-size: 14px;
    font-weight: 600
}

.pricing-img {
    max-width: 280px;
    margin: 10px auto 16px;
    display: block
}

.price {
    font-size: 36px;
    font-weight: 800
}

.per-bottle {
    font-size: 13px;
    margin-bottom: 6px
}

.save {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px
}

.pricing-btn {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 14px
}

.guarantee {
    font-size: 12.5px;
    margin-bottom: 6px
}

.free-ship {
    font-size: 12px;
    color: #fff;
    background: #ff7a00;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px
}

.rating-text {
    margin-top: 30px;
    font-size: 14px
}

@media (max-width:900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 22px
    }
    .pricing-card {
        max-width: 360px;
        margin: 0 auto;
        padding: 22px 46px 2px;
        border-radius: 14px
    }
    .pricing-card img {
        max-width: 160px;
        margin: 14px auto 16px;
        display: block
    }
    .pricing-card h3 {
        font-size: 18px
    }
    .pricing-card h4 {
        font-size: 14px
    }
    .pricing-price {
        font-size: 34px;
        margin: 8px 0
    }
    .pricing-card .save-text {
        font-size: 13px;
        margin-bottom: 14px
    }
    .pricing-card .buy-btn {
        padding: 12px 26px;
        font-size: 15px
    }
    .pricing-card .shipping-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-top: 10px
    }
    .pricing-card.highlight {
        transform: none
    }
}

.faq-section {
    background: #cce8e8;
    padding: 70px 0
}

.faq-title {
    text-align: center;
    color: #000;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px
}

.faq-item {
    max-width: 760px;
    margin: 0 auto 14px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 15.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative
}

.faq-question::before {
    content: "+";
    font-size: 18px;
    font-weight: 700;
    margin-right: 12px
}

.faq-question.active::before {
    content: "−"
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #333
}

.faq-answer.show {
    display: block
}

@media (max-width:768px) {
    .faq-title {
        font-size: 22px
    }
    .faq-item {
        margin: 0 10px 12px
    }
}

.site-footer {
    background: #0b0b0b;
    color: #ccc;
    padding: 45px 0 35px;
    font-size: 13px;
    line-height: 1.6
}

.footer-links {
    text-align: center;
    margin-bottom: 18px
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin: 0 6px
}

.footer-links span {
    color: #777;
    margin: 0 4px
}

.footer-text {
    max-width: 980px;
    margin: 0 auto;
    text-align: center
}

.footer-text p {
    margin-bottom: 14px
}

@media (max-width:768px) {
    .site-footer {
        padding: 35px 15px;
        font-size: 12.5px
    }
    .footer-text {
        text-align: left
    }
}