:root {
  --ink: #101010;
  --soft-ink: #56524e;
  --muted: #8b8580;
  --paper: #fbfaf8;
  --panel: #ffffff;
  --line: #e5e0db;
  --sale: #090909;
  --sand: #eee7de;
  --pink: #f2b7c7;
  --yellow: #f2dc70;
  --mint: #bcd9c4;
  --blue: #a9cfef;
  --wine: #702333;
  --blush: #f7d8df;
  --warm-shadow: 0 18px 46px rgba(16, 16, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cairo", system-ui, sans-serif;
  padding-bottom: 0;
}

body.locked {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--wine), var(--pink), var(--mint), var(--blue));
  transform: scaleX(0);
  transform-origin: right center;
  will-change: transform;
}

body.animations-ready .reveal-item {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    filter 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

body.animations-ready .reveal-item.is-visible {
  opacity: 1;
  filter: none;
  transform: translateY(0);
}

@keyframes heroBreath {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-0.8%, 0.4%, 0);
  }
}

@keyframes lineSweep {
  0% {
    transform: translateX(105%);
  }

  100% {
    transform: translateX(-105%);
  }
}

@keyframes pulseHotspot {
  0%,
  100% {
    box-shadow:
      0 0 0 7px rgba(255, 255, 255, 0.18),
      0 0 0 0 rgba(255, 255, 255, 0.28);
  }

  50% {
    box-shadow:
      0 0 0 9px rgba(255, 255, 255, 0.24),
      0 0 0 18px rgba(255, 255, 255, 0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

button,
input {
  font: inherit;
}

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

.announcement {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(360px, 1fr) auto minmax(360px, 1fr);
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  min-height: 66px;
  padding: 6px clamp(18px, 3.6vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(16, 16, 16, 0.035);
  backdrop-filter: blur(18px);
}

.brand-mark {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  width: 132px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.brand-mark img,
.category-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.desktop-nav {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  direction: rtl;
  justify-content: flex-start;
  gap: 2px;
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-bottom: 2px solid transparent;
  padding: 0 clamp(9px, 0.9vw, 16px);
  color: #2b2928;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  border-color: var(--ink);
  color: var(--ink);
}

.header-tools {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  direction: rtl;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.account-link {
  display: inline-flex;
  min-width: 74px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7d1ca;
  background: #fffdfb;
  padding: 0 16px;
  font-size: 0.85rem;
  font-weight: 900;
  white-space: nowrap;
}

.search-box {
  display: flex;
  width: min(28vw, 360px);
  min-width: 220px;
  height: 40px;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7d1ca;
  background: #fffdfb;
  padding: 0 13px;
  color: var(--muted);
}

.search-box span {
  font-size: 1.35rem;
  line-height: 1;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  direction: rtl;
  font-weight: 700;
}

.icon-button,
.cart-button,
.filter-toggle,
.close-menu,
.close-filter,
.apply-filter,
.reset-filter {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d7d1ca;
  background: #fffdfb;
  font-size: 1.35rem;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.cart-button {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  padding: 0 14px;
  background: white;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.cart-button b {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  background: var(--ink);
  color: white;
  font-size: 0.72rem;
}

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  display: grid;
  align-content: start;
  width: min(84vw, 360px);
  padding: 24px;
  border-right: 1px solid var(--line);
  background: white;
  box-shadow: 14px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(-110%);
  transition: transform 220ms ease;
}

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

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 800;
}

.close-menu,
.close-filter {
  justify-self: start;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.impact-hero {
  position: relative;
  min-height: min(710px, calc(100svh - 96px));
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(22px, 4vw, 58px);
  background: #f1ebe5;
  color: var(--ink);
}

.impact-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.22) 54%, rgba(255, 255, 255, 0.68)),
    linear-gradient(0deg, rgba(16, 16, 16, 0.07), transparent 38%);
  opacity: 1;
}

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

.hero-bg img {
  object-fit: cover;
  object-position: center top;
  animation: heroBreath 14s ease-in-out infinite alternate;
  transform-origin: 48% 18%;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 30%, rgba(242, 183, 199, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(241, 235, 229, 0) 0%, rgba(241, 235, 229, 0.1) 46%, rgba(248, 245, 241, 0.78) 72%, rgba(248, 245, 241, 0.96));
}

.hero-content {
  position: absolute;
  right: clamp(34px, 5.6vw, 96px);
  top: clamp(94px, 14vh, 138px);
  z-index: 2;
  width: min(590px, calc(100% - 92px));
  text-align: right;
  animation: floatIn 680ms ease both;
}

.hero-kicker {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--wine);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-kicker::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.56;
  animation: lineSweep 2.8s ease-in-out infinite;
}

.hero-content h1 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.85rem, 4.75vw, 4.95rem);
  line-height: 1.02;
}

.hero-content p:not(.hero-kicker) {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.9;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.hero-proof span {
  display: grid;
  min-height: 62px;
  align-content: center;
  gap: 2px;
  border-top: 2px solid var(--ink);
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-proof b {
  color: var(--ink);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  justify-content: flex-start;
}

.hero-actions a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  border: 1px solid var(--ink);
  padding: 12px 24px;
  font-weight: 900;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero-actions a:first-child {
  background: var(--ink);
  color: white;
}

.hero-actions a:hover {
  border-color: var(--wine);
  background: #f3c8d2;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(112, 35, 51, 0.12);
  transform: translateY(-2px);
}

.hero-strip {
  position: absolute;
  right: clamp(16px, 5vw, 74px);
  bottom: clamp(14px, 2.4vw, 28px);
  left: clamp(16px, 5vw, 74px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
}

.hero-strip article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(16, 16, 16, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero-strip article:hover {
  border-color: rgba(16, 16, 16, 0.34);
  background: white;
  box-shadow: 0 22px 46px rgba(16, 16, 16, 0.12);
  transform: translateY(-4px);
}

.hero-strip img {
  width: 48px;
  height: 60px;
  object-fit: cover;
  object-position: center top;
}

.hero-strip span {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.35;
}

.brand-promise {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 42px rgba(16, 16, 16, 0.04);
}

.brand-promise span {
  position: relative;
  display: grid;
  min-height: 58px;
  place-items: center;
  border-inline-start: 1px solid var(--line);
  padding: 12px;
  color: var(--soft-ink);
  font-weight: 900;
}

.brand-promise span::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.brand-promise span:hover::before {
  transform: scaleX(1);
}

.store-edit {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  padding: clamp(36px, 5.5vw, 68px) clamp(16px, 5vw, 72px);
  background:
    linear-gradient(135deg, #fffdfb 0%, #fffdfb 54%, #f2ece5 100%);
  border-bottom: 1px solid var(--line);
}

.store-edit-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 640px;
}

.store-edit-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.8vw, 4.55rem);
  line-height: 1.03;
}

.store-edit-copy p:not(.kicker) {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.9;
}

.edit-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.edit-metrics a {
  display: grid;
  align-content: space-between;
  min-height: 210px;
  border: 1px solid #d8d0c7;
  background: white;
  padding: clamp(16px, 2vw, 22px);
  box-shadow: 0 1px 0 rgba(16, 16, 16, 0.04);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.edit-metrics a:nth-child(2) {
  background: #111;
  color: white;
}

.edit-metrics a:nth-child(3) {
  background: #f6dce3;
}

.edit-metrics a:hover {
  border-color: var(--ink);
  box-shadow: var(--warm-shadow);
  transform: translateY(-3px);
}

.edit-metrics span {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.edit-metrics a:nth-child(2) span,
.edit-metrics a:nth-child(2) small {
  color: rgba(255, 255, 255, 0.68);
}

.edit-metrics b {
  align-self: end;
  margin-top: 44px;
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.05;
}

.edit-metrics small {
  display: block;
  margin-top: 10px;
  color: var(--soft-ink);
  font-size: 0.94rem;
  line-height: 1.65;
}

.style-finder {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(520px, 1fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(38px, 6vw, 78px) clamp(16px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #f7f2ec;
}

.style-finder-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 560px;
}

.style-finder-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.03;
}

.style-finder-copy p:not(.kicker) {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(0.98rem, 1.35vw, 1.13rem);
  line-height: 1.9;
}

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

.style-options button {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid #d8d0c7;
  background: #111;
  color: white;
  cursor: pointer;
  isolation: isolate;
  padding: 16px;
  text-align: right;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.style-options button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(16, 16, 16, 0.84), rgba(16, 16, 16, 0.02) 58%),
    linear-gradient(90deg, rgba(16, 16, 16, 0.3), transparent);
  content: "";
}

.style-options img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    filter 200ms ease,
    transform 240ms ease;
}

.style-options button:hover img,
.style-options button.active img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.style-options button:hover,
.style-options button.active {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 60px rgba(16, 16, 16, 0.16);
  transform: translateY(-5px);
}

.style-options button.active {
  outline: 3px solid var(--pink);
  outline-offset: -8px;
}

.style-options span {
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.style-options b {
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  line-height: 1.12;
}

.style-options small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.mood-shop {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(38px, 6vw, 76px) clamp(16px, 5vw, 72px);
  background: #101010;
  color: white;
}

.mood-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.mood-copy .kicker,
.fit-copy .kicker {
  color: var(--blush);
}

.mood-copy h2,
.fit-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  line-height: 1.02;
}

.mood-copy p,
.fit-copy p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.9;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 12px;
}

.mood-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #1a1817;
  isolation: isolate;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.mood-card-large {
  grid-row: 1 / span 2;
}

.mood-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(16, 16, 16, 0.78), rgba(16, 16, 16, 0.1) 58%),
    linear-gradient(90deg, rgba(16, 16, 16, 0.18), transparent);
  content: "";
}

.mood-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    filter 200ms ease,
    transform 240ms ease;
}

.mood-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.mood-card:hover {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.mood-card span,
.mood-card b {
  position: absolute;
  right: 18px;
  left: 18px;
  text-align: right;
}

.mood-card span {
  bottom: 64px;
  color: var(--blush);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mood-card b {
  bottom: 22px;
  color: white;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  line-height: 1.1;
}

.lookbook-live {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(520px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  padding: clamp(42px, 7vw, 92px) clamp(16px, 5vw, 72px);
  background: #fffdfb;
  border-bottom: 1px solid var(--line);
}

.lookbook-copy {
  display: grid;
  align-content: end;
  justify-items: start;
  max-width: 560px;
}

.lookbook-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.02;
}

.lookbook-copy p:not(.kicker) {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(0.98rem, 1.4vw, 1.14rem);
  line-height: 1.9;
}

.lookbook-panels {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr 0.94fr;
  gap: 12px;
}

.look-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eee7de;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.look-panel:nth-child(2) {
  margin-top: 48px;
}

.look-panel:nth-child(3) {
  margin-top: 96px;
}

.look-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  transition:
    filter 200ms ease,
    transform 260ms ease;
}

.look-panel:hover img {
  filter: brightness(0.96);
  transform: scale(1.025);
}

.look-panel:hover {
  border-color: #c8beb5;
  box-shadow: 0 28px 64px rgba(16, 16, 16, 0.12);
  transform: translateY(-5px);
}

.look-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(16, 16, 16, 0.82), transparent);
  content: "";
}

.look-panel div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: white;
}

.look-panel b {
  display: block;
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1;
}

.look-panel small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.hotspot {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.18);
  animation: pulseHotspot 1.9s ease-in-out infinite;
}

.hotspot::before {
  width: 6px;
  height: 6px;
  background: var(--ink);
  content: "";
}

.hotspot span {
  position: absolute;
  right: 28px;
  top: 50%;
  min-width: 132px;
  transform: translateY(-50%);
  background: rgba(16, 16, 16, 0.82);
  color: white;
  padding: 8px 10px;
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 170ms ease;
}

.hotspot:hover span {
  opacity: 1;
}

.hotspot.h1 {
  right: 46%;
  top: 46%;
}

.hotspot.h2 {
  right: 40%;
  top: 38%;
}

.hotspot.h3 {
  right: 48%;
  top: 44%;
}

.category-head {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: clamp(18px, 3vw, 34px) clamp(16px, 4vw, 54px) 16px;
  border-bottom: 1px solid var(--line);
  background: #fffdfb;
  text-align: center;
}

.category-anchor {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.category-logo {
  display: none;
  width: 138px;
  height: 50px;
  overflow: hidden;
  background: white;
}

.kicker {
  margin: 0;
  color: var(--wine);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1;
}

.category-copy {
  max-width: 520px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.7;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.category-tabs a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  background: white;
  padding: 7px 16px;
  color: var(--soft-ink);
  font-weight: 800;
}

.category-tabs a.active,
.category-tabs a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.category-meta {
  display: flex;
  width: min(100%, 1280px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  padding-top: 10px;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(100%, 1280px);
  margin-top: 8px;
}

.active-filters[hidden],
.empty-state[hidden] {
  display: none;
}

.active-filters button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8d0c7;
  background: #f7f2ec;
  padding: 6px 12px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.active-filters button::before {
  color: var(--muted);
  content: "×";
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.result-count {
  white-space: nowrap;
}

.shop-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-control {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: white;
  padding: 0 14px;
  color: var(--soft-ink);
  font-weight: 800;
}

.sort-control span {
  color: var(--muted);
  font-size: 0.86rem;
}

.sort-control select {
  min-width: 118px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.view-control {
  display: none;
  grid-template-columns: repeat(2, 42px);
  height: 42px;
  border: 1px solid var(--line);
  background: white;
}

.view-button {
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  gap: 3px;
  border: 0;
  border-inline-start: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.view-button:first-child {
  border-inline-start: 0;
}

.view-button span {
  display: block;
  width: 5px;
  height: 16px;
  background: var(--muted);
}

.view-button.active {
  background: var(--ink);
}

.view-button.active span {
  background: white;
}

.filter-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: white;
  padding: 8px 16px;
  font-weight: 800;
}

.filter-icon {
  position: relative;
  width: 21px;
  height: 16px;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 3px / 21px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 12px / 21px 1px no-repeat;
}

.filter-icon::before,
.filter-icon::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: white;
  content: "";
}

.filter-icon::before {
  top: 0;
  right: 4px;
}

.filter-icon::after {
  bottom: 0;
  left: 5px;
}

.shop-shell {
  display: block;
  max-width: 1460px;
  margin: 0 auto;
  padding: 18px clamp(14px, 3vw, 42px) clamp(54px, 7vw, 100px);
}

.filters {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 50;
  width: min(92vw, 380px);
  max-height: none;
  overflow-y: auto;
  border: 1px solid var(--line);
  background: white;
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.13);
  transform: translateX(110%);
  transition: transform 220ms ease;
}

.filters.open {
  transform: translateX(0);
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
}

.filter-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.filter-group {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
}

.filter-group p {
  margin-bottom: 2px;
  font-weight: 900;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-ink);
  cursor: pointer;
}

.filter-group input {
  accent-color: var(--ink);
}

.sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sizes button {
  height: 40px;
  border: 1px solid var(--line);
  background: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.sizes button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.apply-filter,
.reset-filter {
  width: calc(100% - 36px);
  min-height: 46px;
  margin: 18px;
  border: 1px solid var(--ink);
  font-weight: 900;
}

.apply-filter {
  background: var(--ink);
  color: white;
  margin-bottom: 0;
}

.reset-filter {
  margin-top: 10px;
}

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

.products.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.products.compact .product-card::after {
  bottom: 140px;
}

.products.compact .product-info p {
  display: none;
}

.products.compact .product-info {
  min-height: 130px;
}

.products.compact .product-trust {
  display: none;
}

.product-card {
  position: relative;
  min-width: 0;
  border: 1px solid #ebe5de;
  background: white;
  text-align: center;
  box-shadow: 0 1px 0 rgba(16, 16, 16, 0.03);
  transition:
    border-color 200ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.product-card::before {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  min-width: 46px;
  height: 30px;
  place-items: center;
  background: var(--ink);
  color: white;
  content: attr(data-sale);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.product-card::after {
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 184px;
  z-index: 2;
  display: grid;
  height: 42px;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  content: "اطلبي القطعة";
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-card:hover {
  border-color: #d8d0c7;
  box-shadow: 0 24px 56px rgba(16, 16, 16, 0.11);
  transform: translateY(-6px) scale(1.01);
}

.product-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.product-card.hidden {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 4.85;
  background: #efedeb;
  object-fit: cover;
  object-position: center top;
  transition:
    filter 200ms ease,
    transform 260ms ease;
}

.product-card:hover img {
  filter: brightness(0.96);
  transform: scale(1.018);
}

.wish {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.35rem;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.wish.active {
  background: var(--ink);
  color: white;
}

.wish:hover {
  transform: scale(1.06);
}

.product-info {
  display: grid;
  gap: 7px;
  min-height: 170px;
  padding: 12px 12px 13px;
}

.product-info h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.product-info p {
  min-height: 24px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.product-meta span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fffdfb;
  padding: 3px 8px;
  color: var(--soft-ink);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.price-row del {
  color: var(--muted);
  font-size: 0.82rem;
}

.sale-price {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  background: var(--sale);
  color: white;
  padding: 5px 9px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.price-row b {
  display: none;
  min-height: 30px;
  align-items: center;
  background: var(--sale);
  color: white;
  padding: 5px 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
}

.swatches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--soft-ink);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.swatches i {
  width: 16px;
  height: 16px;
  border: 1px solid #c9c3bd;
}

.swatches .yellow {
  background: var(--yellow);
}

.swatches .cream {
  background: #f7f1e8;
}

.swatches .mint {
  background: var(--mint);
}

.swatches .blue {
  background: var(--blue);
}

.swatches .pink {
  background: var(--pink);
}

.swatches .white {
  background: white;
}

.swatches .black {
  background: #111;
}

.swatches .red {
  background: #cf2934;
}

.swatches .brown {
  background: #8b5137;
}

.swatches .rose {
  background: #f7c9d2;
}

.swatches .wine {
  background: var(--wine);
}

.product-trust {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1px;
}

.product-trust span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.3;
}

.product-trust span + span::before {
  margin-inline-end: 6px;
  color: #c4bbb2;
  content: "/";
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 22px auto 0;
  border: 1px solid var(--line);
  background: white;
  padding: 28px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(16, 16, 16, 0.06);
}

.empty-state b {
  font-size: 1.25rem;
}

.empty-state span {
  color: var(--soft-ink);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(22px, 4vw, 62px);
  align-items: center;
  padding: clamp(44px, 7vw, 92px) clamp(16px, 5vw, 72px);
  background: var(--sand);
}

.editorial h2,
.contact h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.editorial p:not(.kicker),
.account-intro p,
.account-panel p,
.contact p {
  max-width: 640px;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.9;
}

.editorial img {
  width: 100%;
  max-height: 600px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
}

.fit-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 72px);
  background: #181514;
  color: white;
}

.fit-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fit-board article,
.fit-photo {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.fit-board article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(18px, 2.2vw, 26px);
}

.fit-board article span {
  color: var(--blush);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.fit-board article h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.fit-board article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.fit-photo {
  position: relative;
  grid-column: 1 / -1;
  min-height: 300px;
  aspect-ratio: 16 / 6.2;
  overflow: hidden;
}

.fit-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.95);
}

.fit-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.72), transparent 60%);
  content: "";
}

.fit-photo b {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: white;
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: clamp(1.6rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #fffdfb;
}

.service-strip article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 170px;
  border-inline-start: 1px solid var(--line);
  padding: clamp(18px, 3vw, 34px);
  transition:
    background 190ms ease,
    transform 190ms ease;
}

.service-strip article:first-child {
  border-inline-start: 0;
}

.service-strip article:hover {
  background: rgba(16, 16, 16, 0.035);
  transform: translateY(-3px);
}

.service-strip span {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.service-strip b {
  font-size: clamp(1.15rem, 2.2vw, 1.62rem);
  line-height: 1.22;
}

.service-strip p {
  max-width: 420px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.75;
}

.account-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.62fr);
  grid-template-areas:
    "intro visual"
    "grid visual";
  gap: 24px clamp(24px, 4vw, 52px);
  align-items: start;
  padding: clamp(44px, 6vw, 74px) clamp(16px, 5vw, 72px);
  background:
    linear-gradient(135deg, #101010 0%, #101010 54%, #191716 100%);
  color: white;
}

.account-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
}

.account-visual {
  grid-area: visual;
  position: sticky;
  top: 98px;
  min-height: 548px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #eee7de;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.account-visual img {
  width: 100%;
  height: 100%;
  min-height: 548px;
  object-fit: cover;
  object-position: center 18%;
}

.account-visual div {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 8px;
  background: rgba(16, 16, 16, 0.74);
  padding: 16px 18px;
  backdrop-filter: blur(14px);
}

.account-visual span {
  color: #f3c8d2;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.account-visual b {
  color: white;
  font-size: clamp(1.2rem, 2.25vw, 1.8rem);
  line-height: 1.18;
}

.account-intro {
  grid-area: intro;
  display: grid;
  justify-items: start;
  max-width: 780px;
  margin: 0;
  padding-top: clamp(6px, 2vw, 24px);
  text-align: start;
}

.account-intro .kicker {
  color: #f3c8d2;
}

.account-intro h2 {
  max-width: 790px;
  margin-bottom: 14px;
  color: white;
  font-size: clamp(2.25rem, 4.25vw, 4.25rem);
  line-height: 1.04;
}

.account-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.account-grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 18px;
}

.account-panel,
.account-actions {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: white;
  color: var(--ink);
}

.account-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(17px, 2.4vw, 24px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.account-panel h3 {
  margin: 0;
  font-size: 1.35rem;
}

.account-panel p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.account-panel label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-weight: 800;
}

.account-panel input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  background: #fffdfb;
  padding: 0 12px;
  color: var(--ink);
  outline: 0;
}

.account-panel button {
  min-height: 48px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 900;
}

.account-panel a {
  justify-self: start;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.account-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column: 1 / -1;
  background: #f7f4ef;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.account-actions a {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 138px;
  border-inline-start: 1px solid var(--line);
  padding: 18px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.account-actions a:hover {
  background: white;
  box-shadow: 0 22px 46px rgba(16, 16, 16, 0.1);
  transform: translateY(-3px);
}

.account-actions span {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.account-actions b {
  font-size: 1.08rem;
}

.account-actions small {
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(54px, 8vw, 100px) 18px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.contact p {
  color: #d9d4ce;
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.contact-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid white;
  padding: 12px 26px;
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 800;
}

.contact-actions a:first-child {
  background: white;
  color: var(--ink);
}

.contact-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 680px);
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-notes span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.18);
  color: #f3c8d2;
  font-weight: 900;
}

.contact-notes span:first-child {
  border-inline-start: 0;
}

.mobile-bottom {
  display: none;
}

.quick-view {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-rows: minmax(260px, 0.96fr) auto;
  width: min(94vw, 470px);
  overflow-y: auto;
  border-inline-start: 1px solid var(--line);
  background: white;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18);
  transform: translateX(112%);
  transition:
    box-shadow 240ms ease,
    transform 280ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.quick-view.open {
  box-shadow: -36px 0 80px rgba(0, 0, 0, 0.22);
  transform: translateX(0);
}

.quick-view > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  background: #efedeb;
  object-fit: cover;
  object-position: center top;
}

.quick-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.quick-content {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.quick-view.open .quick-content > * {
  animation: floatIn 420ms ease both;
}

.quick-view.open .quick-content > *:nth-child(2) {
  animation-delay: 50ms;
}

.quick-view.open .quick-content > *:nth-child(3) {
  animation-delay: 100ms;
}

.quick-view.open .quick-content > *:nth-child(4) {
  animation-delay: 150ms;
}

.quick-view.open .quick-content > *:nth-child(5) {
  animation-delay: 200ms;
}

.quick-view.open .quick-content > *:nth-child(6) {
  animation-delay: 250ms;
}

.quick-content h2 {
  margin: 0;
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.quick-content p:not(.kicker) {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.75;
}

.quick-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.quick-price span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  background: var(--ink);
  color: white;
  padding: 6px 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.quick-price del {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
}

.quick-meta,
.quick-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.quick-meta span,
.quick-rating span,
.quick-sizes button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fffdfb;
  padding: 6px 10px;
  color: var(--soft-ink);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.quick-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.quick-sizes button {
  min-width: 44px;
  justify-content: center;
  color: var(--ink);
}

.quick-sizes button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.quick-content a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  font-weight: 900;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.34);
}

@media (max-width: 1180px) {
  .store-header {
    grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
    gap: 18px;
  }

  .search-box {
    width: min(25vw, 290px);
    min-width: 180px;
  }

  .desktop-nav a {
    padding-inline: 9px;
  }

  .store-edit,
  .style-finder,
  .lookbook-live,
  .mood-shop,
  .fit-guide {
    grid-template-columns: 1fr;
  }

  .store-edit-copy,
  .style-finder-copy,
  .lookbook-copy,
  .mood-copy,
  .fit-copy {
    max-width: 760px;
  }

  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .account-section {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: 22px 28px;
  }

  .account-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body {
    padding-bottom: 74px;
  }

  .impact-hero {
    min-height: calc(100svh - 98px);
    padding: 20px 16px;
  }

  .impact-hero::after {
    background:
      linear-gradient(0deg, rgba(249, 246, 242, 0.96), rgba(249, 246, 242, 0.72) 35%, rgba(249, 246, 242, 0.1) 76%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16));
    opacity: 1;
  }

  .hero-bg img {
    object-position: center top;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 50% 58%, rgba(242, 183, 199, 0.18), transparent 36%),
      linear-gradient(0deg, rgba(249, 246, 242, 0.82), rgba(249, 246, 242, 0.22) 66%, rgba(249, 246, 242, 0.04));
  }

  .hero-content {
    position: relative;
    right: auto;
    top: auto;
    justify-self: stretch;
    align-self: end;
    width: 100%;
    padding-bottom: 176px;
  }

  .hero-content h1 {
    max-width: 360px;
    margin-inline-start: auto;
    color: var(--ink);
    font-size: clamp(2.35rem, 11.6vw, 4rem);
    text-shadow: 0 1px 24px rgba(255, 255, 255, 0.48);
  }

  .hero-proof {
    max-width: 420px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
  }

  .hero-proof span {
    min-height: 50px;
    border-top-width: 1px;
    font-size: 0.72rem;
  }

  .hero-proof b {
    font-size: 0.88rem;
  }

  .hero-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    max-width: none;
    gap: 8px;
    bottom: 82px;
  }

  .hero-strip article {
    grid-template-columns: 42px 1fr;
    min-height: 68px;
    gap: 8px;
    padding: 6px;
  }

  .hero-strip img {
    width: 42px;
    height: 54px;
  }

  .hero-strip span {
    font-size: 0.78rem;
    line-height: 1.25;
  }

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

  .store-edit {
    padding: 36px 20px;
  }

  .style-finder,
  .lookbook-live {
    padding: 36px 20px;
  }

  .style-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .style-options button {
    min-width: 190px;
    min-height: 250px;
    scroll-snap-align: start;
  }

  .lookbook-panels {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .look-panel,
  .look-panel:nth-child(2),
  .look-panel:nth-child(3) {
    flex: 0 0 min(72vw, 360px);
    min-height: 430px;
    margin-top: 0;
    scroll-snap-align: start;
  }

  .look-panel img {
    min-height: 430px;
  }

  .edit-metrics a {
    min-height: 180px;
  }

  .mood-shop,
  .fit-guide {
    padding: 36px 20px;
  }

  .mood-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: minmax(210px, 1fr);
  }

  .mood-card-large {
    grid-row: auto;
  }

  .fit-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-header {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    gap: 12px;
    direction: ltr;
  }

  .menu-button {
    grid-column: 3;
    justify-self: end;
    display: grid;
  }

  .desktop-nav,
  .header-tools .icon-button,
  .cart-button,
  .account-link {
    display: none;
  }

  .brand-mark {
    grid-column: 2;
    justify-self: center;
    width: 118px;
    height: 38px;
  }

  .header-tools {
    grid-column: 1;
    justify-self: start;
  }

  .search-box {
    width: 44px;
    min-width: 44px;
    justify-self: end;
    border: 1px solid var(--line);
    justify-content: center;
  }

  .search-box input {
    display: none;
  }

  .shop-shell {
    display: block;
    padding-inline: 14px;
  }

  .filters {
    width: min(88vw, 360px);
  }

  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .product-card::after {
    display: none;
  }

  .product-card:hover {
    transform: none;
  }

  .editorial {
    grid-template-columns: 1fr;
  }

  .account-section {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    padding: 38px 20px 48px;
  }

  .account-visual {
    grid-area: auto;
    order: 3;
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .account-visual img {
    min-height: 420px;
    object-position: center top;
  }

  .account-intro,
  .account-grid {
    grid-area: auto;
    grid-column: auto;
  }

  .account-intro {
    order: 1;
    margin-bottom: 18px;
  }

  .account-intro h2 {
    font-size: clamp(2.08rem, 11.6vw, 3.45rem);
  }

  .account-grid {
    order: 2;
  }

  .account-grid {
    grid-template-columns: 1fr;
  }

  .account-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-actions a {
    min-height: 126px;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip article,
  .service-strip article:first-child {
    min-height: auto;
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip article:last-child {
    border-bottom: 0;
  }

  .contact-notes {
    grid-template-columns: 1fr;
  }

  .contact-notes span {
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-notes span:last-child {
    border-bottom: 0;
  }

  .mobile-bottom {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    background: white;
  }

  .mobile-bottom a {
    display: grid;
    min-height: 68px;
    place-items: center;
    gap: 2px;
    color: var(--ink);
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;
  }

  .mobile-bottom a.active {
    background: #f6f1ec;
    color: var(--wine);
  }

  .mobile-bottom span {
    font-size: 1.25rem;
    line-height: 1;
  }
}

@media (min-width: 701px) and (max-width: 920px) {
  body {
    padding-bottom: 0;
  }

  .hero-content {
    justify-self: end;
    width: min(560px, 68vw);
    padding-bottom: 132px;
  }

  .hero-content h1 {
    max-width: 560px;
    margin-inline-start: 0;
    font-size: clamp(3.1rem, 7vw, 4.25rem);
  }

  .hero-content p:not(.hero-kicker) {
    max-width: 540px;
    margin-inline-start: 0;
  }

  .hero-proof {
    max-width: 520px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-strip {
    bottom: 18px;
    max-width: none;
  }

  .mobile-bottom {
    display: none;
  }

  .store-edit {
    grid-template-columns: 1fr;
  }

  .style-finder,
  .lookbook-live {
    grid-template-columns: 1fr;
  }

  .mood-shop,
  .fit-guide {
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
    gap: 18px;
  }

  .mood-copy h2,
  .fit-copy h2 {
    font-size: clamp(2rem, 5.6vw, 3.1rem);
  }

  .mood-copy p,
  .fit-copy p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .mood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(155px, 1fr));
  }

  .mood-card {
    min-height: 155px;
  }

  .mood-card span {
    bottom: 52px;
    font-size: 0.64rem;
  }

  .mood-card b {
    bottom: 16px;
    font-size: 1.08rem;
  }

  .fit-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-board article {
    min-height: 176px;
  }

  .fit-photo,
  .fit-photo img {
    min-height: 210px;
  }

  .fit-photo {
    aspect-ratio: 16 / 7;
  }

  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .products.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card img {
    aspect-ratio: 4 / 4.75;
  }

  .product-info {
    min-height: 136px;
  }

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

@media (max-width: 560px) {
  .announcement {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .store-header {
    padding-inline: 10px;
  }

  .impact-hero {
    min-height: calc(100svh - 98px);
  }

  .hero-content {
    padding-bottom: 144px;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .hero-content h1 {
    max-width: 330px;
    font-size: clamp(2.05rem, 10.4vw, 3.3rem);
  }

  .hero-content p:not(.hero-kicker) {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .hero-proof {
    display: none;
  }

  .account-intro .kicker {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .hero-actions a {
    min-height: 44px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .hero-strip {
    left: 16px;
    right: 16px;
    bottom: 82px;
  }

  .hero-strip article {
    grid-template-columns: 36px 1fr;
    min-height: 62px;
    padding: 5px;
  }

  .hero-strip img {
    width: 36px;
    height: 48px;
  }

  .hero-strip span {
    font-size: 0.68rem;
  }

  .brand-promise span {
    min-height: 50px;
    font-size: 0.83rem;
  }

  .store-edit {
    padding: 30px 16px;
  }

  .style-finder,
  .lookbook-live {
    padding: 30px 16px;
  }

  .store-edit-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .store-edit-copy p:not(.kicker),
  .style-finder-copy p:not(.kicker),
  .lookbook-copy p:not(.kicker) {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .style-finder-copy h2,
  .lookbook-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .edit-metrics {
    grid-template-columns: 1fr;
  }

  .edit-metrics a {
    min-height: 142px;
  }

  .edit-metrics b {
    margin-top: 18px;
  }

  .style-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .style-options button {
    min-width: 168px;
    min-height: 220px;
    padding: 13px;
  }

  .style-options b {
    font-size: 1.06rem;
  }

  .style-options small {
    font-size: 0.78rem;
  }

  .look-panel,
  .look-panel:nth-child(2),
  .look-panel:nth-child(3) {
    flex-basis: 78vw;
    min-height: 410px;
  }

  .look-panel img {
    min-height: 410px;
  }

  .hotspot span {
    min-width: 112px;
    font-size: 0.68rem;
  }

  .mood-shop,
  .fit-guide {
    padding: 32px 16px;
  }

  .mood-copy h2,
  .fit-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .mood-copy p,
  .fit-copy p {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .mood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 10px;
  }

  .mood-card {
    min-height: 168px;
  }

  .mood-card span,
  .mood-card b {
    right: 12px;
    left: 12px;
  }

  .mood-card span {
    bottom: 54px;
    font-size: 0.62rem;
  }

  .mood-card b {
    bottom: 16px;
    font-size: 1.08rem;
  }

  .fit-board {
    grid-template-columns: 1fr;
  }

  .fit-board article {
    min-height: 160px;
  }

  .fit-photo,
  .fit-photo img {
    min-height: 220px;
  }

  .fit-photo {
    aspect-ratio: 4 / 3;
  }

  .fit-photo b {
    right: 16px;
    bottom: 16px;
    font-size: 1.65rem;
  }

  .category-head {
    gap: 6px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .category-copy {
    display: none;
  }

  .category-tabs {
    display: none;
  }

  .category-logo {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  .category-meta {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 2px;
    padding-top: 10px;
  }

  .result-count {
    text-align: center;
  }

  .shop-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .sort-control {
    min-width: 0;
    justify-content: space-between;
    padding-inline: 10px;
  }

  .sort-control span {
    display: none;
  }

  .sort-control select {
    width: 100%;
    min-width: 0;
    text-align: right;
  }

  .view-control {
    display: none;
  }

  .filter-toggle {
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .products {
    gap: 14px;
  }

  .products.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card img {
    aspect-ratio: 4 / 5.55;
  }

  .product-info {
    min-height: 166px;
  }

  .product-info h3 {
    font-size: 0.7rem;
  }

  .product-info p {
    font-size: 0.84rem;
  }

  .product-meta span {
    min-height: 22px;
    padding-inline: 6px;
    font-size: 0.6rem;
  }

  .product-trust {
    flex-direction: column;
    gap: 1px;
  }

  .product-trust span + span::before {
    display: none;
  }

  .sale-price,
  .price-row b {
    font-size: 0.66rem;
    padding-inline: 7px;
  }

  .price-row del {
    font-size: 0.72rem;
  }

  .quick-view {
    grid-template-rows: minmax(220px, 0.74fr) auto;
    width: 100vw;
  }

  .quick-view > img {
    min-height: 330px;
  }

  .quick-content {
    padding: 18px 16px 90px;
  }
}

@media (max-width: 360px) {
  .hero-content p:not(.hero-kicker) {
    display: none;
  }

  .hero-content {
    padding-bottom: 154px;
  }
}

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

  .hero-bg img,
  .product-card:hover img,
  .mood-card:hover img,
  .style-options button:hover img,
  .look-panel:hover img {
    transform: none !important;
  }

  body.animations-ready .reveal-item,
  .reveal-item {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
