:root {
  --black: #111111;
  --dark: #1c1c1c;
  --gray: #6f6f6f;
  --soft: #f6f3ef;
  --beige: #d9c7b5;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: .9rem;
}

.site-header { z-index: 1030; }
.navbar { min-height: 76px; }
.navbar-brand, .footer-brand {
  font-size: 1.45rem;
  letter-spacing: -.04em;
  color: var(--black);
  font-weight: 900;
}
.navbar-brand span, .footer-brand span { color: #9c7456; }
.nav-link {
  font-weight: 700;
  color: var(--dark);
  margin: 0 .35rem;
}
.nav-link:hover { color: #9c7456; }

.search-box {
  min-width: 230px;
  height: 44px;
  background: var(--soft);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1rem;
}
.search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #e8e1da;
  border-radius: 999px;
  background: #fff;
  position: relative;
  transition: .25s ease;
}
.icon-btn:hover { background: var(--black); color: var(--white); }
.cart-button span {
  position: absolute;
  top: -6px;
  right: -4px;
  background: #9c7456;
  color: #fff;
  font-size: .72rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hero-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #fbfaf8 0%, #f0e5db 100%);
  overflow: hidden;
}
.eyebrow {
  display: inline-block;
  color: #9c7456;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  margin-bottom: .75rem;
}
.eyebrow.light { color: var(--beige); }
.hero-section h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: .92;
  letter-spacing: -.08em;
  font-weight: 950;
  margin-bottom: 1.25rem;
}
.hero-section p, .section-heading p, .promo-content p, .newsletter-card p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin: 2rem 0; }
.btn { border-radius: 999px; font-weight: 800; padding-inline: 1.4rem; }
.trust-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--dark);
  font-weight: 700;
  font-size: .92rem;
}
.trust-list i { color: #9c7456; }
.hero-image-card {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  min-height: 580px;
  box-shadow: var(--shadow);
}
.hero-image-card img { width: 100%; height: 580px; object-fit: cover; }
.floating-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}
.floating-card strong, .floating-card small { display: block; }

.section-padding { padding: 90px 0; }
.bg-soft { background: var(--soft); }
.section-heading { margin-bottom: 3rem; }
.section-heading h2, .promo-content h2, .newsletter-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 950;
  letter-spacing: -.06em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  color: var(--white);
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.05));
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.category-card:hover img { transform: scale(1.07); }
.category-card div { position: absolute; z-index: 2; bottom: 0; padding: 1.4rem; }
.category-card h3 { font-size: 1.45rem; font-weight: 900; }
.category-card p { margin: 0; opacity: .88; }

.filter-pills { display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .3rem; }
.filter-pills button {
  border: 1px solid #ded5cc;
  background: #fff;
  border-radius: 999px;
  padding: .7rem 1rem;
  font-weight: 800;
  white-space: nowrap;
}
.filter-pills button.active, .filter-pills button:hover { background: var(--black); color: var(--white); }
.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
  height: 100%;
  transition: .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: #eee; }
.product-info { padding: 1rem; }
.product-info h3 { font-size: 1rem; min-height: 42px; font-weight: 900; }
.price { font-size: 1.22rem; font-weight: 950; margin-bottom: 0; }
.product-info small { color: var(--gray); display: block; margin-bottom: 1rem; }
.badge-custom {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  padding: .45rem .7rem;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.badge-custom.discount { background: #9c7456; }
.favorite-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}
.favorite-btn.active { background: var(--black); color: var(--white); }

.promo-banner {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
  padding: 120px 0;
}
.promo-content { max-width: 650px; }
.promo-content p { color: rgba(255,255,255,.82); }

.look-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: var(--soft);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.look-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.look-content { padding: clamp(2rem, 5vw, 4rem); align-self: center; }
.look-content h3 { font-size: 3rem; font-weight: 950; letter-spacing: -.06em; }
.look-content li { margin-bottom: .6rem; color: var(--gray); }
.look-price { font-size: 2rem; font-weight: 950; }

.new-arrivals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.new-arrivals div {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.benefits-section { padding: 60px 0; background: var(--black); color: var(--white); }
.benefit-card { text-align: center; padding: 1.2rem; }
.benefit-card i { font-size: 2rem; color: var(--beige); }
.benefit-card h3 { font-size: 1.1rem; margin-top: 1rem; font-weight: 900; }
.benefit-card p { color: rgba(255,255,255,.7); margin: 0; }

.review-card {
  padding: 2rem;
  border: 1px solid #eee8e2;
  border-radius: var(--radius);
  height: 100%;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,.04);
}
.stars { color: #9c7456; letter-spacing: .1em; margin-bottom: 1rem; }

.instagram-section { padding: 90px 0; background: var(--black); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.insta-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 22px; }

.newsletter-section { padding: 70px 0; }
.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--soft);
  border-radius: 32px;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.newsletter-form { display: flex; gap: .8rem; }
.newsletter-form input {
  flex: 1;
  border: 1px solid #ded5cc;
  border-radius: 999px;
  padding: .95rem 1.2rem;
  outline: 0;
}

.footer { background: #0c0c0c; color: var(--white); padding: 70px 0 25px; }
.footer p { color: rgba(255,255,255,.66); margin-top: 1rem; max-width: 370px; }
.footer h3 { font-size: 1rem; font-weight: 900; margin-bottom: 1rem; }
.footer a { display: block; color: rgba(255,255,255,.66); margin-bottom: .55rem; }
.footer a:hover { color: var(--white); }
.footer-brand { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-top: 1.5rem; color: rgba(255,255,255,.52); font-size: .9rem; }

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  padding: .9rem 0;
  border-bottom: 1px solid #eee;
}
.cart-item strong { display: block; }
.cart-item small { color: var(--gray); }
.remove-item { border: 0; background: transparent; color: #9c7456; font-size: 1.1rem; }
.empty-cart { color: var(--gray); text-align: center; padding: 2rem 0; }
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: none;
  z-index: 999;
}
.back-to-top.show { display: grid; place-items: center; }

@media (max-width: 991px) {
  .search-box { width: 100%; margin: .5rem 0 1rem; }
  .hero-section { padding: 60px 0; }
  .hero-image-card, .hero-image-card img { min-height: auto; height: 430px; }
  .category-grid, .new-arrivals, .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .look-card, .newsletter-card { grid-template-columns: 1fr; }
  .look-image img { min-height: 360px; }
}

@media (max-width: 575px) {
  .top-bar { font-size: .78rem; }
  .navbar { min-height: 68px; }
  .hero-section h1 { font-size: 3rem; }
  .hero-actions .btn { width: 100%; }
  .trust-list { flex-direction: column; gap: .45rem; }
  .section-padding { padding: 64px 0; }
  .category-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem; }
  .category-card { min-width: 78%; scroll-snap-align: start; }
  .product-info { padding: .85rem; }
  .product-info h3 { font-size: .92rem; }
  .btn { padding-inline: 1rem; }
  .newsletter-form { flex-direction: column; }
  .insta-grid { gap: .65rem; }
}
