:root {
  --bg: #0b0b0b;
  --ink: #f2f0ec;
  --muted: #cbc8c2;
  --line: #3a3a3a;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 70% 22%, #171717 0, var(--bg) 36%), var(--bg);
  color: var(--ink);
  font-family: var(--serif);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.7vw;
  border-bottom: 1px solid #151515;
  background: rgba(10,10,10,.97);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { display: inline-flex; flex-direction: column; line-height: .85; }
.brand-latin { font-size: clamp(2rem, 3.2vw, 3.2rem); letter-spacing: -.055em; }
.brand-arabic { margin-top: 9px; text-align: center; font: 400 1rem/1.1 Arial, sans-serif; color: #ddd; }
.nav { display: flex; align-items: center; gap: clamp(28px, 5vw, 66px); font: 500 .72rem/1 var(--sans); letter-spacing: .32em; text-transform: uppercase; }
.nav a { opacity: .9; }
.nav a:hover { opacity: 1; }
.bag-button { position: relative; border: 0; background: none; color: white; width: 36px; height: 40px; cursor: pointer; }
.bag-icon { width: 22px; height: 24px; border: 1.5px solid white; border-radius: 2px; display: block; position: relative; }
.bag-icon::before { content: ''; position: absolute; width: 10px; height: 8px; left: 4px; top: -8px; border: 1.5px solid white; border-bottom: 0; border-radius: 8px 8px 0 0; }
.cart-count { position: absolute; right: -2px; bottom: 0; font: 10px/1 var(--sans); min-width: 16px; height: 16px; border-radius: 50%; background: white; color: black; display: none; align-items: center; justify-content: center; }
.cart-count.visible { display: flex; }

.hero {
  min-height: 805px;
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  overflow: hidden;
}
.hero-image-wrap { min-height: 805px; background: #242220; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-copy { padding: 12.5% 7.2% 8%; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 20px; font: 500 .74rem/1.2 var(--sans); text-transform: uppercase; letter-spacing: .4em; }
h1 { margin: 0; font-size: clamp(3.4rem, 5vw, 5rem); line-height: 1.04; font-weight: 400; letter-spacing: -.035em; }
.price { margin: 22px 0 28px; font-size: 2rem; }
.add-to-bag { width: 100%; min-height: 54px; border: 0; background: #f4f2ef; color: #171717; text-transform: uppercase; letter-spacing: .34em; font: 600 .72rem/1 var(--sans); cursor: pointer; transition: transform .2s, background .2s; }
.add-to-bag:hover { background: white; transform: translateY(-1px); }
.description { max-width: 390px; margin: 34px 0 36px; color: #ece9e4; font-size: 1.08rem; line-height: 1.55; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 4px; }
.features > div { text-align: center; font: 600 .61rem/1.55 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: #e5e3df; }
.feature-icon { display: block; height: 42px; font: 300 2.2rem/1 var(--serif); letter-spacing: 0; margin-bottom: 7px; }

.details { padding: 30px 3vw 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; background: #0b0b0b; }
.details figure { margin: 0; }
.details img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.details figcaption { margin-top: 18px; text-align: center; font: 500 .64rem/1 var(--sans); text-transform: uppercase; letter-spacing: .32em; }

.story { padding: 0 5.2vw 24px; text-align: center; }
.rule { border-top: 1px solid var(--line); margin-bottom: 42px; }
.story p { margin: 0 0 14px; font: 500 .84rem/1 var(--sans); text-transform: uppercase; letter-spacing: .42em; }
.story-arabic { font: 400 1.6rem/1.2 Arial, sans-serif; }

.footer { min-height: 115px; display: flex; justify-content: space-between; align-items: center; padding: 0 5.2vw 26px; }
.footer-links, .socials { display: flex; align-items: center; gap: 38px; }
.footer-links { font: 500 .61rem/1 var(--sans); text-transform: uppercase; letter-spacing: .3em; }
.socials { font: 400 1.6rem/1 var(--sans); gap: 22px; }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 15px); opacity: 0; pointer-events: none; background: #f2f0ec; color: #111; padding: 12px 18px; font: 600 .7rem/1 var(--sans); text-transform: uppercase; letter-spacing: .2em; transition: .25s ease; z-index: 40; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 820px) {
  .site-header { height: 78px; padding: 0 22px; }
  .brand-latin { font-size: 2rem; }
  .brand-arabic { font-size: .8rem; margin-top: 6px; }
  .nav { gap: 20px; letter-spacing: .22em; font-size: .61rem; }
  .nav a:nth-child(2) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 66vh; }
  .hero-copy { padding: 56px 24px 60px; }
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .description { max-width: none; }
  .details { grid-template-columns: 1fr; padding: 20px 20px 48px; gap: 36px; }
  .details img { aspect-ratio: 1 / .94; }
  .story { padding-inline: 24px; }
  .footer { padding: 0 24px 28px; gap: 28px; align-items: flex-end; }
  .footer-links { gap: 18px; flex-wrap: wrap; }
}
