* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito sans", sans-serif;
}

.top-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.discount-container {
  background-color: #005CFF;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  gap: 3px;
}

.discount-container .discount-amount {
  font-weight: 700;
  background: #6220C1;
  border-radius: 4px;
  padding: 0 4px;
}

.discount-container .discount-code {
  font-style: italic;
}

.top-header .middle-header-container {
  display: flex;
  justify-content: space-between;
  width: 75%;
}

.logo-search-container {
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  width: 605px;
  margin-right: 10px;
}

.logo-search-container .logo {
  width: 152.58px;
  height: 27.08px;
}

.search-container {
  display: flex;
  width: 100%;
}

.search-input {
  flex-grow: 1;
  height: 30px;
  outline: none;
  border: 1px solid #D4D4D4;
  border-radius: 8px;
  padding: 0 40px 0 10px;
}

.input-error {
  border: 1px solid red;
  box-shadow: 0 0 4px red;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 55%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.search-icon img {
  width: 18px;
  height: 18px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  position: relative;
  background: white;
  font-size: 24px;
  padding: 8px;
  border-radius: 8px;
  width: 60%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 18px;
  cursor: pointer;
  background-color: #005CFF;
  color: #FFFFFF;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  outline: none;
  border: none;
}

.user-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.user-greeting {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 22px;
}

.user-icon {
  min-width: 21px;
  min-height: 24px;
}

.user-greeting .user-name {
  line-height: 1.2;
}

.shopping-cart {
  position: relative;
  margin-top: 7px;
}

.shopping-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -14px;
  background-color: #005CFF;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  text-align: center;
  box-shadow: 0 0 0 2px #FFFFFF;
}

.menu-icon {
  display: none;
}

.top-header .header-nav {
  width: 80%;
  margin-bottom: 10px;
  position: relative;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 13px;
  line-height: 22px;
  white-space: nowrap;
  flex-wrap: wrap;
}

.all-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.menu-option {
  cursor: pointer;
  user-select: none;
  padding: 0 10px;
}

.menu-option:hover {
  color: #005CFF;
}

.menu-option-title {
  width: 100%;
  margin-left: 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-bottom: -10px;
}

.dropdown-menu {
  position: absolute;
  z-index: 10;
  box-shadow: 0px 4px 8px -1px #0000001A;
  background-color: #FFFFFF;
  width: calc(100% + 4px);
  left: -2px;
  min-height: 300px;
  height: auto;
  margin-top: 10px;
  display: none;
  flex-wrap: wrap;
}

.side-menu-container {
  background-color: #F5F5F5;
}

.dropdown-menu--active {
  display: flex;
}

.dropdown-side-options {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  font-weight: 400;
  gap: 11px;
  width: 210px;
  max-height: 300px;
  opacity: 0.57;
  background-color: #F5F5F5;
  overflow-y: auto;
  list-style: none;
  padding: 15px 10px;
  margin-right: 8px;
  color: #303030;
  scrollbar-width: thin;
  scrollbar-color: #CECECE transparent;
}

.dropdown-side-options li {
  width: 100%;
  padding: 2px 2px 2px 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.dropdown-side-options li:hover {
  color: #005CFF;
  font-weight: 700;
}

.categories-container {
  display: flex;
  justify-content: space-around;
  width: 350px;
  gap: 20px;
}

.categories-container .dropdown-categories ul {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  font-weight: 400;
  gap: 11px;
  max-height: 300px;
  opacity: 0.57;
  list-style: none;
  padding: 15px 0;
  color: #656565;
}

.dropdown-categories ul li {
  width: 100%;
  padding: 2px 0px 2px 0px;
  cursor: pointer;
}

.dropdown-categories ul li:hover {
  color: #005CFF;
  font-weight: 700;
}

.dropdown-categories ul li:first-child {
  color: #005CFF;
  font-weight: 700;
}

.dropdown-cta {
  position: relative;
  background-image: url("./assets/images/image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top 50% left 60%;
  width: 230px;
  min-height: 280px;
  margin-left: auto;
  margin-bottom: -5px;
  z-index: 0;
  border-radius: 12px;
  transform: scale(0.85);
}

.dropdown-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.74902) -20.45%, rgba(0, 0, 0, 0) 138.31%);
  border-radius: 12px;
}

.dropdown-cta > * {
  position: relative;
  z-index: 2;
}

.dropdown-cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  margin-left: 32px;
  font-weight: 400;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: -0.5%;
  color: #FFFFFF;
}

.dropdown-cta-text span {
  font-weight: 700;
  letter-spacing: 0%;
}

.dropdown-cta-text button {
  width: 100%;
  height: 40px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  background-color: transparent;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
  cursor: pointer;
}

.hero-section {
  display: flex;
  justify-content: center;
  position: relative;
  height: 330px;
  background-color: #E7E7EA;
  margin-bottom: 50px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  width: 75%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.hero-container .hero-image img {
  height: 330px;
  mix-blend-mode: darken;
  margin-top: 5px;
}

.hero-text * {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-title {
  font-weight: 700;
  font-size: 65px;
}

.hero-title span {
  font-weight: 300;
}

.hero-subtitle {
  font-weight: 700;
  color: #005CFF;
  letter-spacing: 5px;
}

.hero-subtitle span {
  font-weight: 700;
  font-size: 38px;
  line-height: 2;
  letter-spacing: 0;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.new-arrivals {
  width: 75%;
}

.new-arrivals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.new-arrivals-header h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

.new-arrivals-header a {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  color: #000000;
  text-decoration: none;
}

.carrousel-wrapper {
  position: relative;
  margin-bottom: 80px;
}

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

.carousel-track {
  display: flex;
  gap: 1.2%;
  transition: transform 0.4s ease;
}

.new-arrivals .card {
  flex: 0 0 19%;
  box-sizing: border-box;
  padding: 0.5rem;
  border-radius: 10px;
  border: 1px solid #DDDDDD;
  position: relative;
}

.new-arrivals .card img {
  width: 100%;
  display: block;
}

.new-arrivals .card h3 {
  font-size: 12px;
  margin: 0.5rem 0;
  letter-spacing: 0;
  line-height: 100%;
  font-weight: 400;
}

.badge {
  position: absolute;
  top: 7px;
  left: 8px;
  background: #00264E;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 10px;
  padding: 4px 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.prices-container {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.prices {
  display: flex;
  flex-direction: column;
}

.old-price {
  font-size: 12px;
  text-decoration: line-through;
  letter-spacing: 0;
  line-height: 100%;
  font-weight: 400;
  color: #303030;
  margin-bottom: 5px;
}

.price {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 100%;
  color: #000000;
}

.discount {
  background-color: #5EC0BE;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 11px;
  line-height: 12px;
  text-align: center;
  margin-left: 7px;
  text-transform: uppercase;
  letter-spacing: 0;
  offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-color: #FFFFFF;
  text-decoration-style: solid;
  text-decoration: underline;
}

.installments {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 7px;
  margin-bottom: 15px;
  color: #303030;
}

.installments span {
  font-weight: 700;
}

.buy-btn {
  display: block;
  width: 100%;
  padding: 10px 24px;
  background: #005CFF;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: 1px solid #005CFF;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev {
  left: -13px;
  box-shadow: 0px 3px 4px 0px #00000040;
}

.next {
  right: -13px;
  box-shadow: 0px 3px 4px 0px #00000040;
}

.circle-status-container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.circle-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #838383;
  cursor: pointer;
}

.circle-status-container .circle-status:first-child {
  background-color: #303030;
}

.media-text {
  width: 70%;
  min-height: 85%;
  display: flex;
  margin-bottom: 40px;
}

.media-text .banner {
  background-color: #C2C2C2;
  width: 55%;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-text .left-cup {
  width: 95%;
  transform: rotate(7.54);
  margin-left: -32.62px;
}

.media-text .right-cup {
  width: 100%;
}

.media-text-content {
  width: 45%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  line-height: 140%;
}

.media-text-reversed {
  background-color: #DEDEDE;
  width: 100%;
  padding: 4% 15%;
}

.media-text-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.media-text-items img {
  width: 90px;
  height: 90px;
}

.right-content {
  margin-left: 30px;
  margin-top: 10px;
}

.left-content {
  margin-right: 45px;
}

.right-content h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: #000000;
}

.right-content p {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 5%;
  color: #000000;
}

.left-content h2 {
  font-family: "Nunito";
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 4%;
  text-align: center;
  text-transform: uppercase;
  color: #4F4F4F;
}

.left-content p {
  font-family: "Nunito";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 5%;
  color: #4F4F4F;
}

.banner-section {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  overflow: hidden;
}

.banner-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("./assets/images/avanti-lounge.png");
  background-size: cover;
  background-position: top 52% left 50%;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: -1;
}

.banner-section .banner-text {
  width: 100%;
  background-color: #005CFF;
  height: 110px;
  font-family: "Nunito";
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.news-letter {
  width: 75%;
  margin-bottom: 30px;
}

.news-letter h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}

.news-letter h2 span {
  color: #005CFF;
}

.news-letter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #DEDEDE;
  height: 176px;
  border-radius: 8px;
  padding: 0 20px;
}

.name-input, .email-input {
  width: 200px;
  height: 48px;
  border-radius: 8px;
  outline: none;
  border: none;
  padding: 0 15px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #656565;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  border: 1px solid #DDDDDD;
}

.checkbox-container a {
  text-decoration: underline;
  text-decoration-style: solid;
  offset: 0%;
  text-decoration-thickness: 0%;
  color: #656565;
}

.news-letter-form button {
  width: 121px;
  height: 48px;
  font-size: 16px;
  border-radius: 8px;
  padding-top: 14px;
  padding-right: 24px;
  padding-bottom: 14px;
  padding-left: 24px;
  background-color: #005CFF;
  color: #FFFFFF;
  cursor: pointer;
  border: none;
}

.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}

.footer-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #F5F5F5;
  padding: 40px 15%;
}

.footer-nav h4 {
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #000000;
  margin-bottom: 15px;
}

.footer-nav li {
  list-style: none;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a h5 {
  font-weight: 600;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #303030;
}

.footer-nav .social-media {
  padding-left: 10px;
  width: 29%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 69.9%;
}

.footer-content .arrow-icon {
  display: none;
}

.helper-center,
.service,
.institutional {
  padding-right: 5px;
}

.social-media .logo {
  width: 152.58px;
  height: 27.08px;
}

.social-media-icons {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 20px 0;
}

.social-media-icons .instagram-icon {
  width: 19px;
  height: 19px;
}

.social-media-icons .facebook-icon {
  width: 10.38px;
  height: 22.34px;
}

.social-media-icons .youtube-icon {
  width: 26px;
  height: 26px;
}

.social-media-icons .tiktok-icon {
  width: 18.19px;
  height: 20.99px;
}

.footer-nav .service h5 {
  font-weight: 400;
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 0%;
}

.footer-nav .service span {
  font-weight: 700;
}

.footer-nav .service p {
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0%;
}

.footer-nav .payment-methods {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 30px;
}

.footer-nav .payment-methods img {
  transform: scale(0.5);
}

.copyright {
  width: 70%;
  margin-top: 20px;
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #303030;
  text-align: center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  color: #FFFFFF;
}

.footer-logos img {
  width: 50px;
  transform: scale(0.9);
}

.footer-logos .avanti-logo,
.footer-logos .vtex-logo {
  width: 80px;
}

.copyright-mobile {
  display: none;
}