:root {
  --bg: #fbfaf8;
  --paper: #ffffff;
  --ink: #171417;
  --muted: #6f686c;
  --line: #e8e2e4;
  --brand: #6f183b;
  --brand-dark: #4e1029;
  --brand-soft: #f8e9ef;
  --gold: #b9863d;
  --soft: #f4f0ed;
  --black: #0c0b0c;
  --success: #1c7a4f;
  --danger: #a72d38;
  --shadow-sm: 0 8px 24px rgba(29, 18, 24, .08);
  --shadow: 0 22px 70px rgba(29, 18, 24, .14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1320px;
  /* Afrozeh-matched storefront typography: one Montserrat family for display and UI text. */
  --serif: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(111, 24, 59, .28);
  outline-offset: 3px;
}

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 1000; background: var(--black); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.icon { width: 22px; height: 22px; flex: 0 0 auto; }
.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 15px; height: 15px; }

.announcement {
  min-height: 34px;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--black);
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  letter-spacing: .04em;
  text-align: center;
}
.announcement a { display: inline-flex; align-items: center; gap: 4px; color: #fff; font-weight: 700; white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(232, 226, 228, .9);
  backdrop-filter: blur(18px);
}
.header-main {
  min-height: 82px;
  display: grid;
  grid-template-columns: 150px minmax(260px, 620px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo { display: inline-flex; align-items: center; width: max-content; }
.logo img { width: 118px; height: 68px; object-fit: contain; }
.icon-button, .header-icon, .round-control, .carousel-buttons button {
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.hamburger { display: none; }

.search-form { position: relative; display: flex; align-items: center; width: 100%; }
.search-form__icon { position: absolute; left: 17px; width: 19px; height: 19px; color: #625b60; pointer-events: none; }
.search-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 92px 0 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f6f6;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.search-form input:focus { background: #fff; border-color: #cbbbc2; box-shadow: 0 0 0 4px rgba(111, 24, 59, .08); outline: none; }
.search-form > button {
  position: absolute;
  right: 5px;
  min-height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 5;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  gap: 8px;
  flex-wrap: wrap;
}
.search-form:focus-within .search-suggestions { display: flex; }
.search-suggestions strong { width: 100%; margin-bottom: 4px; font-size: 13px; }
.search-suggestions a { padding: 7px 11px; background: var(--soft); border-radius: 999px; font-size: 12px; }
.search-suggestions a:hover { background: var(--brand-soft); color: var(--brand-dark); }

.header-icons { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.header-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #191619;
  transition: background .2s ease, transform .2s ease;
}
.header-icon:hover { background: var(--brand-soft); transform: translateY(-1px); }
.header-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  transform: translate(-50%, 4px);
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: .18s ease;
  pointer-events: none;
}
.header-icon:hover::after, .header-icon:focus-visible::after { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.header-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.main-nav { border-top: 1px solid #f0ecee; }
.nav-scroll { min-height: 46px; display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav-scroll a, .nav-mega-trigger {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: #302b2f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.nav-scroll a::after, .nav-mega-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 1px;
  background: var(--brand);
  transition: .22s ease;
}
.nav-scroll a:hover::after, .nav-mega-trigger:hover::after { left: 0; right: 0; }
.nav-sale { color: var(--brand) !important; }

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 28px 0 34px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(20, 14, 18, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .22s ease;
}
.site-header.mega-open .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.25fr; gap: 32px; }
.mega-grid h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.mega-grid > div > a { display: block; padding: 5px 0; color: var(--muted); font-size: 13px; }
.mega-grid > div > a:hover { color: var(--brand); transform: translateX(3px); }
.mega-feature { position: relative; min-height: 250px; border-radius: 18px; overflow: hidden; color: #fff; }
.mega-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.75)); }
.mega-feature img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.mega-feature span, .mega-feature strong, .mega-feature em { position: absolute; z-index: 2; left: 18px; right: 18px; }
.mega-feature span { bottom: 70px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.mega-feature strong { bottom: 42px; font-family: var(--serif); font-size: 20px; }
.mega-feature em { bottom: 16px; display: flex; align-items: center; gap: 4px; font-size: 12px; font-style: normal; }

.mobile-overlay { position: fixed; inset: 0; z-index: 98; background: rgba(10,8,9,.48); opacity: 0; visibility: hidden; transition: .25s ease; }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 99;
  width: min(390px, 90vw);
  padding: 18px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  transition: .28s cubic-bezier(.22,.61,.36,1);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-drawer__head .logo img { width: 92px; height: 62px; }
.mobile-drawer__head .icon-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; }
.mobile-drawer > a { padding: 12px 2px; border-bottom: 1px solid #f0edef; font-weight: 650; }
.mobile-search { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; }
.mobile-search input { flex: 1; min-width: 0; height: 44px; border: 0; outline: 0; }
.mobile-drawer__utility { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.mobile-drawer__utility a { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; font-size: 13px; }

.btn {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-dark:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f7f4f5; }
.btn-small { min-height: 39px; padding-inline: 16px; font-size: 12px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; font-weight: 750; text-decoration: underline; text-underline-offset: 5px; }
.text-link-light { color: #fff; }
.section-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 750; white-space: nowrap; }
.section-link:hover { color: var(--brand); }

.hero-slider { position: relative; height: clamp(590px, 77vh, 790px); min-height: 590px; overflow: hidden; background: #171216; isolation: isolate; }
.hero-track, .hero-slide, .hero-slide picture { position: absolute; inset: 0; }
.hero-slide { opacity: 0; visibility: hidden; transition: opacity .85s ease, visibility .85s ease; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035); transition: transform 7s ease; }
.hero-slide.active img { transform: scale(1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,10,14,.76) 0%, rgba(17,10,14,.4) 38%, rgba(17,10,14,.06) 70%), linear-gradient(0deg, rgba(17,10,14,.28), transparent 45%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: flex-end; padding-bottom: 125px; color: #fff; }
.hero-content__inner { width: min(650px, 53vw); transform: translateY(24px); opacity: 0; transition: transform .75s .18s ease, opacity .75s .18s ease; }
.hero-slide.active .hero-content__inner { transform: translateY(0); opacity: 1; }
.eyebrow, .hero-content p { margin: 0 0 10px; color: var(--brand); font-size: 11px; line-height: 1.2; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.hero-content p { color: #f4d8e4; }
.hero-content h1 { margin: 0; max-width: 700px; font-family: var(--serif); font-size: clamp(48px, 6.2vw, 90px); line-height: .98; font-weight: 500; letter-spacing: -.035em; }
.hero-content > .hero-content__inner > span { display: block; max-width: 560px; margin-top: 20px; color: rgba(255,255,255,.86); font-size: clamp(16px, 1.5vw, 19px); }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 30px; }
.hero-controls { position: absolute; z-index: 4; left: 50%; bottom: 32px; transform: translateX(-50%); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #fff; }
.hero-arrows { display: flex; gap: 8px; }
.round-control { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; background: rgba(0,0,0,.16); backdrop-filter: blur(8px); }
.round-control:hover { background: #fff; color: #111; }
.hero-dots { display: flex; gap: 8px; justify-content: center; }
.hero-dots button { width: 28px; height: 3px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.42); cursor: pointer; transition: width .25s ease, background .25s ease; }
.hero-dots button.active { width: 52px; background: #fff; }
.hero-pause { justify-self: end; display: inline-flex; align-items: center; gap: 7px; border: 0; background: transparent; color: #fff; font-size: 12px; font-weight: 700; cursor: pointer; }

.section { padding-block: 76px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.section-head.center { justify-content: center; text-align: center; }
.section-head h2, .page-block h1, .shop-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.7vw, 64px); line-height: 1.02; font-weight: 500; letter-spacing: -.025em; }
.section-intro { max-width: 640px; margin: 10px 0 0; color: var(--muted); font-size: 15px; }
.section-actions { display: flex; align-items: center; gap: 22px; }
.carousel-buttons { display: flex; gap: 8px; }
.carousel-buttons button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: #fff; transition: .2s ease; }
.carousel-buttons button:hover:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); }
.carousel-buttons button:disabled { opacity: .35; cursor: not-allowed; }

.category-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(170px, 1fr); gap: 14px; overflow-x: auto; padding: 2px 2px 12px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.mini-category { position: relative; height: 250px; overflow: hidden; border-radius: 18px; background: #e8e2e4; scroll-snap-align: start; }
.mini-category::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.67)); }
.mini-category img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.mini-category:hover img { transform: scale(1.045); }
.mini-category span { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 15px; color: #fff; font-family: var(--serif); font-size: 20px; }

.product-carousel { overflow: hidden; }
.product-carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 66px) / 4); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 2px 2px 12px; }
.product-carousel__track::-webkit-scrollbar { display: none; }
.product-carousel__track .product-card { scroll-snap-align: start; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.product-grid-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); overflow-x: auto; }
.product-card { min-width: 0; position: relative; background: transparent; }
.product-card__media { position: relative; overflow: hidden; border-radius: 17px; background: #eee9eb; }
.product-card__image { display: block; position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.product-card__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .38s ease, transform .55s ease; }
.product-card__image img.hover { opacity: 0; }
.product-card:hover .product-card__image img:not(.hover) { transform: scale(1.02); }
.product-card:hover .product-card__image img.hover { opacity: 1; transform: scale(1.02); }
.badge { position: absolute; z-index: 3; top: 12px; left: 12px; padding: 6px 9px; border-radius: 999px; background: #fff; color: var(--ink); box-shadow: 0 4px 14px rgba(0,0,0,.08); font-size: 10px; line-height: 1; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.badge-sale { left: auto; right: 12px; background: var(--brand); color: #fff; }
.badge-stock { top: 44px; background: #f1c66e; }
.badge-sold { left: 50%; top: 50%; transform: translate(-50%, -50%); background: rgba(13,12,13,.86); color: #fff; }
.product-wishlist { position: absolute; z-index: 4; top: 12px; right: 12px; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: #201b1e; box-shadow: 0 8px 24px rgba(0,0,0,.12); cursor: pointer; transition: .2s ease; }
.product-card:has(.badge-sale) .product-wishlist { top: 52px; }
.product-wishlist:hover, .product-wishlist.active { background: var(--brand); color: #fff; transform: scale(1.05); }
.product-wishlist.active svg { fill: currentColor; }
.product-quick-view { position: absolute; z-index: 4; left: 14px; right: 14px; bottom: 14px; min-height: 41px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 0; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--ink); font-size: 12px; font-weight: 750; cursor: pointer; opacity: 0; transform: translateY(12px); transition: .25s ease; }
.product-card:hover .product-quick-view, .product-quick-view:focus-visible { opacity: 1; transform: translateY(0); }
.product-card__body { padding: 14px 3px 3px; }
.fabric-line { margin: 0 0 4px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { margin: 0; min-height: 44px; font-family: var(--serif); font-size: 19px; line-height: 1.18; font-weight: 500; }
.product-card h3 a:hover { color: var(--brand); }
.product-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 9px; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.price strong { font-size: 14px; }
.price del { color: #999094; font-size: 12px; }
.rating { color: var(--gold); font-size: 12px; white-space: nowrap; }
.rating span { color: var(--muted); }
.quick-sizes { display: flex; flex-wrap: wrap; gap: 5px; margin: 11px 0; }
.quick-sizes button { min-width: 31px; height: 29px; padding: 0 7px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); font-size: 10px; cursor: pointer; }
.quick-sizes button:hover, .quick-sizes button.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.product-add { width: 100%; margin-top: 3px; opacity: 0; transform: translateY(5px); }
.product-card:hover .product-add, .product-add:focus-visible { opacity: 1; transform: translateY(0); }

.trending-shell { background: linear-gradient(135deg, #f7edf1, #f4f0ed 60%, #f8f6f4); border-block: 1px solid #ece3e7; }
.product-section-trending .eyebrow { color: var(--brand-dark); }

.category-mosaic { display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: 310px 310px; gap: 18px; }
.mosaic-card { position: relative; overflow: hidden; border-radius: 22px; background: #ddd; color: #fff; }
.mosaic-card:first-child { grid-row: 1 / span 2; }
.mosaic-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.mosaic-card:hover img { transform: scale(1.04); }
.mosaic-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.mosaic-card > div { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; }
.mosaic-card span { display: block; font-family: var(--serif); font-size: clamp(24px, 2.5vw, 40px); line-height: 1; }
.mosaic-card small { display: block; margin-top: 8px; color: rgba(255,255,255,.82); }
.mosaic-card em { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 12px; font-style: normal; font-weight: 750; }
.mosaic-story { position: relative; grid-column: 2 / -1; grid-row: 2; min-width: 0; overflow: hidden; display: flex; align-items: center; padding: clamp(30px, 4vw, 58px); border: 1px solid rgba(78,16,41,.12); border-radius: 22px; background: linear-gradient(135deg, #fff 0%, #fbf7f8 58%, #f4e9ed 100%); color: #4e1029; isolation: isolate; }
.mosaic-story::before { content: ""; position: absolute; width: 210px; height: 210px; right: -68px; top: -94px; border: 1px solid rgba(78,16,41,.12); border-radius: 50%; box-shadow: 0 0 0 34px rgba(78,16,41,.035), 0 0 0 68px rgba(78,16,41,.02); z-index: -1; }
.mosaic-story::after { content: ""; position: absolute; left: clamp(30px, 4vw, 58px); bottom: 30px; width: 72px; height: 1px; background: #4e1029; opacity: .48; }
.mosaic-story__mark { position: absolute; right: clamp(24px, 4vw, 58px); bottom: -28px; font-family: var(--serif); font-size: clamp(110px, 13vw, 190px); line-height: 1; color: rgba(78,16,41,.055); pointer-events: none; user-select: none; }
.mosaic-story__content { position: relative; z-index: 1; max-width: 740px; }
.mosaic-story h2 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.6vw, 66px); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
.mosaic-story p { max-width: 680px; margin: 18px 0 0; color: rgba(78,16,41,.76); font-size: clamp(14px, 1.35vw, 17px); line-height: 1.65; }

.editorial-split { background: #eee8e5; }
.editorial-inner { display: grid; grid-template-columns: .62fr 1.38fr; align-items: center; gap: 56px; }
.editorial-copy h2, .complete-look h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 70px); line-height: 1; font-weight: 500; }
.editorial-copy > p:not(.eyebrow), .complete-look__copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: 16px; }
.collection-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.collection-cards a { position: relative; min-height: 455px; overflow: hidden; border-radius: 22px; }
.collection-cards a::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.64)); }
.collection-cards img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.collection-cards a:hover img { transform: scale(1.045); }
.collection-cards span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 17px; color: #fff; font-family: var(--serif); font-size: 24px; }
.collection-page { margin-top: 30px; }

.complete-look { display: grid; grid-template-columns: 1.15fr .85fr; padding: 0; overflow: hidden; background: var(--brand-dark); color: #fff; border-radius: var(--radius-lg); }
.lookbook-image { min-height: 560px; }
.lookbook-image img { width: 100%; height: 100%; object-fit: cover; }
.complete-look__copy { align-self: center; padding: clamp(34px, 6vw, 82px); }
.complete-look__copy .eyebrow { color: #f1c8d8; }
.complete-look__copy > p:not(.eyebrow) { color: rgba(255,255,255,.76); }

.benefits-section .section-head { margin-bottom: 34px; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-strip article { min-height: 150px; display: flex; align-items: flex-start; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.trust-strip article:hover { transform: translateY(-3px); border-color: #d9c4cd; box-shadow: var(--shadow-sm); }
.benefit-icon { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--brand-soft); color: var(--brand); }
.trust-strip strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.trust-strip article div > span { display: block; color: var(--muted); font-size: 13px; }

.community-section { background: #4e1029; color: #fff; }
.community-section .eyebrow { color: #e7abc2; }
.community-section .section-intro { color: rgba(255,255,255,.65); margin-inline: auto; }
.ugc-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; padding-bottom: 12px; }
.ugc-row a { min-height: 380px; position: relative; overflow: hidden; border-radius: 18px; background: #252025; scroll-snap-align: start; }
.ugc-row a::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.ugc-row img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.ugc-row a:hover img { transform: scale(1.045); }
.ugc-row > a > span { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 15px; display: block; }
.ugc-row strong { display: block; font-family: var(--serif); font-size: 20px; }
.ugc-row small { color: rgba(255,255,255,.7); }

.seo-copy { max-width: 1040px; text-align: center; }
.seo-copy h2 { margin: 0 auto; max-width: 850px; font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); line-height: 1.08; font-weight: 500; }
.seo-copy > p:not(.eyebrow) { max-width: 860px; margin: 20px auto 0; color: var(--muted); }

/* Catalogue and inner pages */
.shop-hero { padding: 72px 0 62px; background: linear-gradient(135deg, #f8edf2, #f3efed); border-bottom: 1px solid var(--line); }
.shop-hero p:last-child { max-width: 720px; color: var(--muted); }
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; padding-block: 42px 80px; }
.filters { position: sticky; top: 150px; align-self: start; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.filters label { display: block; margin-bottom: 14px; color: #4d464a; font-size: 12px; font-weight: 700; }
.filters input, .filters select, .checkout-form input, .checkout-form textarea, .checkout-form select, .track-form input, .review-form input, .review-form textarea, .review-form select, .account-grid input {
  width: 100%; min-height: 44px; margin-top: 6px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
}
.filters textarea, .checkout-form textarea, .review-form textarea { min-height: 110px; resize: vertical; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check { display: flex !important; align-items: center; gap: 8px; }
.check input { width: auto; min-height: auto; margin: 0; }
.clear-filters { display: block; margin-top: 12px; text-align: center; color: var(--muted); text-decoration: underline; }
.shop-toolbar, .mobile-filter-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.shop-toolbar select { min-height: 40px; margin-left: 8px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.mobile-filter-bar, .filter-close { display: none; }
.load-more { display: flex; margin: 32px auto 0; }
.product-grid.loading { opacity: .5; pointer-events: none; }
.empty-state { grid-column: 1 / -1; padding: 60px 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; text-align: center; }

.page-block { min-height: 48vh; padding-block: 68px 84px; }
.page-block > h1 { margin-bottom: 26px; }
.rich-content { max-width: 1000px; padding: clamp(24px, 4vw, 54px); border: 1px solid var(--line); border-radius: 24px; background: #fff; line-height: 1.75; }
.rich-content h1, .rich-content h2, .rich-content h3 { font-family: var(--serif); font-weight: 500; }
.rich-content table { width: 100%; border-collapse: collapse; }
.rich-content th, .rich-content td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.hero-image { width: 100%; max-height: 540px; margin-block: 22px; object-fit: cover; border-radius: 18px; }

.product-detail { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 42px; padding-block: 50px; }
.breadcrumb { margin-bottom: 18px; color: var(--muted); font-size: 12px; }
.gallery-main { overflow: hidden; border-radius: 20px; background: #eee; }
.gallery-main img { width: 100%; max-height: 800px; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 9px; margin-top: 10px; }
.gallery-thumbs button, .video-thumb { padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.gallery-thumbs img { width: 100%; height: 90px; object-fit: cover; }
.video-thumb { display: grid; place-items: center; font-size: 12px; }
.product-summary { position: sticky; top: 150px; align-self: start; }
.product-summary h1 { margin: 8px 0 14px; font-family: var(--serif); font-size: clamp(40px, 4vw, 58px); line-height: 1; font-weight: 500; }
.benefit-line { color: var(--muted); font-size: 16px; }
.product-price strong { font-size: 26px; }
.pill { padding: 5px 9px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 11px; }
.stock { font-weight: 750; }
.stock-out_of_stock { color: var(--danger); }
.product-cart { display: grid; grid-template-columns: 1fr 1fr 90px; gap: 10px; margin-block: 22px; }
.product-cart label { font-size: 12px; font-weight: 700; }
.product-cart select, .product-cart input { width: 100%; min-height: 44px; margin-top: 5px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.trust-box { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.product-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 16px; }
.product-facts span { padding: 12px; border-radius: 10px; background: var(--soft); font-size: 13px; }
.product-tabs { margin-bottom: 52px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.product-tabs nav { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.product-tabs nav button { min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; white-space: nowrap; cursor: pointer; }
.product-tabs nav button.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.product-tabs article { display: none; padding: 24px 6px 8px; }
.product-tabs article.active { display: block; }
.review { padding: 15px 0; border-bottom: 1px solid var(--line); }
.review-form { display: grid; gap: 8px; margin-top: 20px; }

.cart-row { display: grid; grid-template-columns: 100px 1fr 90px 130px; gap: 18px; align-items: center; margin-bottom: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.cart-row img { width: 100px; height: 126px; object-fit: cover; border-radius: 11px; }
.cart-row input { min-height: 42px; border: 1px solid var(--line); border-radius: 9px; }
.cart-summary { max-width: 440px; margin: 24px 0 0 auto; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.cart-summary p { display: flex; justify-content: space-between; gap: 12px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 420px; gap: 28px; }
.checkout-form { display: grid; gap: 11px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.track-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; }
.track-result { margin-top: 20px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.blog-grid, .account-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-grid article, .account-grid form { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.blog-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 13px; }
.blog-grid h2, .account-grid h2 { font-family: var(--serif); font-weight: 500; }
.account-grid form { display: grid; gap: 10px; }

/* Footer */
.site-footer { margin-top: 30px; background: #fff; color: #4e1029; }
.newsletter { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; padding-block: 54px; border-bottom: 1px solid rgba(78,16,41,.14); }
.newsletter .eyebrow { color: #4e1029; }
.newsletter h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 500; }
.newsletter p { margin-bottom: 0; color: rgba(78,16,41,.72); }
.newsletter form { display: flex; align-items: center; gap: 9px; }
.newsletter input { flex: 1; min-width: 0; min-height: 48px; padding: 0 17px; border: 1px solid rgba(78,16,41,.25); border-radius: 999px; background: #fff; color: #4e1029; }
.newsletter input::placeholder { color: rgba(78,16,41,.55); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 36px; padding-block: 55px; }
.footer-logo img { width: 150px; height: 108px; object-fit: contain; filter: drop-shadow(0 10px 28px rgba(0,0,0,.35)); }
.footer-brand > p, .footer-trust p { color: rgba(78,16,41,.72); font-size: 13px; }
.footer-contact { display: flex; flex-direction: column; margin-top: 18px; color: rgba(78,16,41,.78); font-size: 13px; }
.footer-grid h3 { margin: 8px 0 16px; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.footer-grid > div > a { display: block; padding: 5px 0; color: rgba(78,16,41,.78); font-size: 13px; transition: color .2s ease, transform .2s ease; }
.footer-grid > div > a:hover { color: #4e1029; transform: translateX(3px); opacity: .72; }
.social-links { display: flex; gap: 8px; margin-top: 18px; }
.social-links a { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(78,16,41,.22); border-radius: 50%; color: #4e1029; }
.social-links a:hover { background: #4e1029; color: #fff; }
.social-links .icon { width: 18px; height: 18px; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-block: 16px; }
.payment-badges span { padding: 6px 8px; border: 1px solid rgba(78,16,41,.22); border-radius: 5px; color: #4e1029; font-size: 9px; font-weight: 800; }
.footer-track { display: inline-flex !important; align-items: center; gap: 4px; color: #4e1029 !important; font-weight: 700; }
.footer-bottom { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(78,16,41,.14); color: rgba(78,16,41,.7); font-size: 12px; }
.footer-bottom > div { display: flex; gap: 10px; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; min-height: 45px; padding: 0 16px; display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; background: #1d9c5c; color: #fff; box-shadow: 0 12px 36px rgba(0,0,0,.23); font-size: 12px; font-weight: 750; }

.quick-view-backdrop { position: fixed; inset: 0; z-index: 200; padding: 20px; display: grid; place-items: center; background: rgba(10,7,9,.68); backdrop-filter: blur(5px); }
.quick-view-modal { position: relative; width: min(880px, 96vw); display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 20px; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.quick-view-modal > button { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #fff; font-size: 24px; cursor: pointer; }
.quick-view-modal img { width: 100%; max-height: 560px; object-fit: cover; border-radius: 16px; }
.quick-view-modal > div { align-self: center; padding-right: 20px; }
.quick-view-modal h2 { font-family: var(--serif); font-size: 38px; font-weight: 500; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 500; max-width: min(90vw, 440px); padding: 12px 18px; border-radius: 999px; background: var(--black); color: #fff; box-shadow: var(--shadow); font-size: 13px; opacity: 0; transform: translate(-50%, 12px); transition: .22s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast-error { background: var(--danger); }

@media (max-width: 1120px) {
  .header-main { grid-template-columns: 125px minmax(220px, 1fr) auto; gap: 18px; }
  .nav-scroll { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .nav-scroll::-webkit-scrollbar { display: none; }
  .mega-grid { grid-template-columns: repeat(4, 1fr); }
  .mega-feature { display: none; }
  .product-carousel__track { grid-auto-columns: calc((100% - 44px) / 3); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .editorial-inner { grid-template-columns: 1fr; }
  .editorial-copy { max-width: 720px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container { width: min(var(--container), calc(100% - 30px)); }
  .header-main { min-height: 70px; grid-template-columns: auto 1fr auto; }
  .hamburger { display: inline-grid; width: 42px; height: 42px; border-radius: 50%; }
  .header-main > .logo { justify-self: center; }
  .logo img { width: 92px; height: 58px; }
  .search-form, .main-nav { display: none; }
  .mega-menu { display: none; }
  .header-icons .header-icon:first-child { display: none; }
  .hero-slider { height: 68svh; min-height: 600px; }
  .hero-content { padding-bottom: 112px; }
  .hero-content__inner { width: min(640px, 74vw); }
  .hero-controls { bottom: 24px; }
  .category-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 300px auto; }
  .mosaic-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .mosaic-story { grid-column: 1 / -1; grid-row: auto; min-height: 240px; }
  .collection-cards a { min-height: 380px; }
  .complete-look { grid-template-columns: 1fr; }
  .lookbook-image { min-height: 460px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: 0 0 0 auto; z-index: 110; width: min(390px, 94vw); height: 100vh; overflow-y: auto; border-radius: 0; transform: translateX(105%); transition: .25s ease; }
  .filters.open { transform: translateX(0); }
  .filter-close { display: block; float: right; border: 0; background: transparent; font-size: 28px; }
  .mobile-filter-bar { position: sticky; top: 82px; z-index: 20; display: flex; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
  .product-detail, .checkout-grid, .newsletter { grid-template-columns: 1fr; }
  .product-summary { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 22px)); }
  .announcement { min-height: 38px; padding-inline: 12px; font-size: 10px; }
  .announcement span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .header-main { min-height: 64px; }
  .header-icon { width: 39px; height: 39px; }
  .header-icon .icon { width: 21px; height: 21px; }
  .header-icons { gap: 0; }
  .hero-slider { height: 76svh; min-height: 600px; max-height: 760px; }
  .hero-slide img { object-position: center top; }
  .hero-shade { background: linear-gradient(0deg, rgba(15,8,12,.88) 0%, rgba(15,8,12,.42) 45%, rgba(15,8,12,.05) 76%); }
  .hero-content { align-items: flex-end; padding-bottom: 110px; }
  .hero-content__inner { width: 100%; }
  .hero-content h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-content > .hero-content__inner > span { margin-top: 14px; font-size: 14px; }
  .hero-actions { margin-top: 20px; gap: 14px; flex-wrap: wrap; }
  .hero-actions .btn { min-height: 43px; }
  .hero-controls { grid-template-columns: auto 1fr; }
  .hero-arrows { display: none; }
  .hero-dots { justify-content: flex-start; }
  .hero-pause span { display: none; }
  .section { padding-block: 48px; }
  .section-head { align-items: flex-start; gap: 14px; margin-bottom: 22px; }
  .section-head h2, .page-block h1, .shop-hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .section-actions { align-items: flex-end; gap: 10px; }
  .section-actions > .section-link { display: none; }
  .category-strip { grid-auto-columns: 145px; }
  .mini-category { height: 205px; }
  .mini-category span { font-size: 17px; }
  .product-carousel__track { grid-auto-columns: 72vw; gap: 13px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 10px; }
  .product-card h3 { min-height: 38px; font-size: 16px; }
  .product-card__body { padding-top: 10px; }
  .product-quick-view { display: none; }
  .product-add { opacity: 1; transform: none; min-height: 36px; }
  .quick-sizes { display: none; }
  .product-meta-row { align-items: flex-start; flex-direction: column; gap: 2px; }
  .rating { display: none; }
  .badge { top: 8px; left: 8px; }
  .badge-sale { left: auto; right: 8px; }
  .product-wishlist { top: 8px; right: 8px; width: 34px; height: 34px; }
  .product-card:has(.badge-sale) .product-wishlist { top: 47px; }
  .category-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .mosaic-card, .mosaic-card:first-child { grid-column: auto; min-height: 380px; }
  .mosaic-story { grid-column: auto; min-height: 260px; padding: 34px 24px 58px; }
  .mosaic-story::after { left: 24px; bottom: 28px; }
  .mosaic-story__mark { right: 18px; font-size: 120px; }
  .mosaic-story h2 { font-size: clamp(36px, 11vw, 54px); }
  .collection-cards { grid-template-columns: 1fr; }
  .collection-cards a { min-height: 420px; }
  .lookbook-image { min-height: 390px; }
  .complete-look__copy { padding: 34px 24px 40px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip article { min-height: auto; padding: 20px; }
  .ugc-row { grid-auto-columns: 76vw; }
  .ugc-row a { min-height: 430px; }
  .shop-toolbar { align-items: flex-start; gap: 10px; }
  .shop-toolbar p { display: none; }
  .two-fields { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .product-cart { grid-template-columns: 1fr 1fr; }
  .product-cart label:last-of-type, .product-cart .btn { grid-column: 1 / -1; }
  .product-facts { grid-template-columns: 1fr; }
  .product-tabs { padding: 14px; }
  .cart-row { grid-template-columns: 76px 1fr; gap: 12px; }
  .cart-row img { width: 76px; height: 98px; }
  .cart-row input, .cart-row > b { grid-column: 2; }
  .track-form, .blog-grid, .account-grid { grid-template-columns: 1fr; }
  .newsletter { gap: 26px; padding-block: 44px; }
  .newsletter form { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand, .footer-trust { grid-column: 1 / -1; }
  .footer-bottom { min-height: 80px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 18px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 48px; height: 48px; padding: 0; justify-content: center; }
  .quick-view-modal { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .quick-view-modal > div { padding: 0 4px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 2026 commerce refinements: product actions, responsive quick view, reels and journal */
.product-card__actions { position: absolute; z-index: 6; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; }
.product-card__icon { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 10px 28px rgba(0,0,0,.12); cursor: pointer; opacity: 0; transform: translateX(10px); transition: opacity .22s ease, transform .22s ease, background .2s ease, color .2s ease; }
.product-card__icon:nth-child(2) { transition-delay: .04s; }
.product-card:hover .product-card__icon, .product-card:focus-within .product-card__icon { opacity: 1; transform: translateX(0); }
.product-card__icon:hover, .product-card__icon.active { background: var(--brand); color: #fff; }
.product-card__icon .icon { width: 19px; height: 19px; }
.product-card__icon::after { content: attr(data-tooltip); position: absolute; right: calc(100% + 8px); top: 50%; padding: 6px 8px; border-radius: 6px; background: #111; color: #fff; font-size: 10px; white-space: nowrap; opacity: 0; transform: translate(4px,-50%); pointer-events: none; transition: .18s ease; }
.product-card__icon:hover::after, .product-card__icon:focus-visible::after { opacity: 1; transform: translate(0,-50%); }
.product-card__quick-add { position: absolute; z-index: 5; left: 12px; right: 12px; bottom: 12px; min-height: 44px; border: 0; border-radius: 999px; background: rgba(17,17,17,.94); color: #fff; font-size: 12px; font-weight: 800; cursor: pointer; opacity: 0; transform: translateY(12px); transition: .25s ease; }
.product-card:hover .product-card__quick-add, .product-card:focus-within .product-card__quick-add { opacity: 1; transform: translateY(0); }
.product-card__quick-add:disabled { cursor: not-allowed; opacity: .72; }
.product-wishlist, .product-quick-view { position: static; inset: auto; }
.product-card:has(.badge-sale) .product-wishlist { top: auto; }
.product-add { display: none; }

.quick-view-backdrop { overflow-y: auto; overscroll-behavior: contain; }
.quick-view-modal { width: min(1080px, calc(100vw - 32px)); max-height: min(92vh, 760px); grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 0; padding: 0; overflow: hidden; border-radius: 26px; }
.quick-view-close { top: 14px !important; right: 14px !important; border: 1px solid rgba(0,0,0,.08) !important; box-shadow: 0 7px 24px rgba(0,0,0,.12); }
.quick-view-gallery { min-width: 0; padding: 18px; background: #f3eff1; }
.quick-view-main { height: min(69vh, 640px); overflow: hidden; border-radius: 18px; background: #e8e2e5; }
.quick-view-main img { width: 100%; height: 100%; max-height: none; object-fit: cover; border-radius: 0; }
.quick-view-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 72px; gap: 8px; margin-top: 10px; overflow-x: auto; scrollbar-width: thin; }
.quick-view-thumbs button { width: 72px; height: 88px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 10px; background: #fff; cursor: pointer; }
.quick-view-thumbs button.active { border-color: var(--brand); }
.quick-view-thumbs img { width: 100%; height: 100%; max-height: none; object-fit: cover; border-radius: 7px; }
.quick-view-content { align-self: stretch !important; padding: clamp(28px,4vw,52px) clamp(24px,4vw,48px) 30px !important; overflow-y: auto; }
.quick-view-kicker { margin: 0 0 8px; color: var(--brand); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.quick-view-modal h2 { margin: 0; font-size: clamp(32px,4vw,48px); line-height: 1.02; }
.quick-view-rating { margin-top: 12px; color: #8b6336; font-size: 13px; }
.quick-view-rating span { color: var(--muted); }
.quick-view-price { display: flex; align-items: center; gap: 10px; margin: 17px 0; }
.quick-view-price strong { font-size: 25px; }
.quick-view-price span { padding: 5px 8px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: 10px; font-weight: 800; }
.quick-view-description { color: var(--muted); line-height: 1.7; }
.quick-view-stock { margin: 14px 0 18px; }
.quick-view-form { display: grid; grid-template-columns: 1fr 1fr 100px; gap: 11px; }
.quick-view-form label { color: var(--muted); font-size: 11px; font-weight: 750; }
.quick-view-form select, .quick-view-form input { width: 100%; min-height: 44px; margin-top: 6px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.quick-view-buttons { grid-column: 1/-1; display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.quick-view-save { min-width: 118px; }
.quick-view-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 22px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quick-view-facts div { display: flex; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.quick-view-facts div:nth-last-child(-n+2) { border-bottom: 0; }
.quick-view-facts div:nth-child(odd) { padding-right: 14px; }
.quick-view-facts div:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line); }
.quick-view-facts dt { color: var(--muted); font-size: 11px; }
.quick-view-facts dd { margin: 0; text-align: right; font-size: 11px; font-weight: 750; }
.quick-view-assurance { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 18px 0; color: var(--muted); font-size: 11px; }
.quick-view-assurance span { display: inline-flex; align-items: center; gap: 5px; }
.quick-view-full-link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 800; border-bottom: 1px solid currentColor; }

.community-section { overflow: hidden; }
.reels-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 300px); gap: 16px; overflow-x: auto; padding: 3px 2px 14px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.reel-card { position: relative; aspect-ratio: 9/16; overflow: hidden; border-radius: 20px; background: #201b20; scroll-snap-align: start; isolation: isolate; }
.reel-card::after { content: ""; position: absolute; inset: 45% 0 0; z-index: 1; background: linear-gradient(transparent,rgba(0,0,0,.8)); pointer-events: none; }
.reel-card video, .reel-card > img { width: 100%; height: 100%; object-fit: cover; }
.reel-card__copy { position: absolute; z-index: 3; left: 16px; right: 48px; bottom: 16px; color: #fff; }
.reel-card__copy strong { display: block; font-family: var(--serif); font-size: 21px; line-height: 1.1; }
.reel-card__copy small { display: block; margin-top: 5px; color: rgba(255,255,255,.72); }
.reel-card__toggle { position: absolute; z-index: 4; right: 12px; bottom: 12px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(0,0,0,.35); color: #fff; cursor: pointer; backdrop-filter: blur(5px); }
.reel-card__link { position: absolute; inset: 0; z-index: 2; }
.reel-badge { position: absolute; z-index: 4; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px; border-radius: 999px; background: rgba(0,0,0,.38); color: #fff; font-size: 10px; font-weight: 800; backdrop-filter: blur(5px); }

.blog-hero { padding: clamp(62px,8vw,110px) 0 42px; text-align: center; background: linear-gradient(180deg,#fbf5f7,#fff); }
.blog-hero h1 { max-width: 900px; margin: 6px auto 12px; font-family: var(--serif); font-size: clamp(48px,8vw,90px); font-weight: 500; line-height: .98; }
.blog-hero p { max-width: 680px; margin: 0 auto; color: var(--muted); }
.blog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.blog-categories { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.blog-categories a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; white-space: nowrap; font-size: 11px; font-weight: 750; }
.blog-categories a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.blog-search { display: flex; min-width: min(100%,320px); }
.blog-search input { width: 100%; min-height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px 0 0 999px; }
.blog-search button { width: 48px; border: 0; border-radius: 0 999px 999px 0; background: var(--ink); color: #fff; }
.blog-featured { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 500px; margin-bottom: 34px; overflow: hidden; border-radius: 24px; background: #171317; color: #fff; }
.blog-featured img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,5vw,64px); }
.blog-featured__copy h2 { margin: 8px 0 14px; font-family: var(--serif); font-size: clamp(36px,5vw,60px); line-height: 1; font-weight: 500; }
.blog-featured__copy p { color: rgba(255,255,255,.68); }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px 20px; }
.blog-card { min-width: 0; }
.blog-card__image { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: 16px; background: #eee; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover img { transform: scale(1.035); }
.blog-card__meta { display: flex; gap: 8px; margin: 13px 0 7px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.blog-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.08; }
.blog-card p { color: var(--muted); font-size: 13px; }
.blog-card > a:last-child { font-weight: 800; border-bottom: 1px solid currentColor; }
.blog-empty { grid-column: 1/-1; padding: 60px 20px; text-align: center; border: 1px dashed var(--line); border-radius: 16px; }
.blog-article { max-width: 900px; margin: 0 auto; padding: clamp(50px,8vw,100px) 0; }
.blog-article__head { text-align: center; }
.blog-article__head h1 { margin: 10px auto 18px; font-family: var(--serif); font-size: clamp(46px,8vw,82px); line-height: 1; font-weight: 500; }
.blog-article__meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 11px; }
.blog-article__image { width: 100%; max-height: 680px; margin: 34px 0; object-fit: cover; border-radius: 24px; }
.blog-article__content { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.85; }
.blog-article__content h2, .blog-article__content h3 { font-family: var(--serif); font-weight: 500; }
.blog-related { border-top: 1px solid var(--line); }

.account-shell { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.65fr); gap: 24px; }
.account-card, .account-panel { padding: clamp(24px,4vw,42px); border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.account-card h2, .account-panel h2 { margin-top: 0; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.account-card form { display: grid; gap: 13px; }
.account-card input { min-height: 46px; padding: 0 12px; border: 1px solid var(--line); border-radius: 9px; }
.account-orders { display: grid; gap: 10px; }
.account-order { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; }
.account-order small { color: var(--muted); }
.payment-options { display: grid; gap: 9px; }
.payment-option { display: grid !important; grid-template-columns: auto 1fr; gap: 5px 10px; align-items: start; padding: 13px; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }
.payment-option input { grid-row: 1/3; margin-top: 3px; }
.payment-option strong { font-size: 13px; }
.payment-option small { color: var(--muted); font-size: 11px; }
.coupon-box { display: flex; gap: 8px; margin: 14px 0; }
.coupon-box input { min-width: 0; flex: 1; min-height: 42px; padding: 0 11px; border: 1px solid var(--line); border-radius: 8px; }
.cart-discount { color: #18754b; }

@media (hover:none) {
  .product-card__icon { opacity: 1; transform: none; width: 38px; height: 38px; }
  .product-card__icon::after { display: none; }
  .product-card__quick-add { opacity: 1; transform: none; min-height: 40px; }
}

@media (max-width:900px) {
  .quick-view-modal { grid-template-columns: .9fr 1.1fr; }
  .quick-view-main { height: min(58vh,540px); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured img { max-height: 480px; }
  .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .account-shell { grid-template-columns: 1fr; }
}

@media (max-width:680px) {
  .product-card__actions { top: 8px; right: 8px; gap: 6px; }
  .product-card__icon { display: grid !important; width: 34px; height: 34px; }
  .product-card__quick-add { left: 8px; right: 8px; bottom: 8px; min-height: 37px; font-size: 10px; }
  .quick-view-backdrop { padding: 8px; align-items: end; }
  .quick-view-modal { width: 100%; max-height: 94vh; grid-template-columns: 1fr; border-radius: 20px 20px 0 0; overflow-y: auto; }
  .quick-view-gallery { padding: 10px; }
  .quick-view-main { height: min(54vh,460px); }
  .quick-view-content { overflow: visible; padding: 24px 18px 26px !important; }
  .quick-view-form { grid-template-columns: 1fr 1fr; }
  .quick-view-form label:last-of-type { grid-column: 1/-1; }
  .quick-view-buttons { grid-template-columns: 1fr; }
  .quick-view-save { min-width: 0; }
  .quick-view-facts { grid-template-columns: 1fr; }
  .quick-view-facts div, .quick-view-facts div:nth-child(odd), .quick-view-facts div:nth-child(even) { padding: 10px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .quick-view-facts div:last-child { border-bottom: 0; }
  .reels-row { grid-auto-columns: 72vw; }
  .blog-toolbar { align-items: stretch; flex-direction: column; }
  .blog-search { min-width: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { min-height: 0; }
  .blog-featured__copy { padding: 30px 22px; }
  .blog-article { padding-inline: 2px; }
  .blog-article__content { font-size: 16px; }
  .account-order { grid-template-columns: 1fr; }
}

/* Final ecommerce, journal, account and community reel refinements */
.commerce-heading { max-width:720px; margin-bottom:30px; }.commerce-heading h1 { margin:5px 0 10px; font-family:var(--serif); font-size:clamp(42px,7vw,76px); line-height:1; font-weight:500; }.commerce-heading>p:last-child { color:var(--muted); }
.cart-layout { display:grid; grid-template-columns:minmax(0,1fr) minmax(310px,390px); gap:30px; align-items:start; }.cart-layout .cart-summary { position:sticky; top:145px; width:100%; margin:0; }.cart-quantity { color:var(--muted); font-size:11px; font-weight:700; }.cart-quantity input { display:block; width:80px; margin-top:5px; padding-inline:10px; }.coupon-form { display:flex; align-items:end; gap:9px; max-width:500px; margin-top:18px; }.coupon-form label { flex:1; color:var(--muted); font-size:11px; font-weight:700; }.coupon-form input { width:100%; min-height:44px; margin-top:6px; padding:0 12px; border:1px solid var(--line); border-radius:10px; }.discount-line { color:#167648; }.summary-total { padding-top:14px; border-top:1px solid var(--line); font-size:17px; }.cart-summary .btn { width:100%; margin-top:10px; }.cart-summary>small { display:block; margin-top:12px; color:var(--muted); font-size:10px; line-height:1.5; }
.checkout-form>section { padding-bottom:18px; border-bottom:1px solid var(--line); }.checkout-form h2 { margin:0 0 15px; font-family:var(--serif); font-size:28px; font-weight:500; }.checkout-form label { color:#554d51; font-size:11px; font-weight:750; }.form-pair { display:grid; grid-template-columns:1fr 1fr; gap:10px; }.payment-option { position:relative; grid-template-columns:22px 1fr !important; padding:15px !important; }.payment-option:has(input:checked) { border-color:var(--brand); background:var(--brand-soft); box-shadow:0 0 0 2px rgba(111,24,59,.08); }.payment-option input { width:16px !important; min-height:16px !important; margin:2px 0 0 !important; accent-color:var(--brand); }.payment-option span,.payment-option strong,.payment-option small,.payment-option em { display:block; }.payment-option small { margin-top:3px; }.payment-option em { margin-top:5px; color:#a06916; font-size:9px; font-style:normal; }.checkout-submit { width:100%; min-height:52px; }.checkout-privacy { margin:0; color:var(--muted); font-size:10px; text-align:center; }.checkout-summary { position:sticky; top:145px; max-width:none; margin:0; }.checkout-item { display:grid; grid-template-columns:54px 1fr auto; gap:10px; align-items:center; padding:9px 0; border-bottom:1px solid var(--line); }.checkout-item img { width:54px; height:68px; object-fit:cover; border-radius:8px; }.checkout-item span,.checkout-item small { display:block; }.checkout-item span { font-size:11px; font-weight:700; }.checkout-item small { margin-top:3px; color:var(--muted); font-size:9px; }.checkout-item b { font-size:11px; }
.order-success { max-width:900px; text-align:center; }.success-icon { width:72px; height:72px; display:grid; place-items:center; margin:0 auto 18px; border-radius:50%; background:#e8f7ef; color:#167648; font-size:35px; }.order-success h1 { max-width:740px; margin:8px auto 14px; font-family:var(--serif); font-size:clamp(40px,6vw,68px); font-weight:500; line-height:1; }.success-details { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:28px 0; }.success-details>div { padding:17px; border:1px solid var(--line); border-radius:14px; background:#fff; }.success-details small,.success-details strong { display:block; }.success-details small { color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.07em; }.success-details strong { margin-top:6px; }.payment-next-step { padding:17px; border-left:3px solid var(--brand); border-radius:10px; background:var(--brand-soft); text-align:left; }.success-actions { display:flex; justify-content:center; gap:10px; margin-top:22px; }
.account-hero { display:flex; justify-content:space-between; align-items:end; gap:20px; margin-bottom:26px; padding:clamp(24px,5vw,55px); border-radius:24px; background:linear-gradient(135deg,#1b1519,#492335); color:#fff; }.account-hero h1 { margin:4px 0 10px; font-family:var(--serif); font-size:clamp(42px,6vw,70px); font-weight:500; }.account-hero p:last-child { color:rgba(255,255,255,.68); }.account-dashboard { display:grid; grid-template-columns:310px 1fr; gap:22px; }.account-profile,.account-orders,.account-form { padding:25px; border:1px solid var(--line); border-radius:18px; background:#fff; }.account-profile h2,.account-orders h2,.account-form h2 { margin-top:0; font-family:var(--serif); font-size:30px; font-weight:500; }.account-profile a { color:var(--brand); font-weight:800; }.order-history { display:grid; gap:9px; }.order-history article { display:grid; grid-template-columns:1fr auto auto; gap:7px 15px; align-items:center; padding:14px; border:1px solid var(--line); border-radius:12px; }.order-history article div strong,.order-history article div small { display:block; }.order-history article small { color:var(--muted); font-size:9px; }.order-status { padding:5px 9px; border-radius:999px; background:var(--brand-soft); color:var(--brand); font-size:9px; font-weight:800; }.account-grid { grid-template-columns:1fr 1fr; max-width:1000px; }.account-form { display:grid !important; gap:10px; }.account-form label { color:#5a5156; font-size:11px; font-weight:750; }.account-form input { margin-top:5px; }.empty-state.compact { min-height:180px; padding:25px; }

.community-section .section-head { align-items:end; }.community-section .section-link { color:#fff; border-color:rgba(255,255,255,.55); }.reels-row { grid-auto-columns:minmax(240px,310px); }.reel-card { aspect-ratio:auto; overflow:visible; background:transparent; }.reel-card::after { display:none; }.reel-card__media { position:relative; aspect-ratio:9/16; overflow:hidden; border-radius:20px; background:#211b20; box-shadow:0 16px 45px rgba(0,0,0,.25); }.reel-card__media::after { content:""; position:absolute; inset:45% 0 0; z-index:1; background:linear-gradient(transparent,rgba(0,0,0,.55)); pointer-events:none; }.reel-card__media video,.reel-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }.reel-card:hover .reel-card__media video,.reel-card:hover .reel-card__media img { transform:scale(1.025); }.reel-link { position:absolute; inset:0; z-index:2; }.reel-toggle { position:absolute; right:12px; bottom:12px; z-index:4; width:38px; height:38px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.35); border-radius:50%; background:rgba(0,0,0,.42); color:#fff; cursor:pointer; backdrop-filter:blur(6px); }.reel-card__caption { display:flex; align-items:center; gap:10px; padding:12px 3px 0; color:#fff; }.reel-card__caption>span { width:31px; height:31px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.12); }.reel-card__caption strong,.reel-card__caption small { display:block; }.reel-card__caption strong { font-family:var(--serif); font-size:18px; font-weight:500; }.reel-card__caption small { color:rgba(255,255,255,.6); font-size:10px; }

.journal-hero { padding:clamp(70px,10vw,130px) 0 55px; background:radial-gradient(circle at 80% 20%,#f2dce5,transparent 32%),linear-gradient(145deg,#fbf4f7,#f2eeee); text-align:center; }.journal-hero h1 { margin:5px auto 14px; font-family:var(--serif); font-size:clamp(54px,9vw,100px); font-weight:500; line-height:.95; }.journal-hero p:last-child { max-width:690px; margin-inline:auto; color:var(--muted); }.journal-page { padding-block:38px 90px; }.journal-toolbar { display:grid; grid-template-columns:minmax(260px,420px) 1fr; gap:18px; align-items:center; margin-bottom:35px; }.journal-search { display:flex; }.journal-search input { flex:1; min-width:0; height:46px; padding:0 14px; border:1px solid var(--line); border-radius:999px 0 0 999px; background:#fff; }.journal-search button { display:inline-flex; align-items:center; gap:6px; padding:0 16px; border:0; border-radius:0 999px 999px 0; background:var(--ink); color:#fff; font-size:11px; font-weight:800; }.journal-categories { display:flex; justify-content:flex-end; gap:7px; overflow:auto; scrollbar-width:none; }.journal-categories a { padding:9px 13px; border:1px solid var(--line); border-radius:999px; background:#fff; white-space:nowrap; font-size:10px; font-weight:750; }.journal-categories a.active { border-color:var(--brand); background:var(--brand); color:#fff; }.journal-categories small { opacity:.65; }.featured-story { display:grid; grid-template-columns:1.15fr .85fr; min-height:510px; margin-bottom:60px; overflow:hidden; border-radius:25px; background:#1a1518; color:#fff; }.featured-story__image { overflow:hidden; }.featured-story__image img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }.featured-story:hover img { transform:scale(1.025); }.featured-story>div { display:flex; flex-direction:column; justify-content:center; padding:clamp(30px,5vw,65px); }.featured-story h2 { margin:7px 0 14px; font-family:var(--serif); font-size:clamp(38px,5vw,63px); font-weight:500; line-height:1; }.featured-story p:not(.eyebrow) { color:rgba(255,255,255,.66); }.featured-story .story-meta { color:rgba(255,255,255,.58); }.featured-story .btn { align-self:start; margin-top:16px; }.story-meta { display:flex; flex-wrap:wrap; gap:8px 15px; color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.06em; }.journal-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }.journal-card { padding:0 !important; overflow:hidden; border:0 !important; border-radius:0 !important; background:transparent !important; }.journal-card__image { position:relative; display:block; aspect-ratio:4/3; overflow:hidden; border-radius:16px; background:#eee; }.journal-card__image img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }.journal-card__image span { position:absolute; left:11px; bottom:11px; padding:6px 9px; border-radius:999px; background:rgba(255,255,255,.9); color:var(--ink); font-size:9px; font-weight:800; backdrop-filter:blur(8px); }.journal-card:hover img { transform:scale(1.04); }.journal-card>div { padding:13px 2px; }.journal-card h2 { margin:8px 0; font-size:29px; line-height:1.08; }.journal-card p:not(.story-meta) { color:var(--muted); font-size:13px; }.journal-article { padding:70px 0 90px; }.journal-article__header { max-width:1000px; text-align:center; }.journal-article__header h1 { margin:8px auto 18px; font-family:var(--serif); font-size:clamp(48px,8vw,88px); line-height:.98; font-weight:500; }.journal-article__excerpt { max-width:760px; margin-inline:auto; color:var(--muted); font-size:17px; }.journal-article__header .story-meta { justify-content:center; margin-top:20px; }.container-wide { width:min(1500px,calc(100% - 40px)); margin-inline:auto; }.journal-article__hero { margin-top:42px; }.journal-article__hero img { width:100%; max-height:760px; object-fit:cover; border-radius:24px; }.journal-article__layout { display:grid; grid-template-columns:130px minmax(0,760px); justify-content:center; gap:45px; padding-top:50px; }.article-share { position:sticky; top:150px; align-self:start; display:grid; gap:8px; }.article-share strong { font-size:10px; text-transform:uppercase; letter-spacing:.08em; }.article-share a { color:var(--muted); font-size:11px; }.article-body { max-width:none; padding:0; border:0; border-radius:0; background:transparent; font-size:17px; }.article-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:35px; padding-top:22px; border-top:1px solid var(--line); }.article-tags span { padding:7px 10px; border-radius:999px; background:var(--brand-soft); color:var(--brand); font-size:10px; }

.product-gallery .gallery-thumbs button { cursor:pointer; transition:border-color .18s,transform .18s; }.product-gallery .gallery-thumbs button:hover,.product-gallery .gallery-thumbs button.active { border-color:var(--brand); transform:translateY(-2px); }.gallery-main img { transition:opacity .2s ease,transform .45s ease; }.gallery-main:hover img { transform:scale(1.025); }.product-card__actions { z-index:5; }.product-card__icon.active { background:var(--brand) !important; color:#fff !important; border-color:var(--brand) !important; }

@media (max-width:1000px) { .cart-layout { grid-template-columns:1fr; }.cart-layout .cart-summary,.checkout-summary { position:static; }.checkout-grid { grid-template-columns:1fr; }.account-dashboard { grid-template-columns:1fr; }.journal-toolbar { grid-template-columns:1fr; }.journal-categories { justify-content:flex-start; }.featured-story { grid-template-columns:1fr; min-height:0; }.featured-story__image { max-height:570px; }.journal-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }.journal-article__layout { grid-template-columns:1fr; }.article-share { position:static; display:flex; flex-wrap:wrap; border-bottom:1px solid var(--line); padding-bottom:14px; }.product-detail { grid-template-columns:1fr; }.product-summary { position:static; }.gallery-main img { max-height:none; } }
@media (max-width:700px) { .commerce-page { padding-block:42px 60px; }.cart-row { grid-template-columns:76px 1fr auto; gap:10px; padding:10px; }.cart-row img { width:76px; height:96px; }.cart-row>label { grid-column:2; }.cart-row>b { grid-column:3; grid-row:1/3; align-self:center; }.coupon-form { align-items:stretch; flex-direction:column; }.form-pair { grid-template-columns:1fr; }.success-details { grid-template-columns:1fr; }.success-actions { flex-direction:column; }.account-hero { align-items:start; flex-direction:column; }.account-grid { grid-template-columns:1fr; }.order-history article { grid-template-columns:1fr auto; }.order-history article>small { grid-column:1/-1; }.reels-row { grid-auto-columns:76vw; }.community-section .section-head { align-items:center; }.community-section .section-link { margin-top:12px; }.journal-page { padding-top:25px; }.journal-search { width:100%; }.journal-grid { grid-template-columns:1fr; }.journal-article { padding-top:45px; }.journal-article__hero { width:calc(100% - 22px); margin-top:28px; }.journal-article__hero img { border-radius:16px; }.article-body { font-size:16px; }.gallery-thumbs { grid-template-columns:repeat(5,1fr); overflow-x:auto; }.gallery-thumbs img { height:72px; }.product-cart { grid-template-columns:1fr 1fr; }.product-cart label:nth-child(3) { grid-column:1/-1; }.product-cart .btn { grid-column:1/-1; }.quick-view-main { height:min(52vh,430px); } }
@media (max-width:430px) { .cart-row { grid-template-columns:68px 1fr; }.cart-row img { width:68px;height:88px; }.cart-row>b { grid-column:2;grid-row:auto; }.product-facts { grid-template-columns:1fr; }.reels-row { grid-auto-columns:82vw; }.journal-hero { padding-top:55px; }.journal-card h2 { font-size:26px; } }

/* CRM-connected contact experience */
.contact-hero{padding:clamp(65px,9vw,120px) 0 55px;background:radial-gradient(circle at 85% 20%,rgba(25,167,165,.17),transparent 32%),linear-gradient(145deg,#fbf4f7,#f4eeee);text-align:center}.contact-hero h1{margin:7px 0 12px;font-family:var(--serif);font-size:clamp(52px,8vw,88px);font-weight:500;line-height:1}.contact-hero p:last-child{max-width:670px;margin-inline:auto;color:var(--muted)}.contact-layout{display:grid;grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr);gap:clamp(30px,6vw,90px);padding-block:clamp(45px,7vw,90px)}.contact-details{display:grid;align-content:start;gap:12px}.contact-details>article{display:flex;align-items:flex-start;gap:14px;padding:18px;border:1px solid var(--line);border-radius:16px;background:#fff}.contact-details>article>span{width:43px;height:43px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;background:var(--brand-soft);color:var(--brand)}.contact-details h2{margin:0 0 4px;font-size:18px}.contact-details p,.contact-details a{margin:0;color:var(--muted);font-size:13px}.contact-page-copy{padding:20px;border-radius:16px;background:#191517;color:rgba(255,255,255,.72)}.contact-page-copy h2{color:#fff}.contact-form{display:grid;gap:16px;padding:clamp(24px,4vw,45px);border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:0 20px 55px rgba(35,25,31,.07)}.contact-form h2{margin:-8px 0 4px;font-family:var(--serif);font-size:clamp(35px,5vw,52px);font-weight:500}.contact-form label{display:grid;gap:7px;color:#5a5156;font-size:11px;font-weight:750}.contact-form input,.contact-form select,.contact-form textarea{width:100%;border:1px solid var(--line);border-radius:11px;background:#fff}.contact-form input,.contact-form select{height:47px;padding:0 13px}.contact-form textarea{padding:13px;resize:vertical}.contact-form .btn{justify-self:start}.form-note{margin:0;color:var(--muted);font-size:11px}@media(max-width:800px){.contact-layout{grid-template-columns:1fr}.contact-details{grid-template-columns:1fr 1fr}.contact-page-copy{grid-column:1/-1}}@media(max-width:560px){.contact-details{grid-template-columns:1fr}.contact-page-copy{grid-column:auto}.contact-form{padding:22px 17px;border-radius:18px}.contact-form .form-pair{grid-template-columns:1fr}}


/* 2026-07-29 Rang De product, shop filters and payment presentation */
:root {
  --brand: #6f183b;
  --brand-dark: #4e1029;
  --brand-soft: #f8e9ef;
}
.btn-dark,
.product-add-cart,
.search-form > button {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-dark:hover,
.product-add-cart:hover,
.search-form > button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.product-card__quick-add { background: var(--brand); color: #fff; }
.product-card__quick-add:hover { background: var(--brand-dark); }
.product-card__actions { position: absolute; top: 12px; right: 12px; display: grid; gap: 8px; }
.product-card__actions .product-card__icon { position: static; }
.product-quick-view {
  width: 38px;
  height: 38px;
  min-height: 0;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(10px);
}
.product-card:hover .product-quick-view,
.product-quick-view:focus-visible { opacity: 1; transform: translateX(0); }

.product-detail {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(30px, 5vw, 70px);
  padding-block: clamp(32px, 5vw, 70px);
}
.product-gallery { min-width: 0; }
.gallery-stage { position: relative; }
.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #f1edef;
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
}
.product-gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: 58px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(20,16,19,.72);
  color: #fff;
  text-align: center;
  font-size: 11px;
  backdrop-filter: blur(8px);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}
.gallery-thumbs button,
.gallery-thumbs .video-thumb {
  min-width: 0;
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: #fff;
}
.gallery-thumbs img {
  width: 100%;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
}
.gallery-thumbs .video-thumb {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.product-summary { top: 128px; }
.product-labels { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.product-labels > * {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
.product-summary h1 {
  margin: 14px 0 12px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: .98;
}
.product-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.product-heading-row .benefit-line {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
}
.product-page-wishlist {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}
.product-page-wishlist:hover,
.product-page-wishlist.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.product-page-wishlist.active svg { fill: currentColor; }
.product-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.product-price { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.product-price strong { color: var(--brand); font-size: clamp(25px, 3vw, 34px); }
.product-price del { color: #9a9196; font-size: 18px; }
.discount-pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
.product-intro-copy {
  margin-bottom: 18px;
  color: #4f484c;
  font-size: 14px;
}
.product-intro-copy > *:first-child { margin-top: 0; }
.product-intro-copy > *:last-child { margin-bottom: 0; }
.available-colours {
  margin: 16px 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}
.available-colours strong { font-size: 13px; }
.available-colours ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 9px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.product-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  color: var(--success);
  font-weight: 750;
}
.product-stock > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 14%, transparent);
}
.product-stock.stock-out_of_stock { color: var(--danger); }

.product-purchase { display: block; margin: 0; }
.product-option-group {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}
.product-option-group legend {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 800;
}
.product-option-group legend a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.product-option-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.product-option-pills label { position: relative; cursor: pointer; }
.product-option-pills input { position: absolute; opacity: 0; pointer-events: none; }
.product-option-pills span {
  min-width: 47px;
  min-height: 42px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  font-size: 12px;
  font-weight: 750;
  transition: .18s ease;
}
.product-option-pills input:checked + span {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.product-option-pills label.sold-out span {
  opacity: .45;
  text-decoration: line-through;
  cursor: not-allowed;
}
.product-select-label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
}
.product-select-label select {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.purchase-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 12px 16px;
}
.quantity-control-wrap > label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}
.quantity-stepper {
  height: 54px;
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8f6f7;
}
.quantity-stepper button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
}
.quantity-stepper input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  -moz-appearance: textfield;
}
.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button { margin: 0; appearance: none; }
.product-add-cart,
.product-buy-now {
  min-height: 54px;
  border-radius: 13px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.product-add-cart { align-self: end; }
.product-buy-now {
  grid-column: 1 / -1;
  border-color: #1d1b1c;
  background: #1d1b1c;
  color: #fff;
}
.product-buy-now:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

.product-utility-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.product-utility-actions button,
.product-service-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 650;
}
.product-utility-actions button {
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.product-utility-actions button:hover,
.product-utility-actions button.active { color: var(--brand); }
.product-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-service-links a { min-height: 34px; }
.product-service-links a:hover { color: var(--brand); }
.product-live-info {
  display: grid;
  gap: 12px;
  padding: 22px 0;
}
.product-live-info p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.product-live-info svg { color: var(--brand); }
.product-live-info strong { color: var(--ink); }
.safe-checkout {
  margin: 12px 0 26px;
  padding: 0 18px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.safe-checkout h2 {
  margin: -16px 0 18px;
  text-align: center;
  font-family: var(--sans);
  font-size: 20px;
}
.safe-checkout h2 span { padding: 0 13px; background: var(--bg); }
.payment-icon-row,
.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}
.payment-icon-row { justify-content: center; }
.payment-icon-row img {
  width: 74px;
  height: 46px;
  object-fit: contain;
}
.get-it-today { display: grid; gap: 16px; margin-top: 22px; }
.get-it-today h2 {
  margin: 0 0 4px;
  font-family: var(--sans);
  font-size: 28px;
}
.get-it-today article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: start;
}
.get-it-today article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}
.get-it-today strong { display: block; font-size: 15px; }
.get-it-today p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }

.footer-payment-icons { margin: 18px 0; }
.footer-payment-icons img {
  width: 58px;
  height: 37px;
  object-fit: contain;
  border-radius: 6px;
}
.whatsapp-float {
  background: #25d366;
  color: #fff;
}
.whatsapp-float svg { fill: none; }
.whatsapp-float:hover { background: #1faf55; transform: translateY(-2px); }

/* Modern interactive catalogue filters */
.shop-layout {
  grid-template-columns: 310px minmax(0, 1fr);
  gap: clamp(25px, 4vw, 52px);
}
.modern-filters {
  top: 128px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(35,20,29,.07);
}
.filter-panel-head {
  min-height: 76px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand);
  color: #fff;
}
.filter-panel-head span,
.filter-panel-head strong { display: block; }
.filter-panel-head span {
  color: rgba(255,255,255,.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.filter-panel-head strong { font-size: 18px; }
.filter-close {
  width: 36px;
  height: 36px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}
.modern-filters form { padding: 16px 18px 20px; }
.filter-search { position: relative; margin-bottom: 9px; }
.filter-search svg { position: absolute; top: 50%; left: 13px; transform: translateY(-50%); color: var(--muted); }
.filter-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px 0 41px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #faf8f9;
}
.filter-group { border-bottom: 1px solid var(--line); }
.filter-group summary {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.filter-group summary::-webkit-details-marker { display: none; }
.filter-group summary::after {
  content: "+";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 15px;
}
.filter-group[open] summary::after { content: "−"; }
.filter-group summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
}
.filter-options,
.filter-colours,
.filter-size-grid,
.filter-price { padding: 0 0 15px; }
.filter-options { display: grid; gap: 8px; max-height: 220px; overflow-y: auto; }
.filter-radio { position: relative; margin: 0 !important; cursor: pointer; }
.filter-radio input { position: absolute; opacity: 0; }
.filter-radio span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px 0 35px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
}
.filter-radio span::before {
  content: "";
  position: absolute;
  left: 9px;
  width: 15px;
  height: 15px;
  border: 1px solid #cfc5ca;
  border-radius: 50%;
  background: #fff;
}
.filter-radio input:checked + span {
  background: var(--brand-soft);
  color: var(--brand);
}
.filter-radio input:checked + span::before {
  border: 4px solid var(--brand);
}
.filter-price { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.filter-price label { margin: 0 !important; }
.filter-price input[type="number"] {
  min-height: 42px;
  margin-top: 5px;
  padding: 0 10px;
  border-radius: 9px;
}
.price-range { grid-column: 1 / -1; width: 100%; accent-color: var(--brand); }
.price-range-labels {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}
.filter-size-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-size-grid label { position: relative; margin: 0 !important; cursor: pointer; }
.filter-size-grid input { position: absolute; opacity: 0; }
.filter-size-grid span {
  min-width: 39px;
  min-height: 37px;
  padding: 0 9px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 11px;
}
.filter-size-grid input:checked + span {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.filter-colours { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.filter-colours label {
  position: relative;
  min-width: 0;
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  cursor: pointer;
}
.filter-colours input { position: absolute; opacity: 0; }
.colour-swatch {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px #d8cfd3;
}
.colour-swatch.all {
  background: conic-gradient(#6f183b,#f2c14e,#1e9b8f,#6f183b);
}
.filter-colours input:checked + .colour-swatch { box-shadow: 0 0 0 2px var(--brand); }
.filter-colours b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}
.filter-featured {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}
.filter-featured label { position: relative; margin: 0 !important; }
.filter-featured input { position: absolute; opacity: 0; }
.filter-featured span {
  min-height: 42px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}
.filter-featured input:checked + span {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}
.filter-actions { display: grid; gap: 8px; }
.filter-actions .btn { width: 100%; }
.shop-toolbar {
  align-items: flex-start;
  margin-bottom: 22px;
}
.shop-toolbar > div { min-width: 0; }
.active-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}
.active-filter-chips:empty { display: none; }
.active-filter-chips button {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid #e3d5db;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}
.active-filter-chips button span { margin-left: 4px; font-size: 13px; }
.sort-control {
  display: flex !important;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.sort-control select {
  min-height: 43px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.mobile-filter-bar button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.filter-overlay { display: none; }

@media (max-width: 1000px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-summary { position: static; }
  .gallery-main img { max-height: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .modern-filters {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 121;
    width: min(410px, 94vw);
    height: 100dvh;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    transform: translateX(105%);
    transition: transform .25s ease;
  }
  .modern-filters.open { transform: translateX(0); }
  .filter-close { display: grid; }
  .filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: block;
    background: rgba(20,13,17,.48);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
  }
  .filter-overlay.open { opacity: 1; visibility: visible; }
  body.filters-open { overflow: hidden; }
}

@media (max-width: 700px) {
  .product-detail { width: min(100% - 24px, var(--container)); padding-top: 20px; }
  .gallery-main { border-radius: 17px; }
  .gallery-thumbs { grid-template-columns: repeat(5, 72px); overflow-x: auto; padding-bottom: 4px; }
  .gallery-thumbs img { height: 78px; }
  .product-summary h1 { font-size: clamp(34px, 10vw, 46px); }
  .product-heading-row,
  .product-price-line { align-items: flex-start; flex-direction: column; }
  .product-page-wishlist { width: 100%; justify-content: center; }
  .purchase-grid { grid-template-columns: 1fr; }
  .product-add-cart,
  .product-buy-now { grid-column: 1; }
  .product-utility-actions { grid-template-columns: 1fr 1fr; }
  .product-service-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .safe-checkout { padding-inline: 10px; }
  .payment-icon-row { gap: 6px; }
  .payment-icon-row img { width: 58px; height: 38px; }
  .product-tabs nav { overflow-x: auto; justify-content: flex-start; }
  .product-tabs nav button { white-space: nowrap; }
  .shop-toolbar { gap: 12px; align-items: stretch; flex-direction: column; }
  .sort-control { justify-content: space-between; }
  .sort-control select { flex: 1; min-width: 0; }
}

@media (max-width: 430px) {
  .product-utility-actions,
  .product-service-links { grid-template-columns: 1fr; }
  .product-service-links a { min-height: 42px; }
  .available-colours ul { display: grid; grid-template-columns: 1fr 1fr; }
  .payment-icon-row img { width: 52px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 50px; height: 50px; padding: 0; justify-content: center; }
}

/* Product detail gallery: one main image, thumbnail strip and reliable bounded sticky behavior. */
.product-detail.container {
  display: grid;
  grid-template-columns: minmax(390px, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
  position: relative;
  overflow: visible;
  padding-block: clamp(30px, 5vw, 64px);
}

.product-detail .gallery-desktop-stack { display: none !important; }
.product-detail .gallery-compact-view { display: block !important; }

/* The outer grid item stretches to the full product-summary height. The inner
   wrapper is sticky inside it, so it stops exactly before the description tabs. */
.product-detail .product-gallery {
  position: relative;
  min-width: 0;
  align-self: stretch;
  overflow: visible;
}

.product-detail .product-gallery-sticky {
  width: 100%;
  min-width: 0;
}

.product-detail .gallery-stage { position: relative; }
.product-detail .gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #f1edef;
  box-shadow: 0 18px 52px rgba(37, 24, 30, .08);
}

.product-detail .gallery-main img {
  display: block;
  width: 100%;
  height: clamp(750px, calc(100dvh - var(--product-gallery-sticky-top, 146px) - 126px), 690px);
  min-height: 0;
  max-height: none;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  transition: opacity .2s ease, transform .45s ease;
}

.product-detail .gallery-main:hover img { transform: scale(1.018); }

.product-detail .gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 2px 2px 7px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(111,24,59,.3) transparent;
  -webkit-overflow-scrolling: touch;
}

.product-detail .gallery-thumbs button,
.product-detail .gallery-thumbs .video-thumb {
  flex: 0 0 82px;
  min-width: 82px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-detail .gallery-thumbs button:hover,
.product-detail .gallery-thumbs button:focus-visible,
.product-detail .gallery-thumbs button.active {
  border-color: var(--brand);
  box-shadow: 0 8px 22px rgba(111,24,59,.12), inset 0 0 0 1px var(--brand);
  transform: translateY(-2px);
  outline: none;
}

.product-detail .gallery-thumbs img {
  display: block;
  width: 100%;
  height: 88px;
  border-radius: 9px;
  object-fit: cover;
}

.product-detail .gallery-thumbs .video-thumb {
  min-height: 98px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

/* Product information must scroll normally; only the image gallery is sticky. */
.product-detail .product-summary,
.product-detail .product-summary-shell {
  position: static !important;
  top: auto !important;
  max-height: none !important;
  overflow: visible !important;
  padding-right: 0 !important;
}

.product-tabs {
  clear: both;
  scroll-margin-top: calc(var(--product-gallery-sticky-top, 146px) + 10px);
}

@media (min-width: 1001px) {
  .product-detail .product-gallery-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: var(--product-gallery-sticky-top, 146px);
    z-index: 2;
  }
}

@media (max-width: 1180px) {
  .product-detail.container {
    grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
    gap: 32px;
  }
}

@media (max-width: 1000px) {
  .product-detail.container { grid-template-columns: 1fr; }
  .product-detail .product-gallery { align-self: auto; }
  .product-detail .product-gallery-sticky {
    position: static;
    top: auto;
  }
  .product-detail .gallery-main img {
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 700px) {
  .product-detail.container {
    width: min(100% - 24px, var(--container));
    gap: 22px;
    padding-top: 22px;
  }
  .product-detail .gallery-main { border-radius: 18px; }
  .product-detail .gallery-thumbs button,
  .product-detail .gallery-thumbs .video-thumb {
    flex-basis: 72px;
    min-width: 72px;
  }
  .product-detail .gallery-thumbs img { height: 76px; }
}

.site-footer {
  background: #fff !important;
  color: #4e1029 !important;
}
.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer span,
.site-footer a,
.site-footer small,
.site-footer .footer-bottom,
.site-footer .footer-brand > p,
.site-footer .footer-trust p,
.site-footer .footer-contact,
.site-footer .footer-grid > div > a {
  color: #4e1029 !important;
}
.site-footer a {
  transition: color .2s ease, opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}
.site-footer a:hover,
.site-footer .footer-grid > div > a:hover,
.site-footer .footer-track:hover {
  color: #4e1029 !important;
  opacity: .72;
}
.site-footer .newsletter {
  border-bottom-color: rgba(78,16,41,.14);
}
.site-footer .newsletter .eyebrow,
.site-footer .newsletter h2 {
  color: #4e1029 !important;
}
.site-footer .newsletter p {
  color: rgba(78,16,41,.72) !important;
}
.site-footer .newsletter input {
  border-color: rgba(78,16,41,.25);
  background: #fff;
  color: #4e1029;
}
.site-footer .newsletter input::placeholder { color: rgba(78,16,41,.55); }
.site-footer .newsletter button,
.site-footer .btn,
.site-footer button[type="submit"] {
  border-color: #4e1029;
}
.site-footer .social-links a {
  border-color: rgba(78,16,41,.24);
  color: #4e1029 !important;
}
.site-footer .social-links a:hover {
  background: #4e1029;
  color: #fff !important;
  opacity: 1;
}
.site-footer .footer-payment-icons img {
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(78,16,41,.12);
  border-radius: 8px;
}
.site-footer .footer-bottom {
  border-top-color: rgba(78,16,41,.14);
}

/* Rang De responsive audit hardening: storefront, pages, service-style CMS content and reusable components. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
.site-header,
.site-footer,
.container,
.page-block,
.content-page,
.rich-content,
.shop-layout,
.product-detail,
.product-summary,
.product-gallery,
.product-grid,
.blog-grid,
.journal-grid,
.collection-cards,
.footer-grid,
.newsletter,
.contact-layout,
.cart-layout,
.checkout-grid,
.account-grid {
  min-width: 0;
}

.rich-content,
.article-body,
.product-tabs article,
.contact-form,
.blog-grid article,
.journal-card,
.product-card,
.footer-grid,
.footer-grid * {
  overflow-wrap: break-word;
  word-break: normal;
}

.rich-content img,
.rich-content video,
.rich-content iframe,
.article-body img,
.article-body video,
.article-body iframe,
.product-tabs img,
.product-tabs video,
.product-tabs iframe {
  max-width: 100%;
}

.rich-content img,
.article-body img,
.product-tabs img {
  height: auto;
}

.rich-content table,
.article-body table,
.product-tabs table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.rich-content iframe,
.article-body iframe,
.product-tabs iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.content-page,
.page-block {
  padding-block: clamp(42px, 7vw, 92px);
}

.content-page h1,
.page-block h1 {
  max-width: 100%;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 1;
}

.rich-content {
  max-width: 100%;
  color: var(--muted);
}

.rich-content > *:first-child { margin-top: 0; }
.rich-content > *:last-child { margin-bottom: 0; }

.btn,
.button,
.product-add-cart,
.product-buy-now,
.newsletter button,
.contact-form button {
  white-space: normal;
}

.header-main,
.nav-scroll,
.mega-grid,
.product-grid,
.blog-grid,
.journal-grid,
.collection-cards,
.footer-grid {
  min-width: 0;
}

.product-card__body,
.product-meta-row,
.price,
.story-meta,
.product-live-info p,
.footer-bottom {
  min-width: 0;
}

@media (max-width: 1280px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { gap: 28px; }
}

@media (max-width: 1024px) {
  .hero-slider { min-height: 560px; }
  .collection-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid,
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding-block: 46px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .shop-toolbar,
  .sort-control,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .sort-control select { width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-cards,
  .blog-grid,
  .journal-grid,
  .account-grid,
  .contact-layout,
  .checkout-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .footer-trust { grid-column: 1 / -1; }
  .newsletter form { width: 100%; }
}

@media (max-width: 425px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .announcement { padding-inline: 10px; }
  .header-main { gap: 6px; }
  .header-icons { flex: 0 0 auto; }
  .header-icon { width: 36px; height: 36px; }
  .logo img { width: 84px; height: 54px; }
  .hero-slider { min-height: 520px; }
  .hero-content h1,
  .journal-hero h1,
  .contact-hero h1,
  .content-page h1,
  .page-block h1 {
    font-size: clamp(34px, 12vw, 48px);
  }
  .product-card h3,
  .journal-card h2,
  .blog-grid h2 { font-size: clamp(18px, 7vw, 26px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-trust { grid-column: auto; }
  .newsletter h2 { font-size: clamp(32px, 10vw, 44px); }
  .newsletter form { min-width: 0; }
  .product-detail .gallery-thumbs { grid-template-columns: repeat(4, 70px); }
  .product-detail .gallery-thumbs img { height: 74px; }
}

@media (max-width: 375px) {
  .product-grid { gap: 20px; }
  .product-card__actions { top: 7px; right: 7px; }
  .product-card__quick-add { font-size: 10px; }
  .product-detail.container { width: min(100% - 18px, var(--container)); }
  .product-detail .gallery-thumbs { grid-template-columns: repeat(4, 66px); }
  .payment-icon-row img { width: 48px; }
}

@media (max-width: 340px) {
  .container { width: min(var(--container), calc(100% - 16px)); }
  .product-grid,
  .product-carousel__track,
  .blog-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .product-carousel__track { grid-auto-columns: 88vw; }
  .product-card__image { aspect-ratio: 4 / 5; }
  .product-detail .gallery-thumbs { grid-template-columns: repeat(3, 68px); }
  .product-cart,
  .purchase-grid,
  .product-utility-actions,
  .product-service-links,
  .available-colours ul {
    grid-template-columns: 1fr !important;
  }
}


.required-note{margin:-4px 0 18px;color:#76656d;font-size:.9rem}
.city-input-row{display:flex;gap:8px;align-items:stretch}.city-input-row input{min-width:0;flex:1}.city-detect-button{border:1px solid #d8cbd1;background:#fff;border-radius:10px;padding:0 14px;white-space:nowrap;font-weight:700;color:#6f183b;cursor:pointer}.city-detect-button:hover{background:#faf3f6}.city-detect-button:disabled{opacity:.65;cursor:wait}
.checkout-form label>small[data-city-status]{display:block;margin-top:7px;color:#77656d;line-height:1.4}.checkout-form label>small[data-city-status].is-success{color:#177345}.checkout-form label>small[data-city-status].is-error{color:#a53d45}
.payment-option em{display:block;margin-top:7px;color:#6f183b;font-style:normal;font-weight:650;line-height:1.45}
.order-success-modal{min-height:70vh;display:grid;place-items:center;padding:42px 18px;background:radial-gradient(circle at top,rgba(111,24,59,.11),transparent 45%)}.order-success-modal__card{width:min(720px,100%);background:#fff;border:1px solid #eadde3;border-radius:26px;padding:clamp(26px,5vw,52px);text-align:center;box-shadow:0 24px 70px rgba(55,24,39,.14)}.success-order-number{display:inline-flex;gap:8px;margin:14px auto 22px;padding:10px 16px;border-radius:999px;background:#f8f1f4}.email-delivery-warning{margin:18px 0;padding:13px 15px;border:1px solid #e7c88b;background:#fff9e8;border-radius:12px;color:#72541b;text-align:left}.order-success-modal .success-details{margin:8px 0 24px}
@media(max-width:640px){.city-input-row{display:grid}.city-detect-button{min-height:44px}.order-success-modal__card{border-radius:18px}.order-success-modal .success-details{grid-template-columns:1fr}}

/* Mega menu reliability and responsive mobile navigation enhancement. */
.mega-menu {
  top: calc(100% - 1px);
  max-height: calc(100vh - 120px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
}
.site-header.mega-open .mega-menu { pointer-events: auto; }
.mega-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 34px);
}
.mega-menu__column { min-width: 0; }
.mega-menu__column h3,
.mega-menu__column a {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.mega-menu__column a { display: block; padding: 5px 0; color: var(--muted); font-size: 13px; }
.mega-menu__column a:hover { color: var(--brand); transform: translateX(3px); }
.mega-feature { min-width: 220px; }
.nav-mega-trigger[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav-mega-trigger .icon { transition: transform .2s ease; }
.mobile-mega-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mobile-mega-section summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}
.mobile-mega-section summary::-webkit-details-marker { display: none; }
.mobile-mega-section[open] summary .icon { transform: rotate(180deg); }
.mobile-mega-section summary .icon { transition: transform .2s ease; }
.mobile-mega-section__body { display: grid; gap: 2px; padding: 0 0 14px 12px; }
.mobile-mega-section__body strong { margin: 12px 0 4px; color: var(--brand); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-mega-section__body a { min-height: 38px; padding-left: 0; }
@media (max-width: 1120px) and (min-width: 901px) {
  .mega-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
