/* =============== FONTS ====================*/

@font-face {
  font-family: 'horizon';
  src: url('../fonts/horizon.otf') format('opentype');
}

@font-face {
  font-family: 'horizonoutlined';
  src: url('../fonts/horizon_outlined.otf') format('opentype');
}

@font-face {
  font-family: 'sf';
  src: url('../fonts/sf.otf') format('opentype');
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay.ttf') format('opentype');
}

/* =============== PC ====================*/

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'sf', sans-serif;
  background: #f3f1ed;
}

body {
  padding-top: 60px;
}

/*================ BANNER ============= */

.hero-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'horizonoutlined';
  font-size: 130px;
  letter-spacing: 12px;
  text-transform: uppercase;
  text-align: center;
}

.hero-editorial {
  height: 92vh;
  position: relative;
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.25)),
    url("../assets/background2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-copy {
  position: absolute;
  bottom: 12%;
  left: 8%;
  color: #ffffff;
}

.hero-eyebrow {
  font-family: 'sf', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 10px;
  font-family: 'horizon';
  margin-left: -2px;
}

/* ================= PROMO STRAP ================= */

.promo-strap.dark {
  background: #111;
  color: #fff;
  font-family: 'sf', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 20px 0;
  text-align: center;
}

/* ================= PRODUCTS ================= */

#products-section {
  padding: 140px 6vw;
}

.category-section {
  margin-top: 80px;
  margin-bottom: 70px;
  padding-inline: 6vw;
  text-align: center;
}

.section-title {
  text-align: center;
  font-family: 'sf';
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 80px;
  opacity: 0.8;
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background: transparent;
}

.section-subtitle {
  text-align: center;
  font-family: 'sf';
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 2px;
  font-size: 14px;
  opacity: 0.7;
  margin-top: -60px;
  margin-bottom:50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 40px;
  max-width: 1400px;
  margin: 0 auto;
  row-gap: 110px;
  justify-content: center;
}

.product-card {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.4s ease;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: #f1efec;
}

.product-info {
  margin-top: 18px;
  text-align: center;
}

.product-info::after {
  content: "";
  display: block;
  margin-top: 10px;
  height: 1px;
  background: #f3f1ed;
}

.product-name {
  font-family: 'sf';
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-price {
  font-family: 'sf';
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #555;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}

.add-to-cart {
  display:none;
}

/* ================= PHONE ================= */

@media (hover: none) and (pointer: coarse), (max-width: 768px) {

  body {
    padding-top: 54px;
  }

  /* ================= BANNER ================= */

  .hero-editorial {
    height: 92vh;
  }

  .hero-outline {
    font-size: 30px;
    letter-spacing: 6px;
    padding: 0 12px;
    text-align: center;
    margin-top: -70px;
  }

  .hero-copy {
    left: 6%;
    right: 6%;
    bottom: 10%;
  }

  .hero-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 3px;
  }

  .hero-copy h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  /* ================= PROMO STRAP ================= */

  .promo-strap.dark {
    font-size: 0.55rem;
    letter-spacing: 3px;
    padding: 16px 10px;
  }

  /* ================= PRODUCTS ================= */

.category-section {
  margin-top: 50px;
  margin-bottom: 70px;
  padding-inline: 6vw;
  text-align: center;
}

.section-title {
  text-align: center;
  font-family: 'sf';
  font-size:0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 80px;
  opacity: 0.8;
  display: inline-block;
  padding: 14px 20px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background: transparent;
}

.section-subtitle {
  text-align: center;
  font-family: 'sf';
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: -60px;
  margin-bottom:40px;
}

  .product-grid {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 30px;
  }

  .product-card {
    transform: none !important;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
  }

  .product-card:hover {
    transform: none;
  }

  .product-image {
    aspect-ratio: 3 / 4;
    background: #f1efec;
  }

  .product-info {
    margin-top: 14px;
  }

  .product-name {
    font-size: 0.54833rem;
    letter-spacing: 1.5px;
  }

  .product-price {
    font-size: 0.55rem;
  }

}



