:root {
  --ink: #141414;
  --ink-soft: #4c4a46;
  --muted: #77736c;
  --line: #ded8ce;
  --paper: #ffffff;
  --canvas: #f7f4ee;
  --mist: #e9eef0;
  --charcoal: #1b1b1d;
  --graphite: #282a2d;
  --copper: #b76235;
  --copper-dark: #934827;
  --sage: #607467;
  --blue: #1f6f9f;
  --gold: #c9a86a;
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.13);
  --soft-shadow: 0 10px 24px rgba(20, 20, 20, 0.09);
  --radius: 8px;
  --container: min(1200px, calc(100vw - 40px));
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(17, 17, 18, 0.92), rgba(29, 27, 24, 0.86)),
    url("assets/images/lifestyle/formal-wear.jpeg") center top / cover fixed,
    #151515;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

#app {
  position: relative;
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.94), rgba(247, 244, 238, 0.88) 34%, rgba(237, 232, 222, 0.92)),
    url("assets/images/lifestyle/wedding-wear.jpeg") right -120px top 760px / min(48vw, 640px) no-repeat,
    url("assets/images/lifestyle/daily-wear.jpeg") left -130px top 1680px / min(46vw, 600px) no-repeat,
    var(--canvas);
  isolation: isolate;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 111, 159, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--charcoal);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  min-height: 36px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.88);
  background: var(--charcoal);
  font-size: 13px;
  text-align: center;
}

.link-button {
  padding: 0;
  color: #f1c37b;
  background: transparent;
  border: 0;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr minmax(230px, 330px) auto;
  gap: 20px;
  align-items: center;
  padding: 15px max(20px, calc((100vw - 1200px) / 2));
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #17120e;
  background: linear-gradient(135deg, #f3e0b7, #ac7538);
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 800;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  line-height: 1.1;
  font-size: 15px;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
}

.desktop-nav a {
  padding: 8px 0;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--copper);
}

.nav-group {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 620px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  padding: 14px;
  min-height: 86px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}

.mega-item:hover {
  background: var(--canvas);
  border-color: var(--line);
}

.mega-item strong {
  display: block;
  color: var(--ink);
}

.mega-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.search-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 42px;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(20, 20, 20, 0.04);
}

.search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31, 111, 159, 0.12);
}

.search-box input {
  width: 100%;
  min-width: 0;
  padding: 11px 4px 11px 16px;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.search-box button {
  width: 42px;
  min-height: 42px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-weight: 900;
}

.suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.suggestions button {
  width: 100%;
  min-height: 38px;
  display: block;
  padding: 8px 10px;
  text-align: left;
  border-radius: 6px;
}

body[dir="rtl"] .suggestions button {
  text-align: right;
}

.suggestions button:hover {
  background: var(--canvas);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-select {
  max-width: 132px;
  min-height: 42px;
  padding: 8px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.icon-button {
  position: relative;
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 98, 53, 0.6);
}

.cart-button span {
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.cart-button b,
.floating-cart b,
.mobile-bottom-bar b {
  position: absolute;
  right: -5px;
  top: -6px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 6px;
  color: #fff;
  background: var(--copper);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  transition: transform 240ms var(--ease);
}

.cart-button.bump b,
.floating-cart.bump b,
.mobile-bottom-bar .bump b {
  animation: cartBounce 360ms var(--ease);
}

.menu-button {
  display: none;
  padding: 0;
}

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

.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 16px auto;
  z-index: 45;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  padding: 12px 10px;
  text-decoration: none;
  border-radius: 6px;
}

.mobile-nav a:hover {
  background: var(--canvas);
}

.section,
.page {
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0;
}

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

.section-head > div {
  max-width: 650px;
}

.section-head h2,
.section-title,
.detail-title,
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head h2,
.section-title {
  font-size: 42px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
  white-space: normal;
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
}

.button.primary {
  color: #fff;
  background: var(--copper);
  animation: ctaPulse 4s var(--ease) infinite;
}

.button.primary:hover {
  background: var(--copper-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.65);
}

.button.dark {
  color: #fff;
  background: var(--charcoal);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 16, 0.98), rgba(15, 15, 16, 0.82) 42%, rgba(15, 15, 16, 0.38) 72%),
    var(--hero-bg) center / cover no-repeat,
    var(--charcoal);
  transition: opacity 400ms var(--ease);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  position: absolute;
  top: 50%;
  right: max(34px, calc((100vw - 1200px) / 2));
  z-index: 1;
  width: min(34vw, 460px);
  height: auto;
  max-height: 72%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.38));
  transform: translateY(-50%);
}

body[dir="rtl"] .hero-slide img {
  right: auto;
  left: max(34px, calc((100vw - 1200px) / 2));
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 50%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(0deg, rgba(15, 15, 16, 0.74), transparent 48%);
}

.hero-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 74px;
  z-index: 2;
  pointer-events: none;
}

.hero-copy {
  max-width: min(520px, 45vw);
}

.hero h1 {
  max-width: min(620px, 48vw);
  margin-bottom: 18px;
  font-size: 64px;
}

.hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  pointer-events: auto;
}

.hero-controls {
  position: absolute;
  right: max(20px, calc((100vw - 1200px) / 2));
  bottom: 72px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 36px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.hero-dot.active {
  background: #fff;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollCue 1.6s var(--ease) infinite;
}

.category-strip {
  width: var(--container);
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(222, 216, 206, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.category-tile {
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  padding: 16px;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff, #f1f4f2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.category-tile:hover,
.assurance-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(183, 98, 53, 0.4);
}

.category-tile .icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--graphite);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 850;
}

.category-tile strong {
  font-size: 15px;
}

.category-tile span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.promo-band {
  padding: 22px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(40, 42, 45, 0.96), rgba(49, 67, 58, 0.9) 54%, rgba(94, 71, 50, 0.92)),
    url("assets/images/lifestyle/daily-wear.jpeg") right center / 420px no-repeat,
    var(--graphite);
}

.scene-band {
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0 28px;
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.scene-card {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 24px;
  color: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.scene-card:first-child {
  min-height: 420px;
}

.scene-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(14, 14, 15, 0.82), rgba(14, 14, 15, 0.14) 66%);
}

.scene-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.scene-card p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.promo-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.countdown {
  display: flex;
  gap: 8px;
  align-items: center;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.countdown span {
  min-width: 42px;
  padding: 8px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

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

.product-card {
  position: relative;
  display: grid;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(183, 98, 53, 0.42);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #f9faf9;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 300ms var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 20px);
}

.badge {
  padding: 5px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(222, 216, 206, 0.8);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  animation: badgeBreath 3s var(--ease) infinite;
}

.badge.sold {
  color: #fff;
  background: var(--sage);
  border-color: var(--sage);
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-title {
  margin: 0;
  min-height: 44px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.product-desc {
  margin: 0;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price {
  color: var(--copper);
  font-size: 21px;
  font-weight: 900;
}

.rating {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.rating[data-animate="true"] {
  animation: starGlow 760ms var(--ease) both;
}

.stock {
  color: var(--muted);
  font-size: 12px;
}

.stock.low {
  animation: lowStock 2.8s var(--ease) infinite;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.quick-actions .button {
  min-height: 42px;
  padding: 10px 13px;
  font-size: 13px;
}

.filters-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.filter-panel {
  align-self: start;
  position: sticky;
  top: 96px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-panel fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.filter-panel legend,
.field-label {
  margin-bottom: 10px;
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.check-row,
.radio-row {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  color: var(--ink-soft);
  font-size: 14px;
}

.range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.range-row input,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.toolbar select {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 46px;
  align-items: start;
}

.gallery-main {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumb-row button {
  aspect-ratio: 1 / 1;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.thumb-row button.active {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(183, 98, 53, 0.14);
}

.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.detail-title {
  margin-bottom: 14px;
  font-size: 46px;
}

.detail-panel {
  background: transparent;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 20px 0;
}

.detail-price strong {
  color: var(--copper);
  font-size: 34px;
}

.detail-note {
  color: var(--muted);
  font-size: 13px;
}

.option-group {
  margin: 22px 0;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segmented button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}

.segmented button.active {
  color: #fff;
  background: var(--graphite);
  border-color: var(--graphite);
}

.qty-control {
  width: 140px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.qty-control button,
.qty-control input {
  height: 42px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 850;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 18px;
}

.detail-meta {
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.info-tabs {
  margin-top: 34px;
}

.size-measure-section {
  margin-top: 74px;
  padding-top: 56px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.measure-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.measure-layout img {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.measure-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: measure;
  display: grid;
  gap: 18px;
}

.measure-list li {
  counter-increment: measure;
  position: relative;
  padding: 0 0 18px 52px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--ink-soft);
}

body[dir="rtl"] .measure-list li {
  padding: 0 52px 18px 0;
}

.measure-list li::before {
  content: counter(measure);
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: #111;
  font-family: Georgia, "Times New Roman", serif;
}

body[dir="rtl"] .measure-list li::before {
  left: auto;
  right: 0;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.tab-buttons button {
  padding: 12px 4px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-weight: 850;
}

.tab-buttons button.active {
  color: var(--ink);
  border-bottom-color: var(--copper);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

body[dir="rtl"] .spec-table th,
body[dir="rtl"] .spec-table td {
  text-align: right;
}

.story-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(27, 27, 29, 0.98), rgba(27, 27, 29, 0.88) 56%, rgba(27, 27, 29, 0.76)),
    url("assets/images/lifestyle/wedding-wear.jpeg") right center / min(44vw, 680px) no-repeat,
    var(--charcoal);
}

.story-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.story-image {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 12px;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.34));
}

.story-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.assurance-grid,
.review-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.assurance-item,
.review-card,
.stat-item {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.assurance-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.review-card {
  display: grid;
  gap: 10px;
}

.review-card strong {
  color: var(--gold);
}

.stat-item strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
}

.stat-item span {
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 220;
  width: min(440px, 100vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px;
  background: var(--paper);
  box-shadow: -20px 0 50px rgba(20, 20, 20, 0.18);
  transform: translateX(105%);
  transition: transform 300ms var(--ease);
}

body[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-105%);
}

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

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(20, 20, 20, 0.42);
  border: 0;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 0;
}

.cart-items {
  overflow: auto;
  padding: 14px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-line h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

.small-qty {
  display: grid;
  grid-template-columns: 32px 36px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.small-qty button,
.remove-button {
  min-height: 32px;
  color: var(--ink);
  background: #fff;
  border: 0;
  font-weight: 850;
}

.remove-button {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-summary {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0;
  color: var(--muted);
}

.summary-row.total {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.free-shipping {
  margin: 12px 0;
  padding: 10px 12px;
  color: var(--ink-soft);
  background: var(--mist);
  border-radius: var(--radius);
  font-size: 13px;
}

.cart-empty {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.cart-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.checkout-box {
  position: sticky;
  top: 96px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.payment-options {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.payment-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.policy-block {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--charcoal);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer-inner a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-inner a:hover {
  color: #fff;
}

.footer-inner h3 {
  color: #fff;
  margin-top: 0;
}

.floating-cart {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 48;
  min-width: 70px;
  min-height: 52px;
  padding: 12px 18px;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  font-weight: 850;
}

.mobile-bottom-bar {
  display: none;
}

.coupon-modal[hidden] {
  display: none;
}

.coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.44);
  border: 0;
}

.coupon-card {
  position: relative;
  width: min(420px, 100%);
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  z-index: 360;
  max-width: min(460px, calc(100vw - 40px));
  padding: 12px 16px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: translate(-50%, 80px);
  opacity: 0;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mobile-sticky-cta {
  display: none;
}

@keyframes ctaPulse {
  0%, 86%, 100% {
    transform: scale(1);
  }
  90% {
    transform: scale(1.03);
  }
}

@keyframes badgeBreath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes lowStock {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes starGlow {
  from {
    opacity: 0.25;
    letter-spacing: 2px;
  }
  to {
    opacity: 1;
    letter-spacing: 0;
  }
}

@keyframes scrollCue {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.2;
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 12px);
    opacity: 0;
  }
}

@keyframes cartBounce {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.24);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .search-box {
    grid-column: 2;
  }

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

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

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .search-box {
    grid-column: 1 / -1;
    order: 3;
  }

  .header-actions {
    gap: 8px;
  }

  .language-select {
    max-width: 110px;
  }

  .hero {
    min-height: 40vh;
  }

  .hero-slide {
    place-items: center;
  }

  .hero-slide img {
    position: absolute;
    top: auto;
    right: 50%;
    bottom: 24px;
    width: min(72vw, 360px);
    height: auto;
    max-height: 36%;
    margin: 0;
    opacity: 0.9;
    transform: translateX(50%);
  }

  body[dir="rtl"] .hero-slide img {
    left: auto;
    right: 50%;
  }

  .hero-inner {
    align-self: start;
    padding-top: 54px;
    padding-bottom: 190px;
  }

  .hero-copy,
  .hero h1 {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-controls {
    right: 20px;
    bottom: 22px;
  }

  .category-strip {
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
    width: 100%;
  }

  .section,
  .page {
    padding: 54px 0;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .section-title {
    font-size: 32px;
  }

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

  .filters-layout,
  .detail-layout,
  .story-inner,
  .cart-page,
  .contact-grid,
  .measure-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .checkout-box {
    position: static;
  }

  .assurance-grid,
  .review-grid,
  .stat-grid,
  .policy-grid,
  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-card:first-child {
    grid-column: 1 / -1;
    min-height: 340px;
  }

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

  .floating-cart {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 58px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .mobile-bottom-bar a,
  .mobile-bottom-bar button {
    position: relative;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: transparent;
    border: 0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-sticky-cta {
    position: sticky;
    bottom: 76px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    margin: 20px -10px 0;
    background: rgba(247, 244, 238, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
  }

  body {
    padding-bottom: 84px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 520px);
  }

  .top-strip {
    display: grid;
    gap: 4px;
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .cart-button span {
    display: none;
  }

  .language-select {
    max-width: 92px;
    padding-inline: 8px;
  }

  .hero-inner {
    padding: 78px 0 64px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-actions,
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .category-strip,
  .product-grid,
  .assurance-grid,
  .review-grid,
  .stat-grid,
  .policy-grid,
  .scene-grid,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .product-media img {
    padding: 8px;
  }

  .story-image {
    grid-template-columns: 1fr;
  }

  .detail-title {
    font-size: 34px;
  }

  .cart-drawer {
    padding: 18px;
  }
}

/* Editorial magazine theme */
:root {
  --ink: #111111;
  --ink-soft: #3f3d39;
  --muted: #817b72;
  --line: #d8d1c5;
  --paper: #fbfaf7;
  --canvas: #f2eee7;
  --mist: #e7e1d7;
  --charcoal: #101010;
  --graphite: #20201f;
  --copper: #9b5b36;
  --copper-dark: #764026;
  --sage: #5f6f65;
  --blue: #2e667f;
  --gold: #b89558;
  --shadow: 0 30px 80px rgba(16, 16, 16, 0.14);
  --soft-shadow: 0 16px 38px rgba(16, 16, 16, 0.08);
}

body {
  background:
    linear-gradient(180deg, rgba(242, 238, 231, 0.96), rgba(242, 238, 231, 0.9)),
    url("assets/images/lifestyle/formal-wear.jpeg") center top / cover fixed,
    var(--canvas);
}

#app {
  background:
    linear-gradient(180deg, rgba(242, 238, 231, 0.98), rgba(242, 238, 231, 0.92) 48%, rgba(251, 250, 247, 0.95)),
    url("assets/images/lifestyle/wedding-wear.jpeg") right -180px top 820px / min(46vw, 620px) no-repeat,
    url("assets/images/lifestyle/daily-wear.jpeg") left -170px top 1900px / min(42vw, 560px) no-repeat,
    var(--canvas);
}

.top-strip {
  min-height: 34px;
  color: rgba(17, 17, 17, 0.74);
  background: #e5ded3;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.link-button {
  color: var(--ink);
}

.site-header {
  padding-block: 20px;
  background: rgba(242, 238, 231, 0.86);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: none;
}

.brand {
  min-width: 250px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  color: var(--paper);
  background: #111;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.brand-text small,
.desktop-nav,
.language-select,
.search-box input,
.cart-button span,
.mobile-bottom-bar a,
.mobile-bottom-bar button {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav {
  gap: 26px;
  font-size: 12px;
  font-weight: 780;
}

.search-box,
.language-select,
.icon-button,
.mobile-bottom-bar,
.coupon-card,
.cart-drawer {
  background: rgba(251, 250, 247, 0.9);
  border-color: rgba(17, 17, 17, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.search-box {
  border-width: 0 0 1px;
}

.search-box input {
  font-size: 12px;
}

.button {
  min-height: 48px;
  border-radius: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button.primary {
  color: #fff;
  background: #111;
  animation: none;
}

.button.primary:hover,
.button.dark,
.floating-cart {
  background: #2a2926;
}

.button.secondary,
.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 17, 17, 0.34);
}

.hero {
  min-height: min(760px, calc(100vh - 34px));
  background: #111;
}

.hero-slide {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.88), rgba(12, 12, 12, 0.62) 42%, rgba(12, 12, 12, 0.2) 74%),
    var(--hero-bg) center / cover no-repeat,
    #111;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 46%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 55%);
}

.hero-slide img {
  right: max(40px, calc((100vw - 1180px) / 2));
  width: min(31vw, 430px);
  max-height: 64%;
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.42));
}

.hero-inner {
  padding-block: 130px 96px;
}

.eyebrow {
  color: rgba(17, 17, 17, 0.68);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.story-band .eyebrow,
.promo-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: min(660px, 50vw);
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.95;
}

.hero p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.hero-actions {
  margin-top: 36px;
}

.hero-dot {
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.32);
}

.category-strip {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 26px 0;
  background: transparent;
  border-width: 0 0 1px;
  border-color: rgba(17, 17, 17, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.category-tile {
  min-height: 92px;
  padding: 0 18px 0 0;
  background: transparent;
  border-width: 0 1px 0 0;
  border-radius: 0;
  box-shadow: none;
}

body[dir="rtl"] .category-tile {
  padding: 0 0 0 18px;
  border-width: 0 0 0 1px;
}

.category-tile:hover,
.assurance-item:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.category-tile .icon {
  display: none;
}

.category-tile strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.category-tile span:last-child {
  max-width: 170px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scene-band,
.section,
.page {
  padding-block: 96px;
}

.section-head {
  align-items: start;
  margin-bottom: 42px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.section-head h2,
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.scene-grid {
  gap: 22px;
}

.scene-card {
  min-height: 420px;
  padding: 30px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.scene-card:first-child {
  min-height: 540px;
}

.scene-card::after {
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.78), rgba(11, 11, 11, 0.1) 68%);
}

.scene-card h3 {
  font-size: clamp(30px, 3.6vw, 48px);
}

.promo-band {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(229, 222, 211, 0.97), rgba(229, 222, 211, 0.9)),
    url("assets/images/lifestyle/daily-wear.jpeg") right center / 420px no-repeat,
    #e5ded3;
  border-block: 1px solid rgba(17, 17, 17, 0.12);
}

.countdown span {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 17, 17, 0.18);
  border-radius: 0;
}

.product-grid {
  gap: 38px 22px;
}

.product-card {
  background: transparent;
  border-width: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.product-media {
  background: rgba(251, 250, 247, 0.72);
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0;
}

.product-media img {
  padding: 18px;
}

.badge-row {
  top: 14px;
  left: 14px;
}

.badge {
  color: var(--paper);
  background: rgba(17, 17, 17, 0.74);
  border: 0;
  border-radius: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: none;
}

.badge.sold {
  background: var(--sage);
}

.card-body {
  padding: 18px 0 0;
  gap: 12px;
}

.product-title {
  min-height: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.product-desc {
  min-height: 0;
  max-width: 92%;
}

.price {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.rating {
  color: var(--gold);
}

.stock {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stock.low {
  animation: none;
}

.quick-actions .button {
  min-height: 46px;
  margin-top: 4px;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.3);
}

.quick-actions .button:hover {
  color: #fff;
  background: #111;
}

.story-band {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.78) 54%, rgba(13, 13, 13, 0.36)),
    url("assets/images/lifestyle/wedding-wear.jpeg") center / cover no-repeat,
    #111;
}

.story-inner {
  padding-block: 116px;
}

.story-copy .section-title {
  color: #fff;
}

.story-image {
  align-items: center;
  gap: 34px;
}

.story-image img {
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.44));
}

.product-card:hover .product-media img {
  transform: scale(1.018);
}

.assurance-grid,
.review-grid,
.stat-grid,
.policy-grid {
  gap: 1px;
  background: rgba(17, 17, 17, 0.14);
  border: 1px solid rgba(17, 17, 17, 0.14);
}

.assurance-item,
.review-card,
.stat-item,
.policy-block,
.filter-panel,
.checkout-box {
  background: rgba(251, 250, 247, 0.84);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.assurance-icon {
  display: none;
}

.assurance-item h3,
.review-card small,
.footer-inner h3,
.filter-panel h2,
.checkout-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.stat-item strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.filter-panel,
.checkout-box {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.gallery-main,
.thumb-row button,
.cart-line img {
  background: rgba(251, 250, 247, 0.78);
  border: 0;
  border-radius: 0;
}

.detail-title {
  font-size: clamp(40px, 5vw, 70px);
}

.detail-price strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.segmented button,
.qty-control,
.payment-options label,
.range-row input,
.form-grid input,
.form-grid select,
.form-grid textarea {
  border-radius: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #111;
}

.footer-inner {
  padding-block: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-cart {
  border-radius: 0;
}

@media (max-width: 900px) {
  .hero {
    min-height: 680px;
  }

  .hero-slide {
    background:
      linear-gradient(180deg, rgba(12, 12, 12, 0.9), rgba(12, 12, 12, 0.58) 52%, rgba(12, 12, 12, 0.22)),
      var(--hero-bg) center / cover no-repeat,
      #111;
  }

  .hero-slide img {
    width: min(76vw, 390px);
    max-height: 38%;
  }

  .hero-inner {
    padding-top: 72px;
    padding-bottom: 250px;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 70px);
  }

  .category-strip {
    width: var(--container);
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 1px;
    border-radius: 0;
  }

  .category-tile {
    min-height: 80px;
  }

  .scene-band,
  .section,
  .page {
    padding-block: 72px;
  }
}

@media (max-width: 640px) {
  .top-strip {
    background: #e5ded3;
  }

  .site-header {
    padding-block: 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    padding-top: 58px;
    padding-bottom: 250px;
  }

  .hero-slide img {
    width: min(84vw, 340px);
    max-height: 34%;
    bottom: 42px;
  }

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

  .product-grid {
    gap: 46px;
  }

  .story-inner {
    padding-block: 82px;
  }

  .story-image {
    gap: 22px;
  }
}
