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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #fbf8f5;
  color: #2f2621;
  letter-spacing: 0.15px;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HERO */

.hero {
  min-height: 620px;
  background: #eadfd7;
  position: relative;
  overflow: hidden;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/banner.png") center center/cover no-repeat;
  z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    left: -200px;
    top: -80px;
    width: 850px;
    height: 780px;
    background: rgba(251,248,245,0.95);
    border-radius: 50%;
    z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 9%;
  max-width: 520px;
}

.hero-image {
  display: none;
}

.logo {
  position: absolute;
  top: 45px;
  left: 120px;
  z-index: 10;
  font-family: "Cinzel", serif;
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 0.9;
  color: #3e2d25;
}

.logo span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 5px;
  margin-top: 8px;
  font-weight: 500;
}

.top-icons {
  position: absolute;
  top: 28px;
  right: 8%;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.circle-icon i {
  font-size: 18px;
  color: #4a3024;
  transition: .3s;
}

.circle-icon:hover {
  transform: translateY(-2px);
}

.circle-icon:hover i {
  transform: scale(1.1);
}

.catalog-pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #4a3024;
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: 0.3s;
  font-weight: 500;
}

.catalog-pill {
  padding: 13px 22px;
}

.catalog-pill:hover,
.btn:hover {
  background: #7b5c4b;
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 120px;
  padding-right: 6%;
}

.hero-content h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(68px, 8vw, 110px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: #3e2d25;
}

.tagline {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 3.5px;
  color: #6f594e;
  text-transform: uppercase;
  font-weight: 500;
}

.line {
  width: 230px;
  height: 1px;
  background: #d7c4ba;
  margin: 22px 0;
}

.hero-content p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.9;
  color: #6c5b52;
  font-weight: 400;
}

.hero-content .btn {
  margin-top: 30px;
}

.hero-image {
  min-height: 620px;
  background: url("assets/banner.png") center/cover no-repeat;
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  margin: 72px 0 38px;
}

.section-title h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3e2d25;
}

.underline {
  width: 70px;
  height: 1px;
  background: #9b7766;
  margin: 14px auto 0;
}

/* PRODUCT */

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

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

.product-card {
  background: #fff;
  border: 1px solid #eadfd9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(82, 55, 39, 0.07);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(82, 55, 39, 0.14);
}

.product-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #e6ddd8;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  transition: .4s;
}

.best-grid .product-img {
  aspect-ratio: 4 / 5;
}

.product-card:hover .product-img {
  transform: scale(1.03);
}

.heart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  color: #6b4b3b;
  display: grid;
  place-items: center;
  font-size: 18px;
  backdrop-filter: blur(4px);
}

.discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #8a4b3a;
  color: white;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .6px;
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.product-info p {
  font-size: 12px;
  color: #7a6358;
  margin: 5px 0 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e1d1c8;
  border-radius: 999px;
  padding: 8px 10px 8px 14px;
  font-size: 12px;
  font-weight: 500;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.old-price {
  font-size: 11px;
  color: #b5a79f;
  text-decoration: line-through;
  font-weight: 400;
}

.new-price {
  font-size: 15px;
  color: #4a3024;
  font-weight: 700;
}

.arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #8a6a58;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: .3s;
  flex-shrink: 0;
}

.product-card:hover .arrow {
  background: #6f4d3d;
  transform: translateX(2px);
}

.stars {
  color: #b0794f;
  font-size: 13px;
  margin-bottom: 10px;
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 42px;
  border: 1px solid #cdb8ad;
  border-radius: 999px;
  color: #6b4b3b;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: 0.3s;
  font-weight: 500;
}

.outline-btn:hover {
  background: #4a3024;
  color: #fff;
}

/* PROMO */

.promo {
  margin-top: 75px;
  background: #8a634f;
  color: #fff;
  border-radius: 24px;
  padding: 52px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.promo::before,
.promo::after {
  content: "❦";
  position: absolute;
  font-size: 90px;
  opacity: 0.13;
}

.promo::before {
  bottom: 5px;
  left: 25px;
}

.promo::after {
  top: 5px;
  right: 25px;
}

.promo-text,
.promo-list {
  position: relative;
  z-index: 2;
}

.promo small {
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  font-size: 11px;
  font-weight: 500;
}

.promo h3 {
  font-family: "Cinzel", serif;
  font-size: 38px;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 500;
}

.discount {
  font-family: "Cinzel", serif;
  font-size: clamp(86px, 10vw, 126px);
  line-height: 0.85;
}

.promo-list {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 55px;
  display: grid;
  gap: 18px;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.promo-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.promo-icon i {
  font-size: 16px;
}

/* BENEFITS */

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.benefit-card {
  padding: 10px 18px;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eee5df;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.benefit-icon i {
  font-size: 28px;
  color: #8a6a58;
}

.benefit-card h3 {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 12px;
  line-height: 1.8;
  color: #6c5b52;
}

/* INSTAGRAM */

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.insta-box {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: #e6ddd8 center/cover no-repeat;
}

/* CTA */

.cta {
  margin-top: 75px;
  background: #ead6cb;
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-content {
  padding: 58px;
}

.cta-content small {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7d5d4c;
  font-size: 11px;
  font-weight: 500;
}

.cta-content h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.1;
  margin-top: 12px;
  font-weight: 500;
  color: #3e2d25;
}

.cta-content p {
  margin-top: 15px;
  color: #6c5b52;
  line-height: 1.8;
  font-size: 14px;
}

.cta-image {
  min-height: 320px;
  background: url("assets/cta.jpg") center/cover no-repeat;
}

.cta .btn {
  margin-top: 26px;
}

/* FOOTER */

footer {
  margin-top: 60px;
  background: #3b2a22;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 16px;
  font-size: 12px;
}

/* ANIMATION */

.product-card,
.promo,
.benefit-card,
.cta {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.7s ease;
}

.product-card.show,
.promo.show,
.benefit-card.show,
.cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .product-grid,
  .best-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .promo,
  .cta {
    grid-template-columns: 1fr;
  }

  .promo {
    padding: 42px 28px;
  }

  .promo-list {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.35);
    padding-left: 0;
    padding-top: 28px;
  }

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

@media (max-width: 520px) {
  .hero::after {
    display: none;
  }

  .logo {
    left: 28px;
    top: 38px;
    font-size: 24px;
  }

  .top-icons {
    top: 34px;
    right: 22px;
    gap: 7px;
  }

  .circle-icon {
    width: 38px;
    height: 38px;
  }

  .catalog-pill {
    padding: 12px 18px;
    font-size: 10px;
  }

  .hero-content {
    max-width: 100%;
    min-height: 720px;
    padding: 150px 28px 60px;
  }

  .hero-content h1 {
    font-size: 52px;
    line-height: .95;
  }

  .tagline {
    font-size: 10px;
    letter-spacing: 2.6px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .section-title {
    margin: 54px 0 30px;
  }

  .section-title h2 {
    font-size: 34px;
  }

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

  .product-info {
    padding: 12px;
  }

  .product-info h3 {
    font-size: 13px;
  }

  .product-info p {
    font-size: 11px;
    margin: 4px 0 10px;
  }

  .old-price {
    font-size: 10px;
  }

  .new-price {
    font-size: 13px;
  }

  .arrow {
    width: 27px;
    height: 27px;
  }

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

  .cta-content {
    padding: 36px 26px;
  }
}