:root {
  --shazdeh-emerald: #00241b;
  --shazdeh-emerald-soft: #063328;
  --shazdeh-gold: #d9b45b;
  --shazdeh-gold-light: #f0cf83;
  --shazdeh-ivory: #fbf6ea;
  --shazdeh-ink: #102a23;
  --shazdeh-muted: #665236;
  --shazdeh-line: rgba(127, 93, 43, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--shazdeh-ivory);
  color: var(--shazdeh-ink);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--shazdeh-ivory);
}

body.drawer-is-open {
  overflow: hidden;
}

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

a,
button {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 220ms ease, transform 220ms ease, opacity 180ms ease;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--shazdeh-gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--shazdeh-gold);
  color: var(--shazdeh-emerald);
  padding: 0.55rem 1rem;
  font-weight: 900;
}

.skip-link:focus {
  transform: none;
}

.site-header,
.hero,
.trust-strip,
.categories,
.why,
.magazine,
.site-footer {
  width: 100%;
  margin-inline: auto;
}

.site-header {
  position: relative;
  margin-top: 0;
  height: 229px;
  overflow: visible;
  background: var(--shazdeh-emerald);
  color: #f8ecd0;
  border: 1px solid rgba(217, 180, 91, 0.28);
  border-bottom: 0;
  box-shadow: inset 0 1px 0 rgba(255, 238, 194, 0.06), 0 10px 34px rgba(0, 24, 16, 0.08);
}

.announcement {
  position: absolute;
  inset: 0 0 auto;
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 clamp(24px, 4vw, 76px) 7px;
  color: #ead4a8;
  font-size: 1.02rem;
}

.utility-row {
  position: absolute;
  inset: 50px 0 auto;
  height: 42px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(217, 180, 91, 0.13);
  font-size: 0.94rem;
}

.utility-row nav {
  display: flex;
  gap: 1.45rem;
}

.utility-row a,
.primary-nav a,
.site-footer a,
.mega-menu a {
  opacity: 0.92;
}

.utility-row a:hover,
.primary-nav a:hover,
.site-footer a:hover,
.mega-menu a:hover {
  opacity: 1;
  color: var(--shazdeh-gold-light);
}

.cart-link,
.search-link {
  color: var(--shazdeh-gold-light);
  font-weight: 900;
}

.logo-row {
  position: absolute;
  inset: 73px 0 auto;
  height: 99px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 58px;
  padding: 0 clamp(80px, 10vw, 190px);
}

.logo-row > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 180, 91, 0.25), transparent);
}

.brand-logo {
  display: block;
  line-height: 1;
}

.brand-logo img {
  width: 170px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}

.nav-row {
  position: absolute;
  inset: auto 0 0;
  height: 59px;
  display: grid;
  grid-template-columns: minmax(60px, 160px) 1fr minmax(60px, 160px);
  align-items: center;
  padding: 0 clamp(24px, 4vw, 72px);
  border-top: 1px solid rgba(217, 180, 91, 0.13);
}

.search-link {
  justify-self: start;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 1.55rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.45vw, 1.85rem);
  font-size: clamp(0.82rem, 0.78vw, 1rem);
  white-space: nowrap;
}

.primary-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.primary-nav a:hover,
.mega-toggle:hover,
.search-link:hover {
  transform: translateY(-1px);
}

.mega-toggle {
  min-height: 34px;
  border: 1px solid rgba(217, 180, 91, 0.28);
  border-radius: 2px;
  padding: 0.2rem 0.8rem;
  background: rgba(217, 180, 91, 0.06);
  color: var(--shazdeh-gold-light);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 238, 194, 0.04);
}

.mega-toggle:hover,
.mega-toggle[aria-expanded="true"] {
  border-color: rgba(240, 207, 131, 0.55);
  background: rgba(217, 180, 91, 0.1);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 50% 0;
  height: 1px;
  background: var(--shazdeh-gold);
  transition: inset 0.24s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  inset-inline: 0;
}

.mega-menu {
  position: absolute;
  inset: 100% clamp(24px, 4vw, 72px) auto;
  z-index: 60;
  max-width: 1500px;
  margin-inline: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.mega-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
  gap: clamp(24px, 3vw, 56px);
  padding: clamp(26px, 3vw, 44px);
  background: linear-gradient(135deg, rgba(0, 36, 27, 0.98), rgba(5, 51, 40, 0.98));
  color: #f5e8c8;
  border: 1px solid rgba(217, 180, 91, 0.34);
  box-shadow: 0 32px 76px rgba(0, 20, 14, 0.42), inset 0 1px 0 rgba(255, 238, 194, 0.05);
}

.mega-menu h2 {
  margin: 0 0 0.8rem;
  color: var(--shazdeh-gold-light);
  font-size: 1rem;
}

.mega-menu a {
  display: block;
  padding: 0.28rem 0;
  color: #f3e4c2;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  border-bottom-color: rgba(217, 180, 91, 0.22);
  transform: translateX(-2px);
}

.mobile-bar {
  display: none;
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(390px, 88vw);
  transform: translateX(105%);
  overflow: auto;
  background: var(--shazdeh-emerald);
  color: var(--shazdeh-ivory);
  padding: 1rem;
  transition: transform 0.24s ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.drawer-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(217, 180, 91, 0.22);
}

.drawer-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 180, 91, 0.35);
  background: transparent;
  color: var(--shazdeh-gold-light);
  font-size: 1.6rem;
  cursor: pointer;
}

.drawer-search {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.drawer-search input,
.drawer-search button {
  min-height: 44px;
  border: 1px solid rgba(217, 180, 91, 0.34);
  padding: 0.7rem 0.85rem;
}

.drawer-search input {
  width: 100%;
  background: #fff8e8;
  color: var(--shazdeh-ink);
}

.drawer-search button {
  background: var(--shazdeh-gold);
  color: var(--shazdeh-emerald);
  font-weight: 900;
}

.drawer-nav {
  display: grid;
}

.drawer-nav a {
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(217, 180, 91, 0.16);
}

.hero {
  position: relative;
  height: clamp(540px, 44.75vw, 760px);
  overflow: hidden;
  background: var(--shazdeh-emerald);
  border-inline: 1px solid rgba(217, 180, 91, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 238, 194, 0.06);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: left center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 38%, rgba(217, 180, 91, 0.11), transparent 25%),
    linear-gradient(90deg, rgba(0, 20, 15, 0.06) 0 37%, rgba(0, 20, 15, 0.64) 48% 66%, rgba(0, 20, 15, 0.12) 82% 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  margin-inline-start: 42%;
  margin-inline-end: auto;
  padding-top: clamp(122px, 10vw, 172px);
  color: #fff2cf;
  text-align: center;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -34px -48px;
  z-index: -1;
  border-block: 1px solid rgba(240, 207, 131, 0.18);
  background: radial-gradient(ellipse at center, rgba(0, 24, 18, 0.72), rgba(0, 24, 18, 0));
  pointer-events: none;
}

.hero-copy span,
.magazine-copy span {
  display: block;
  color: var(--shazdeh-gold-light);
  font-weight: 900;
}

.hero-copy span {
  font-size: 1.8rem;
}

.hero h1,
.section-head h2,
.why h2,
.magazine h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

.hero h1 {
  margin: 0.25rem 0;
  font-size: 2.75rem;
  line-height: 1.35;
}

.hero p {
  margin: 0.75rem 0 1rem;
  color: #f3dfb8;
  font-size: 1.2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--shazdeh-gold);
  padding: 0.45rem 1rem;
  background: var(--shazdeh-emerald);
  color: var(--shazdeh-gold-light);
  font-weight: 900;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 238, 194, 0.04), 0 10px 24px rgba(0, 22, 15, 0.18);
}

.button:hover,
.button:focus-visible {
  background: #07362a;
  border-color: rgba(240, 207, 131, 0.82);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 238, 194, 0.08), 0 14px 30px rgba(0, 22, 15, 0.24);
}

.trust-strip {
  height: clamp(210px, 14vw, 257px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--shazdeh-ivory);
  border: 1px solid var(--shazdeh-line);
  border-top: 0;
  box-shadow: inset 0 1px 0 rgba(127, 93, 43, 0.08);
}

.trust-strip article,
.trust-strip .trust-link {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  padding: 29px 19px;
  text-align: center;
  border-inline-start: 1px solid var(--shazdeh-line);
  transition: background-color 220ms ease, transform 220ms ease;
  color: inherit;
  text-decoration: none;
}

.trust-strip article:first-child,
.trust-strip .trust-link:first-child {
  border-inline-start: 0;
}

.trust-strip span,
.value-panel span {
  color: var(--shazdeh-gold);
  font-size: 2.3rem;
  line-height: 1;
}

.trust-strip b {
  font-size: 1.1rem;
}

.trust-strip small {
  color: #76613d;
  font-size: 0.86rem;
}

.trust-strip article:hover,
.trust-strip .trust-link:hover,
.trust-strip .trust-link:focus-visible {
  background: rgba(255, 250, 239, 0.62);
  outline: 0;
  box-shadow: inset 0 0 0 2px rgba(205, 159, 65, 0.42);
}

.categories {
  min-height: 1483px;
  height: auto;
  padding: 73px clamp(24px, 4vw, 72px) 66px;
  background: var(--shazdeh-ivory);
  border-inline: 1px solid var(--shazdeh-line);
}

.section-head {
  margin: 0 auto 52px;
  text-align: center;
}

.category-grid,
.categories .section-head,
.all-categories {
  max-width: 1540px;
}

.category-grid,
.categories .section-head {
  margin-inline: auto;
}

.section-head h2,
.why h2,
.magazine h2 {
  margin: 0;
  color: #123027;
  font-size: 2.8rem;
}

.section-head p,
.magazine p {
  margin: 0.45rem auto 0;
  color: #625235;
  font-size: 1.08rem;
}

.category-grid {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.category-card {
  direction: rtl;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 10px;
  text-align: center;
}

.category-card img {
  width: 100%;
  aspect-ratio: 140 / 212;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(30, 18, 4, 0.13);
  transition: transform 360ms ease, box-shadow 360ms ease, filter 360ms ease;
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: translateY(-3px);
  filter: saturate(1.04) contrast(1.03);
  box-shadow: 0 18px 42px rgba(30, 18, 4, 0.18);
}

.category-card span {
  font-weight: 900;
  font-size: 1.14rem;
}

.category-card small {
  color: #5e4a2f;
  font-size: 0.82rem;
}

.all-categories {
  display: none;
  width: max-content;
  min-height: 44px;
  align-items: center;
  margin: 1.4rem auto 0;
  border: 1px solid var(--shazdeh-gold);
  padding: 0.72rem 1.05rem;
  background: var(--shazdeh-emerald);
  color: var(--shazdeh-gold-light);
  font-weight: 900;
}

.why {
  height: 486px;
  overflow: hidden;
  padding: 50px clamp(24px, 4vw, 72px) 73px;
  background: var(--shazdeh-ivory);
  border: 1px solid var(--shazdeh-line);
  border-top: 0;
}

.why .section-head {
  margin-bottom: 47px;
}

.value-panel {
  max-width: 1540px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--shazdeh-emerald);
  border: 1px solid rgba(217, 180, 91, 0.34);
  border-radius: 5px;
  box-shadow: 0 14px 36px rgba(0, 30, 22, 0.12), inset 0 1px 0 rgba(255, 238, 194, 0.05);
}

.value-panel article {
  min-height: 198px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 31px;
  text-align: center;
  border-inline-start: 1px solid rgba(217, 180, 91, 0.17);
  transition: background-color 220ms ease;
}

.value-panel article:hover {
  background: rgba(217, 180, 91, 0.035);
}

.value-panel h3 {
  margin: 0.55rem 0 0.22rem;
  color: var(--shazdeh-gold-light);
  font-size: 1.2rem;
}

.value-panel p {
  margin: 0;
  color: #d9c8a4;
  font-size: 0.84rem;
}

.magazine {
  direction: ltr;
  height: 574px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.68fr;
  align-items: center;
  gap: 40px;
  padding: 50px clamp(24px, 4vw, 72px) 38px;
  background: var(--shazdeh-ivory);
  border-inline: 1px solid var(--shazdeh-line);
}

.magazine > * {
  min-width: 0;
}

.magazine-copy {
  direction: rtl;
  min-height: 401px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 47px;
  border: 1px solid rgba(127, 93, 43, 0.16);
  border-radius: 5px;
  text-align: right;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.magazine-copy span {
  color: #18362c;
}

.magazine figure {
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 16px 42px rgba(42, 27, 5, 0.15);
}

.magazine img {
  width: 100%;
  aspect-ratio: 355 / 204;
  object-fit: cover;
}

.site-footer {
  direction: ltr;
  min-height: 541px;
  overflow: hidden;
  padding: 54px clamp(24px, 4vw, 72px) 24px;
  background: radial-gradient(circle at 50% 0, rgba(217, 180, 91, 0.13), transparent 42%), var(--shazdeh-emerald);
  color: #e9d9b7;
  border: 1px solid rgba(217, 180, 91, 0.32);
  border-top: 0;
  box-shadow: inset 0 1px 0 rgba(255, 238, 194, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 0.85fr 0.85fr 1.05fr;
  gap: clamp(24px, 3vw, 54px);
  max-width: 1540px;
  margin-inline: auto;
}

.footer-grid > * {
  direction: rtl;
}

.footer-logo img {
  width: 186px;
  height: 162px;
}

.footer-brand p {
  max-width: 19rem;
  color: #d7c6a5;
  font-size: 0.88rem;
}

.socials {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

.site-footer summary {
  color: var(--shazdeh-gold-light);
  font-weight: 900;
  list-style: none;
  font-size: 0.96rem;
}

.footer-newsletter h2 {
  margin: 0 0 0.5rem;
  color: var(--shazdeh-gold-light);
  font-size: 0.96rem;
}

.footer-newsletter p {
  color: #d7c6a5;
  font-size: 0.82rem;
}

.footer-newsletter form {
  display: grid;
  gap: 0.55rem;
}

.footer-newsletter input,
.footer-newsletter button {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(217, 180, 91, 0.34);
  padding: 0.6rem 0.75rem;
}

.footer-newsletter input {
  background: transparent;
  color: var(--shazdeh-ivory);
}

.footer-newsletter button {
  background: transparent;
  color: var(--shazdeh-gold-light);
  cursor: pointer;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
  background: rgba(217, 180, 91, 0.08);
  border-color: rgba(240, 207, 131, 0.7);
}

.site-footer details a {
  display: block;
  padding: 0.16rem 0;
  color: #f3e4c2;
  font-size: 0.86rem;
}

.copyright {
  direction: rtl;
  max-width: 1540px;
  margin: 38px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(217, 180, 91, 0.18);
  color: #cab78d;
  font-size: 0.78rem;
}

.legal {
  direction: rtl;
  display: flex;
  gap: 1rem;
  max-width: 1540px;
  margin-inline: auto;
  justify-content: flex-end;
  margin-top: -1.5rem;
  color: #d8c9a9;
  font-size: 0.74rem;
}

@media (min-width: 501px) and (max-width: 1439px) {
  .site-header {
    height: clamp(122px, 15.9vw, 229px);
  }

  .announcement {
    height: clamp(27px, 3.45vw, 50px);
    padding: 0 clamp(32px, 5.25vw, 76px) 5px;
    font-size: clamp(0.7rem, 1.24vw, 1.02rem);
  }

  .utility-row {
    top: clamp(27px, 3.45vw, 50px);
    height: clamp(23px, 2.95vw, 42px);
    padding: 0 clamp(28px, 4.3vw, 62px);
    font-size: clamp(0.62rem, 1.08vw, 0.94rem);
  }

  .logo-row {
    top: clamp(39px, 5.08vw, 73px);
    height: clamp(53px, 6.88vw, 99px);
    gap: clamp(24px, 4vw, 58px);
    padding: 0 clamp(48px, 9vw, 130px);
  }

  .brand-logo img {
    width: clamp(91px, 11.8vw, 170px);
    height: clamp(75px, 9.72vw, 140px);
  }

  .nav-row {
    grid-template-columns: clamp(85px, 11vw, 160px) 1fr clamp(85px, 11vw, 160px);
    height: clamp(31px, 4.1vw, 59px);
    padding: 0 clamp(32px, 4.85vw, 70px);
  }

  .primary-nav {
    gap: clamp(1rem, 2.1vw, 2.1rem);
    font-size: clamp(0.68rem, 1vw, 1rem);
  }

  .hero {
    height: clamp(344px, 44.75vw, 644px);
  }

  .hero-copy {
    margin-inline-start: 39%;
    margin-inline-end: auto;
    padding-top: clamp(78px, 10.2vw, 147px);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 3.05vw, 2.75rem);
  }

  .trust-strip {
    height: clamp(137px, 17.86vw, 257px);
  }

  .categories {
    height: clamp(796px, 103vw, 1483px);
    padding: clamp(39px, 5.08vw, 73px) clamp(11px, 1.48vw, 21px) clamp(35px, 4.6vw, 66px);
  }

  .section-head {
    margin-bottom: clamp(28px, 3.6vw, 52px);
  }

  .section-head h2,
  .why h2,
  .magazine h2 {
    font-size: clamp(1.45rem, 3.1vw, 2.8rem);
  }

  .why {
    height: clamp(268px, 33.75vw, 486px);
    padding: clamp(27px, 3.45vw, 50px) clamp(15px, 2vw, 29px) clamp(39px, 5.08vw, 73px);
  }

  .value-panel article {
    min-height: clamp(106px, 13.77vw, 198px);
  }

  .magazine {
    height: clamp(283px, 39.86vw, 574px);
    padding: clamp(27px, 3.45vw, 50px) clamp(10px, 1.3vw, 19px) clamp(20px, 2.62vw, 38px);
  }

  .magazine-copy {
    min-height: clamp(214px, 27.86vw, 401px);
  }

  .site-footer {
    min-height: clamp(282px, 37.57vw, 541px);
    padding: clamp(29px, 3.77vw, 54px) clamp(25px, 3.28vw, 47px) clamp(13px, 1.64vw, 24px);
  }
}

@media (min-width: 501px) and (max-width: 1100px) {
  .site-header,
  .hero,
  .trust-strip,
  .categories,
  .why,
  .magazine,
  .site-footer {
    width: 100%;
  }

  .site-header {
    margin-top: 0;
    height: 160px;
  }

  .announcement,
  .utility-row,
  .logo-row,
  .nav-row,
  .mega-menu {
    display: none;
  }

  .mobile-bar {
    direction: ltr;
    height: 160px;
    display: grid;
    grid-template-columns: 64px 1fr 64px;
    align-items: center;
    padding: 0 clamp(24px, 5vw, 44px);
  }

  .menu-toggle,
  .mobile-cart {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--shazdeh-gold-light);
    font-weight: 900;
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    background: var(--shazdeh-gold-light);
  }

  .menu-toggle span::before {
    position: absolute;
    top: -6px;
  }

  .menu-toggle span::after {
    position: absolute;
    top: 6px;
  }

  .mobile-logo {
    justify-self: center;
  }

  .mobile-logo img {
    width: 138px;
    height: 104px;
  }

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

  .category-card img {
    aspect-ratio: 16 / 11;
  }

  .categories {
    min-height: 0;
    height: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .site-header,
  .hero,
  .trust-strip,
  .categories,
  .why,
  .magazine,
  .site-footer {
    width: min(100% - 6px, 390px);
  }

  .site-header {
    margin-top: 0;
    height: 160px;
  }

  .announcement,
  .utility-row,
  .logo-row,
  .nav-row,
  .mega-menu {
    display: none;
  }

  .mobile-bar {
    direction: ltr;
    height: 160px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 0 12px;
  }

  .menu-toggle,
  .mobile-cart {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--shazdeh-gold-light);
    font-weight: 900;
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    background: var(--shazdeh-gold-light);
  }

  .menu-toggle span::before {
    position: absolute;
    top: -6px;
  }

  .menu-toggle span::after {
    position: absolute;
    top: 6px;
  }

  .mobile-logo {
    justify-self: center;
  }

  .mobile-logo img {
    width: 122px;
    height: 92px;
  }

  .hero {
    height: 453px;
  }

  .hero img {
    object-position: 28% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 36, 27, 0) 0 48%, rgba(0, 36, 27, 0.7) 100%);
  }

  .hero-copy {
    position: absolute;
    inset: auto 8% 7%;
    max-width: none;
    margin: 0;
    padding: 0.95rem 1rem 1.1rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 24, 18, 0.08), rgba(0, 24, 18, 0.84));
    border: 1px solid rgba(240, 207, 131, 0.22);
    backdrop-filter: blur(3px);
  }

  .hero-copy::before { display: none; }

  .hero-copy span {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 1.45rem;
  }

  .hero p {
    font-size: 0.78rem;
  }

  .button {
    min-height: 38px;
    padding-inline: 0.78rem;
    font-size: 0.74rem;
  }

  .trust-strip {
    height: 140px;
    grid-template-columns: repeat(5, 1fr);
  }

  .trust-strip article,
  .trust-strip .trust-link {
    padding: 8px 2px;
    border-inline-start: 0;
  }

  .trust-strip span {
    font-size: 1.05rem;
  }

  .trust-strip b {
    font-size: 0.62rem;
  }

  .trust-strip small {
    font-size: 0.5rem;
  }

  .categories {
    height: auto;
    min-height: 0;
    padding: 54px 0 30px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2,
  .why h2,
  .magazine h2 {
    font-size: 1.2rem;
  }

  .section-head p,
  .magazine p {
    font-size: 0.66rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 2px;
  }

  .category-card {
    position: relative;
    display: block;
    height: 74px;
    overflow: hidden;
    border-radius: 4px;
  }

  .category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    filter: brightness(0.86) saturate(1.03);
  }

  .category-card::after {
    content: "›";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--shazdeh-gold-light);
    font-size: 1.35rem;
  }

  .category-card span {
    position: absolute;
    z-index: 1;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    color: #f9e8bd;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
  }

  .category-card small {
    display: none;
  }

  .all-categories {
    display: flex;
    min-height: 38px;
    margin-top: 18px;
    padding: 0.35rem 0.7rem;
    font-size: 0.76rem;
  }

  .why {
    height: auto;
    padding: 40px 17px 29px;
  }

  .value-panel {
    grid-template-columns: 1fr;
  }

  .value-panel article {
    min-height: 68px;
    justify-items: start;
    align-items: center;
    grid-template-columns: 34px 1fr 18px;
    padding: 8px 13px;
    text-align: right;
    border-top: 1px solid rgba(217, 180, 91, 0.17);
  }

  .value-panel article::after {
    content: "›";
    color: var(--shazdeh-gold-light);
  }

  .value-panel span {
    grid-row: 1 / span 2;
  }

  .value-panel p {
    grid-column: 2;
  }

  .magazine {
    height: 245px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 34px 10px 30px;
  }

  .magazine-copy {
    min-height: 166px;
    padding: 14px;
  }

  .magazine img {
    height: 166px;
    aspect-ratio: auto;
  }

  .site-footer {
    min-height: 530px;
    padding: 30px 21px 20px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .footer-logo img {
    width: 138px;
    height: 124px;
  }

  .socials {
    justify-content: center;
    margin-bottom: 16px;
  }

  .site-footer details {
    text-align: right;
    border-top: 1px solid rgba(217, 180, 91, 0.17);
  }

  .site-footer summary {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .site-footer summary::before {
    content: "⌄";
    color: var(--shazdeh-gold-light);
  }

  .site-footer details a,
  .site-footer details:not([open]) a {
    display: none;
  }

  .footer-newsletter {
    display: none;
  }

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

  .legal {
    justify-content: center;
    margin-top: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* RC2.4 desktop header alignment: keep the promotion centered and the
   wordmark fully inside its own row, clear of utility and primary links. */
@media (min-width: 1101px) {
  .site-header {
    height: 219px;
  }

  .announcement {
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(24px, 4vw, 76px);
    text-align: center;
  }

  .utility-row {
    top: 38px;
    height: 42px;
  }

  .logo-row {
    top: 80px;
    height: 80px;
  }

  .header-logo img,
  .wave1-rc1 .header-logo img {
    width: 112px;
    height: 82px;
  }

  .nav-row {
    height: 59px;
  }
}
