/* Base Reset & Typography */

* {
  box-sizing: border-box;

  margin: 0;

  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;

  background-color: #f7f9fa;

  color: #333;

  line-height: 1.6;
}

img,
video {
  max-width: 100%;

  display: block;

  height: auto;
}

a {
  text-decoration: none;

  color: inherit;
}

/* Top Bar */

.top-bar {
  background-color: #222;

  color: #fff;

  text-align: center;

  font-size: 0.9rem;

  padding: 8px 0;
}

/* Header */

header {
  background-color: #fff;

  border-bottom: 1px solid #dde2e5;
}

.nav-container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 6px 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.brand img {
  width: 160px;
}

/* Logo on top-left */

/* Hero Section (Carousel + dynamic text) */

.hero {
  background: #fff;

  color: #333;

  padding: 30px 20px;
}

.hero-content {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;

  position: relative; /* for arrow positioning */
}

/* Carousel Container */

.carousel-container {
  flex: 0 0 50%;

  margin: 0 auto 20px auto;
}

.carousel-slide {
  display: none; /* Hide all slides by default */

  text-align: center;
}

.carousel-slide.active {
  display: block; /* Show the active slide */
}

/* Autoplay, muted video */

.carousel-slide video {
  border: 1px solid #ccc;

  border-radius: 4px;

  max-height: 320px;
}

/* Arrows at the far edges */

.carousel-prev,
.carousel-next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  background: #c0c0c0;

  color: #fff;

  border: none;

  padding: 6px 10px;

  cursor: pointer;

  border-radius: 4px;

  font-size: 1.1rem;

  z-index: 5;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-prev {
  left: 0; /* Far left */

  margin-left: -51px;
}

.carousel-next {
  right: 0; /* Far right */

  margin-right: -51px;
}

/* Carousel Dots */

.carousel-dots {
  text-align: center;

  margin-top: 10px;
}

.carousel-dots .dot {
  display: inline-block;

  width: 60px;

  height: 2px;

  margin: 0 4px;

  background: #ccc;

  border-radius: 2px;

  cursor: pointer;
}

.carousel-dots .dot.active {
  background: #28a745;
}

/* Hero Text (Right side) */

.hero-text {
  flex: 0 0 45%;

  padding: 10px;
}

.hero-text h1,
.hero-text1 h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 15px;

  font-weight: 600;

  color: #28a745;

  text-align: center;

  /* accent color */
}

.hero-text1 h1 {
  font-size: 3rem;
}

.hero-text p,
.hero-text1 p {
  font-size: 1.1rem;

  margin-bottom: 20px;

  color: #555;

  line-height: 1.4;

  text-align: center;
}

.hero-text1 p {
  font-size: 1.2rem;
}

/* About / Brand Statement (unchanged) */

.about-section {
  background-color: #fff;

  max-width: 1200px;

  margin: 40px auto;

  padding: 40px 20px;

  border-radius: 6px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  text-align: center;
}

.about-section h2 {
  font-size: 1.8rem;

  margin-bottom: 15px;

  color: #28a745;
}

.about-section p {
  font-size: 1rem;

  color: #555;

  margin-bottom: 15px;

  line-height: 1.6;

  max-width: 800px;

  margin-left: auto;

  margin-right: auto;
}

/* ALL-STAR TEAM SECTION (unchanged) */

.allstar-wrapper {
  max-width: 1200px;

  margin: 40px auto;

  padding: 0px;
}

.allstar-section {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;

  background: #fafafa;

  border: 1px solid #eee;

  border-radius: 8px;

  padding: 20px;

  margin-bottom: 30px;
}

.allstar-image {
  flex: 1 1 40%;

  text-align: center;
}

.allstar-image img {
  max-width: 300px;

  padding: 20px;

  border-radius: 6px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.allstar-info {
  flex: 1 1 50%;

  padding: 10px;

  text-align: center;
}

.allstar-info h2 {
  font-size: 1.8rem;

  margin-bottom: 10px;

  color: #28a745;
}

.allstar-info p {
  font-size: 1rem;

  margin-bottom: 30px;

  color: #555;
}

/* Secondary Cards */

.product-cards {
  width: 100%;
}

.product-card {
  margin: 8px;

  max-width: 100%;

  text-align: center;

  border: 1px solid #eee;

  border-radius: 8px;

  padding: 15px;

  cursor: pointer;

  transition: box-shadow 0.2s ease, transform 0.2s ease;

  background: #fff;

  min-height: 275px;
}

.product-card:hover {
  transform: translateY(-3px);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
  max-width: 100px;

  margin: 0 auto 10px;

  height: 125px;

  object-fit: contain;
}

.product-card h3 {
  font-size: 1rem;

  margin-bottom: 8px;

  color: #28a745;
}

.product-card p {
  font-size: 0.9rem;

  color: #777;
}

/* Trust / Badges Section */

.badges {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-around;

  align-items: center;

  max-width: 1200px;

  margin: 40px auto;

  padding: 0px;

  text-align: center;
}

.badge-item {
  flex: 1 1 30%;

  margin: 10px;

  background-color: #fff;

  border-radius: 6px;

  padding: 20px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badge-item h4 {
  font-size: 1rem;

  margin-bottom: 5px;

  color: #28a745;
}

.badge-item p {
  font-size: 0.9rem;

  color: #666;
}

/* Newsletter / CTA SECTION */

.newsletter {
  max-width: 1200px;

  margin: 40px auto;

  padding: 40px 20px;

  background: #fff;

  border-top: 1px solid #dde2e5;

  text-align: center;

  border-radius: 6px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newsletter h3 {
  font-size: 1.5rem;

  margin-bottom: 15px;

  color: #28a745;
}

.newsletter p {
  font-size: 1rem;

  color: #555;

  margin-bottom: 20px;

  max-width: 600px;

  margin-left: auto;

  margin-right: auto;

  line-height: 1.6;
}

.newsletter form {
  display: inline-flex;

  flex-wrap: wrap;

  justify-content: center;

  max-width: 500px;

  margin: 0 auto;
}

.newsletter input {
  padding: 12px;

  font-size: 1rem;

  border: 1px solid #ccc;

  border-radius: 4px 0 0 4px;

  min-width: 250px;

  height: auto;

  width: auto;
}

.newsletter button {
  padding: 12px 20px;

  font-size: 1rem;

  border: none;

  background: #28a745;

  color: #fff;

  border-radius: 0 4px 4px 0;

  cursor: pointer;

  transition: background 0.2s ease;

  width: auto;
}

.newsletter button:hover {
  background: #1e8f3a;
}

/* Footer */

footer {
  background: #fff;

  border-top: 1px solid #dde2e5;

  margin-top: 40px;

  padding: 20px 0;
}

.footer-container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

  text-align: center;
}

.footer-column {
  flex: 1 1 200px;

  margin: 10px 0;
}

.footer-column h4 {
  font-size: 1rem;

  margin-bottom: 10px;

  color: #28a745;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column ul li a {
  font-size: 0.9rem;

  color: #555;

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #28a745;
}

.footer-bottom {
  text-align: center;

  margin-top: 20px;

  font-size: 0.8rem;

  color: #666;
}

.container {
  max-width: 1200px;

  margin: 0 auto;
}

.Checkout_V2_submitButton__24pkk {
  text-align: center;

  width: 200px;

  color: #fff;

  border-radius: 5px;

  font-size: 18px;

  font-weight: 700;

  text-shadow: 0 2px 1px #3b700a;

  background: #60ba0f;

  background: linear-gradient(180deg, #60ba0f 0, #4a8c0d);

  padding: 15px 30px;

  border: 0 transparent;

  cursor: pointer;

  display: block;

  margin: -10px auto 0;
}

.footer-txt1 {
  font-family: Open Sans, sans-serif;

  color: #777;

  font-size: 17px;
}

.footer-txt1 a {
  padding: 0 5px;
}

.footer-container .brand img {
  width: 100px;

  margin: 0 auto;
}

.allstar-image h2 {
  font-size: 24px;

  text-align: left;

  margin: 10px 0 20px;

  color: #28a745;
}

.slider-conetent {
  display: flex;

  justify-content: center;

  align-items: center;

  padding: 50px 0;
}

.slider-conetent1 {
  text-align: center;

  padding: 149px 0;
}

.content-slide {
  flex: 0 0 47%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  background-color: #c0c0c0;

  padding: 8px 11px;

  font-size: 15px;

  color: #fff;

  border-radius: 34%;
}

.glide__bullets {
  display: flex;

  justify-content: center;

  margin-right: -10px;

  margin-left: -10px;
}

.glide__bullet {
  position: relative;

  display: flex;

  flex: 0 1 calc(100% / 3);

  max-width: calc(100% / 3);

  padding: 0;

  border: 0;

  overflow: hidden;

  color: #000;

  height: 40px;

  margin-right: 10px;

  margin-left: 10px;

  background-color: transparent;

  box-shadow: inset 0px -4px 0px 0px lightgrey;
}

.glide__bullet:before {
  content: "";

  position: absolute;

  bottom: 0;

  width: 100%;

  height: 4px;

  display: block;

  opacity: 0;

  transform: translateX(-100%);

  background-color: #000;

  transition: transform 5s;
}

.glide__bullet--active:before {
  opacity: 1;

  transform: translateX(0);
}

.glide__arrow {
  position: absolute;

  top: 190px;

  border: none;

  background-color: #c0c0c0;

  padding: 8px 11px;

  font-size: 15px;

  color: #fff;

  border-radius: 34%;
}

.glide__arrow--next {
  right: 0px;
}

.glide__bullet {
  margin-right: 5px;

  margin-left: 5px;

  flex: 0 1 calc(18% / 3);

  height: 3px;
}

.glide__bullet:before {
  background-color: #28a745;
}

/* .glide:hover .glide__arrow{

    background-color: #c0c0c0;

    color: #fff;

  } */

#app_common_modal .app_modal_body {
  margin: 50px auto;
}

#app_common_modal_close,
#error_handler_overlay_close {
  line-height: 26px;
}

.Checkout_V2_submitButton__24pkk:hover {
  background: #000;

  color: #60ba0f;

  text-shadow: none;
}

.warning {
  color: #ffffff;

  font-size: 14px;

  background-color: #ff0000a1;

  width: 276px;

  margin: 10px auto 0;

  padding: 10px 0;
}

.success {
  color: #ffffff;

  font-size: 14px;

  width: 276px;

  margin: 10px auto;

  background-color: #008000b0;

  padding: 10px 0;
}

.swiper-slide {
  text-align: center;

  font-size: 18px;

  background: #fff;

  display: flex;

  justify-content: center;

  align-items: flex-start;
}

.swiper-pagination-bullet {
  width: 20px;

  height: 4px;

  border-radius: 0;

  position: relative;

  overflow: hidden;
}

.swiper-pagination-bullet::before {
  content: "";

  display: block;

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;
}

.swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.4);
}

.swiper-pagination-bullet-active::before {
  background-color: red;

  animation: slide-progress 2s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

.swiper-paused .swiper-pagination-bullet-active::before {
  animation-play-state: paused;
}

.pause-play {
  position: absolute;

  bottom: 8px;

  /* background: #000; */

  z-index: 99;

  /* color: #fff; */

  border: none;

  cursor: pointer;
}

@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

.swiper-button-prev,
.swiper-button-next {
  background-image: none;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: #c0c0bf;

  padding: 2px 10px;

  border-radius: 10px;

  color: #fff;

  width: 27px;

  height: 30px;

  display: none;
}

.swiper-button-prev {
  left: 0px;
}

.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  display: block;
}

.swiper-button-prev i,
.swiper-button-next i {
  line-height: 26px;
}

.swiper-pagination-bullet {
  width: 26px;

  height: 3px;

  border-radius: 4px;
}

.swiper-pagination-bullet-active::before {
  background-color: #28a745;
}

.pause-play {
  position: absolute;

  bottom: 7px;

  /* background: #000; */

  z-index: 99;

  /* color: #fff; */

  border: none;

  right: 27%;

  cursor: pointer;
}

video::-webkit-media-controls {
  display: none !important;
}

.popup_wrap {
  position: fixed;

  inset: 0;

  background: rgb(0 0 0 / 70%);

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;

  overflow-y: scroll;
}

.popup_box {
  max-width: 650px;

  background: #fff;

  border-radius: 15px;

  width: 100%;

  margin-block: 1rem;
}

.popup_content {
  position: relative;

  padding: 3rem 2rem;

  display: flex;

  justify-content: space-evenly;
}

.popup_content .content-button .Checkout_V2_submitButton__24pkk {
  text-align: center;

  width: 240px;

  color: #fff;

  border-radius: 5px;

  font-size: 16px;

  font-weight: 700;

  text-shadow: 0 2px 1px #3b700a;

  background: #60ba0f;

  background: linear-gradient(180deg, #60ba0f 0, #4a8c0d);

  padding: 15px 30px;

  border: 0 transparent;

  cursor: pointer;

  display: block;

  margin: -10px auto 0;
}

.popup_content .close {
  position: absolute;

  top: 4px;

  right: 11px;

  color: gray;

  cursor: pointer;
}

.content-button {
  display: inline-block;
}

.price-text {
  font-weight: 600;

  font-size: 17px;

  margin-right: 10px;
}

/* Responsive */

@media (min-width: 1860px) {
  .container {
    max-width: 1400px;
  }

  .content-slide video {
    max-width: 700px;
  }

  .content-slide {
    flex: 0 0 40%;
  }
}

@media (max-width: 1091px) {
  .hero-text h1,
  .hero-text1 h1 {
    font-size: 44px;
  }

  .pause-play {
    left: 71%;
  }

  .swiper-pagination-bullet {
    width: 22px;

    height: 3px;

    border-radius: 4px;
  }
}

@media (max-width: 1000px) {
  .hero-text h1,
  .hero-text1 h1 {
    font-size: 31px;
  }

  .content-slide {
    flex: 0 0 41%;
  }

  .hero-text p,
  .hero-text1 p {
    font-size: 14px;
  }

  .slider-conetent {
    justify-content: center;
  }
}

@media (max-width: 982px) {
  .swiper-pagination-bullet {
    width: 16px;

    height: 3px;

    border-radius: 4px;
  }
}

@media (max-width: 980px) and (min-width: 740px) {
  .pause-play {
    left: 70%;
  }
}

@media (max-width: 940px) {
  .badge-item p {
    font-size: 12px;
  }

  .badge-item h4 {
    font-size: 13px;
  }

  .badge-item {
    padding: 20px 0;
  }

  .pause-play {
    left: 68%;
  }
}

@media (max-width: 881px) {
  .swiper-pagination-bullet {
    width: 14px;

    height: 3px;

    border-radius: 4px;
  }
}

@media (max-width: 830px) {
  .pause-play {
    left: 70%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .carousel-container,
  .hero-text {
    flex: 1 1 100%;
  }

  .carousel-container {
    margin-bottom: 20px;
  }

  .slider-conetent {
    flex-direction: column-reverse;
  }

  .content-slide {
    flex: auto;
  }

  .hero-text h1,
  .hero-text1 h1 {
    font-size: 42px;
  }

  .hero-text p,
  .hero-text1 p {
    font-size: 14px;
  }

  .glide__slide .Checkout_V2_submitButton__24pkk {
    margin-bottom: 20px;
  }

  .slider-conetent1 {
    padding: 173px 0;
  }

  .hero-text {
    text-align: center;
  }

  .content-slide video {
    width: 550px;
  }

  .slider-conetent {
    padding: 0px 0 40px 0;
  }

  .glide__bullets {
    margin-top: 30px;
  }

  .allstar-info h2 {
    font-size: 26px;

    margin-bottom: 10px;
  }

  .allstar-info p {
    font-size: 14px;
  }

  .Checkout_V2_submitButton__24pkk {
    text-align: center;

    width: 200px;

    color: #fff;

    border-radius: 5px;

    font-size: 17px;

    font-weight: 700;

    text-shadow: 0 2px 1px #3b700a;

    background: #60ba0f;

    background: linear-gradient(180deg, #60ba0f 0, #4a8c0d);

    padding: 11px 26px;

    border: 0 transparent;

    cursor: pointer;

    display: block;

    margin: -10px auto 20px;
  }

  .footer-txt1 {
    font-size: 13px;
  }

  .nav-container {
    justify-content: center;
  }

  .hero-content {
    display: block;
  }

  .pause-play {
    left: 74%;
  }

  .popup_content {
    flex-direction: column;

    align-items: center;
  }

  .popup_content .content-button .Checkout_V2_submitButton__24pkk {
    margin: 0px;
  }

  .popup_content span {
    padding: 17px 0;
  }

  .popup_box {
    max-width: 506px;
  }

  .popup_content .close {
    top: -11px;
  }

  .swiper-pagination-bullet {
    width: 16px;
  }

  .product-cards {
    justify-content: space-evenly;
  }
}

@media (max-width: 680px) {
  .pause-play {
    left: 77%;
  }
}

@media (max-width: 668px) {
  .content-slide video {
    width: 500px;
  }
}

@media (max-width: 640px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 38%;
  }

  .pause-play {
    left: 78%;
  }

  .hero-text h1,
  .hero-text1 h1 {
    font-size: 36px;
  }

  .slider-conetent1 {
    padding: 161px 0;
  }

  .swiper-pagination-bullet {
    width: 15px;
  }

  .popup_box {
    max-width: 397px;
  }
}

@media (max-width: 555px) {
  .allstar-image h2 {
    text-align: center;
  }

  .allstar-image img {
    max-width: 237px;

    margin: 0 auto;
  }

  .pause-play {
    left: 82%;
  }
}

@media (max-width: 520px) {
  .hero-text h1,
  .hero-text1 h1 {
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .product-card h3 {
    font-size: 14px;

    margin-bottom: 8px;

    color: #28a745;
  }

  .slider-conetent1 {
    padding: 132px 0;
  }

  .badge-item h4 {
    font-size: 13px;
  }

  .pause-play {
    left: 85%;
  }

  .pause-play i {
    font-size: 13px;
  }

  .swiper-pagination-bullet {
    width: 13px;

    height: 2px;
  }
}

@media (max-width: 440px) {
  .newsletter input {
    padding: 11px;

    font-size: 14px;

    min-width: 205px;
  }

  .newsletter button {
    padding: 11px 12px;

    font-size: 14px;
  }

  .warning {
    width: 250px;

    font-size: 13px;
  }

  .success {
    width: 252px;

    font-size: 13px;
  }

  .Checkout_V2_submitButton__24pkk {
    text-align: center;

    width: 175px;

    color: #fff;

    border-radius: 5px;

    font-size: 15px;

    font-weight: 700;

    text-shadow: 0 2px 1px #3b700a;

    background: #60ba0f;

    background: linear-gradient(180deg, #60ba0f 0, #4a8c0d);

    padding: 11px 26px;

    border: 0 transparent;

    cursor: pointer;

    display: block;

    margin: -10px auto 20px;
  }

  .swiper-pagination-bullet {
    width: 12px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 38%;
  }

  .pause-play {
    left: 84%;
  }
}

@media (max-width: 425px) {
  .badge-item {
    padding: 20px 0;
  }

  .badge-item h4 {
    font-size: 14px;
  }

  .popup_box {
    max-width: 290px;
  }

  .popup_content .content-button .Checkout_V2_submitButton__24pkk {
    text-align: center;

    width: 216px;

    color: #fff;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 700;

    text-shadow: 0 2px 1px #3b700a;

    background: #60ba0f;

    background: linear-gradient(180deg, #60ba0f 0, #4a8c0d);

    padding: 15px 30px;

    border: 0 transparent;

    cursor: pointer;

    display: block;

    margin: -10px auto 0;
  }
}

@media (max-width: 414px) {
  .product-card img {
    max-width: 85px;
  }

  .product-card p {
    font-size: 13px;
  }

  .hero-text h1,
  .hero-text1 h1 {
    font-size: 26px;
  }
}

@media (max-width: 400px) {
  .pause-play {
    left: 88%;
  }
}

@media (max-width: 390px) {
  .slider-conetent1 {
    padding: 129px 0;
  }

  .pause-play {
    left: 89%;
  }

  .swiper-pagination-bullet {
    width: 12px;
  }
}

@media (max-width: 352px) {
  .newsletter form {
    display: inline-flex;

    flex-wrap: nowrap;
  }

  .swiper-pagination-bullet {
    width: 9px;
  }
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 2px;
}

.slick-prev:before,
.slick-next:before {
  font-family: "FontAwesome";

  font-size: 2rem;

  color: #000000;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-next {
  right: 10px !important;
}

.slick-prev {
  left: 10px !important;

  z-index: 1 !important;
}

.content-slide img {
  max-width: 340px;
  margin: 0 auto;
}
.swiper-wrapper {
  height: 85% !important;
}
@media (max-width: 767px) {
  .content-slide img {
    max-width: 220px;
  }
}
