:root {
  --bg: #050506;
  --panel: #0d0d10;
  --panel-soft: #151519;
  --text: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.68);
  --faint: rgba(246, 241, 232, 0.12);
  --gold: #c8a45d;
  --gold-soft: #ead9ac;
  --white: #ffffff;
  --danger: #d98a72;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 68% -20%, rgba(200, 164, 93, 0.18), transparent 34rem),
    linear-gradient(180deg, #030304 0%, #070709 42%, #050506 100%);
  line-height: 1.5;
}

body::selection {
  color: #050506;
  background: var(--gold-soft);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 0 34px;
  background: rgba(5, 5, 6, 0.86);
  border-bottom: 1px solid var(--faint);
  backdrop-filter: blur(18px);
}

.site-header.transparent {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
  border-bottom-color: transparent;
}

.site-header.scrolled {
  background: rgba(5, 5, 6, 0.9);
  border-bottom-color: var(--faint);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  color: var(--text);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.brand span {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(246, 241, 232, 0.74);
  font-size: 13px;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--gold-soft);
}

.bag-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 68px;
  justify-content: flex-end;
  color: rgba(246, 241, 232, 0.86);
  font-size: 13px;
}

.bag-link b {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #050506;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.62) 43%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, transparent 72%, #050506 100%);
}

.hero-content {
  width: min(650px, calc(100% - 48px));
  align-self: center;
  justify-self: end;
  margin-right: clamp(24px, 7vw, 112px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 8.2vw, 112px);
  line-height: 0.92;
  font-weight: 690;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1;
}

.lead {
  max-width: 560px;
  color: rgba(246, 241, 232, 0.78);
  font-size: clamp(18px, 2vw, 24px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--faint);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.product-row a:hover,
.product-row button:hover {
  transform: translateY(-1px);
}

.btn-light {
  color: #070707;
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  bottom: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-proof span {
  padding: 10px 13px;
  color: rgba(246, 241, 232, 0.74);
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid var(--faint);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.category-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 1px;
  padding: 1px;
  background: var(--faint);
}

.category-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--panel);
}

.category-tile.tall {
  min-height: 430px;
}

.category-tile img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 700ms ease, opacity 700ms ease;
}

.category-tile:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72));
}

.category-tile span {
  position: absolute;
  left: 28px;
  bottom: 25px;
  z-index: 1;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 620;
}

.section {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 110px 34px;
}

.section.compact {
  padding-top: 72px;
}

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

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-head a {
  color: var(--gold-soft);
  font-size: 14px;
}

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

.product-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--faint);
  border-radius: 8px;
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  background: #09090b;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

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

.product-image span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  color: #060606;
  background: rgba(234, 217, 172, 0.92);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
}

.product-copy {
  padding: 18px;
}

.product-copy h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.product-copy p,
.detail-copy p,
.trust-strip span,
.site-footer p,
.contact-hero p,
.cart-summary p {
  color: var(--muted);
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.product-row a,
.product-row button,
.cart-item button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 36px;
  padding: 0 16px;
  color: var(--gold-soft);
  background: transparent;
  border: 1px solid rgba(234, 217, 172, 0.38);
  border-radius: 999px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  width: min(1440px, calc(100% - 68px));
  margin: 0 auto 110px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--faint);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 82px);
}

.showcase-copy h2 {
  font-size: clamp(32px, 4.1vw, 58px);
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.feature-showcase img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1440px, calc(100% - 68px));
  margin: 0 auto 80px;
  background: var(--faint);
  border: 1px solid var(--faint);
}

.trust-strip div {
  min-height: 150px;
  padding: 26px;
  background: #080809;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 34px;
  background: #030303;
  border-top: 1px solid var(--faint);
}

.site-footer p {
  max-width: 420px;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.page {
  min-height: 72svh;
  padding-top: 68px;
}

.shop-hero,
.contact-hero,
.cart-page {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 90px 34px 54px;
}

.shop-hero {
  max-width: 980px;
  margin-left: 0;
}

.shop-hero h1,
.contact-hero h1,
.cart-page h1 {
  font-size: clamp(42px, 6vw, 82px);
}

.shop-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 34px 110px;
}

.filters {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}

.filters button,
.shop-toolbar select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.cart-item input {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--faint);
  border-radius: 8px;
}

.filters button {
  min-height: 42px;
  padding: 0 14px;
  text-align: left;
}

.filters button.active {
  color: #050506;
  background: var(--gold-soft);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.shop-toolbar span {
  color: var(--muted);
}

.shop-toolbar select {
  min-height: 42px;
  padding: 0 36px 0 13px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 48px;
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 70px 34px 0;
}

.detail-media {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--faint);
  border-radius: 8px;
}

.detail-media img {
  height: min(72svh, 760px);
  object-fit: cover;
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
}

.detail-tagline {
  color: var(--gold-soft) !important;
  font-size: 18px;
}

.detail-price {
  display: block;
  margin: 18px 0 26px;
  font-size: 26px;
}

.detail-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-copy li {
  padding: 14px 0;
  color: rgba(246, 241, 232, 0.78);
  border-bottom: 1px solid var(--faint);
}

.cart-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr 84px 92px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--faint);
}

.cart-item img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item h3 {
  margin-bottom: 5px;
}

.cart-item p {
  margin-bottom: 8px;
}

.cart-item input {
  width: 76px;
  min-height: 40px;
  padding: 0 10px;
}

.cart-summary {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--faint);
  border-radius: 8px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--faint);
}

.empty-cart {
  padding: 38px;
  background: var(--panel);
  border: 1px solid var(--faint);
  border-radius: 8px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.65fr);
  align-items: start;
  gap: 54px;
}

.info-page {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 90px 34px 110px;
}

.info-page h1 {
  max-width: 880px;
  font-size: clamp(42px, 6vw, 78px);
}

.info-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.info-panel {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--faint);
  border-radius: 8px;
}

.info-panel h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.info-panel p,
.info-panel li {
  color: var(--muted);
}

.info-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--faint);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(246, 241, 232, 0.78);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-direct {
  display: grid;
  gap: 9px;
  padding-top: 4px;
  font-size: 14px;
}

.contact-direct a {
  color: var(--gold-soft);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: #07110b;
  background: #ead9ac;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

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

  .feature-showcase,
  .product-detail,
  .cart-page,
  .contact-hero,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
    padding: 0 18px;
  }

  .brand {
    font-size: 15px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .hero-proof {
    left: 18px;
    right: 18px;
    justify-content: flex-start;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

  .category-band,
  .product-grid,
  .trust-strip,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .category-tile,
  .category-tile.tall {
    min-height: 300px;
  }

  .section,
  .shop-hero,
  .contact-hero,
  .cart-page,
  .product-detail,
  .shop-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-head,
  .shop-toolbar,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-showcase,
  .trust-strip {
    width: calc(100% - 36px);
  }

  .feature-showcase img {
    min-height: 320px;
  }

  .filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-item {
    grid-template-columns: 86px 1fr;
  }

  .cart-item input,
  .cart-item button {
    grid-column: 2;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }
}
