* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: #080808;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.offer-bar {
  height: 40px;
  background: #e1eeb7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 170px;
  font-size: 14px;
}

.offer-bar b {
  font-weight: 500;
}

.header {
  height: 62px;
  padding: 0 max(24px, calc((100vw - 1410px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -2px;
}

.logo span {
  background: #e50914;
  color: #fff;
  padding: 0 6px;
  border-radius: 7px;
}

.nav {
  display: flex;
  gap: 38px;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.nav small {
  font-size: 13px;
  font-weight: 800;
}

.icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.icons button {
  position: relative;
  border: 0;
  background: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #000;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.icons svg,
.search-panel svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-icon span {
  position: absolute;
  top: -13px;
  right: -13px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #df171b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.fav-toggle svg {
  transition: fill .2s ease, stroke .2s ease, transform .2s ease;
}

.fav-toggle.is-active svg,
.wish.is-active {
  color: #df171b;
  fill: #df171b;
}

.fav-toggle.is-active svg {
  transform: scale(1.08);
}

.menu {
  display: none !important;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: start center;
  padding: 120px 24px 24px;
  background: rgba(255, 255, 255, .96);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-panel {
  width: min(850px, 100%);
  display: grid;
  grid-template-columns: 1fr 64px;
  border-bottom: 2px solid #111;
}

.search-panel input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 18px 4px;
  background: transparent;
  color: #111;
  font-size: 34px;
  font-weight: 700;
}

.search-panel input::placeholder {
  color: #7b7b7b;
}

.search-panel button,
.search-close {
  border: 0;
  background: none;
  cursor: pointer;
}

.search-panel button {
  display: grid;
  place-items: center;
  color: #111;
}

.search-close {
  position: absolute;
  top: 34px;
  right: 42px;
  width: 42px;
  height: 42px;
  color: #111;
  font-size: 42px;
  line-height: 1;
}

.hero-carousel {
  display: grid;
  grid-template-columns: minmax(84px, 1fr) minmax(0, 1480px) minmax(84px, 1fr);
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero {
  position: relative;
  height: 660px;
  border-radius: 20px;
  overflow: hidden;
  background: #eeebe5;
  display: flex;
  align-items: center;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  transition: opacity .28s ease;
}

.hero.is-changing .hero-bg img {
  opacity: .35;
}

.hero-text {
  transition: opacity .22s ease, transform .22s ease;
}

.hero.is-changing .hero-text {
  opacity: 0;
  transform: translateY(12px);
}

.hero-text {
  position: relative;
  z-index: 1;
  padding-left: 90px;
  max-width: 560px;
}

.hero span {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}

.hero h1 {
  max-width: 540px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
}

.hero p {
  display: block;
  margin: 17px 0 40px;
  font-size: 20px;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 15px 31px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.hero-peek {
  min-height: 660px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  background: #eeebe5;
}

.hero-peek-right {
  border-radius: 20px 0 0 20px;
}

.hero-peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .28s ease;
}

.hero-arrows {
  position: absolute;
  right: 13%;
  bottom: 5%;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-arrows button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 7, 9, .08);
  background: #fff;
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrows button:hover {
  background: #111;
  color: #fff;
}

.features {
  max-width: 1410px;
  margin: 0 auto 74px;
  padding: 42px 48px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  background: #f9f9f9;
  border-radius: 16px;
}

.features div {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  row-gap: 5px;
  align-items: center;
  padding-bottom: 30px;
}

.features i {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  font-style: normal;
  font-size: 22px;
}

.features b {
  font-size: 18px;
  font-weight: 800;
}

.features span {
  color: #55585b;
  font-size: 15px;
  line-height: 1.4;
}

.categories {
  max-width: 1410px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 26px;
  text-align: center;
}

.cat img {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  object-fit: contain;
  background: #f7f7f7;
  padding: 24px;
  transition: transform .25s ease;
}

.cat:hover img {
  transform: scale(1.06);
}

.cat p {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
}

.coupon {
  max-width: 1410px;
  margin: 38px auto 0;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: center;
  padding: 18px;
  color: #55585b;
  font-size: 15px;
}

.coupon b {
  color: #de1518;
  font-weight: 800;
}

.products {
  max-width: 1410px;
  margin: 96px auto 110px;
  padding: 0 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
}

.deal-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
}

.deal-meta b {
  font-size: 18px;
}

.deal-meta a {
  font-weight: 800;
  border-bottom: 1px solid #111;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 205px;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 18px;
  transition: box-shadow .25s ease, transform .25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.product-card img {
  width: 170px;
  height: 168px;
  object-fit: contain;
  background: #f5f5f5;
  padding: 22px;
  border-radius: 6px;
}

.product-cat {
  display: block;
  margin-bottom: 7px;
  color: #55585b;
  font-size: 14px;
}

.product-card h3 {
  min-height: 46px;
  padding-right: 12px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}

.product-card p {
  margin: 9px 0 14px;
  font-size: 18px;
  font-weight: 900;
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: #da3f3f;
  color: #fff;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
}

.wish {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}

.wish.is-active {
  border-color: #df171b;
}

.actions {
  display: flex;
  gap: 8px;
}

.actions a,
.actions button {
  border: 0;
  border-radius: 20px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.whatsapp {
  background: #20d66b;
  color: #fff;
}

.actions button {
  background: #fff200;
  color: #111;
  cursor: pointer;
}

.banners {
  max-width: 1410px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.banners div {
  position: relative;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 40px;
}

.banners h4 {
  font-size: 20px;
  font-weight: 500;
}

.banners h2 {
  font-size: 38px;
  margin: 10px 0;
}

.banners p {
  font-size: 22px;
  margin-bottom: 22px;
}

.banners img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  margin-top: 20px;
}

footer {
  margin-top: 70px;
  padding: 80px max(22px, calc((100vw - 1410px) / 2));
  background: #f1eeee;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 45px;
}

footer p {
  margin: 15px 0;
  color: #333;
  font-size: 17px;
}

footer form {
  display: flex;
  margin-top: 18px;
}

footer input {
  min-width: 0;
  flex: 1;
  padding: 18px;
  border: 1px solid #ddd;
  font-size: 16px;
}

footer button {
  background: #111;
  color: #fff;
  border: 0;
  padding: 0 25px;
  text-transform: uppercase;
  font-weight: 800;
}

.top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 26px;
  box-shadow: 0 8px 25px #0002;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .hero-carousel {
    display: block;
    margin-bottom: 42px;
  }

  .hero-peek {
    display: none;
  }

  .hero {
    height: 570px;
    border-radius: 0;
  }

  .hero-text {
    padding-left: 40px;
  }

  .features,
  .categories,
  .coupon,
  .banners {
    margin-left: 18px;
    margin-right: 18px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1050px) {
  .nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 5%;
    background: #fff;
    box-shadow: 0 12px 30px #0001;
  }

  .nav.active {
    display: flex;
  }

  .menu {
    display: block !important;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories {
    grid-template-columns: repeat(4, 1fr);
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .offer-bar {
    height: auto;
    min-height: 40px;
    gap: 18px;
    padding: 8px 18px;
    text-align: center;
    font-size: 12px;
  }

  .header {
    padding: 0 18px;
  }

  .logo {
    font-size: 29px;
  }

  .icons {
    gap: 14px;
  }

  .icons button:not(.menu):not(#searchBtn) {
    display: none;
  }

  .search-overlay {
    padding-top: 92px;
  }

  .search-panel {
    grid-template-columns: 1fr 52px;
  }

  .search-panel input {
    font-size: 22px;
  }

  .search-close {
    top: 22px;
    right: 22px;
  }

  .hero {
    height: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    background: transparent;
  }

  .hero-bg {
    position: static;
    height: 420px;
    order: 1;
    display: block;
  }

  .hero-bg img {
    position: static;
    object-fit: cover;
  }

  .hero-text {
    order: 2;
    width: 100%;
    max-width: none;
    padding: 38px 28px 42px;
    text-align: center;
  }

  .hero h1 {
    max-width: 420px;
    margin: 0 auto;
    font-size: 40px;
  }

  .hero p {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .hero-arrows {
    display: none;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 28px 25px 0;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .cat img {
    width: 135px;
    height: 135px;
  }

  .products {
    margin: 70px auto;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .deal-meta {
    justify-content: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 135px 1fr;
    gap: 16px;
    padding: 14px;
  }

  .product-card img {
    width: 135px;
    height: 145px;
  }

  .actions {
    flex-direction: column;
  }

  .banners {
    grid-template-columns: 1fr;
  }

  .banners h2 {
    font-size: 31px;
  }

  .banners img {
    height: 270px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 50px 22px;
  }

  footer form {
    flex-direction: column;
  }

  footer button {
    padding: 18px;
  }

  .top {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 430px) {
  .hero-bg {
    height: 360px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card img {
    width: 100%;
  }
}
