.bsc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  height: 62px;
  padding: 0 22px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body.customising {
  overflow: hidden;
}
.bsc-header > * {
  min-width: 0;
}
.hamburger, .header-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  margin: 3px;
  background: #111;
}
.header-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-icon em {
  position: absolute;
  margin: -20px 0 0 24px;
  min-width: 18px;
  height: 18px;
  color: #fff;
  background: #111;
  border-radius: 50%;
  font-size: 11px;
  line-height: 18px;
  font-style: normal;
}
.bsc-logo {
  justify-self: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 24px;
  letter-spacing: .08em;
}
.bsc-actions {
  justify-self: end;
  display: flex;
  gap: 4px;
}
.setup-box {
  max-width: 780px;
  margin: 80px auto;
  padding: 28px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.setup-box code {
  display: block;
  padding: 14px;
  background: #f4f4f4;
}
.tailor-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  min-height: 620px;
  overflow: hidden;
  padding: clamp(40px, 7vw, 90px);
  color: #111;
  background: #f5f4f0;
}
.tailor-hero div {
  position: relative;
  max-width: 660px;
}
.tailor-hero span, .catalog-head p {
  color: #c49a49;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tailor-hero h1 {
  margin: 10px 0;
  font-size: clamp(52px, 9vw, 110px);
  line-height: .9;
}
.tailor-hero p {
  font-size: 22px;
  color: #4d4d4d;
}
.tailor-hero a {
  display: inline-flex;
  margin-top: 12px;
  padding: 14px 24px;
  color: white;
  background: #111;
  border-radius: 999px;
  font-weight: 900;
}
.hero-fabrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transform: rotate(-4deg);
}
.hero-fabrics i {
  display: block;
  min-height: 190px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
  background-color: var(--cloth, #444);
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.08) 0 1px, transparent 1px 7px);
}
.hero-fabrics i[class*="houndstooth"] {
  background-color: var(--cloth2);
  background-image:
    linear-gradient(45deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%),
    linear-gradient(-45deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%);
  background-size: 12px 12px;
}
.hero-fabrics i:nth-child(2),
.hero-fabrics i:nth-child(3) {
  transform: translateY(34px);
}
.collection-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px clamp(16px, 5vw, 70px);
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.collection-strip a {
  min-width: max-content;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 999px;
}
.product-section {
  padding: 54px clamp(16px, 5vw, 70px);
}
.catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.catalog-head h2 {
  margin: 5px 0 0;
  font-size: clamp(30px, 4vw, 48px);
}
.catalog-head input {
  max-width: 340px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.catalog-card {
  background: white;
  border: 1px solid #e2e2e2;
}
.catalog-card img,
.catalog-fabric {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #eee;
}
.catalog-fabric {
  position: relative;
  display: grid;
  align-content: center;
  gap: 13px;
  overflow: hidden;
  padding: 14%;
  background-color: var(--cloth, #444);
}
.catalog-fabric::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 42%, rgba(0,0,0,.16));
}
.catalog-fabric[class*="houndstooth"] {
  background-color: var(--cloth2);
  background-image:
    linear-gradient(45deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%),
    linear-gradient(-45deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%);
  background-size: 10px 10px;
}
.catalog-fabric i {
  position: relative;
  display: block;
  height: 20%;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 8px 18px rgba(0,0,0,.18);
}
.catalog-fabric i:nth-child(2) { margin-left: 16%; }
.catalog-fabric i:nth-child(3) { margin-left: 32%; }
.catalog-card a {
  display: block;
  padding-bottom: 14px;
}
.catalog-card span, .catalog-card h3, .catalog-card p, .catalog-card strong {
  display: block;
  margin: 8px 14px 0;
}
.catalog-card span {
  color: #9b6a12;
  font-size: 12px;
  font-weight: 800;
}
.catalog-card h3 {
  min-height: 44px;
  font-size: 16px;
}
.catalog-card p {
  color: #707070;
}
.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ddd;
}
.info-band div {
  padding: 24px;
  background: #fff;
}
.info-band span {
  display: block;
  margin-top: 6px;
  color: #666;
}

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(390px, .65fr);
  align-items: start;
  max-width: 100vw;
  overflow-x: hidden;
}
.pdp-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  background: #f1f1f1;
  min-width: 0;
}
.fabric-viewer,
.live-mini {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  background: #efefef;
}
.fabric-viewer {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.fabric-viewer::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-color: var(--cloth, #444);
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.08) 0 1px, transparent 1px 7px),
    linear-gradient(110deg, rgba(255,255,255,.12), transparent 30%, rgba(0,0,0,.13) 70%);
}
.fabric-viewer[class*="houndstooth"]::before {
  background-color: var(--cloth2);
  background-image:
    linear-gradient(45deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%),
    linear-gradient(-45deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%),
    linear-gradient(110deg, rgba(255,255,255,.16), transparent 42%, rgba(0,0,0,.15));
  background-size: 12px 12px, 12px 12px, auto;
}
.fabric-roll {
  display: none;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(72%, 440px);
  transform: rotate(-8deg);
}
.fabric-roll span {
  display: block;
  height: 84px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: inset 0 8px 28px rgba(0,0,0,.18), 0 16px 40px rgba(0,0,0,.16);
}
.fabric-roll span:nth-child(2) { margin-left: 13%; }
.fabric-roll span:nth-child(3) { margin-left: 26%; }
.fabric-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 14px;
  color: #fff;
  background: rgba(0,0,0,.45);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}
.solid-white .fabric-copy {
  color: #222;
  background: rgba(255,255,255,.72);
}
.fabric-copy strong { font-size: 18px; }
.fabric-copy small { color: rgba(255,255,255,.78); }
.live-mini {
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pdp-summary {
  position: sticky;
  top: 62px;
  min-height: calc(100svh - 62px);
  padding: 28px 44px;
  background: #fff;
  min-width: 0;
}
.pill {
  display: inline-block;
  padding: 5px 9px;
  color: #9b6a12;
  background: #fff0d8;
  border-radius: 4px;
  font-size: 12px;
}
.rating {
  float: right;
  color: #c68100;
  font-size: 14px;
}
.pdp-summary h1 {
  margin: 14px 0 7px;
  font-size: 20px;
  font-weight: 500;
}
.price {
  margin: 0;
  font-size: 17px;
}
.price small {
  margin-left: 6px;
  color: #777;
  font-size: 13px;
}
.pdp-summary hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 20px 0;
}
.choice-block {
  margin-bottom: 20px;
}
.choice-block h2,
.delivery h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
}
.row-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.row-title button,
.custom-size-row button {
  border: 0;
  color: #006fd6;
  background: none;
  cursor: pointer;
  font-weight: 700;
}
.swatches {
  display: flex;
  gap: 16px;
  overflow-x: auto;
}
.swatches button {
  min-width: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #777;
  font-size: 11px;
}
.swatches span {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 7px;
  background: var(--swatch);
  border: 1px solid #ddd;
  border-radius: 8px;
}
.swatches button.active span {
  outline: 2px solid #111;
  outline-offset: 3px;
}
.size-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.size-row button {
  width: 46px;
  height: 46px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-size: 16px;
}
.size-row button.active {
  color: white;
  background: #111;
  border-color: #111;
}
.custom-size-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}
.design-card {
  margin: 16px 0;
  padding: 20px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.design-card span {
  font-size: 16px;
}
.design-card p {
  min-height: 20px;
  color: #696969;
  font-size: 13px;
}
.design-card button {
  width: 100%;
  min-height: 48px;
  border: 1px solid #111;
  border-radius: 999px;
  background: white;
  cursor: pointer;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
.black-cta {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #111;
  cursor: pointer;
  font-weight: 900;
}
.pdp-summary > .black-cta {
  width: calc(100% - 70px);
}
.heart-cta {
  width: 54px;
  height: 54px;
  margin-left: 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 28px;
}
.delivery {
  margin: 24px 0;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}
.delivery form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}
.delivery button {
  border: 1px solid #111;
  border-radius: 6px;
  background: white;
  cursor: pointer;
}
details {
  padding: 18px 0;
  border-top: 1px solid #e5e5e5;
}
summary {
  cursor: pointer;
  font-weight: 800;
}
details p {
  color: #555;
  line-height: 1.6;
}
.reviews-section {
  padding: 50px clamp(16px, 5vw, 70px);
  background: #fff;
  border-top: 1px solid #eee;
}

.customiser {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  grid-template-columns: 56vw 44vw;
  background: #fff;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}
.customiser.open {
  display: grid;
}
.customiser-left {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  background: #f4f4f4;
  overflow: hidden;
}
.close-customiser {
  position: absolute;
  top: 25px;
  left: 52px;
  z-index: 3;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 44px;
  line-height: 1;
}
.custom-title {
  display: flex;
  justify-content: center;
  gap: 70px;
  align-items: center;
  padding: 30px 20px 12px;
}
.custom-title h2 {
  margin: 0;
  letter-spacing: .22em;
  font-weight: 500;
}
.custom-title label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #777;
  font-size: 10px;
  letter-spacing: .22em;
}
.custom-tabs {
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(450px, 80%);
  padding: 4px;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  background: white;
}
.custom-tabs button {
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}
.custom-tabs button.active {
  color: white;
  background: #111;
}
.custom-shirt-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
}
.customiser-right {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: #fff;
}
.custom-product-line {
  align-self: end;
  padding: 32px 44px 18px;
  border-bottom: 1px solid #eee;
}
.custom-product-line span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 8px;
  color: #a36c09;
  background: #fff0d8;
  border-radius: 4px;
  font-size: 12px;
}
.custom-product-line strong {
  display: block;
  font-weight: 500;
}
.option-panel {
  display: none;
  overflow: auto;
  padding: 0 24px 100px;
}
.customiser.editing .option-panel.active {
  display: block;
}
.panel-tabs {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 46px;
  min-height: 62px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.panel-tabs strong {
  min-width: 120px;
}
.panel-tabs button,
.panel-tabs a {
  border: 0;
  background: none;
  color: #555;
  cursor: pointer;
  font-size: 16px;
}
.panel-tabs button.active {
  color: #111;
  font-weight: 800;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(115px, 1fr));
  gap: 24px;
  padding: 24px 0;
}
.option-grid button {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 165px;
  border: 1px solid #e1e1e1;
  background: #fff;
  cursor: pointer;
}
.option-grid button.active {
  border-color: #111;
}
.option-grid em {
  font-style: normal;
  font-size: 13px;
}
.option-icon {
  position: relative;
  width: 74px;
  height: 52px;
}
.option-icon::before,
.option-icon::after {
  content: "";
  position: absolute;
  border: 2px solid #111;
}
.option-icon.collar::before {
  left: 10px;
  top: 10px;
  width: 52px;
  height: 20px;
  border-radius: 50% 50% 40% 40%;
}
.option-icon.collar::after {
  left: 7px;
  top: 23px;
  width: 56px;
  height: 22px;
  border-top: 0;
  clip-path: polygon(0 0, 50% 100%, 100% 0, 82% 0, 50% 45%, 18% 0);
  background: #111;
}
.option-icon.pocket::before {
  left: 19px;
  top: 10px;
  width: 34px;
  height: 38px;
  border-radius: 0 0 7px 7px;
}
.option-icon.placket::before {
  left: 34px;
  top: 2px;
  width: 6px;
  height: 48px;
  background: #111;
}
.option-icon.buttons::before {
  left: 32px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 14px 0 #111, 0 28px 0 #111;
  background: #111;
}
.option-icon.cuff::before {
  left: 14px;
  top: 18px;
  width: 46px;
  height: 22px;
  transform: rotate(-10deg);
}
.option-icon.back::before {
  left: 16px;
  top: 4px;
  width: 42px;
  height: 44px;
  border-radius: 14px 14px 4px 4px;
}
.option-icon.contrast::before {
  left: 18px;
  top: 7px;
  width: 38px;
  height: 38px;
  background: repeating-linear-gradient(45deg, #111 0 8px, #fff 8px 16px);
}
.option-icon.monogram::before {
  content: "SL";
  display: grid;
  place-items: center;
  left: 15px;
  top: 7px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 900;
}
.custom-bottom {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-top: 1px solid #eee;
}
.customiser:not(.editing) .custom-bottom {
  display: none;
}
.custom-bottom button {
  min-height: 54px;
  border: 2px solid #111;
  border-radius: 999px;
  background: white;
  cursor: pointer;
  font-weight: 900;
}
.custom-bottom button:last-child {
  color: white;
  background: #111;
}
.hotspot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 0 13px 0 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  cursor: pointer;
  font-size: 13px;
  z-index: 4;
  pointer-events: auto;
}
.hotspot b {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #fff;
  background: #eb4b42;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 300;
}
.h-collar { top: 23%; left: 52%; }
.h-pocket { top: 34%; left: 56%; }
.h-placket { top: 45%; left: 49%; }
.h-buttons { top: 57%; left: 50%; }
.h-sleeve_cuff { top: 70%; left: 60%; }
.h-back { top: 83%; left: 57%; }
.h-inner_contrast { top: 24%; left: 24%; }
.h-monogram { top: 39%; left: 28%; }
.hotspot.hidden {
  display: none;
}

.shirt-preview {
  --cloth: #273246;
  --cloth2: #f1f1f1;
  --button: #111;
  position: relative;
  width: min(440px, 82%);
  aspect-ratio: .72 / 1;
  filter: drop-shadow(0 20px 34px rgba(0,0,0,.14));
}
.garment-preview {
  transition: filter .2s ease;
  transform-origin: 50% 50%;
}
.custom-shirt-stage.focus-collar .garment-preview,
.custom-shirt-stage.focus-pocket .garment-preview,
.custom-shirt-stage.focus-placket .garment-preview,
.custom-shirt-stage.focus-buttons .garment-preview,
.custom-shirt-stage.focus-sleeve_cuff .garment-preview,
.custom-shirt-stage.focus-back .garment-preview,
.custom-shirt-stage.focus-inner_contrast .garment-preview,
.custom-shirt-stage.focus-monogram .garment-preview {
  transform: none;
}
.custom-shirt-stage.focus-collar .hotspot,
.custom-shirt-stage.focus-pocket .hotspot,
.custom-shirt-stage.focus-placket .hotspot,
.custom-shirt-stage.focus-buttons .hotspot,
.custom-shirt-stage.focus-sleeve_cuff .hotspot,
.custom-shirt-stage.focus-back .hotspot,
.custom-shirt-stage.focus-inner_contrast .hotspot,
.custom-shirt-stage.focus-monogram .hotspot {
  opacity: .12;
}
.custom-shirt-stage .hotspot.active-focus {
  opacity: 1;
  z-index: 6;
}
.shirt-preview.big {
  width: min(420px, 58%);
}
.shirt-body,
.shirt-left-sleeve,
.shirt-right-sleeve,
.pant-waist,
.pant-left-leg,
.pant-right-leg,
.suit-body,
.suit-left,
.suit-right,
.suit-sleeve {
  position: absolute;
  background-color: var(--cloth);
  background-image:
    linear-gradient(90deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%),
    linear-gradient(0deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%);
  background-size: 8px 8px;
  background-position: center;
}
.shirt-body {
  left: 27%;
  top: 16%;
  width: 46%;
  height: 69%;
  border-radius: 16% 16% 8% 8%;
  clip-path: polygon(14% 0, 86% 0, 100% 18%, 93% 100%, 7% 100%, 0 18%);
}
.shirt-left-sleeve,
.shirt-right-sleeve {
  top: 22%;
  width: 20%;
  height: 56%;
  border-radius: 30px;
}
.shirt-left-sleeve {
  left: 13%;
  transform: rotate(10deg);
  clip-path: polygon(45% 0, 100% 8%, 75% 100%, 0 95%, 0 18%);
}
.shirt-right-sleeve {
  right: 13%;
  transform: rotate(-10deg);
  clip-path: polygon(0 8%, 55% 0, 100% 18%, 100% 95%, 25% 100%);
}
.shirt-collar {
  position: absolute;
  left: 36%;
  top: 12%;
  width: 28%;
  height: 13%;
}
.shirt-collar::before,
.shirt-collar::after {
  content: "";
  position: absolute;
  top: 20%;
  width: 49%;
  height: 64%;
  background: inherit;
  background-color: var(--cloth);
  background-image: inherit;
  border: 1px solid rgba(0,0,0,.12);
}
.shirt-collar::before {
  left: 0;
  transform: skewY(23deg);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 6% 52%);
}
.shirt-collar::after {
  right: 0;
  transform: skewY(-23deg);
  clip-path: polygon(0 0, 100% 0, 94% 52%, 28% 100%);
}
.shirt-placket {
  position: absolute;
  left: 49%;
  top: 25%;
  width: 2.4%;
  height: 57%;
  background: rgba(255,255,255,.28);
  border-left: 1px solid rgba(0,0,0,.18);
  border-right: 1px solid rgba(0,0,0,.18);
}
.shirt-buttons {
  position: absolute;
  left: 48.4%;
  top: 27%;
  display: grid;
  gap: 22px;
}
.shirt-buttons i {
  width: 9px;
  height: 9px;
  background: var(--button);
  border-radius: 50%;
}
.shirt-pocket {
  position: absolute;
  right: 34%;
  top: 37%;
  display: none;
  width: 13%;
  height: 11%;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 0 0 8px 8px;
  background: rgba(255,255,255,.08);
}
.shirt-cuff {
  position: absolute;
  bottom: 20%;
  width: 13%;
  height: 7%;
  border: 2px solid rgba(255,255,255,.4);
  background-color: var(--cloth);
  background-image: inherit;
}
.shirt-cuff.left { left: 13%; transform: rotate(10deg); }
.shirt-cuff.right { right: 13%; transform: rotate(-10deg); }
.shirt-monogram {
  position: absolute;
  right: 35%;
  top: 47%;
  display: none;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.houndstooth-navy { --cloth: #273246; --cloth2: #f2f2f2; }
.houndstooth-brown { --cloth: #786260; --cloth2: #eadfd9; }
.houndstooth-grey { --cloth: #9d9d9b; --cloth2: #f5f5f4; }
.houndstooth-blue { --cloth: #7c94bf; --cloth2: #f3f6fb; }
.houndstooth-pink { --cloth: #ce9fb5; --cloth2: #fff5f8; }
.solid-white { --cloth: #f5f2ea; --button: #111; }
.solid-blue { --cloth: #adc9e8; --button: #111; }
.solid-charcoal { --cloth: #444; --button: #111; }
.solid-black { --cloth: #171717; --button: #eee; }
.shirt-preview[class*="houndstooth"] .shirt-body,
.shirt-preview[class*="houndstooth"] .shirt-left-sleeve,
.shirt-preview[class*="houndstooth"] .shirt-right-sleeve,
.shirt-preview[class*="houndstooth"] .shirt-collar::before,
.shirt-preview[class*="houndstooth"] .shirt-collar::after,
.shirt-preview[class*="houndstooth"] .pant-waist,
.shirt-preview[class*="houndstooth"] .pant-left-leg,
.shirt-preview[class*="houndstooth"] .pant-right-leg,
.shirt-preview[class*="houndstooth"] .suit-body,
.shirt-preview[class*="houndstooth"] .suit-left,
.shirt-preview[class*="houndstooth"] .suit-right,
.shirt-preview[class*="houndstooth"] .suit-sleeve {
  background-color: var(--cloth2);
  background-image:
    linear-gradient(45deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%),
    linear-gradient(-45deg, var(--cloth) 25%, transparent 25%, transparent 75%, var(--cloth) 75%);
  background-size: 10px 10px;
}
.shirt-preview.pocket-single .shirt-pocket,
.shirt-preview.pocket-flap .shirt-pocket,
.shirt-preview.monogram-chest .shirt-monogram,
.shirt-preview.monogram-cuff .shirt-monogram {
  display: block;
}
.shirt-preview.collar-spread .shirt-collar::before,
.shirt-preview.collar-spread .shirt-collar::after {
  height: 64%;
}
.shirt-preview.collar-prince-charlie .shirt-collar::before,
.shirt-preview.collar-prince-charlie .shirt-collar::after {
  height: 78%;
  top: 14%;
}
.shirt-preview.collar-madmen .shirt-collar::before,
.shirt-preview.collar-madmen .shirt-collar::after {
  height: 48%;
  top: 28%;
}
.shirt-preview.collar-club .shirt-collar::before,
.shirt-preview.collar-club .shirt-collar::after {
  border-radius: 22px;
}
.shirt-preview.collar-ozwald .shirt-collar::before,
.shirt-preview.collar-ozwald .shirt-collar::after {
  transform: skewY(8deg);
}
.shirt-preview.pocket-flap .shirt-pocket::before {
  content: "";
  position: absolute;
  inset: -2px -2px auto;
  height: 9px;
  border: 2px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.05);
}
.shirt-preview.placket-concealed .shirt-buttons { display: none; }
.shirt-preview.placket-regular .shirt-placket { width: 4%; left: 48.3%; }
.shirt-preview.buttons-white { --button: #f8f8f8; }
.shirt-preview.buttons-pearl { --button: #d9c9a6; }
.shirt-preview.collar-bandhgala .shirt-collar::before,
.shirt-preview.collar-bandhgala .shirt-collar::after {
  height: 36%;
  border-radius: 999px;
  clip-path: none;
}
.shirt-preview.collar-polo .shirt-collar::before,
.shirt-preview.collar-polo .shirt-collar::after {
  height: 82%;
}
.shirt-preview.sleeve_cuff-double-button .shirt-cuff::after,
.shirt-preview.sleeve_cuff-french-cuff .shirt-cuff::after {
  content: "";
  position: absolute;
  inset: 35% 25%;
  background: var(--button);
  border-radius: 999px;
  box-shadow: 11px 0 0 var(--button);
}
.shirt-preview.inner_contrast-navy .shirt-collar::before,
.shirt-preview.inner_contrast-navy .shirt-collar::after { outline: 5px solid #1f2b47; }
.shirt-preview.inner_contrast-white .shirt-collar::before,
.shirt-preview.inner_contrast-white .shirt-collar::after { outline: 5px solid #fff; }
.shirt-preview.back-side-pleats .shirt-body { box-shadow: inset 22px 0 0 rgba(0,0,0,.08), inset -22px 0 0 rgba(0,0,0,.08); }
.shirt-preview.back-box-pleat .shirt-body { box-shadow: inset 0 0 0 999px rgba(255,255,255,.05), inset 0 0 0 2px rgba(0,0,0,.05); }
.shirt-preview.monogram-italic .shirt-monogram { font-style: italic; }
.shirt-preview.monogram-bold .shirt-monogram { font-weight: 900; }

.pant-preview .pant-waist {
  left: 28%;
  top: 12%;
  width: 44%;
  height: 12%;
  border-radius: 6px 6px 12px 12px;
  border-bottom: 3px solid rgba(0,0,0,.18);
}
.pant-preview .pant-left-leg,
.pant-preview .pant-right-leg {
  top: 22%;
  width: 22%;
  height: 68%;
  border-radius: 8px 8px 18px 18px;
}
.pant-preview .pant-left-leg {
  left: 28%;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 18% 100%);
}
.pant-preview .pant-right-leg {
  right: 28%;
  clip-path: polygon(8% 0, 100% 0, 82% 100%, 0 100%);
}
.pant-preview .pant-crease {
  position: absolute;
  top: 25%;
  width: 1px;
  height: 61%;
  background: rgba(255,255,255,.36);
}
.pant-preview .pant-crease.left { left: 39%; }
.pant-preview .pant-crease.right { right: 39%; }
.pant-preview .pant-pocket {
  position: absolute;
  top: 23%;
  width: 11%;
  height: 10%;
  border-top: 2px solid rgba(255,255,255,.45);
}
.pant-preview .pant-pocket.left { left: 29%; transform: rotate(-18deg); }
.pant-preview .pant-pocket.right { right: 29%; transform: rotate(18deg); }

.suit-preview .suit-body {
  left: 25%;
  top: 14%;
  width: 50%;
  height: 72%;
  border-radius: 10% 10% 6% 6%;
  clip-path: polygon(15% 0, 85% 0, 100% 20%, 88% 100%, 12% 100%, 0 20%);
}
.suit-preview .suit-left,
.suit-preview .suit-right {
  top: 22%;
  width: 23%;
  height: 63%;
}
.suit-preview .suit-left {
  left: 25%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.suit-preview .suit-right {
  right: 25%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
}
.suit-preview .suit-lapel {
  position: absolute;
  top: 19%;
  width: 18%;
  height: 31%;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(0,0,0,.12);
}
.suit-preview.collar-spread .suit-lapel.left {
  clip-path: polygon(0 0, 100% 34%, 40% 100%);
}
.suit-preview.collar-spread .suit-lapel.right {
  clip-path: polygon(100% 0, 0 34%, 60% 100%);
}
.suit-preview.collar-prince-charlie .suit-lapel.left {
  width: 20%;
  height: 38%;
  clip-path: polygon(0 0, 100% 22%, 18% 100%);
}
.suit-preview.collar-prince-charlie .suit-lapel.right {
  width: 20%;
  height: 38%;
  clip-path: polygon(100% 0, 0 22%, 82% 100%);
}
.suit-preview.collar-madmen .suit-lapel {
  width: 13%;
  height: 28%;
}
.suit-preview.collar-bandhgala .suit-lapel {
  top: 17%;
  height: 10%;
  border-radius: 999px;
  clip-path: none;
}
.suit-preview.collar-polo .suit-lapel {
  width: 22%;
}
.suit-preview.collar-concealed .suit-lapel {
  opacity: .18;
}
.suit-preview.collar-club .suit-lapel {
  border-radius: 0 0 80% 80%;
}
.suit-preview.collar-ozwald .suit-lapel.left {
  transform: skewX(-8deg);
}
.suit-preview.collar-ozwald .suit-lapel.right {
  transform: skewX(8deg);
}
.suit-preview .suit-lapel.left {
  left: 34%;
  clip-path: polygon(0 0, 100% 34%, 40% 100%);
}
.suit-preview .suit-lapel.right {
  right: 34%;
  clip-path: polygon(100% 0, 0 34%, 60% 100%);
}
.suit-preview .suit-sleeve {
  top: 25%;
  width: 17%;
  height: 55%;
  border-radius: 30px;
}
.suit-preview .suit-sleeve.left { left: 12%; transform: rotate(9deg); }
.suit-preview .suit-sleeve.right { right: 12%; transform: rotate(-9deg); }
.suit-preview .suit-buttons {
  position: absolute;
  left: 49%;
  top: 50%;
  display: grid;
  gap: 16px;
}
.suit-preview .suit-buttons i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--button);
}
.suit-preview .suit-pocket {
  position: absolute;
  right: 34%;
  top: 48%;
  width: 15%;
  height: 2px;
  background: rgba(255,255,255,.55);
}
.suit-preview.pocket-none .suit-pocket,
.pant-preview.pocket-none .pant-pocket {
  display: none;
}
.suit-preview.pocket-flap .suit-pocket {
  height: 10%;
  border: 2px solid rgba(255,255,255,.45);
  background: transparent;
}
.suit-preview.placket-regular .suit-buttons {
  grid-template-columns: auto auto;
  column-gap: 18px;
}
.suit-preview.placket-regular .suit-buttons i {
  box-shadow: 18px 0 0 var(--button);
}
.suit-preview.placket-concealed .suit-buttons {
  display: none;
}
.suit-preview.buttons-white { --button: #f8f8f8; }
.suit-preview.buttons-pearl { --button: #d9c9a6; }
.suit-preview.sleeve_cuff-double-button .suit-sleeve::after,
.suit-preview.sleeve_cuff-french-cuff .suit-sleeve::after {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 42%;
  width: 8px;
  height: 8px;
  background: var(--button);
  border-radius: 50%;
  box-shadow: 12px 0 0 var(--button);
}
.suit-preview.back-side-pleats .suit-body,
.suit-preview.back-box-pleat .suit-body {
  box-shadow: inset 0 -26px 0 rgba(0,0,0,.14);
}
.suit-preview.inner_contrast-navy .suit-lapel { background: #1f2b47; }
.suit-preview.inner_contrast-white .suit-lapel { background: rgba(255,255,255,.68); }

.pant-preview.placket-regular .pant-waist::after,
.pant-preview.placket-concealed .pant-waist::after {
  content: "";
  position: absolute;
  left: 48%;
  bottom: -72%;
  width: 4%;
  height: 70%;
  background: rgba(255,255,255,.24);
}
.pant-preview.sleeve_cuff-double-button .pant-left-leg,
.pant-preview.sleeve_cuff-double-button .pant-right-leg {
  border-bottom: 10px solid rgba(255,255,255,.22);
}
.pant-preview.sleeve_cuff-french-cuff .pant-left-leg,
.pant-preview.sleeve_cuff-french-cuff .pant-right-leg {
  border-bottom: 18px solid rgba(255,255,255,.24);
}
.pant-preview.back-side-pleats .pant-left-leg,
.pant-preview.back-side-pleats .pant-right-leg,
.pant-preview.back-box-pleat .pant-left-leg,
.pant-preview.back-box-pleat .pant-right-leg {
  box-shadow: inset 0 0 0 999px rgba(255,255,255,.05);
}
.pant-preview.inner_contrast-navy .pant-waist { outline: 5px solid #1f2b47; }
.pant-preview.inner_contrast-white .pant-waist { outline: 5px solid #fff; }

.mono-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
}
.mono-tools span,
.thread-colors span {
  margin-right: 12px;
  color: #555;
}
.mono-tools button {
  min-width: 104px;
  min-height: 46px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}
.mono-tools button.active {
  border-color: #111;
}
.thread-colors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}
.thread-colors span {
  flex-basis: 100%;
}
.thread-colors button {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: var(--thread);
  cursor: pointer;
}
.thread-colors button.active {
  outline: 3px solid #d72727;
  outline-offset: 3px;
}

.measure-modal,
.cart-drawer {
  width: min(480px, 96vw);
  border: 0;
  border-radius: 10px;
  padding: 24px;
}
.measure-modal > button,
.cart-drawer > button {
  float: right;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 30px;
}
.measurement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  clear: both;
}
.cart-drawer {
  margin-right: 0;
  min-height: 100svh;
  border-radius: 0;
}
.cart-line {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.cart-line img {
  width: 70px;
  height: 84px;
  object-fit: cover;
}
.cart-line small {
  display: block;
  color: #666;
}
.checkout-box {
  margin-top: 18px;
}
.checkout-box div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.checkout-box form {
  display: grid;
  gap: 10px;
}
.checkout-box textarea {
  min-height: 80px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 7px;
  resize: vertical;
}
.mono-input {
  max-width: 260px;
  margin-top: 18px;
}

@media (max-width: 1050px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .tailor-hero { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-summary { position: static; min-height: auto; }
  .customiser { grid-template-columns: 1fr; overflow: auto; }
  .customiser-left { min-height: 670px; }
}
@media (max-width: 720px) {
  .bsc-header { grid-template-columns: 90px 1fr 90px; padding: 0 10px; }
  .bsc-logo { font-size: 17px; }
  .tailor-hero, .tailor-hero img { min-height: 560px; }
  .tailor-hero { padding: 34px 18px; }
  .hero-fabrics { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-fabrics i { min-height: 130px; }
  .catalog-head { display: grid; }
  .catalog-head input { max-width: none; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .info-band { grid-template-columns: 1fr; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-summary { padding: 24px 16px; }
  .custom-title { gap: 12px; padding-left: 70px; }
  .close-customiser { left: 18px; top: 24px; }
  .custom-tabs { width: calc(100% - 32px); }
  .shirt-preview.big { width: 88%; }
  .option-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .panel-tabs { gap: 14px; overflow-x: auto; }
  .custom-bottom { grid-template-columns: 1fr; gap: 10px; }
}
