:root {
  --primary-color: #ce5200;
  --secondary-color: #d7bb52;
  --light-bg: #f8f8f8;
  --dark-bg: #333;
  --white: #fff;
  --black: #000;
  --price-red: #8B0000;
  --red-accent: #E44D26;
  --font-size-base: 1.05rem;
  --font-size-medium: 1.15rem;
  --font-size-large: 1.25rem
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-top: 30px
}

body {
  font-family: 'Montserrat', 'Roboto', 'Segoe UI', sans-serif;
  color: #333;
  font-size: var(--font-size-base);
  line-height: 1.6
}

img {
  max-width: 100%;
  height: auto
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

@media (min-width:576px) {
  .container {
    max-width: 540px
  }
}

@media (min-width:768px) {
  .container {
    max-width: 720px
  }
}

@media (min-width:992px) {
  .container {
    max-width: 960px
  }
}

@media (min-width:1200px) {
  .container {
    max-width: 1200px
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3
}

h1 {
  font-size: 3rem
}

h2 {
  font-size: 2.5rem
}

h3 {
  font-size: 2rem
}

h4 {
  font-size: 1.5rem
}

p {
  margin-bottom: 1.2rem
}

.btn {
  font-weight: 600;
  font-size: var(--font-size-medium);
  padding: .6rem 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease
}

.btn-lg {
  font-size: var(--font-size-large);
  padding: .8rem 2rem
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color)
}

.btn-primary:hover {
  background-color: #4a1382;
  border-color: #4a1382
}

.btn-warning {
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  border-color: var(--secondary-color);
  color: var(--black)
}

.btn-warning:hover {
  background-color: #c5aa48;
  border-color: #c5aa48;
  color: var(--black)
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 9999;
  background: #000;
  border-bottom: 1px solid #eee
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}

.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: #247DA5
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem
}

.hero-section p {
  font-size: var(--font-size-large)
}

.benefit-card {
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 8px rgb(0 0 0 / .1);
  background-color: #247DA5;
  color: var(--white);
  transition: transform 0.3s ease
}

.benefit-card:hover {
  transform: translateY(-5px)
}

.benefit-card h4 {
  margin-bottom: 1rem
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: -50px auto 10px auto
}

.ingredient-card {
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 8px rgb(0 0 0 / .1);
  transition: transform 0.3s ease
}

.ingredient-card:hover {
  transform: translateY(-5px)
}

.comparison-box {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgb(0 0 0 / .1)
}

.check-list li,
.x-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: var(--font-size-medium)
}

.check-list i,
.x-list i {
  margin-top: 3px
}

.product-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden
}

.product-image {
  width: 180px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  object-fit: contain
}

.product-image:hover {
  transform: translateY(-5px)
}

.vs-badge {
  width: 60px;
  height: 60px;
  background-color: var(--red-accent);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 20px;
  box-shadow: 0 2px 10px rgb(0 0 0 / .2);
  flex-shrink: 0
}

.comparison-container {
  border: 2px dashed #ddd;
  border-radius: 15px;
  padding: 30px;
  background-color: #fff;
  position: relative;
  width: 100%;
  box-sizing: border-box
}

.comparison-container h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-align: center
}

.check-list i {
  color: #42b983;
  font-size: 20px
}

.x-list i {
  color: var(--red-accent);
  font-size: 20px
}

.pricing-card {
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgb(0 0 0 / .1);
  transition: transform 0.3s ease;
  overflow: hidden
}

.pricing-card:hover {
  transform: translateY(-10px)
}

.pricing-card.popular {
  transform: scale(1.02);
  position: relative;
  z-index: 1;
  border: 2px solid var(--secondary-color)
}

.pricing-card.popular:hover {
  transform: scale(1.05)
}

.pricing-title {
  background-color: #f8f8f8
}

.price {
  margin: 15px 0
}

.price h2 {
  font-size: 4.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block
}

.per-bottle {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  display: inline-block;
  text-align: left;
  padding-left: 5px
}

.payment-methods img {
  width: auto;
  object-fit: contain
}

.total-price {
  font-size: 1.3rem
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: var(--font-size-base)
}

footer a:hover {
  color: var(--secondary-color) !important
}

@media (max-width:768px) {
  :root {
    --font-size-base: 1rem;
    --font-size-medium: 1.1rem;
    --font-size-large: 1.2rem
  }
  h1 {
    font-size: 2.5rem
  }
  h2 {
    font-size: 2rem
  }
  h3 {
    font-size: 1.75rem
  }
  .hero-section h1 {
    font-size: 2.8rem
  }
  .container {
    width: 100%;
    max-width: 100% !important;
    padding-left: 10px;
    padding-right: 10px
  }
  .row {
    margin-left: 0;
    margin-right: 0
  }
  .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px
  }
  .comparison-container {
    padding: 15px 10px;
    width: 100%
  }
  .vs-badge {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin: 0 5px
  }
  .product-image {
    width: 100px
  }
  .comparison-container ul li {
    font-size: .95rem;
    word-wrap: break-word
  }
  .check-list i,
  .x-list i {
    font-size: 16px
  }
  .pricing-card {
    width: 100%
  }
  .pricing-card .p-4 {
    padding: 1rem !important
  }
  .price h2 {
    font-size: 2.8rem
  }
  .per-bottle {
    font-size: .8rem;
    right: -40px;
    top: 12px
  }
  .pricing-card.popular {
    transform: scale(1);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
  }
  .pricing-card.popular:hover {
    transform: translateY(-10px)
  }
  .testimonial-text {
    font-size: 1.1rem
  }
  [data-aos-delay] {
    transition-delay: 0s !important
  }
  .carousel-inner {
    min-height: 360px
  }
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6
  }
  .testimonial-card .d-flex {
    flex-direction: column;
    text-align: center;
    align-items: center !important;
    margin-top: 20px
  }
  .testimonial-card .d-flex img {
    margin-right: 0 !important;
    margin-bottom: 15px;
    max-width: 120px !important;
    border: 3px solid rgb(255 255 255 / .2)
  }
  .testimonial-card .text-start {
    text-align: center !important;
    width: 100%
  }
  .carousel-inner {
    min-height: 520px
  }
  .testimonial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem
  }
  .testimonial-card .testimonial-text {
    font-size: 1rem;
    line-height: 1.5
  }
  .testimonials-section {
    overflow: hidden
  }
}

@media (max-width:576px) {
  .col-md-6,
  .col-md-4,
  .col-md-8,
  .col-md-3,
  .col-md-9 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%
  }
  .product-comparison {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px
  }
  .product-image {
    width: 80px
  }
  .vs-badge {
    width: 30px;
    height: 30px;
    font-size: 16px
  }
  .comparison-container {
    border-width: 1px
  }
  * {
    word-wrap: break-word;
    overflow-wrap: break-word
  }
  .carousel-inner {
    min-height: 560px
  }
  .testimonial-card {
    padding: 1rem !important
  }
  .testimonial-card .stars i {
    font-size: 14px
  }
  .testimonial-card h3 {
    font-size: 1.3rem
  }
  .testimonial-card .d-flex img {
    max-width: 100px !important
  }
  .testimonial-card h5 {
    font-size: 1.1rem
  }
  .testimonial-card .d-flex p {
    font-size: .9rem
  }
}

@keyframes pulse {
  0% {
    opacity: 1
  }
  50% {
    opacity: .7
  }
  100% {
    opacity: 1
  }
}

#countdown {
  animation: pulse 1s infinite;
  font-weight: 700;
  color: var(--white);
  font-size: var(--font-size-large)
}

.button-buy-b {
  background: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  color: #000;
  border: none
}

.button-buy-b:hover {
  background: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  color: #000
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  opacity: .8
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1
}

.carousel-indicators {
  bottom: -40px
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / .4);
  margin: 0 5px;
  opacity: .7
}

.carousel-indicators .active {
  background-color: var(--white);
  opacity: 1
}

.testimonial-card .card-body {
  padding: 25px
}

.testimonial-author {
  margin-top: 15px;
  font-weight: 600
}

.verified-badge {
  font-size: .85rem;
  opacity: .8
}

@media (min-width:992px) {
  .carousel-inner {
    min-height: 280px
  }
}

@media (max-width:576px) {
  .carousel-inner {
    min-height: 420px
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 12%
  }
  .testimonial-card .card-body {
    padding: 20px 15px
  }
}

.reviews-section {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    background: #f7f7f5;
    padding: 40px 20px
}

.reviews-section {
    width: 100%;
    padding: 50px 0;
    background: #F7F7F5
}

.reviews-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.reviews-section h2 {
    font-size: 32px;
    color: #273A30;
    margin-bottom: 30px;
    background: #fff0;
    text-align: center;
    font-weight: 800;
    line-height: 1.2
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    padding-inline:12px;background: #fff0
}

.review-card {
    border: 2px solid #273A30;
    background: #fff;
    padding: 28px 22px;
    border-radius: 18px;
    box-shadow: 0 5px 0 #273A30;
    transition: 0.3s;
    text-align: center
}

.review-card:hover {
    transform: translateY(-5px)
}

.review-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 18px;
    object-fit: cover;
    display: block;
    border: 5px solid #DFBF75;
    padding: 4px;
    background: #fff;
    box-shadow: 0 4px 14px rgb(0 0 0 / .12)
}

.review-card h3 {
    margin-bottom: 5px;
    color: #1e73be;
    font-size: 22px;
    font-weight: 700
}

.stars {
    color: #ffb400;
    margin-bottom: 12px;
    font-size: 20px;
    letter-spacing: 2px
}

.review-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0
}

@media(max-width: 900px) {
    .reviews-section {
        padding:40px 0
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-inline:0}

    .review-card {
        padding: 24px 18px
    }

    .review-card img {
        width: 115px;
        height: 115px
    }

    .reviews-section h2 {
        font-size: 28px;
        margin-bottom: 22px
    }
}

@media(max-width: 576px) {
    .reviews-container {
        padding:0 16px
    }

    .reviews-section h2 {
        font-size: 24px
    }

    .review-card {
        border-radius: 15px
    }

    .review-card h3 {
        font-size: 20px
    }

    .review-card p {
        font-size: 14px;
        line-height: 1.6
    }
}

.quality-section {
    width: 100%;
    background: #F7F7F5;
    padding: 40px 0;
    border: 2px solid #1d148f
}

.quality-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px
}

.quality-image {
    width: 360px;
    flex-shrink: 0
}

.quality-image img {
    width: 100%;
    max-width: 360px;
    border-radius: 22px;
    display: block
}

.quality-content {
    width: 52%
}

.quality-content h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px
}

.quality-content ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.quality-content ul li {
    font-size: 20px;
    line-height: 1.5;
    color: #111;
    margin-bottom: 8px;
    position: relative;
    padding-left: 28px
}

.quality-content ul li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    color: #169AAC
}

@media(max-width: 991px) {
    .quality-container {
        flex-direction:column;
        gap: 20px
    }

    .quality-image,.quality-content {
        width: 100%
    }

    .quality-content h2 {
        font-size: 34px;
        text-align: center
    }

    .quality-content ul li {
        font-size: 18px
    }
}

@media(max-width: 576px) {
    .quality-section {
        padding:30px 0
    }

    .quality-container {
        padding: 0 16px
    }

    .quality-content h2 {
        font-size: 28px;
        margin-bottom: 14px
    }

    .quality-content ul li {
        font-size: 16px;
        line-height: 1.5;
        padding-left: 24px;
        margin-bottom: 7px
    }

    .quality-content ul li::before {
        font-size: 26px
    }

    .quality-image img {
        border-radius: 16px;
        margin: 0 auto;
        display: block
    }
}


.ingredient-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ingredient-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.ingredient-card h4 {
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 15px;
}

.ingredient-card p {
    margin-bottom: 0;
}

.sales-popup{

    position:fixed;
    left:25px;
    bottom:25px;

    width:430px;
    background:#247DA5;

    border-radius:12px;

    box-shadow:0 12px 35px rgba(0,0,0,.18);

    padding:18px;

    z-index:99999;

    /* display:none; */

    animation:slideUp .5s ease;

    font-family:Arial,sans-serif;
}

.popup-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    font-size:15px;
    margin-bottom:5px;
}

.popup-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.popup-content img{
    width:95px;
}

.popup-text{
    width:70%;
    font-size:15px;
    line-height:1.45;
    color:#fff;
}

.popup-text strong{
    font-weight:700;
}

.popup-footer{
    margin-top:5px;
    color:#fefefe;
    font-size:14px;
}

@keyframes slideUp{

    from{

        transform:translateY(80px);
        opacity:0;
    }

    to{

        transform:translateY(0);
        opacity:1;
    }

}

@media(max-width:768px){

.sales-popup{

    left:10px;
    right:10px;
    width:auto;
    bottom:10px;
}

.popup-text{

    font-size:16px;
}

.popup-content img{

    width:75px;
}

}