.hero{
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    #fff 0%,
    #fff0f5 50%,
    #ffffff 100%
  );
  font-family: "Poppins", sans-serif;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* soft pink glow effect */
.hero::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #ffbed0;
  opacity: 0.15;
  border-radius: 50%;
  top: -100px;
  right: -150px;
  filter: blur(80px);
}

.hero-content{
  max-width: 800px;
  z-index: 2;
}

.badge{
  background: #ffbed0;
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero h1{
  font-size: 48px;
  margin: 20px 0;
  color: #222;
  font-weight: 700;
}

.hero p{
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-buttons{
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary{
  background: #ffbed0;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover{
  background: #ffbed0;
  transform: translateY(-2px);
}

.btn-secondary{
  border: 2px solid #ffbed0;
  color: #ffbed0;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover{
  background: #ffbed0;
  color: white;
}
#authentication #wrapper .breadcrumb li:last-child{
  color: #222;
}
#header .header-nav #_desktop_contact_link #contact-link, .sitemap{
  color: #222;
}
@media (max-width: 991px) {
    .carousel {
        padding-bottom: 0;
    }
    #header .header-nav #menu-icon .material-icons {
    line-height: 50px;
    color: #ffbed0;
    }
    #mobile_top_menu_wrapper .js-top-menu-bottom #contact-link, #mobile_top_menu_wrapper .js-top-menu-bottom .currency-selector, #mobile_top_menu_wrapper .js-top-menu-bottom .language-selector-wrapper {
    color: #ffbed0;
    }
    #mobile_top_menu_wrapper .js-top-menu-bottom a, .dropdown, body#checkout section.checkout-step small {
    color: #ffbed0;
      }
  }
 @media (max-width: 767px) {
    #header .top-logo img {
        width: auto;
        max-height: 52px;
    }
}