﻿:root {
  --bg: #fbfaf8;
  --ink: #111111;
  --muted: #6a6a6a;
  --line: rgba(20, 20, 20, .13);
  --panel: #ffffff;
  --accent: #d71920;
  --dark-accent: #111111;
  --price: #111111;
  --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;
}
.renuar-header-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-trigger.renuar-header-icon {
  width: 21px;
  height: 21px;
  border-radius: 0;
  background: transparent;
}
.cart-trigger.renuar-header-icon .cart-trigger__count {
  min-width: 14px;
  height: 14px;
  top: -8px;
  left: -8px;
  padding: 0 3px;
  font-size: 9px;
}
.search-trigger {
  appearance: none;
}
.site-search-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}
.site-search-panel[aria-hidden="false"] {
  pointer-events: auto;
}
.site-search-panel__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.34);
  opacity: 0;
  transition: opacity .22s ease;
}
.site-search-panel[aria-hidden="false"] .site-search-panel__overlay {
  opacity: 1;
}
.site-search-panel__box {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: clamp(28px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.16);
  transform: translateY(-105%);
  transition: transform .24s ease;
}
.site-search-panel[aria-hidden="false"] .site-search-panel__box {
  transform: translateY(0);
}
.site-search-panel__close {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.site-search-form {
  width: min(920px, 100%);
  margin-inline: auto;
}
.site-search-form label {
  display: block;
  margin-bottom: 18px;
  color: #111;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
}
.site-search-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid #111;
}
.site-search-form input {
  min-height: 66px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
}
.site-search-form button[type="submit"] {
  min-width: 118px;
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.site-search-form p {
  margin: 14px 0 0;
  color: #777;
  font-size: 14px;
}
.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;
}
.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; }
}

/* v1.2 page system and repaired header */
.promo-strip {
  background: #111 !important;
  color: #fff !important;
  min-height: 36px;
  font-size: 13px;
  line-height: 1.2;
}
.site-header__inner {
  min-height: 62px !important;
}
.header-sections a {
  display: none !important;
}
.renuar-header-icon,
.cart-trigger.renuar-header-icon {
  width: 24px !important;
  height: 24px !important;
  color: #111 !important;
}
.header-utility {
  gap: 18px !important;
}
.primary-nav {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 45;
  padding: 18px 32px !important;
  background: #fff !important;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  box-shadow: 0 24px 48px rgba(0,0,0,.08);
  transform: translateY(-12px) !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.menu-is-open .primary-nav {
  transform: translateY(0) !important;
  opacity: 1;
  pointer-events: auto;
}
.primary-nav .nav-menu {
  width: min(980px, 100%);
  margin-inline: auto;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.menu-toggle span {
  transition: transform .18s ease;
}
.segal-page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 5vw, 58px) auto 0;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  background: #111;
  color: #fff;
  overflow: hidden;
}
.segal-page-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.segal-page-hero > div {
  display: grid;
  align-content: center;
  padding: clamp(32px, 6vw, 78px);
}
.segal-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
  font-weight: 900;
}
.segal-page-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 19px;
}
.segal-page-hero--blog,
.segal-page-hero--brands {
  background: #fff;
  color: #111;
  border-bottom: 1px solid #eee;
}
.segal-page-hero--blog p,
.segal-page-hero--brands p {
  color: #666;
}
.segal-clean-copy {
  max-width: 860px;
  color: #303030;
  font-size: 18px;
  line-height: 1.9;
}
.segal-clean-copy .button-wrap,
.segal-clean-copy .dropdown-btn,
.segal-clean-copy .dd-menu,
.segal-clean-copy .dd-input,
.segal-clean-copy [id="phone"],
.segal-clean-copy [id="pencil"] {
  display: none !important;
}
.segal-checkout-shell {
  padding: clamp(40px, 7vw, 88px) 0;
  background: #f7f7f7;
}
.segal-checkout-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.segal-checkout-head h1 {
  margin: 0;
  color: #111;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  font-weight: 900;
}
.segal-checkout-head p {
  color: #666;
  font-size: 18px;
}
.segal-commerce-panel {
  padding: clamp(18px, 4vw, 34px);
  background: #fff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
}
.segal-commerce-panel .wc-block-cart,
.segal-commerce-panel .wc-block-checkout,
.segal-commerce-panel .woocommerce-cart-form {
  margin: 0 !important;
}
.segal-commerce-panel .checkout-button,
.segal-commerce-panel button.button,
.segal-commerce-panel .wc-block-components-button,
.segal-commerce-panel #place_order {
  border-radius: 0 !important;
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
  min-height: 54px;
  font-weight: 900;
}
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-tile {
  min-height: 170px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e6e6e6;
}
.contact-tile span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.contact-tile strong {
  color: #111;
  font-size: 24px;
  line-height: 1.15;
}

@media (max-width: 980px) {
  .primary-nav {
    position: absolute !important;
    top: 100% !important;
    transform: translateY(-12px) !important;
  }
  .menu-is-open .primary-nav {
    transform: translateY(0) !important;
  }
  .primary-nav .nav-menu {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
  }
  .segal-page-hero {
    grid-template-columns: 1fr;
  }
  .segal-page-hero img {
    min-height: 420px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .promo-strip {
    justify-content: flex-start !important;
    overflow-x: auto;
    white-space: nowrap;
  }
  .header-utility {
    gap: 12px !important;
  }
  .header-utility .renuar-header-icon:first-child {
    display: inline-grid !important;
  }
  .header-utility .renuar-header-icon:nth-child(2) {
    display: none !important;
  }
  .renuar-header-icon,
  .cart-trigger.renuar-header-icon {
    width: 22px !important;
    height: 22px !important;
  }
  .segal-page-hero {
    width: calc(100% - 24px);
    min-height: auto;
  }
  .segal-page-hero img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
  .segal-commerce-panel {
    padding: 14px;
  }
}

/* Renuar-style white footer */
.site-footer--renuar {
  background: #fff !important;
  color: #111 !important;
  padding: 54px 0 24px !important;
  border-top: 1px solid #eee;
}
.site-footer--renuar .site-footer__inner {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(140px, .75fr) repeat(2, minmax(170px, .8fr));
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}
.footer-newsletter span {
  display: block;
  color: #111;
  font-size: 18px;
  font-weight: 500;
}
.footer-newsletter h2 {
  margin: 0;
  color: #111;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: 0;
}
.footer-newsletter p {
  margin: 6px 0 18px;
  color: #111 !important;
  font-size: 14px;
  font-weight: 700;
}
.footer-newsletter small {
  display: block;
  margin-bottom: 8px;
  color: #999;
  text-align: center;
  font-size: 12px;
}
.footer-newsletter-form {
  display: grid;
  gap: 7px;
}
.footer-newsletter-form input[type="email"],
.footer-newsletter-form input[type="tel"],
.footer-newsletter-form input[type="text"] {
  width: 100%;
  min-height: 34px;
  border: 1px solid #bbb;
  border-radius: 0;
  background: #fff;
  color: #111;
  padding: 0 10px;
  text-align: right;
  font-size: 13px;
}
.footer-newsletter-form label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: #777;
  font-size: 10px;
  line-height: 1.35;
}
.footer-newsletter-form label input {
  margin-top: 3px;
}
.footer-newsletter-form label,
.footer-newsletter-form label span {
  font-size: 10px !important;
  line-height: 1.35 !important;
}
.footer-newsletter-form button {
  justify-self: center;
  min-width: 92px;
  min-height: 46px;
  margin-top: 8px;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-weight: 500;
}
.footer-newsletter-form button:hover {
  background: #111;
  color: #fff;
}
.footer-contact-form {
  max-width: 340px;
  text-align: right;
}
.footer-contact-form h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 800;
}
.footer-contact-form p {
  margin: 0 0 14px;
  color: #555 !important;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}
.footer-contact-form .footer-newsletter-form label,
.footer-contact-form .footer-newsletter-form label span {
  font-size: 10px !important;
  line-height: 1.45 !important;
  color: #777 !important;
  font-weight: 400 !important;
}
.footer-contact-form .footer-newsletter-form button {
  justify-self: start;
  min-height: 40px;
  padding: 0 24px;
}
.footer-social {
  text-align: center;
}
.footer-social h2,
.footer-column h2 {
  margin: 0 0 22px;
  color: #555;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 400;
}
.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 17px;
}
.footer-social-links a {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #6c6c6c;
}
.footer-social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-column {
  text-align: right;
}
.footer-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.footer-link-list a {
  color: #8a8a8a;
  font-size: 15px;
  line-height: 1.35;
  transition: color .18s ease;
}
.footer-link-list a:hover {
  color: #111;
}
.footer-blog .footer-link-list {
  gap: 13px;
}
.footer-blog .footer-link-list a {
  font-size: 14px;
}
.site-footer__bottom {
  width: min(1180px, calc(100% - 44px));
  margin: 44px auto 0;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #aaa;
  font-size: 12px;
}
.site-footer__bottom a {
  color: #aaa;
  font-size: 12px;
}
.site-footer__bottom a:hover {
  color: #111;
}

/* v1.5.0 video opener, updated logo, mobile product grid and infinite products */
.brand img {
  width: 190px !important;
  max-height: 46px !important;
}
.site-header {
  z-index: 80;
}
.home .site-header {
  background: rgba(255,255,255,.88);
}
.segal-video-opener {
  position: relative;
  min-height: clamp(560px, 92vh, 920px);
  margin-top: -98px;
  padding-top: 98px;
  overflow: hidden;
  background: #111;
  pointer-events: none;
}
.segal-video-opener video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.segal-video-opener:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.24));
}
.woocommerce nav.woocommerce-pagination {
  display: none !important;
}
.segal-load-products {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.segal-load-products button {
  min-width: 190px;
  min-height: 48px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}
.segal-load-products button[disabled] {
  opacity: .55;
  cursor: wait;
}
.segal-load-products span {
  min-height: 18px;
  color: #777;
  font-size: 13px;
}
.segal-load-products.is-complete {
  display: none;
}

@media (max-width: 640px) {
  .brand img {
    width: 150px !important;
    max-height: 38px !important;
  }
  .segal-video-opener {
    min-height: 76vh;
    margin-top: -86px;
    padding-top: 86px;
  }
  .woocommerce ul.products,
  .home-product-first .woocommerce ul.products,
  .image-stack,
  .tile-grid,
  .post-grid,
  .commerce-category-grid,
  .product-look-grid,
  .lookbook-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .home-product-first .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 38px;
    font-size: 13px;
    line-height: 1.35;
  }
  .woocommerce ul.products li.product .price,
  .home-product-first .woocommerce ul.products li.product .price {
    font-size: 13px;
  }
  .woocommerce ul.products li.product .button,
  .home-product-first .woocommerce ul.products li.product .button {
    min-height: 40px;
    padding: 0 8px !important;
    font-size: 11px !important;
  }
}

/* v1.5.1 transparent video header */
.brand img {
  width: clamp(260px, 24vw, 430px) !important;
  max-height: 96px !important;
}
.home .promo-strip {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 92;
  background: rgba(0,0,0,.18) !important;
  color: #fff !important;
  border: 0 !important;
  backdrop-filter: none;
}
.home .site-header {
  position: fixed;
  top: 36px;
  right: 0;
  left: 0;
  z-index: 91;
  background: transparent !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transition: background .24s ease, color .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.home .site-header .renuar-header-icon,
.home .site-header .cart-trigger.renuar-header-icon,
.home .site-header .nav-menu a,
.home .site-header .menu-toggle {
  color: inherit !important;
}
.home .site-header .menu-toggle span {
  background: currentColor;
}
.home .site-header .brand img {
  filter: invert(1);
}
.home .site-header.is-scrolled {
  background: rgba(255,255,255,.96) !important;
  color: #111 !important;
  border-bottom-color: #eee !important;
  box-shadow: 0 10px 35px rgba(0,0,0,.07) !important;
  backdrop-filter: blur(16px) !important;
}
.home .site-header.is-scrolled .brand img {
  filter: none;
}
.home .segal-video-opener {
  margin-top: 0;
  padding-top: 0;
  min-height: 100vh;
}

@media (max-width: 640px) {
  .brand img {
    width: clamp(210px, 62vw, 310px) !important;
    max-height: 78px !important;
  }
  .home .site-header {
    top: 36px;
  }
  .home .segal-video-opener {
    min-height: 88vh;
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 1100px) {
  .site-footer--renuar .site-footer__inner {
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(140px, 1fr));
  }
  .footer-social {
    text-align: right;
  }
  .footer-social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-footer--renuar {
    padding-top: 38px !important;
  }
  .site-footer--renuar .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }
  .footer-newsletter,
  .footer-social {
    grid-column: 1 / -1;
  }
  .footer-newsletter h2 {
    font-size: 42px;
  }
}

@media (max-width: 520px) {
  .site-footer--renuar .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .footer-social-links {
    justify-content: flex-start;
  }
  .site-footer__bottom {
    display: grid;
    justify-items: center;
    gap: 6px;
  }
}

/* v1.2.6 Renuar-inspired page layout + centered cart buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce ul.products li.product .button,
.single_add_to_cart_button,
.add_to_cart_button,
.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
  white-space: nowrap;
}
.woocommerce ul.products li.product .button,
.renuar-product-actions .single_add_to_cart_button,
.renuar-product-actions .button,
.single-product div.product:not(.renuar-product-layout) .single_add_to_cart_button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 18px !important;
}

.renuar-home-page {
  background: #fff;
  color: #111;
}
.renuar-home-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: #f2f2f2;
}
.renuar-home-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.44));
}
.renuar-home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.renuar-home-hero__copy {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 36px));
  padding: 0 0 clamp(46px, 9vw, 92px);
  color: #fff;
  text-align: center;
}
.renuar-home-hero__copy span {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  letter-spacing: .08em;
}
.renuar-home-hero__copy h1,
.renuar-home-hero__copy h2 {
  margin: 0;
  font-size: clamp(54px, 9vw, 116px);
  line-height: .9;
  font-weight: 900;
}
.renuar-home-hero__copy p {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 2vw, 21px);
}
.renuar-home-cta {
  min-width: 132px;
  min-height: 44px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}
.renuar-category-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 42px);
  overflow-x: auto;
  padding: 0 0 18px;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}
.renuar-category-strip a {
  color: #111;
  font-size: 15px;
  font-weight: 700;
}
.renuar-editorial-row {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.renuar-editorial-row a {
  position: relative;
  min-height: clamp(330px, 46vw, 620px);
  display: block;
  overflow: hidden;
  background: #eee;
}
.renuar-editorial-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.renuar-editorial-row span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 9px 13px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}
.renuar-collection-block {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(54px, 8vw, 92px) auto;
}
.renuar-section-title {
  margin-bottom: 30px;
  text-align: center;
}
.renuar-section-title h2 {
  margin: 0;
  color: #111;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 400;
}
.renuar-section-title p {
  margin: 12px auto 0;
  max-width: 560px;
  color: #777;
  font-size: 16px;
}
.renuar-collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.renuar-collection-grid a {
  display: grid;
  gap: 10px;
  color: #111;
  text-align: center;
}
.renuar-collection-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f4f4f4;
}
.renuar-collection-grid strong {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
}
.renuar-collection-grid span {
  color: #999;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}
.renuar-copy-band {
  padding: 0 0 clamp(54px, 8vw, 92px);
  background: #fff;
}

.segal-collection-page {
  --collection-accent: #b5121b;
  background: #fff;
  color: #111;
}
.segal-collection-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 74px) 0 0;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: stretch;
}
.segal-collection-copy {
  min-height: clamp(430px, 52vw, 650px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-top: 1px solid #111;
  border-bottom: 1px solid #e7e7e7;
}
.segal-collection-copy span {
  color: var(--collection-accent);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.segal-collection-copy h1 {
  max-width: 620px;
  margin: 16px 0 0;
  color: #111;
  font-size: clamp(46px, 7vw, 94px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: 0;
}
.segal-collection-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #555;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}
.segal-collection-copy a {
  min-width: 170px;
  min-height: 48px;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  font-size: 13px;
  font-weight: 900;
}
.segal-collection-hero figure {
  margin: 0;
  min-height: clamp(430px, 52vw, 650px);
  overflow: hidden;
  background: #f4f4f4;
}
.segal-collection-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.segal-collection-feature-row {
  width: min(1060px, calc(100% - 32px));
  margin: clamp(34px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.segal-collection-feature-row div {
  min-height: 118px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-left: 1px solid #e8e8e8;
}
.segal-collection-feature-row div:last-child {
  border-left: 0;
}
.segal-collection-feature-row span {
  color: var(--collection-accent);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
}
.segal-collection-feature-row strong {
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 800;
}
.segal-collection-text {
  width: min(920px, calc(100% - 32px));
  margin: clamp(38px, 6vw, 74px) auto;
  columns: 2 320px;
  column-gap: clamp(34px, 5vw, 70px);
}
.segal-collection-text p {
  margin: 0 0 20px;
  color: #333;
  font-size: 17px;
  line-height: 1.95;
  break-inside: avoid;
}
.segal-collection-products {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(54px, 8vw, 92px) auto;
}
.segal-collection-page--business .segal-collection-hero {
  width: 100%;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  background: #111;
}
.segal-collection-page--business .segal-collection-copy {
  width: min(560px, calc(100% - 32px));
  margin-inline-start: auto;
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.segal-collection-page--business .segal-collection-copy h1,
.segal-collection-page--business .segal-collection-copy p {
  color: #fff;
}
.segal-collection-page--business .segal-collection-copy a {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.segal-collection-page--business .segal-collection-hero figure {
  min-height: 680px;
}
.segal-collection-page--wedding .segal-collection-copy h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
.segal-collection-page--men .segal-collection-hero {
  grid-template-columns: 1fr 1fr;
}
.segal-collection-page--shoes .segal-collection-hero {
  grid-template-columns: minmax(360px, 1.2fr) minmax(280px, .8fr);
}
.segal-collection-page--shoes .segal-collection-copy {
  order: 2;
}
.segal-collection-page--shoes .segal-collection-hero figure {
  order: 1;
}
.segal-collection-page--shirts {
  background: linear-gradient(90deg, #fff 0%, #fff 58%, #f6f6f6 58%, #f6f6f6 100%);
}
.segal-collection-page--shirts .segal-collection-copy {
  border-top-color: var(--collection-accent);
}

@media (max-width: 980px) {
  .renuar-collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .segal-collection-hero,
  .segal-collection-page--business .segal-collection-hero,
  .segal-collection-page--men .segal-collection-hero,
  .segal-collection-page--shoes .segal-collection-hero {
    grid-template-columns: 1fr;
  }
  .segal-collection-page--business .segal-collection-copy {
    margin: 0 auto;
    padding: 48px 0;
  }
  .segal-collection-page--shoes .segal-collection-copy,
  .segal-collection-page--shoes .segal-collection-hero figure {
    order: initial;
  }
  .segal-collection-page--shirts {
    background: #fff;
  }
}

@media (max-width: 640px) {
  .renuar-home-hero {
    min-height: 650px;
  }
  .renuar-editorial-row {
    grid-template-columns: 1fr;
  }
  .renuar-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .segal-collection-copy,
  .segal-collection-hero figure,
  .segal-collection-page--business .segal-collection-hero figure {
    min-height: 420px;
  }
  .segal-collection-feature-row {
    grid-template-columns: 1fr;
  }
  .segal-collection-feature-row div {
    border-left: 0;
    border-bottom: 1px solid #e8e8e8;
  }
  .segal-collection-feature-row div:last-child {
    border-bottom: 0;
  }
}

/* v1.2.7 homepage products first + Woo account */
.home-product-first {
  padding: clamp(42px, 7vw, 86px) 0 clamp(34px, 5vw, 62px);
  background: #fff;
}
.home-product-first .woocommerce {
  margin-top: 26px;
}
.home-section-title {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}
.home-section-title span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.home-section-title h1 {
  margin: 0;
  color: #111;
  font-family: Heebo, Arial, sans-serif;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}
.home-section-title a {
  color: #111;
  font-size: 14px;
  font-weight: 900;
  border-bottom: 1px solid #111;
}
.home-fashion-hero {
  min-height: clamp(520px, 70vh, 760px);
}
.home-product-first .woocommerce ul.products li.product {
  border: 0;
  box-shadow: none;
  background: #fff;
  padding-bottom: 8px;
}
.home-product-first .woocommerce ul.products li.product a img {
  margin-bottom: 12px;
  background: #f4f4f4;
}
.home-product-first .woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}
.home-product-first .woocommerce ul.products li.product .price {
  padding: 0 0 10px;
  text-align: center;
  font-size: 14px;
}
.home-product-first .woocommerce ul.products li.product .button {
  width: 100%;
  margin: 0;
  min-height: 44px;
  border-radius: 0;
}
.loop-color-swatches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 28px;
  margin: 0 0 12px;
}
.loop-color-swatch {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.loop-color-swatch span {
  width: 17px;
  height: 17px;
  display: block;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.loop-color-swatch.is-light span {
  box-shadow: inset 0 0 0 1px #cfcfcf;
}
.loop-color-swatch.is-selected {
  box-shadow: 0 0 0 1px #111;
}
.loop-color-swatch:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.segal-account-shell {
  padding: clamp(42px, 7vw, 86px) 0;
  background: #f7f7f7;
}
.segal-account-panel {
  max-width: 1040px;
  margin-inline: auto;
  padding: clamp(18px, 4vw, 34px);
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
}
.segal-account-panel .woocommerce {
  margin: 0;
}
.segal-account-panel .woocommerce-form-login,
.segal-account-panel .woocommerce-form-register {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.segal-account-panel .woocommerce h2 {
  margin-top: 0;
  color: #111;
  font-size: 28px;
  line-height: 1.1;
}
.segal-account-panel .woocommerce-Input,
.segal-account-panel input.input-text {
  min-height: 46px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0 12px;
}
.segal-account-panel .woocommerce-button,
.segal-account-panel button.button {
  min-height: 48px;
  border-radius: 0 !important;
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}
.segal-account-panel .woocommerce-MyAccount-navigation ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.segal-account-panel .woocommerce-MyAccount-navigation a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #ddd;
  color: #111;
  font-weight: 700;
}
.segal-account-panel .woocommerce-MyAccount-navigation .is-active a {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* v1.4.1 compact breadcrumbs + clean imported blog content */
.segal-breadcrumbs {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #eee;
  color: #888;
  font-size: 13px;
  line-height: 1.4;
}
.segal-breadcrumbs a {
  color: #111;
  font-weight: 700;
}
.segal-breadcrumbs span:last-child {
  color: #777;
}
.segal-article {
  background: #fff;
  color: #111;
  overflow-x: clip;
}
.segal-article-shell {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(34px, 6vw, 72px) auto clamp(58px, 9vw, 112px);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}
.segal-article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #111;
  color: #777;
}
.segal-article-aside span {
  color: #b5121b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.segal-article-aside strong {
  color: #111;
  font-size: 18px;
}
.segal-article-aside a {
  color: #111;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.segal-article-content {
  max-width: 820px;
  min-width: 0;
  color: #222 !important;
  font-size: 18px;
  line-height: 1.95;
  overflow-wrap: anywhere;
  word-break: normal;
}
.segal-article-content h1 {
  margin: 0 0 28px;
  color: #111 !important;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}
.segal-article-content *,
.segal-article-content [style],
.segal-article-content span,
.segal-article-content p,
.segal-article-content li,
.segal-article-content strong,
.segal-article-content h2,
.segal-article-content h3,
.segal-article-content h4 {
  color: inherit !important;
}
.segal-article-content a,
.segal-article-content a span {
  color: #b5121b !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.segal-article-content h2,
.segal-article-content h3 {
  margin: 38px 0 14px;
  color: #111 !important;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 900;
}
.segal-article-content p,
.segal-article-content ul,
.segal-article-content ol {
  margin: 0 0 22px;
}
.segal-article-content > *,
.segal-article-content .wp-block-group,
.segal-article-content .wp-block-column,
.segal-article-content .wp-block-cover,
.segal-article-content .wp-block-media-text {
  max-width: 100% !important;
  box-sizing: border-box;
}
.segal-article-content img {
  max-width: 100%;
  height: auto;
  margin: 28px auto;
  display: block;
}
.segal-article-content iframe,
.segal-article-content video,
.segal-article-content embed,
.segal-article-content object {
  max-width: 100%;
}
.segal-article-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}
.segal-article-featured {
  margin: 0 0 30px;
}
.segal-article-featured img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
.segal-article-content .button-wrap,
.segal-article-content .dropdown-btn,
.segal-article-content .dd-menu,
.segal-article-content .dd-input,
.segal-article-content [id="phone"],
.segal-article-content [id="pencil"] {
  display: none !important;
}

/* v1.5.3 force prominent header logo after legacy max-height rules */
.site-header .brand {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 0 !important;
}
.site-header .brand img {
  width: clamp(320px, 28vw, 520px) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}
.site-header__inner {
  min-height: 92px !important;
}
.home .site-header__inner {
  min-height: 104px !important;
}
.home .site-header.is-scrolled .site-header__inner {
  min-height: 86px !important;
}

@media (max-width: 640px) {
  .site-header .brand img {
    width: clamp(240px, 70vw, 360px) !important;
    height: auto !important;
    max-height: none !important;
  }
  .site-header__inner,
  .home .site-header__inner,
  .home .site-header.is-scrolled .site-header__inner {
    min-height: 82px !important;
  }
}

/* v1.5.4 solid black shipping promo strip */
.promo-strip,
.home .promo-strip,
.home.home-header-scrolled .promo-strip {
  background: #000 !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* v1.5.5 balanced header logo sizing */
.site-header .brand img {
  width: clamp(160px, 13vw, 240px) !important;
  height: auto !important;
  max-height: none !important;
}
.site-header__inner,
.home .site-header__inner {
  min-height: 70px !important;
}
.home .site-header.is-scrolled .site-header__inner {
  min-height: 68px !important;
}
@media (max-width: 640px) {
  .site-header .brand img {
    width: clamp(130px, 36vw, 170px) !important;
    height: auto !important;
    max-height: none !important;
  }
  .site-header__inner,
  .home .site-header__inner,
  .home .site-header.is-scrolled .site-header__inner {
    min-height: 62px !important;
  }
}

/* v1.5.6 compact logo final override */
.site-header .brand img,
.home .site-header .brand img,
.home .site-header.is-scrolled .brand img {
  width: clamp(128px, 10.4vw, 192px) !important;
  height: auto !important;
  max-height: 43px !important;
}
@media (max-width: 640px) {
  .site-header .brand img,
  .home .site-header .brand img,
  .home .site-header.is-scrolled .brand img {
    width: clamp(104px, 28.8vw, 136px) !important;
    max-height: 34px !important;
  }
}

/* v1.5.7 logo reduced by 20 percent */

/* v1.5.8 readable transparent header over bright video frames */
.home .site-header {
  color: #111 !important;
  text-shadow: 0 1px 12px rgba(255,255,255,.65);
}
.home .site-header .brand img {
  filter: none !important;
}
.home .site-header .menu-toggle span {
  background: #111 !important;
}
.home .site-header.is-scrolled {
  text-shadow: none !important;
}

/* v1.5.9 mobile category strip edge fix */
@media (max-width: 640px) {
  .renuar-category-strip {
    width: 100% !important;
    max-width: 100% !important;
    margin: 18px 0 0 !important;
    justify-content: flex-start !important;
    gap: 22px !important;
    padding: 0 20px 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .renuar-category-strip a {
    flex: 0 0 auto;
    font-size: 14px !important;
    line-height: 1.25;
  }
  .renuar-category-strip::-webkit-scrollbar {
    height: 4px;
  }
  .renuar-category-strip::-webkit-scrollbar-track {
    background: #efefef;
  }
  .renuar-category-strip::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 999px;
  }
}

/* v1.5.10 black product prices */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.renuar-product-summary .price,
.renuar-product-summary .price ins,
.single-product div.product:not(.renuar-product-layout) .price,
.home-product-first .woocommerce ul.products li.product .price,
.woocommerce-Price-amount,
.price .amount {
  color: #111 !important;
}
.renuar-product-summary .price del,
.price del,
del .woocommerce-Price-amount {
  color: #8a8a8a !important;
}

/* v1.5.11 regular weight prices */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.renuar-product-summary .price,
.renuar-product-summary .price ins,
.single-product div.product:not(.renuar-product-layout) .price,
.home-product-first .woocommerce ul.products li.product .price,
.woocommerce-Price-amount,
.price .amount {
  font-weight: 400 !important;
}

@media (max-width: 760px) {
  .single-post .site-main,
  .single-blog .site-main {
    overflow-x: hidden;
  }
  .segal-breadcrumbs {
    width: min(100% - 24px, 100%);
    padding: 14px 0 12px;
    gap: 6px;
    font-size: 11px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
  .segal-breadcrumbs span:last-child {
    flex-basis: 100%;
  }
  .segal-article-shell {
    width: min(100% - 24px, 100%);
    margin: 24px auto 56px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .segal-article-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding-top: 12px;
    border-top-color: #ddd;
    font-size: 12px;
  }
  .segal-article-aside span,
  .segal-article-aside strong,
  .segal-article-aside a {
    font-size: 12px;
  }
  .segal-article-content {
    width: 100%;
    max-width: none;
    font-size: 15px;
    line-height: 1.8;
  }
  .segal-article-content h1 {
    margin-bottom: 18px;
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.12;
  }
  .segal-article-content h2,
  .segal-article-content h3 {
    margin: 30px 0 12px;
    font-size: clamp(21px, 7vw, 28px);
  }
  .segal-article-content p,
  .segal-article-content ul,
  .segal-article-content ol {
    margin-bottom: 18px;
  }
  .segal-article-content ul,
  .segal-article-content ol {
    padding-inline-start: 18px;
  }
  .segal-article-content img {
    width: auto;
    max-width: 100% !important;
    margin: 20px auto;
  }
  .segal-article-featured {
    margin-bottom: 20px;
  }
  .segal-article-featured img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
  }
  .segal-article-content .alignwide,
  .segal-article-content .alignfull,
  .segal-article-content [style*="width"] {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* v1.5.18 shipping policy page */
.segal-policy-hero {
  padding: clamp(34px, 6vw, 78px) 0 24px;
  background: #fff;
  color: #111;
  border-bottom: 1px solid #ececec;
  direction: rtl;
}
.segal-policy-hero .woocommerce-breadcrumb {
  margin: 0 0 28px;
  font-size: 13px;
  color: #777;
}
.segal-policy-hero .eyebrow {
  display: block;
  margin: 0 0 10px;
  color: #b5121b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.segal-policy-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1;
  font-weight: 900;
}
.segal-policy-hero p {
  max-width: 780px;
  margin: 20px 0 0;
  color: #333;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}
.segal-policy-page {
  padding: clamp(34px, 6vw, 86px) 0;
  background: #fff;
  direction: rtl;
}
.segal-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(38px, 6vw, 76px);
}
.segal-policy-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid #e5e5e5;
  background: #fff;
}
.segal-policy-card span {
  display: block;
  margin-bottom: 34px;
  color: #b5121b;
  font-size: 13px;
  font-weight: 800;
}
.segal-policy-card h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}
.segal-policy-card p,
.segal-policy-copy p {
  margin: 0;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.9;
}
.segal-policy-copy {
  max-width: 940px;
  margin: 0 auto;
}
.segal-policy-copy h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}
.segal-policy-copy p + p {
  margin-top: 18px;
}
.segal-policy-page-content {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 86px) 20px;
  direction: rtl;
  color: #111;
}
.segal-policy-page-content h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1;
  font-weight: 900;
}
.segal-policy-page-content h2 {
  margin: 38px 0 12px;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}
.segal-policy-page-content p {
  margin: 0;
  color: #3d3d3d;
  font-size: 17px;
  line-height: 1.9;
}
.segal-policy-page-content p + p {
  margin-top: 18px;
}
.segal-policy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 28px;
  background: #111;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.segal-policy-cta:hover {
  background: #b5121b;
}
@media (max-width: 820px) {
  .segal-policy-grid {
    grid-template-columns: 1fr;
  }
  .segal-policy-card {
    min-height: 0;
  }
}

/* v1.5.19 cleanup pending client notes */
.renuar-shop-look,
.shop-the-look-section {
  display: none !important;
}
.footer-newsletter > span,
.footer-newsletter > h2,
.footer-newsletter > p,
.footer-newsletter > small {
  display: none !important;
}
.footer-newsletter:before {
  content: "צרו קשר";
  display: block;
  margin-bottom: 18px;
  color: #111;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
}
.home .segal-video-opener {
  min-height: 100svh !important;
  height: 100svh !important;
  margin-bottom: 0 !important;
}
.home .segal-video-opener + .home-product-first {
  margin-top: 0 !important;
}
@supports not (height: 100svh) {
  .home .segal-video-opener {
    min-height: 100vh !important;
    height: 100vh !important;
  }
}

/* v1.5.29: clean single cart icon in the Renuar-style header */
.header-utility .cart-trigger.renuar-header-icon {
  position: relative !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: currentColor !important;
  line-height: 1 !important;
}

.header-utility .cart-trigger.renuar-header-icon .cart-trigger__icon {
  position: static !important;
  inset: auto !important;
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: currentColor !important;
}

.header-utility .cart-trigger.renuar-header-icon .cart-trigger__icon:before,
.header-utility .cart-trigger.renuar-header-icon .cart-trigger__icon:after {
  content: none !important;
  display: none !important;
}

.header-utility .cart-trigger.renuar-header-icon .cart-trigger__icon svg {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.6 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.header-utility .cart-trigger.renuar-header-icon .cart-trigger__count {
  position: absolute !important;
  top: -7px !important;
  left: -7px !important;
  right: auto !important;
  display: grid !important;
  place-items: center !important;
  min-width: 15px !important;
  height: 15px !important;
  padding: 0 4px !important;
  border-radius: 999px !important;
  background: #d71920 !important;
  color: #fff !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

