﻿:root {
  --bg: #fbfaf8;
  --ink: #111111;
  --muted: #6a6a6a;
  --line: rgba(20, 20, 20, .13);
  --panel: #ffffff;
  --accent: #d71920;
  --dark-accent: #111111;
  --price: #d71920;
  --red: #d71920;
  --shadow: 0 24px 70px rgba(18, 18, 18, .13);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Heebo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-main { min-height: 62vh; }

.promo-strip {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 70px);
  padding: 6px 14px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.promo-strip span:not(:first-child) {
  position: relative;
}
.promo-strip span:not(:first-child):before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-1 * clamp(9px, 2vw, 35px));
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.35);
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  min-height: 84px;
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.brand img { width: 156px; max-height: 58px; object-fit: contain; }
.primary-nav { justify-self: center; }
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #27231f;
  font-weight: 600;
  font-size: 15px;
}
.nav-menu a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.cart-trigger, .menu-toggle {
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}
.cart-trigger {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 999px;
}
.cart-trigger__icon {
  position: absolute;
  inset: 13px 12px 11px;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}
.cart-trigger__icon:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 8px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  top: -8px;
  right: 3px;
}
.cart-trigger__count {
  position: absolute;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  top: -3px;
  left: -3px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  place-items: center;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
}

.fashion-hero {
  min-height: calc(100vh - 84px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}
.fashion-hero__media {
  position: absolute;
  inset: 0;
}
.fashion-hero__media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,.58)), linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.04) 48%);
}
.fashion-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fashion-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12vh 0 14vh;
  color: #fff;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.fashion-hero h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 132px);
  line-height: .92;
  font-weight: 900;
}
.fashion-hero p {
  margin: 24px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 2vw, 22px);
}
.store-hero {
  min-height: calc(100vh - 84px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}
.store-hero__media {
  position: absolute;
  inset: 0;
}
.store-hero__media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.68)), linear-gradient(0deg, rgba(0,0,0,.74), rgba(0,0,0,.06) 54%);
}
.store-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 14vh 0 190px;
  color: #fff;
}
.store-hero__content h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(60px, 10vw, 140px);
  line-height: .9;
  font-weight: 900;
}
.store-hero__content p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2vw, 24px);
}
.store-hero__content .hero-actions {
  justify-content: flex-start;
}
.store-hero__rail {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 26px;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.store-hero__rail a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
}
.store-hero__rail span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.store-hero__rail strong {
  font-size: 20px;
  line-height: 1.1;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button, .button:visited, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { transform: translateY(-2px); }
.button-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}
.button-dark { background: #fff; color: #111; border-color: #fff; }

.content-band { padding: clamp(54px, 8vw, 112px) 0; }
.commerce-band {
  padding: clamp(44px, 6vw, 84px) 0;
}
.commerce-band + .commerce-band {
  padding-top: 16px;
}
.commerce-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.commerce-category-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 18px 54px rgba(20,20,20,.12);
}
.commerce-category-card:after,
.product-look-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.04) 58%);
}
.commerce-category-card img,
.product-look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.commerce-category-card:hover img,
.product-look-card:hover img {
  transform: scale(1.045);
}
.commerce-category-card span,
.commerce-category-card strong,
.product-look-card span,
.product-look-card strong,
.product-look-card em {
  position: absolute;
  z-index: 1;
  right: 18px;
  left: 18px;
}
.commerce-category-card span,
.product-look-card span {
  bottom: 66px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.commerce-category-card strong,
.product-look-card strong {
  bottom: 24px;
  color: #fff;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
}
.product-look-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-look-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}
.product-look-card em {
  bottom: 18px;
  color: rgba(255,255,255,.78);
  font-style: normal;
  font-weight: 700;
}
.product-look-card strong { bottom: 46px; }
.lookbook-band {
  padding: clamp(60px, 8vw, 110px) 0;
  background: #171717;
  color: #fff;
}
.lookbook-layout {
  display: grid;
  grid-template-columns: .78fr 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
}
.lookbook-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 900;
}
.lookbook-copy p {
  color: rgba(255,255,255,.72);
  font-size: 19px;
}
.lookbook-mosaic {
  display: grid;
  grid-template-columns: 1fr .74fr;
  grid-template-rows: 230px 230px;
  gap: 12px;
}
.lookbook-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.lookbook-mosaic img:first-child {
  grid-row: span 2;
}
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
}
.split-layout h2, .section-head h2, .compact-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.04;
  font-weight: 900;
}
.split-layout p { color: var(--muted); font-size: 19px; }
.image-stack {
  display: grid;
  grid-template-columns: .8fr 1fr;
  align-items: end;
  gap: 14px;
}
.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-stack img:last-child { aspect-ratio: 3 / 4; transform: translateY(34px); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.section-head a {
  color: var(--dark-accent);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}
.tile-grid, .post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.fashion-tile, .editorial-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}
.fashion-tile img, .editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fashion-tile:hover img, .editorial-card:hover img { transform: scale(1.04); }
.fashion-tile span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 12px 30px rgba(0,0,0,.6);
}
.editorial-card {
  min-height: auto;
  background: var(--panel);
}
.editorial-card a { display: grid; height: 100%; }
.editorial-card img { height: 260px; }
.editorial-card h2, .editorial-card p, .editorial-card span { margin-inline: 22px; }
.editorial-card span { margin-top: 20px; color: var(--accent); font-weight: 900; }
.editorial-card h2 { margin-top: 8px; margin-bottom: 8px; font-size: 25px; line-height: 1.15; }
.editorial-card p { color: var(--muted); margin-bottom: 24px; }

.page-hero {
  background: linear-gradient(135deg, #111, #1e1e1e 72%, #3b0d10);
  color: #fff;
}
.compact-hero { padding: clamp(60px, 9vw, 116px) 0; }
.compact-hero p { max-width: 680px; color: rgba(255,255,255,.78); }
.page-content {
  max-width: 980px;
  font-size: 18px;
}
.page-content h2, .page-content h3 { line-height: 1.15; }
.page-content img {
  border-radius: var(--radius);
  margin: 20px 0;
}
.single-featured img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.woocommerce ul.products:before, .woocommerce ul.products:after { display: none; }
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 18px;
  float: none !important;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(20,20,20,.07);
}
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 0 0 16px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}
.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 16px 10px;
  color: var(--price);
  font-size: 18px;
  font-weight: 900;
}
.woocommerce ul.products li.product .button { margin: 0 16px; width: calc(100% - 32px); }
.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 48px;
}
.woocommerce div.product div.images, .woocommerce div.product div.summary {
  width: auto !important;
  float: none !important;
}
.woocommerce div.product .product_title { font-size: clamp(34px, 5vw, 62px); line-height: 1.03; }
.woocommerce div.product p.price { color: var(--price); font-size: 28px; font-weight: 900; }
.woocommerce-cart .wc-block-cart, .woocommerce-checkout .wc-block-checkout {
  background: var(--panel);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.renuar-product-shell { background: #fff; color: #111; }
.renuar-breadcrumbs {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
  padding: 18px 0 14px;
  color: #999;
  font-size: 12px;
  text-align: right;
}
.renuar-breadcrumbs .woocommerce-breadcrumb,
.renuar-breadcrumbs .woocommerce-breadcrumb a { color: #999; }
.renuar-breadcrumbs span { display: inline-block; margin: 0 8px; color: #bbb; }
.renuar-product-layout {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 410px) minmax(420px, 1fr) 146px;
  gap: 14px;
  align-items: start;
  direction: ltr;
  padding: 0 0 72px;
}
.renuar-main-media {
  position: relative;
  background: #eee;
  min-height: 560px;
}
.renuar-main-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}
.renuar-main-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.renuar-shop-look {
  position: absolute;
  z-index: 2;
  left: 10px;
  bottom: 10px;
  min-height: 34px;
  border: 0;
  background: #fff;
  color: #111;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.renuar-shop-look span {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}
.renuar-thumb-rail {
  display: grid;
  gap: 10px;
  align-content: start;
}
.renuar-thumb-rail a {
  display: block;
  height: 168px;
  overflow: hidden;
  background: #eee;
  border: 1px solid transparent;
}
.renuar-thumb-rail a.is-active { border-color: #111; }
.renuar-thumb-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.renuar-product-summary {
  position: sticky;
  top: 126px;
  direction: rtl;
}
.renuar-product-summary__inner {
  padding: 16px 0 0;
}
.renuar-product-id {
  margin: 10px 0 4px;
  color: #777;
  font-size: 12px;
}
.renuar-product-summary .product_title {
  margin: 0 0 8px;
  color: #111;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
}
.renuar-product-summary .price {
  display: block;
  margin: 0 0 22px;
  color: var(--red) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
.renuar-product-summary .price del {
  color: #777;
  font-size: 16px;
  font-weight: 500;
}
.renuar-product-summary .price ins {
  color: #111;
  text-decoration: none;
}
.renuar-stock {
  min-height: 28px;
  margin: 8px 0 10px;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  font-size: 13px;
  font-weight: 400;
  text-align: left;
}
.renuar-product-actions {
  padding: 0 0 12px;
  border: 0;
}
.renuar-product-actions form.cart {
  display: grid;
  gap: 12px;
  margin: 0 !important;
}
.renuar-product-actions .quantity {
  display: none !important;
}
.renuar-product-actions .single_add_to_cart_button,
.renuar-product-actions .button {
  width: 100%;
  min-height: 61px;
  border-radius: 0 !important;
  background: #111 !important;
  border: 1px solid #111 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}
.renuar-divider { border-top: 1px solid #eee; margin: 16px 0 18px; }
.renuar-product-actions .variations {
  width: 100%;
  margin: 0 !important;
  border: 0;
}
.renuar-product-actions .variations tr {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.renuar-product-actions .variations th,
.renuar-product-actions .variations td {
  display: block;
  padding: 0 !important;
  border: 0;
  text-align: right;
}
.renuar-product-actions .variations label {
  color: #111;
  font-size: 13px;
  font-weight: 400;
}
.renuar-product-actions .variations select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.renuar-product-actions .reset_variations {
  display: inline-flex;
  margin-top: 8px;
  color: #777;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
}
.renuar-swatches { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.renuar-swatches--size .renuar-swatch,
.renuar-swatches--button .renuar-swatch {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #777;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
}
.renuar-swatches--size .renuar-swatch.is-selected,
.renuar-swatches--button .renuar-swatch.is-selected {
  background: #111;
  border-color: #111;
  color: #fff;
}
.renuar-swatches--color .renuar-swatch {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.renuar-swatches--color .renuar-swatch span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.renuar-swatches--color .renuar-swatch span.is-light { border: 1px solid #cfcfcf; }
.renuar-swatches--color .renuar-swatch.is-selected span {
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px rgba(215,25,32,.48);
}
.renuar-swatch.is-disabled {
  opacity: .32;
  cursor: not-allowed;
  position: relative;
}
.renuar-swatch.is-disabled:after {
  content: "";
  position: absolute;
  inset: 8px;
  border-top: 1px solid #aaa;
  transform: rotate(-45deg);
}
.renuar-service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 62px;
  color: #999;
  text-align: center;
  font-size: 11px;
}
.renuar-service-row div { display: grid; justify-items: center; gap: 8px; }
.service-icon {
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
}
.service-icon-bag { border: 1px solid #aaa; border-radius: 3px; }
.service-icon-bag:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 7px;
  border: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  top: -7px;
  right: 5px;
}
.service-icon-card { border: 1px solid #aaa; border-radius: 2px; }
.service-icon-card:before { content: ""; position: absolute; right: 2px; left: 2px; top: 6px; border-top: 1px solid #aaa; }
.service-icon-return:before { content: "ג†»"; color: #aaa; font-size: 24px; line-height: 20px; }
.renuar-product-description {
  margin-bottom: 20px;
  color: #777;
  text-align: center;
  font-size: 13px;
}
.renuar-product-description h2 {
  color: #111;
  font-size: 15px;
  font-weight: 700;
}
.renuar-product-panels {
  border-bottom: 1px solid #e8e8e8;
}
.renuar-product-panels details {
  border-top: 1px solid #e8e8e8;
}
.renuar-product-panels summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #111;
  font-weight: 900;
  list-style: none;
}
.renuar-product-panels summary::-webkit-details-marker {
  display: none;
}
.renuar-product-panels summary:after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
}
.renuar-product-panels details[open] summary:after {
  content: "-";
}
.renuar-product-panels details > div {
  padding: 0 0 20px;
  color: #666;
  font-size: 15px;
}
.renuar-related {
  background: var(--bg);
}
.renuar-related .related > h2 {
  display: none;
}
.shop-the-look-section {
  padding: 72px 0 44px;
  background: #fff;
  text-align: center;
}
.shop-the-look-section h2,
.section-head--center h2 {
  margin: 0 0 48px;
  color: #222;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
}
.section-head--center {
  justify-content: center;
  text-align: center;
}
.product-look-grid--center {
  max-width: 720px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-look-card--light {
  min-height: auto;
  background: #fff;
  color: #111;
  box-shadow: none;
}
.product-look-card--light:after { display: none; }
.product-look-card--light img {
  height: 420px;
  object-fit: cover;
  background: #f4f4f4;
}
.product-look-card--light strong,
.product-look-card--light em {
  position: static;
  display: block;
  color: #555;
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
}
.product-look-card--light strong { margin-top: 16px; font-weight: 400; }
.product-look-card--light em { color: #999; }

/* Fallback for installs where WooCommerce keeps rendering the classic product template. */
.single-product .site-main > .product:not(.renuar-product-layout),
.single-product .woo-shell > .product:not(.renuar-product-layout),
.single-product div.product:not(.renuar-product-layout) {
  width: min(1180px, calc(100% - 56px)) !important;
  margin: 0 auto 70px !important;
  display: grid !important;
  grid-template-columns: minmax(320px, 410px) minmax(420px, 1fr) !important;
  gap: 22px !important;
  direction: ltr;
}
.single-product div.product:not(.renuar-product-layout) .summary {
  float: none !important;
  width: auto !important;
  order: 1;
  direction: rtl;
  padding-top: 18px;
}
.single-product div.product:not(.renuar-product-layout) .woocommerce-product-gallery {
  float: none !important;
  width: auto !important;
  order: 2;
  display: grid;
  grid-template-columns: 1fr 126px;
  gap: 12px;
}
.single-product div.product:not(.renuar-product-layout) .woocommerce-product-gallery__wrapper {
  display: contents;
}
.single-product div.product:not(.renuar-product-layout) .woocommerce-product-gallery__image:first-child {
  grid-column: 1;
  grid-row: 1 / span 6;
  background: #eee;
}
.single-product div.product:not(.renuar-product-layout) .woocommerce-product-gallery__image:not(:first-child) {
  grid-column: 2;
  height: 154px;
  overflow: hidden;
  background: #eee;
}
.single-product div.product:not(.renuar-product-layout) .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.single-product div.product:not(.renuar-product-layout) .woocommerce-product-gallery__image:not(:first-child) img {
  min-height: 154px;
}
.single-product div.product:not(.renuar-product-layout) .product_title {
  margin: 0 0 8px;
  color: #111;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
}
.single-product div.product:not(.renuar-product-layout) .price {
  margin: 0 0 20px;
  color: var(--red) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
.single-product div.product:not(.renuar-product-layout) form.cart {
  display: grid;
  gap: 12px;
}
.single-product div.product:not(.renuar-product-layout) form.cart .quantity {
  display: none !important;
}
.single-product div.product:not(.renuar-product-layout) .single_add_to_cart_button {
  width: 100%;
  min-height: 61px;
  border-radius: 0 !important;
  background: #111 !important;
  border: 1px solid #111 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}
.single-product div.product:not(.renuar-product-layout) table.variations select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


.side-cart {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.side-cart[aria-hidden="false"] { pointer-events: auto; }
.side-cart__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .25s ease;
}
.side-cart[aria-hidden="false"] .side-cart__overlay { opacity: 1; }
.side-cart__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(430px, 92vw);
  background: #fff;
  transform: translateX(105%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 80px rgba(0,0,0,.24);
}
.side-cart[aria-hidden="false"] .side-cart__panel { transform: translateX(0); }
.side-cart__head {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 900;
}
.side-cart__head button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 26px;
}
.segal-mini-cart {
  padding: 20px 24px;
  overflow: auto;
}
.segal-mini-cart .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 10px;
}
.fly-to-cart-ghost {
  position: fixed;
  z-index: 200;
  object-fit: cover;
  border-radius: var(--radius);
  pointer-events: none;
  transition: transform .72s cubic-bezier(.18,.78,.2,1), opacity .72s ease;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 58px 0;
}
.site-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}
.footer-logo { width: 140px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.site-footer p, .footer-contact span { color: rgba(255,255,255,.68); }
.footer-menu { margin: 0; padding: 0; list-style: none; columns: 2; }
.footer-menu a { display: inline-flex; padding: 5px 0; color: rgba(255,255,255,.82); }
.footer-contact { display: grid; align-content: start; gap: 12px; }
.footer-contact a { color: var(--accent); font-size: 24px; font-weight: 900; }

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: auto auto auto; min-height: 72px; }
  .menu-toggle { display: inline-grid; }
  .primary-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: rgba(247,245,240,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .25s ease;
    padding: 18px 20px;
  }
  .menu-is-open .primary-nav { transform: translateY(0); }
  .nav-menu { display: grid; justify-content: stretch; gap: 4px; }
  .nav-menu a { min-height: 42px; }
  .header-phone { display: none; }
  .split-layout, .woocommerce div.product, .site-footer__inner, .renuar-product-layout { grid-template-columns: 1fr; }
  .renuar-product-summary { position: static; }
  .renuar-main-media { order: 1; min-height: 620px; }
  .renuar-main-image, .renuar-main-image img { min-height: 620px; }
  .renuar-thumb-rail {
    order: 2;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: auto;
  }
  .renuar-thumb-rail a { min-width: 110px; height: 142px; }
  .renuar-product-summary { order: 3; }
  .tile-grid, .post-grid, .woocommerce ul.products, .commerce-category-grid, .product-look-grid, .lookbook-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-hero__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lookbook-layout { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-store-hero { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .promo-strip {
    justify-content: flex-start;
    overflow: auto;
    white-space: nowrap;
  }
  .brand img { width: 126px; }
  .fashion-hero, .store-hero { min-height: 720px; }
  .fashion-hero__content { padding-bottom: 90px; }
  .store-hero__content { padding: 90px 0 280px; }
  .store-hero__rail { grid-template-columns: 1fr; bottom: 14px; }
  .hero-actions, .section-head { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .image-stack, .tile-grid, .post-grid, .woocommerce ul.products, .commerce-category-grid, .product-look-grid, .lookbook-layout { grid-template-columns: 1fr; }
  .commerce-category-card { min-height: 260px; }
  .product-look-card { min-height: 330px; }
  .lookbook-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .lookbook-mosaic img { min-height: 250px; }
  .lookbook-mosaic img:first-child { grid-row: auto; }
  .image-stack img:last-child { transform: none; }
  .fashion-tile { min-height: 280px; }
  .renuar-breadcrumbs,
  .renuar-product-layout {
    width: calc(100% - 20px);
  }
  .renuar-main-media, .renuar-main-image, .renuar-main-image img { min-height: 520px; }
  .renuar-thumb-rail { grid-template-columns: repeat(4, 100px); }
  .renuar-thumb-rail a { min-width: 100px; height: 132px; }
  .renuar-product-summary__inner {
    padding: 8px 2px 0;
  }
  .renuar-service-row { margin-bottom: 34px; }
  .product-look-grid--center { grid-template-columns: 1fr; }
  .product-look-card--light img { height: 360px; }
  .site-footer { padding: 42px 0; }
}

/* Renuar-style minimal header for Segal menswear. */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  backdrop-filter: none;
}
.site-header__inner {
  min-height: 58px;
  width: min(1320px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  direction: ltr;
}
.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 172px;
  max-height: 34px;
  object-fit: contain;
}
.header-utility,
.header-sections {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-utility { justify-self: start; }
.header-sections { justify-self: end; }
.header-sections a {
  color: #111;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
.header-sections a:hover {
  border-bottom: 1px solid #111;
}
.renuar-header-icon {
  position: relative;
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111;
  padding: 0;
  cursor: pointer;
}
.cart-trigger.renuar-header-icon {
  width: 21px;
  height: 21px;
  border-radius: 0;
  background: transparent;
}
.cart-trigger.renuar-header-icon .cart-trigger__icon {
  inset: 7px 4px 3px;
  border: 1.5px solid #111;
  border-top: 0;
  border-radius: 0 0 2px 2px;
}
.cart-trigger.renuar-header-icon .cart-trigger__icon:before {
  width: 8px;
  height: 6px;
  border: 1.5px solid #111;
  border-bottom: 0;
  top: -6px;
  right: 2px;
}
.cart-trigger.renuar-header-icon .cart-trigger__count {
  min-width: 14px;
  height: 14px;
  top: -9px;
  left: -9px;
  padding: 0 3px;
  font-size: 9px;
}
.menu-toggle {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  width: 20px;
  height: 1px;
  margin: 3px auto;
  background: #111;
}
.primary-nav {
  top: 92px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #eee;
}
.icon-pin,
.icon-phone,
.icon-search,
.icon-user {
  position: relative;
  width: 19px;
  height: 19px;
  display: block;
}
.icon-pin:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 2px;
  right: 4px;
  border: 1.5px solid #111;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.icon-pin:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 6px;
  right: 8px;
  border-radius: 50%;
  background: #111;
}
.icon-phone:before {
  content: "";
  position: absolute;
  inset: 3px 5px 3px 6px;
  border: 1.5px solid #111;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 9px 0;
  transform: rotate(25deg);
}
.icon-search:before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 2px;
  right: 4px;
  border: 1.5px solid #111;
  border-radius: 50%;
}
.icon-search:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.5px;
  top: 13px;
  right: 2px;
  background: #111;
  transform: rotate(-45deg);
  transform-origin: right center;
}
.icon-user:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 2px;
  right: 6px;
  border: 1.5px solid #111;
  border-radius: 50%;
}
.icon-user:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 7px;
  right: 2px;
  bottom: 2px;
  border: 1.5px solid #111;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.branches-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) 0;
}
.branches-hero {
  margin-bottom: 34px;
  text-align: center;
}
.branches-hero h1 {
  margin: 0;
  color: #111;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1;
  font-weight: 900;
}
.branches-hero p {
  margin: 14px auto 0;
  max-width: 560px;
  color: #666;
  font-size: 18px;
}
.branches-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.branch-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #111;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.branch-card:hover {
  border-color: #111;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.branch-card__label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.branch-card h2 {
  margin: 18px 0 8px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}
.branch-card p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.45;
}
.branch-card strong {
  margin-top: 24px;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.page-store-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
  min-height: 520px;
  background: #111;
  color: #fff;
}
.page-store-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.page-store-hero > div {
  display: grid;
  align-content: center;
  padding: clamp(32px, 6vw, 76px);
}
.page-store-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 88px);
  line-height: .96;
  font-weight: 900;
}
.page-store-hero p {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
}
.button-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.65);
}
.page-collection-band {
  padding-top: 34px;
}
.commerce-category-grid--page .commerce-category-card {
  min-height: 300px;
}
.content-band--text {
  padding-top: 0;
}
.page-content--clean {
  max-width: 860px;
  font-size: 18px;
  color: #333;
}
.page-content--clean .button-wrap,
.page-content--clean .dropdown-btn,
.page-content--clean .dd-menu,
.page-content--clean .dd-input,
.page-content--clean [id="phone"],
.page-content--clean [id="pencil"] {
  display: none !important;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.brand-card {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid #e6e6e6;
  background: #fff;
}
.brand-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}
.brand-card h2 {
  margin: 26px 0 0;
  color: #111;
  font-size: 22px;
  line-height: 1.1;
}

@media (max-width: 640px) {
  .site-header__inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto 1fr;
  }
  .header-utility { gap: 12px; }
  .header-utility .renuar-header-icon:first-child,
  .header-utility .renuar-header-icon:nth-child(2) {
    display: none;
  }
  .brand img { width: 138px; }
  .header-sections { gap: 14px; }
  .branches-grid { grid-template-columns: 1fr; }
  .branch-card { min-height: 170px; }
  .page-store-hero {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .page-store-hero img,
  .page-store-hero {
    min-height: auto;
  }
  .page-store-hero img {
    aspect-ratio: 4 / 5;
  }
  .brand-grid { grid-template-columns: 1fr; }
}

