:root {
  --ink: #120f10;
  --ink-soft: #1d191a;
  --burgundy: #5a1f2b;
  --burgundy-light: #792c3b;
  --ivory: #f4efe7;
  --paper: #faf7f1;
  --gold: #b99a62;
  --gold-light: #dcc28e;
  --muted: #817872;
  --line: rgba(185, 154, 98, 0.34);
  --shadow: 0 25px 70px rgba(18, 15, 16, 0.17);
  --display: "Aref Ruqaa", "Noto Naskh Arabic", "Traditional Arabic", serif;
  --body: "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #44141d, var(--burgundy), #44141d);
  color: #f8ead2;
  font-size: 12px;
  letter-spacing: .04em;
}
.announcement .diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.announcement-separator { color: var(--gold); }

.site-header {
  height: 76px;
  padding: 0 clamp(22px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--ivory);
  background: rgba(15, 13, 14, .94);
  border-bottom: 1px solid rgba(185, 154, 98, .2);
  backdrop-filter: blur(14px);
}
.brand {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -.07em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
  font-size: 13px;
  white-space: nowrap;
}
.desktop-nav a {
  padding: 29px 0 23px;
  color: #d9d1c7;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}
.desktop-nav a:hover, .desktop-nav a.active {
  color: #fff6e7;
  border-bottom-color: var(--gold);
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.icon-button {
  min-width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #f2e7d5;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
}
.icon-button:hover { background: rgba(255,255,255,.07); }
.cart-button { width: auto; padding: 0 13px; border: 1px solid rgba(185,154,98,.28); border-radius: 99px; font-size: 12px; }
.count {
  position: absolute;
  top: -3px;
  left: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--burgundy-light);
  color: #fff;
  border: 1px solid var(--gold);
  font-size: 10px;
}
.menu-button { display: none; }
.mobile-menu { display: none; }

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 42% 58%;
  color: var(--ivory);
  background: var(--ink);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(70px, 8vw, 125px) clamp(30px, 7vw, 110px) 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background:
    linear-gradient(135deg, transparent 0 42%, var(--gold) 43% 44%, transparent 45% 100%) 0 0/36px 36px,
    linear-gradient(45deg, transparent 0 42%, var(--gold) 43% 44%, transparent 45% 100%) 0 0/36px 36px;
  mask-image: linear-gradient(to left, transparent 10%, #000 100%);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .08em;
}
.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.eyebrow span::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: currentColor;
}
.eyebrow.dark { color: var(--burgundy); }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 8vw, 132px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-description {
  max-width: 500px;
  margin: 34px 0 0;
  color: #c9c0b6;
  font-size: 16px;
  line-height: 2;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button {
  min-height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform .25s, background .25s, color .25s, box-shadow .25s;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff7ea;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy));
  box-shadow: 0 13px 30px rgba(90, 31, 43, .26);
}
.button-primary:hover { background: #702837; box-shadow: 0 16px 38px rgba(90,31,43,.35); }
.button-outline { color: var(--ink); border-color: var(--gold); background: transparent; }
.text-link { color: var(--gold-light); border-bottom: 1px solid var(--gold); padding-bottom: 5px; font-size: 13px; }
.hero-note {
  margin-top: auto;
  padding-top: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold);
}
.hero-note span { font-size: 24px; }
.hero-note div { display: flex; flex-direction: column; }
.hero-note strong { color: var(--ivory); font-size: 13px; font-weight: 500; }
.hero-note small { color: #8e8580; margin-top: 3px; }
.hero-visual { min-height: 600px; position: relative; overflow: hidden; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 58%, var(--ink) 100%), linear-gradient(to top, rgba(18,15,16,.28), transparent 45%);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-badge {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  width: 112px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244,239,231,.5);
  border-radius: 50%;
  background: rgba(18,15,16,.65);
  backdrop-filter: blur(8px);
}
.hero-badge span, .hero-badge small { font-size: 9px; color: #e8d5b5; }
.hero-badge strong { font-family: var(--display); font-size: 34px; color: #fff; line-height: 1.1; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px clamp(24px, 6vw, 90px);
  background: var(--ivory);
  border-bottom: 1px solid #ded2c1;
}
.trust-strip article {
  padding: 4px clamp(15px, 3vw, 46px);
  border-left: 1px solid #d8cab6;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.trust-strip article:last-child { border-left: 0; }
.trust-strip strong { font-family: var(--display); font-size: 18px; font-weight: 600; }
.trust-strip span { color: var(--muted); font-size: 11px; }

.section-shell { padding: clamp(80px, 9vw, 138px) clamp(22px, 6vw, 92px); }
.collection { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 45px; }
.section-heading h2, .story h2, .newsletter h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}
.section-heading > p { max-width: 440px; color: var(--muted); line-height: 1.9; font-size: 14px; }
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #dacdbb;
  padding-top: 20px;
  margin-bottom: 28px;
}
.filters { display: flex; gap: 8px; }
.filter {
  padding: 9px 18px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 99px;
}
.filter:hover, .filter.active { color: var(--burgundy); border-color: #bba58b; background: #f5ece1; }
.product-count { color: var(--muted); font-size: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { position: relative; min-width: 0; transition: opacity .25s, transform .25s; }
.product-card.is-hidden { display: none; }
.product-media {
  aspect-ratio: .76;
  overflow: hidden;
  position: relative;
  background: #e7ded3;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-media img { transform: scale(1.045); }
.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 11px;
  background: var(--ink);
  color: #f8ecda;
  font-size: 9px;
}
.product-tag.new { background: var(--burgundy); }
.favorite-toggle {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(250,247,241,.86);
  font-size: 20px;
  cursor: pointer;
  transition: color .2s, transform .2s;
}
.favorite-toggle:hover { transform: scale(1.08); }
.favorite-toggle.active { color: var(--burgundy); }
.quick-add {
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 14px;
  height: 44px;
  border: 1px solid var(--gold);
  background: rgba(18,15,16,.92);
  color: #fff4df;
  cursor: pointer;
  transform: translateY(70px);
  transition: transform .3s, background .2s;
}
.product-card:hover .quick-add, .quick-add:focus { transform: translateY(0); }
.quick-add:hover { background: var(--burgundy); }
.product-info { display: flex; justify-content: space-between; gap: 12px; padding: 17px 2px 10px; }
.product-info h3 { margin: 0 0 5px; font-family: var(--display); font-size: 20px; font-weight: 600; }
.product-info p { margin: 0; color: var(--muted); font-size: 10px; }
.product-info > strong { white-space: nowrap; font-size: 14px; color: var(--burgundy); }
.product-info small { font-size: 9px; }
.swatches { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 9px; }
.swatches i { width: 12px; height: 12px; border-radius: 50%; border: 1px solid #c9bba8; }
.swatches .black { background: #151314; }
.swatches .burgundy { background: var(--burgundy); }

.story {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--ink);
  color: var(--ivory);
}
.story-image { min-height: 560px; position: relative; overflow: hidden; }
.story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to left, transparent 55%, rgba(18,15,16,.8)); }
.story-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.08); }
.story-image > span { position: absolute; z-index: 2; top: 30px; right: 30px; color: var(--gold-light); font-size: 11px; }
.story-copy { padding: clamp(70px, 9vw, 135px) clamp(32px, 7vw, 110px); position: relative; }
.story-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: 0;
  bottom: 0;
  opacity: .13;
  background: repeating-linear-gradient(45deg, transparent 0 14px, var(--gold) 15px 16px);
}
.story-copy > p:not(.eyebrow) { max-width: 570px; color: #bdb3aa; line-height: 2.1; font-size: 15px; margin: 30px 0 38px; }
.story-copy dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; }
.story-copy dl div { border-top: 1px solid var(--line); padding-top: 15px; }
.story-copy dt { color: var(--gold-light); font-family: var(--display); font-size: 20px; }
.story-copy dd { margin: 5px 0 0; color: #817a75; font-size: 10px; line-height: 1.7; }

.newsletter { text-align: center; background: var(--ivory); position: relative; overflow: hidden; }
.newsletter::before, .newsletter::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(185,154,98,.3);
  transform: rotate(45deg);
}
.newsletter::before { top: -120px; right: 7%; }
.newsletter::after { bottom: -120px; left: 7%; }
.newsletter .eyebrow { justify-content: center; }
.newsletter > p:not(.eyebrow) { color: var(--muted); margin: 20px auto 30px; max-width: 550px; line-height: 1.8; }
.newsletter-form { max-width: 500px; margin: auto; display: flex; background: #fff; border: 1px solid #d5c4ad; padding: 5px; position: relative; z-index: 1; }
.newsletter-form input { flex: 1; min-width: 0; border: 0; padding: 0 18px; outline: none; direction: ltr; text-align: right; background: transparent; }
.newsletter-message { display: block; min-height: 20px; margin-top: 12px; color: var(--burgundy); }

.footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
  padding: 65px clamp(24px, 6vw, 90px) 30px;
  background: #0b0a0a;
  color: #c9beb3;
  border-top: 1px solid var(--line);
}
.footer-brand .brand { font-size: 58px; }
.footer-brand p { color: #716967; font-size: 12px; }
.footer h3 { margin: 0 0 18px; color: var(--gold-light); font-family: var(--display); font-size: 18px; }
.footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; font-size: 11px; }
.footer a:hover { color: #fff; }
.copyright { grid-column: 1/-1; margin: 30px 0 0; padding-top: 20px; border-top: 1px solid #262122; color: #655f5b; font-size: 10px; text-align: center; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(7,6,6,.68);
  backdrop-filter: blur(3px);
}
.cart-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(440px, 94vw);
  background: var(--paper);
  box-shadow: 20px 0 70px rgba(0,0,0,.25);
  transform: translateX(-105%);
  transition: transform .38s cubic-bezier(.22,.8,.25,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid #ded2c2; }
.drawer-header p { margin: 0 0 3px; font-family: var(--display); font-size: 25px; }
.drawer-header span { color: var(--muted); font-size: 10px; }
.close-cart, .close-checkout { width: 42px; height: 42px; border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.cart-items { overflow: auto; padding: 12px 26px; }
.cart-item { display: grid; grid-template-columns: 74px 1fr auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid #e4d8c8; align-items: center; }
.cart-item img { width: 74px; height: 94px; object-fit: cover; }
.cart-item h4 { margin: 0 0 6px; font-family: var(--display); font-size: 17px; }
.cart-item p { margin: 0 0 12px; color: var(--burgundy); font-size: 11px; }
.quantity { display: inline-flex; align-items: center; border: 1px solid #cdbda7; }
.quantity button { width: 27px; height: 27px; border: 0; background: transparent; cursor: pointer; }
.quantity span { width: 24px; text-align: center; font-size: 11px; }
.remove-item { border: 0; background: transparent; color: #9d8f84; cursor: pointer; font-size: 17px; }
.empty-cart { margin: auto; padding: 40px; text-align: center; }
.empty-cart > span { display: block; color: var(--gold); font-size: 48px; }
.empty-cart h3 { font-family: var(--display); font-size: 27px; margin: 12px 0 5px; }
.empty-cart p { color: var(--muted); font-size: 12px; line-height: 1.8; }
.empty-cart .button { margin-top: 17px; }
.cart-summary { margin-top: auto; padding: 23px 26px; border-top: 1px solid #d7c9b6; background: var(--ivory); }
.cart-summary > div { display: flex; justify-content: space-between; align-items: center; }
.cart-summary strong { color: var(--burgundy); }
.cart-summary p { color: var(--muted); font-size: 9px; }
.cart-summary .button { width: 100%; margin-top: 10px; }

.checkout-modal {
  width: min(880px, 94vw);
  max-height: 92vh;
  border: 1px solid var(--gold);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
}
.checkout-modal::backdrop { background: rgba(8,7,7,.75); backdrop-filter: blur(5px); }
.close-checkout { position: absolute; top: 12px; left: 12px; z-index: 2; }
.checkout-intro { padding: 45px 48px 28px; background: var(--ink); color: var(--ivory); }
.mini-brand { font-family: var(--display); color: var(--gold-light); font-size: 28px; }
.checkout-intro h2 { margin: 10px 0 4px; font-family: var(--display); font-size: 35px; font-weight: 400; }
.checkout-intro p { margin: 0; color: #a79c93; font-size: 12px; }
.checkout-form { padding: 30px 48px 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 17px; overflow: auto; }
.checkout-form label { display: flex; flex-direction: column; gap: 7px; font-size: 11px; font-weight: 600; }
.checkout-form label:nth-of-type(4), .checkout-form label:nth-of-type(5) { grid-column: 1/-1; }
.checkout-form input, .checkout-form select, .checkout-form textarea {
  width: 100%;
  border: 1px solid #d4c5b2;
  background: #fff;
  padding: 12px 13px;
  outline: none;
  resize: vertical;
}
.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,154,98,.12); }
.payment-option { grid-column: 1/-1; display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--gold); background: #f7efe3; }
.payment-option i { width: 12px; height: 12px; border-radius: 50%; background: var(--burgundy); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--burgundy); }
.payment-option div { display: flex; flex-direction: column; flex: 1; }
.payment-option span { color: var(--muted); font-size: 9px; margin-top: 2px; }
.payment-option b { color: var(--burgundy); }
.checkout-total { grid-column: 1/-1; display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid #d7c9b6; }
.checkout-total strong { color: var(--burgundy); font-size: 19px; }
.checkout-form > .button { grid-column: 1/-1; }
.order-success { padding: 80px 30px; text-align: center; }
.order-success > span { display: grid; place-items: center; width: 70px; height: 70px; margin: auto; border-radius: 50%; background: var(--burgundy); color: #fff; font-size: 30px; }
.order-success h2 { font-family: var(--display); font-size: 40px; margin: 20px 0 5px; }
.order-success p { color: var(--muted); }
.order-success .button { margin-top: 20px; }

.mobile-bottom-nav { display: none; }
.toast {
  position: fixed;
  z-index: 1200;
  right: 50%;
  bottom: 25px;
  transform: translate(50%, 30px);
  padding: 12px 20px;
  border: 1px solid var(--gold);
  background: var(--ink);
  color: #fff4e2;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  font-size: 12px;
}
.toast.show { opacity: 1; transform: translate(50%, 0); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
  .menu-button span { display: block; width: 18px; height: 1px; background: currentColor; }
  .mobile-menu {
    position: fixed;
    top: 110px;
    right: 0;
    left: 0;
    z-index: 29;
    display: flex;
    flex-direction: column;
    padding: 12px 25px 22px;
    background: #121010;
    color: var(--ivory);
    transform: translateY(-130%);
    transition: transform .3s;
    border-bottom: 1px solid var(--gold);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { padding: 14px; border-bottom: 1px solid #282223; }
  .hero { grid-template-columns: 46% 54%; }
  .hero-copy { padding-inline: 45px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .announcement { height: 28px; font-size: 9px; }
  .announcement-separator, .announcement-separator + * { display: none; }
  .site-header { height: 64px; padding: 0 13px; top: 0; gap: 6px; }
  .brand { font-size: 35px; }
  .header-actions .search-button, .header-actions .favorites-button { display: none; }
  .cart-button { font-size: 0; width: 42px; padding: 0; border: 0; }
  .cart-button::before { content: "▢"; font-size: 21px; }
  .mobile-menu { top: 92px; }
  .hero { min-height: auto; display: flex; flex-direction: column-reverse; }
  .hero-visual { min-height: 56vh; }
  .hero-visual::after { background: linear-gradient(to top, var(--ink) 0, transparent 35%); }
  .hero-visual img { object-position: center 10%; }
  .hero-badge { width: 86px; left: 16px; bottom: 30px; }
  .hero-copy { padding: 30px 22px 42px; margin-top: -12px; }
  .hero-copy::before { opacity: .08; }
  .eyebrow { margin-bottom: 16px; }
  .hero h1 { font-size: 68px; line-height: .87; }
  .hero-description { margin-top: 20px; font-size: 13px; line-height: 1.9; }
  .hero-actions { margin-top: 24px; align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; }
  .hero-note { display: none; }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 20px 13px; gap: 0; }
  .trust-strip article { padding: 14px 12px; border-bottom: 1px solid #d8cab6; }
  .trust-strip article:nth-child(2) { border-left: 0; }
  .trust-strip article:nth-child(3), .trust-strip article:nth-child(4) { border-bottom: 0; }
  .trust-strip strong { font-size: 15px; }
  .section-shell { padding: 75px 16px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading h2, .story h2, .newsletter h2 { font-size: 44px; }
  .section-heading > p { margin-top: 18px; font-size: 12px; }
  .collection-toolbar { align-items: flex-start; }
  .filters { gap: 3px; overflow: auto; }
  .filter { padding: 8px 12px; font-size: 11px; white-space: nowrap; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 30px 9px; }
  .product-media { aspect-ratio: .72; }
  .quick-add { transform: translateY(0); right: 8px; left: 8px; bottom: 8px; height: 37px; font-size: 10px; }
  .favorite-toggle { width: 34px; height: 34px; top: 8px; left: 8px; }
  .product-tag { top: 9px; right: 8px; font-size: 8px; }
  .product-info { display: block; padding-top: 12px; }
  .product-info h3 { font-size: 15px; }
  .product-info p { display: none; }
  .product-info > strong { display: block; margin-top: 7px; font-size: 12px; }
  .swatches { margin-top: 4px; }
  .story { display: flex; flex-direction: column; min-height: 0; }
  .story-image { min-height: 370px; }
  .story-image::after { background: linear-gradient(to top, var(--ink), transparent 55%); }
  .story-copy { padding: 55px 22px 70px; }
  .story-copy > p:not(.eyebrow) { font-size: 13px; }
  .story-copy dl { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; background: transparent; border: 0; padding: 0; gap: 8px; }
  .newsletter-form input { height: 50px; background: #fff; border: 1px solid #d5c4ad; }
  .footer { grid-template-columns: 1fr 1fr; padding: 50px 22px 25px; gap: 35px 20px; }
  .footer-brand { grid-column: 1/-1; }
  .checkout-form { grid-template-columns: 1fr; padding: 25px 20px 35px; }
  .checkout-form label, .checkout-form label:nth-of-type(4), .checkout-form label:nth-of-type(5), .payment-option, .checkout-total, .checkout-form > .button { grid-column: 1; }
  .checkout-intro { padding: 42px 20px 25px; }
  .checkout-intro h2 { font-size: 27px; max-width: 85%; }
  .checkout-modal { width: 100%; max-width: 100%; max-height: 96vh; margin: auto 0 0; }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    height: 68px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(14,12,13,.97);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .mobile-bottom-nav a, .mobile-bottom-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    background: transparent;
    color: #a99d93;
    font-size: 8px;
    position: relative;
  }
  .mobile-bottom-nav span { color: var(--gold-light); font-size: 18px; line-height: 1; }
  .mobile-cart-count { position: absolute; top: 5px; left: 28%; width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; background: var(--burgundy); color: #fff; font-size: 8px; font-style: normal; }
  .toast { bottom: 85px; max-width: 85vw; white-space: nowrap; }
}

/* Precise transparent logo treatment */
.brand,.footer-brand,.checkout-intro{background:transparent}
.brand{width:170px;height:64px;display:flex;align-items:center}
.brand img,.footer-brand img,.checkout-intro img{width:100%;height:100%;object-fit:contain;object-position:center;background:transparent}
.footer-brand{height:104px}.checkout-intro img{height:72px;margin:0}

/* Discounts, availability and compact size preview */
.discount-tag,.sold-out-tag{position:absolute;top:14px;right:14px;z-index:2;padding:7px 10px;background:var(--burgundy);color:#fff;font-size:9px;border:1px solid rgba(255,255,255,.45)}
.sold-out-tag{top:auto;bottom:14px;background:#171314}.discount-tag+.sold-out-tag{bottom:14px}
.sale-pricing{display:flex;flex-direction:column;align-items:flex-end;gap:3px;white-space:nowrap}.sale-pricing del{color:#a49990;font-size:9px}.sale-pricing strong{color:var(--burgundy);font-size:14px}.sale-pricing em{padding:3px 6px;background:#5a1f2b;color:#fff;font-size:7px;font-style:normal}
.product-price .sale-pricing{align-items:flex-start}.product-price .sale-pricing strong{font-size:24px}
.size-preview{display:flex;align-items:center;gap:5px;margin:9px 0 1px;min-height:28px}.size-preview span,.size-preview b{min-width:27px;height:26px;display:grid;place-items:center;padding:0 6px;border:1px solid #d7c9b6;background:#fff;font-size:8px}.size-preview b{border-radius:20px;background:var(--ink);color:#fff}.size-preview small{color:var(--muted);font-size:8px}
.filter[data-category="discounts"]{border-color:var(--burgundy);color:var(--burgundy)}
@media(max-width:720px){.brand{width:128px;height:54px}.footer-brand{height:82px}.product-info{gap:6px}.sale-pricing{align-items:flex-start}.size-preview small{display:none}.size-preview span:nth-child(3){display:none}.size-preview b{display:grid}}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Alhour 2.0 — crisp, multilingual commerce */
html { text-rendering: optimizeLegibility; }
body { font-kerning: normal; }
[dir="ltr"] body { letter-spacing: .005em; }
.brand { width: 170px; height: 62px; display: grid; place-items: center; overflow: hidden; }
.brand img, .footer-brand img, .checkout-intro img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: contrast(1.04); }
.header-actions { align-items: center; }
.compact-select {
  height: 36px; display: flex; align-items: center; gap: 4px; padding: 0 7px;
  border: 1px solid rgba(197,163,107,.3); border-radius: 999px; color: #eadcc6; font-size: 10px;
}
.compact-select select { max-width: 78px; border: 0; color: inherit; background: transparent; outline: none; cursor: pointer; }
.compact-select option { color: var(--ink); background: #fff; }
.currency-select select { width: 62px; }
.product-media { width: 100%; padding: 0; border: 0; cursor: pointer; color: inherit; display: block; }
.product-media video { width: 100%; height: 100%; object-fit: cover; }
.favorite-toggle { z-index: 2; }
.product-info .sku, .product-sku { color: var(--gold); letter-spacing: .1em; font: 600 9px/1.4 var(--body); }
.product-info h3 { line-height: 1.35; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.swatches i { background: var(--swatch); }
.quick-view {
  border: 0; border-bottom: 1px solid var(--gold); background: transparent; color: var(--burgundy);
  padding: 4px 0; font-size: 9px; cursor: pointer;
}
.loading-card { min-height: 420px; background: linear-gradient(100deg,#eee6da 30%,#faf6ef 45%,#eee6da 60%); background-size: 300% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -100% 0; } }
.empty-results { grid-column: 1/-1; padding: 50px; text-align: center; color: var(--muted); }
.suggestions { margin-top: 60px; padding-top: 25px; border-top: 1px solid #d9cbb8; }
.suggestions h3 { font: 400 31px var(--display); }
.suggestion-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.paid-ad { padding-block: 55px; }
.paid-ad[data-frame="brand"] { background: var(--ink); color: var(--ivory); border-block: 1px solid var(--gold); }
.paid-ad[data-frame="alternate"] { background: var(--ivory); border: 8px double var(--burgundy); }
.paid-ad[data-frame="none"] { background: transparent; }
.ad-label { display: table; margin-bottom: 12px; padding: 5px 9px; background: var(--burgundy); color: #fff; font-size: 9px; }
.ad-content { min-height: 250px; display: grid; grid-template-columns: minmax(220px,.8fr) 1.2fr; align-items: center; gap: 45px; }
.ad-content img { width: 100%; height: 260px; object-fit: cover; }
.ad-content h2 { margin: 0 0 13px; font: 400 clamp(35px,5vw,64px)/1.1 var(--display); }
.ad-content p { color: #a99e95; line-height: 1.9; }
.ad-content b { color: var(--gold-light); font-size: 11px; }
.story-copy .text-link.light { color: var(--gold-light); position: relative; z-index: 2; }
.about-short { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; background: var(--ivory); }
.about-short h2 { margin: 0 0 18px; font: 400 clamp(40px,5vw,72px)/1.05 var(--display); }
.about-short p:not(.eyebrow) { max-width: 620px; color: var(--muted); line-height: 2; }
.about-short img { width: 100%; height: 470px; object-fit: cover; border: 1px solid var(--gold); }
.footer-brand { width: min(260px,100%); }
.footer-brand img { height: 110px; }
.footer span, .footer small { color: #8d837b; font-size: 10px; line-height: 1.7; }
.cart-summary > div { padding: 5px 0; }
.cart-summary .grand-total { margin-top: 8px; padding-top: 12px; border-top: 1px solid #d7c9b6; }
.cart-item strong { display: block; margin-bottom: 8px; color: var(--burgundy); font-size: 12px; }
.dialog-close {
  position: absolute; top: 12px; left: 12px; z-index: 5; width: 42px; height: 42px;
  border: 1px solid rgba(197,163,107,.4); border-radius: 50%; background: rgba(16,13,14,.85); color: #fff; font-size: 25px; cursor: pointer;
}
.search-modal, .product-modal {
  width: min(1000px,94vw); max-height: 92vh; border: 1px solid var(--gold); padding: 0;
  background: var(--paper); color: var(--ink); box-shadow: 0 35px 110px rgba(0,0,0,.5);
}
.search-modal::backdrop, .product-modal::backdrop { background: rgba(7,6,6,.8); backdrop-filter: blur(5px); }
.search-modal { padding: 70px clamp(20px,5vw,60px) 45px; }
.search-box { display: flex; align-items: center; gap: 15px; border-bottom: 2px solid var(--burgundy); padding: 10px 0; }
.search-box span { font-size: 30px; color: var(--burgundy); }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; font: 400 clamp(20px,3vw,36px) var(--display); }
.search-hint { color: var(--muted); font-size: 11px; }
.search-results { display: grid; gap: 8px; margin-top: 25px; overflow: auto; max-height: 55vh; }
.search-result { display: grid; grid-template-columns: 72px 1fr auto; gap: 15px; align-items: center; border: 1px solid #ddd1c0; background: #fff; padding: 8px; text-align: start; cursor: pointer; }
.search-result:hover { border-color: var(--gold); background: #fbf4e8; }
.search-result img { width: 72px; height: 82px; object-fit: cover; }
.search-result span { display: flex; flex-direction: column; gap: 3px; }
.search-result small { color: var(--gold); font-size: 8px; }.search-result strong { font: 400 19px var(--display); }.search-result i { color: var(--muted); font-size: 9px; font-style: normal; }
.search-result > b { color: var(--burgundy); font-size: 12px; }.recommend-title { color: var(--burgundy); }
.product-modal-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 660px; }
.product-gallery { padding: 25px; background: #e8dfd3; display: grid; grid-template-rows: 1fr auto; gap: 12px; min-height: 0; }
.main-media { min-height: 0; overflow: hidden; }.main-media img,.main-media video { width: 100%; height: 100%; max-height: 570px; object-fit: contain; }
.media-thumbs { display: flex; gap: 8px; overflow: auto; }.media-thumbs button { width: 60px; height: 68px; flex: 0 0 auto; border: 1px solid transparent; background: #fff; cursor: pointer; }.media-thumbs button.active { border-color: var(--burgundy); }.media-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-details { padding: 70px 45px 35px; overflow: auto; }
.product-details h2 { margin: 5px 0 8px; font: 400 clamp(34px,4vw,54px)/1.1 var(--display); }
.product-fabric { color: var(--gold); font-size: 11px; }.product-description { color: var(--muted); line-height: 1.9; }.product-price { display: block; margin: 22px 0; color: var(--burgundy); font-size: 22px; }
.option-group { margin-top: 25px; }.option-group h3 { margin: 0 0 11px; font-size: 11px; }
.color-options,.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.color-options button,.size-options button { min-height: 42px; border: 1px solid #d3c3ae; background: #fff; cursor: pointer; }
.color-options button { display: flex; align-items: center; gap: 8px; padding: 7px 12px; }.color-options i { width: 22px; height: 22px; border-radius: 50%; background: var(--swatch); border: 1px solid #c9bba8; }
.size-options button { min-width: 44px; }.color-options button.active,.size-options button.active { border-color: var(--burgundy); box-shadow: 0 0 0 2px rgba(90,31,43,.12); }
.shipping-note { margin: 22px 0; padding: 12px; border-inline-start: 3px solid var(--gold); background: #f4eadc; color: var(--burgundy); font-size: 11px; }
.add-detailed { width: 100%; }.add-detailed:disabled { opacity: .45; cursor: not-allowed; }
.checkout-intro img { width: 170px; height: 75px; margin: -20px 0 -10px; }
.checkout-breakdown { grid-column: 1/-1; border-top: 1px solid #d7c9b6; padding-top: 12px; }.checkout-breakdown div { display: flex; justify-content: space-between; padding: 5px 0; }.checkout-breakdown div:last-child { color: var(--burgundy); font-size: 17px; font-weight: 700; }
.order-success .order-number { display: block; margin: 12px auto; color: var(--burgundy); font: 700 24px var(--body); letter-spacing: .06em; }
.order-success .button { margin-inline: 5px; }
.newsletter-form input[hidden] { display: none; }
.mobile-bottom-nav b { font: inherit; }

@media (max-width: 1050px) {
  .header-actions .compact-select { display: flex; }
  .brand { width: 145px; }
}
@media (max-width: 620px) {
  .header-actions .compact-select { min-width: 48px; padding-inline: 4px; }
  .header-actions .compact-select span { display: none; }
  .header-actions .compact-select select { width: 50px; max-width: 50px; font-size: 9px; }
}
@media (max-width: 720px) {
  .brand { width: 112px; height: 54px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .card-bottom { display: block; }.quick-view { margin-top: 8px; }
  .about-short { grid-template-columns: 1fr; gap: 35px; }.about-short img { height: 330px; }
  .ad-content { grid-template-columns: 1fr; gap: 20px; }.ad-content img { height: 200px; }
  .product-modal-grid { grid-template-columns: 1fr; }.product-gallery { min-height: 420px; }.product-details { padding: 35px 20px 30px; }
  .search-result { grid-template-columns: 60px 1fr; }.search-result > b { grid-column: 2; }.search-result img { width: 60px; height: 70px; }
  .checkout-breakdown { grid-column: 1; }
}

/* Final logo sizing override: transparent asset, no crop */
.brand{height:64px;overflow:visible}
.brand img,.footer-brand img,.checkout-intro img{object-fit:contain;object-position:center;filter:none;background:transparent}
@media(max-width:720px){.brand{width:128px;height:54px}}

/* Product variants, packages and sale clarity */
.package-tag, .package-label { background: var(--gold); color: var(--ink); }
.package-note { margin: 0; padding: 12px 14px; border: 1px solid var(--line); background: rgba(197,163,107,.12); color: var(--ink); }
.detail-quantity { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; }
.detail-quantity input { width: 88px; text-align: center; }
.cart-pricing { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.cart-pricing del { color: var(--muted); font-size: .85em; }
.cart-pricing strong { color: var(--burgundy); }
.cart-discount { width: 100%; color: var(--burgundy); font-size: .75em; }
.cart-discount-total { color: var(--burgundy); }
/* Refined app-like controls and sponsored-ad gallery */
.button,.quick-view,.filter,.color-options button,.size-options button,.cart-button,.compact-select,.ad-link{border-radius:12px}
.button,.quick-view,.filter,.color-options button,.size-options button,.cart-button,.menu-button,.favorites-button,.search-button,.ad-link{transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background-color .18s ease}
.button:active,.quick-view:active,.filter:active,.color-options button:active,.size-options button:active,.cart-button:active,.ad-link:active{transform:translateY(1px) scale(.985)}
.button:focus-visible,.quick-view:focus-visible,.filter:focus-visible,.color-options button:focus-visible,.size-options button:focus-visible,.cart-button:focus-visible,.ad-link:focus-visible{outline:3px solid rgba(197,163,107,.45);outline-offset:3px}
.button-outline{background:rgba(255,255,255,.6);box-shadow:0 7px 18px rgba(30,20,16,.06)}
.quick-view{padding:9px 14px;border:1px solid var(--line);background:#fff;color:var(--burgundy);box-shadow:0 5px 14px rgba(30,20,16,.06)}
.filter{padding:10px 17px;border:1px solid transparent;background:transparent}.filter.active,.filter:hover{border-color:var(--gold);background:#fff;box-shadow:0 7px 18px rgba(30,20,16,.07)}
.color-options button,.size-options button{box-shadow:0 4px 12px rgba(30,20,16,.05)}.color-options button:hover,.size-options button:hover{border-color:var(--gold);box-shadow:0 8px 18px rgba(90,31,43,.1)}
.ad-gallery{display:flex;gap:14px;overflow-x:auto;overscroll-behavior-inline:contain;scroll-snap-type:x mandatory;padding:2px 2px 8px}.ad-gallery img,.ad-gallery video{flex:0 0 min(72%,430px);width:auto;height:260px;object-fit:cover;scroll-snap-align:start;border:1px solid rgba(197,163,107,.25)}
.ad-links{display:flex;flex-wrap:wrap;gap:9px;margin-top:18px}.ad-link{display:inline-flex;align-items:center;min-height:40px;padding:0 15px;background:var(--burgundy);border:1px solid var(--gold);color:#fff4e4;font-size:10px}.ad-link:hover{background:#702837;box-shadow:0 10px 22px rgba(90,31,43,.25)}
@media(max-width:720px){.ad-gallery img,.ad-gallery video{flex-basis:86%;height:210px}}

.size-preview span{display:grid;grid-template-columns:auto;gap:1px;height:auto;min-height:30px;padding:3px 6px}.size-preview span b{font-weight:600}.size-preview span small{font-size:7px;color:var(--burgundy);white-space:nowrap}.color-options button,.size-options button{display:flex;align-items:center;justify-content:center;gap:7px;flex-wrap:wrap;padding:7px 12px;height:auto}.color-options button .option-stock,.size-options button .option-stock{display:block;width:100%;font-size:8px;color:var(--burgundy);white-space:nowrap}.color-options button:has(.option-stock),.size-options button:has(.option-stock){min-width:68px}
/* Storefront interaction polish */
.toast { z-index: 2147483000; top: max(16px, env(safe-area-inset-top)); right: 50%; bottom: auto; max-width: min(92vw, 520px); white-space: normal; text-align: center; transform: translate(50%, -24px); }
.toast.show { transform: translate(50%, 0); }
.product-feedback, .checkout-error { margin: 12px 0 0; padding: 12px 14px; border: 1px solid rgba(123,36,51,.32); border-inline-start: 4px solid var(--burgundy); background: #fff1f1; color: var(--burgundy); font-size: 11px; line-height: 1.7; }
.checkout-error { grid-column: 1 / -1; }
.product-feedback[hidden], .checkout-error[hidden], .complete-look[hidden] { display: none !important; }
.complete-look { margin-top: 32px; padding-top: 24px; border-top: 1px solid #ddcfbc; }
.complete-look-heading h3 { margin: 0; font: 400 27px/1.2 var(--display); }
.complete-look-heading p { margin: 5px 0 14px; color: var(--muted); font-size: 10px; }
.complete-look-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.look-card { min-width: 0; min-height: 44px; padding: 0; overflow: hidden; border: 1px solid #ddcfbc; border-radius: 14px; background: #fff; color: var(--ink); text-align: start; cursor: pointer; box-shadow: 0 7px 18px rgba(30,20,16,.06); transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.look-card:hover, .look-card:focus-visible { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 12px 24px rgba(30,20,16,.1); }
.look-card > img, .look-media { display: grid; place-items: center; width: 100%; aspect-ratio: .78; object-fit: cover; background: #e8dfd3; }
.look-card > span:last-child { display: grid; gap: 3px; padding: 10px; }
.look-card b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 400 16px var(--display); }
.look-card small { color: var(--burgundy); font-size: 9px; }
.dialog-close, .add-detailed, .confirm-order, .color-options button, .size-options button, .media-thumbs button, .search-result, .quick-view, .cart-item button, .button { min-height: 44px; }
.add-detailed { min-height: 52px; margin-top: 14px; border-radius: 12px; }
[aria-busy="true"] { cursor: wait !important; opacity: .72; }
.size-preview-more { min-width: 28px; border: 0 !important; background: transparent !important; color: var(--muted) !important; letter-spacing: 2px; }
@media (max-width:720px) {
  .product-modal { width:100%; max-width:100%; max-height:100dvh; margin:0; border:0; border-radius:0; }
  .product-modal-grid { display:block; min-height:auto; }
  .product-gallery { min-height:0; padding:12px; grid-template-rows:minmax(300px,46vh) auto; }
  .main-media img, .main-media video { max-height:46vh; }
  .product-details { padding:30px 18px calc(28px + env(safe-area-inset-bottom)); }
  .product-details h2 { font-size:clamp(34px,11vw,46px); }
  .option-group { margin-top:22px; }
  .color-options, .size-options { gap:10px; }
  .color-options button, .size-options button { min-height:48px; padding:9px 13px; }
  .detail-quantity { min-height:52px; padding-block:6px; }
  .shipping-note { margin:18px 0 6px; }
  .complete-look-grid { display:flex; gap:12px; overflow-x:auto; padding:2px 2px 10px; scroll-snap-type:x mandatory; }
  .look-card { flex:0 0 42%; scroll-snap-align:start; }
  .toast { top:max(12px,env(safe-area-inset-top)); bottom:auto; }
  .checkout-form { gap:20px; }
}
@media (max-width:420px) { .product-grid { gap:26px 10px; } .product-info h3 { font-size:17px; line-height:1.25; } .look-card { flex-basis:55%; } }
@media (prefers-reduced-motion:reduce) { .look-card, .toast { transition:none !important; } }
