
/* hero.css */
/* ===== Hero Section ===== */
.hero {
  position: relative;
  background: linear-gradient(to right, #0081d6, #005b8a);
  color: white;
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  min-height: 500px; /* Added for better control */
} 

.hero--mint {
  position: relative;
  background: linear-gradient(to right, #00c9ff, #92fe9d);
  color: white;
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  min-height: 500px; /* Added for better control */
}
.hero--aqua {
  position: relative;
  background: linear-gradient(to right, #f8a100, #d97706); /* richer orange-gold tones */
  color: white;
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  min-height: 500px;
}


.hero__image-container {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
  max-height: 100%;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


/* Flash Sale Banner */
.hero__flash-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffdd57;
  color: #333;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  z-index: 10;
  font-size: 1rem;
}

/* Hero Content Container */
.hero__content {
  flex: 1 1 50%;
  padding-top: 100px;
  max-width: 600px;
  z-index: 5;
  padding-left: 200px;
  padding-right: 20px;
  align-items: flex-start;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Headings */
.hero__heading {
  font-size: 2em;
  margin-bottom: 0;
  line-height: 1.2;
}

.hero__heading--last {
  display: inline-block;
  margin-bottom: 20px;
}


/* Hero Text */
.hero__text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 100%;
}

/* Hero Buttons Container */
.hero__buttons {
  display: flex;
  justify-content: flex-start;
}

/* Hero Buttons */
.hero__button {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__button--primary {
  margin-right: 10px;
  background-color: white;
  color: #007bff;
}

.hero__button--primary:hover {
  background-color: #f0f7ff;
  transform: translateY(-2px);
}

.hero__button--secondary {
  background-color: #004080;
  color: white;
}

.hero__button--secondary:hover {
  background-color: #003366;
  transform: translateY(-2px);
}

/* Hero Image Container */
.hero__image-container {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0;
}

/* Hero Image */
.hero__image {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0;
}
.flash-banner {
  background-color: #e6f0f3; /* Soft blue-gray */
  color: #10375c;            /* Dark navy */
  padding: 15px;
  text-align: center;
  font-weight: bold;

  /* Ensures consistent rendering */
  isolation: isolate;
  color-scheme: light;
  position: relative;
  z-index: 1;
}


.flash-banner button {
  background-color: #58a4b0;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .hero,
  .hero--mint,
  .hero--aqua {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    padding-top: 60px;
  }

  .hero__content {
    padding: 20px;
    text-align: center;
    max-width: 90%;
  }

  .hero__image-container {
    margin-top: 30px;
    justify-content: center;
    align-items: center;
  }

  .hero__heading {
    font-size: 2.2rem;
  }

  .hero__text {
    font-size: 1.1rem;
  }

  .hero__button {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .hero__heading {
    font-size: 1.8rem;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__button {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .hero__image {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__flash-banner {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.swiper-button-prev,
.swiper-button-next {
  color: #5a676e;
  width: 40px;
  height: 40px;
}