@font-face {
  font-family: "Bicyclette";
  src: url("../fonts/Bicyclette-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bicyclette";
  src: url("../fonts/Bicyclette-Black.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nicolatte";
  src: url("../fonts/Nicolatte-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ct-black: #171713;
  --ct-ink: #26231f;
  --ct-white: #ffffff;
  --ct-paper: #f7f5f1;
  --ct-surface: #efebe4;
  --ct-surface-deep: #e3ddd3;
  --ct-line: #d9d3ca;
  --ct-muted: #746f67;
  --ct-rust: #a84c36;
  --ct-green: #2b694b;
  --ct-orange: #b5662e;
  --ct-heading: "Nicolatte", Georgia, serif;
  --ct-mono: "Bicyclette", "Helvetica Neue", Arial, sans-serif;
  --ct-body: "Bicyclette", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; border-radius: 0 !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ct-ink);
  background: var(--ct-white);
  font-family: var(--ct-body);
  font-size: 16px;
  line-height: 26px;
  text-transform: lowercase;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { padding-right: 0 !important; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
a { color: var(--ct-ink); text-decoration: none; }
a:hover { color: var(--ct-rust); }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--ct-rust); outline-offset: 3px; }
::selection { color: var(--ct-white); background: var(--ct-rust); }

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-family: var(--ct-heading);
  font-weight: 400;
}
.ct-nav, .ct-mega, .eyebrow, .btn-ct, .btn-ct-outline,
.product-price, .product-badge, .shop-toolbar, .filter-block h5, .ct-footer, .ct-pagination,
.form-label, .step-label, .order-head, .payment-option, .account-nav, .table-head {
  font-family: var(--ct-mono);
}
h1 { font-size: 60px; line-height: 70px; }
h2 { font-size: 28px; line-height: 56px; }
h3 { font-size: 28px; line-height: 38px; }
h4 { font-size: 30px; line-height: 40px; }
h5 { font-size: 24px; line-height: 34px; }
h6 { font-size: 20px; line-height: 30px; }
p { margin-top: 0; font-size: 16px; line-height: 26px; }
.container-fluid { width: 100%; padding-left: clamp(20px, 4vw, 64px); padding-right: clamp(20px, 4vw, 64px); }
.container { max-width: 1180px; }

/* shared chrome */
.site-announcement {
  padding: 8px 20px;
  color: var(--ct-white);
  background: var(--ct-black);
  text-align: center;
  font: 10px/1.4 var(--ct-mono);
  letter-spacing: .12em;
  text-transform: lowercase;
}
.ct-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--ct-line);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
}
.ct-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.ct-nav > a, .ct-nav .drop-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  color: var(--ct-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
}
.ct-nav > a::after, .ct-nav .drop-label::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: var(--ct-rust);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.ct-nav > a:hover::after, .ct-nav .drop-label:hover::after, .ct-nav > a.is-active::after { transform: scaleX(1); }
.ct-logo { justify-self: center; display: inline-flex; align-items: center; }
.ct-logo img { display: block; width: auto; height: 30px; }
.ct-icons { display: flex; align-items: center; justify-content: flex-end; gap: 17px; }
.ct-icon-btn, .ct-icons > a, .ct-icons > button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 30px;
  padding: 0;
  color: var(--ct-ink);
  background: none;
  border: 0;
  appearance: none;
}
.ct-icons svg { width: 19px; height: 19px; }
.ct-icons .bag-icon { width: 22px; height: 22px; }
.ct-icons .ct-lang { width: 25px; height: 30px; border: 0; background: none; font-family: "IBM Plex Sans Arabic", sans-serif; font-size: 14px; font-weight: 700; }
.ct-icons .ct-lang:hover { color: var(--ct-rust); background: none; }
.ct-badge {
  position: absolute;
  top: -3px;
  right: -7px;
  display: grid;
  width: 16px;
  height: 16px;
  color: var(--ct-white);
  background: var(--ct-rust);
  border-radius: 50% !important;
  font: 9px/1 var(--ct-mono);
  place-items: center;
}
.mobile-menu-trigger { display: none; background: none; border: 0; padding: 0; color: var(--ct-ink); }
.mobile-menu-trigger svg { width: 22px; height: 22px; }
.ct-dropdown { position: static; }
.ct-mega {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  gap: 0;
  padding: 32px clamp(20px, 4vw, 64px) 38px;
  color: var(--ct-ink);
  background: var(--ct-white);
  border-bottom: 1px solid var(--ct-line);
  box-shadow: 0 20px 34px rgba(23,23,19,.08);
}
.ct-dropdown:hover .ct-mega, .ct-dropdown:focus-within .ct-mega { display: grid; grid-template-columns: repeat(5, 1fr); }
.ct-mega > div { min-height: 120px; padding: 0 24px; border-left: 1px solid var(--ct-line); }
.ct-mega > div:first-child { padding-left: 0; border-left: 0; }
.ct-mega > div:last-child { padding-right: 0; }
.ct-mega h6 { margin: 0 0 13px; padding-bottom: 9px; border-bottom: 1px solid var(--ct-line); font-size: 11px; letter-spacing: .08em; text-transform: lowercase; }
.ct-mega ul { list-style: none; margin: 0; padding: 0; }
.ct-mega li { margin: 0; }
.ct-mega li a { display: block; padding: 3px 0; font: 11px/1.5 var(--ct-mono); }
.ct-mega li a:hover { color: var(--ct-rust); }

/* buttons and labels */
.btn-ct, .btn-ct-outline, .btn-ct-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 21px;
  border: 1px solid var(--ct-black);
  font: 11px/1.25 var(--ct-mono);
  font-weight: 700;
  letter-spacing: .07em;
  text-align: center;
  text-transform: lowercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-ct { color: var(--ct-white); background: var(--ct-black); }
.btn-ct:hover { color: var(--ct-black); background: transparent; transform: translateY(-1px); }
.btn-ct-outline { color: var(--ct-white); border-color: var(--ct-white); background: transparent; }
.btn-ct-outline:hover { color: var(--ct-black); background: var(--ct-white); }
.btn-ct-soft { color: var(--ct-ink); border-color: var(--ct-line); background: var(--ct-surface); }
.btn-ct-soft:hover { color: var(--ct-white); border-color: var(--ct-black); background: var(--ct-black); }
.text-link { display: inline-block; border-bottom: 1px solid currentColor; font: 11px var(--ct-mono); letter-spacing: .05em; }
.eyebrow { margin: 0 0 12px; color: var(--ct-rust); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: lowercase; }
.kicker { color: var(--ct-muted); font: 11px/1.5 var(--ct-mono); letter-spacing: .06em; }

/* home */
.ct-hero { position: relative; min-height: min(78vh, 720px); overflow: hidden; color: var(--ct-white); background: var(--ct-black); }
.ct-hero .slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .7s ease, visibility .7s ease; }
.ct-hero .slide.active { position: relative; visibility: visible; opacity: 1; }
.ct-hero .slide::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.16) 68%, rgba(0,0,0,.18)); content: ""; }
.ct-hero img { display: block; width: 100%; height: min(78vh, 720px); min-height: 560px; object-fit: cover; }
.ct-hero .caption { position: absolute; right: auto; bottom: clamp(65px, 11vh, 120px); left: clamp(24px, 8vw, 128px); z-index: 1; max-width: 650px; }
.ct-hero .caption h1 { max-width: 640px; margin: 0 0 14px; color: var(--ct-white); font-size: clamp(42px, 5vw, 60px); line-height: 1.17; letter-spacing: normal; }
.ct-hero .caption p { max-width: 480px; margin: 0 0 24px; color: var(--ct-white); font-size: clamp(15px, 1.5vw, 21px); line-height: 1.5; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 16px 0 0; color: var(--ct-white); font: 10px var(--ct-mono); letter-spacing: .05em; }
.hero-trust span::before { display: inline-block; width: 5px; height: 5px; margin-right: 7px; background: var(--ct-rust); content: ""; }
.ct-hero .dots { position: absolute; right: clamp(22px, 5vw, 70px); bottom: 32px; z-index: 2; display: flex; gap: 8px; }
.ct-hero .dots button { width: 34px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.38); }
.ct-hero .dots button.active { background: var(--ct-white); }
.ct-section { padding: clamp(58px, 7vw, 104px) 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-head h2 { margin: 0; font-size: 28px; line-height: 56px; letter-spacing: normal; }
.section-head .text-link { flex: 0 0 auto; }
.ct-arrows { display: flex; gap: 4px; }
.ct-arrows button { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; padding: 0; color: var(--ct-ink); background: transparent; border: 1px solid var(--ct-line); }
.ct-arrows button:hover { color: var(--ct-white); background: var(--ct-black); border-color: var(--ct-black); }
.ct-arrows svg { width: 16px; height: 16px; }
.ct-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: calc(25% - 18px); gap: 24px; overflow-x: auto; padding-bottom: 7px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.ct-carousel::-webkit-scrollbar { display: none; }
.ct-carousel > * { scroll-snap-align: start; }

/* product cards */
.product-card { display: block; min-width: 0; }
.product-card .thumb, .shop-card .thumb { position: relative; overflow: hidden; background: var(--ct-surface); aspect-ratio: 1 / 1.16; }
.product-card .thumb img, .shop-card .thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease, transform .6s ease; }
.product-card .thumb .hover-img, .shop-card .thumb .hover-img { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .thumb .main-img, .shop-card:hover .thumb .main-img { opacity: 0; }
.product-card:hover .thumb .hover-img, .shop-card:hover .thumb .hover-img { opacity: 1; }
.product-card:hover .thumb img, .shop-card:hover .thumb img { transform: scale(1.035); }
.product-info { padding-top: 13px; }
.product-title { display: block; margin: 0 0 4px; font: 12px/1.45 var(--ct-mono); font-weight: 700; }
.product-size { margin: 0 0 8px; color: var(--ct-muted); font: 11px/1.4 var(--ct-body); }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-size: 14px; line-height: 1.35; font-weight: 400; }
.product-unit { color: var(--ct-muted); font: 10px var(--ct-body); }
.product-badge-text { color: var(--ct-green); font: 10px var(--ct-mono); text-transform: lowercase; }
.shop-card .product-size, .product-card .product-size { margin: 4px 0 8px; color: var(--ct-muted); font: 11px/1.4 var(--ct-body); }
.product-card .product-price-row, .shop-card .product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card .product-price, .shop-card .product-price { font-size: 14px; line-height: 1.35; font-weight: 400; }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 5px 8px; color: var(--ct-white); background: var(--ct-black); font-size: 9px; letter-spacing: .08em; text-transform: lowercase; }
.product-badge.stock { background: var(--ct-green); }
.product-badge.made { color: var(--ct-white); background: var(--ct-orange); }
.card-wish { position: absolute; top: 8px; right: 8px; z-index: 3; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; padding: 0; color: var(--ct-white); background: rgba(23,23,19,.62); border: 0; }
.card-wish svg { width: 17px; height: 17px; }
.card-wish.is-saved svg { fill: var(--ct-white); }
.quick-view { position: absolute; right: 0; bottom: -46px; left: 0; z-index: 4; width: 100%; padding: 11px; color: var(--ct-white); background: var(--ct-black); border: 0; font: 10px var(--ct-mono); letter-spacing: .08em; text-transform: lowercase; transition: bottom .22s ease; }
.shop-card:hover .quick-view { bottom: 0; }
.best-card { display: block; height: 100%; }
.best-card .thumb { overflow: hidden; background: var(--ct-surface); }
.best-card .thumb img { display: block; width: 100%; height: 360px; object-fit: cover; transition: transform .6s ease; }
.best-card:hover .thumb img { transform: scale(1.035); }
.best-card h3 { margin: 18px 0 8px; font-size: 16px; }
.best-card p { max-width: 380px; margin: 0; color: var(--ct-muted); font-size: 13px; line-height: 1.65; }

/* image banners and trust */
.ct-banner { position: relative; overflow: hidden; color: var(--ct-white); background: var(--ct-black); }
.ct-banner img { display: block; width: 100%; height: min(62vh, 580px); min-height: 360px; object-fit: cover; }
.ct-banner::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.1)); content: ""; }
.ct-banner .caption { position: absolute; bottom: 13%; left: clamp(24px, 8vw, 128px); z-index: 1; }
.ct-banner .caption h2 { margin: 0 0 18px; color: var(--ct-white); font-size: clamp(42px, 5vw, 60px); line-height: 1; letter-spacing: normal; }
.trust-section { padding: 0; color: var(--ct-white); background: var(--ct-black); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 15px; min-height: 142px; padding: 24px clamp(18px, 3vw, 44px); border-right: 1px solid rgba(255,255,255,.18); }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 35px; flex: 0 0 auto; color: var(--ct-white); border: 1px solid rgba(255,255,255,.7); }
.trust-icon svg { width: 18px; height: 18px; }
.trust-item strong { display: block; margin-bottom: 3px; font: 11px var(--ct-mono); letter-spacing: .05em; }
.trust-item span { display: block; color: rgba(255,255,255,.7); font-size: 12px; }

/* inner page heads */
.ct-pagehead { padding: clamp(48px, 7vw, 92px) 0 30px; background: var(--ct-white); text-align: center; }
.ct-pagehead h1 { max-width: 900px; margin: 0 auto 13px; font-size: 60px; line-height: 70px; letter-spacing: normal; }
.ct-pagehead.centered h1, .ct-pagehead.centered .ct-breadcrumb, .ct-pagehead.centered .lead { margin-right: auto; margin-left: auto; text-align: center; }
.ct-pagehead .lead { max-width: 700px; margin: 15px auto 0; color: var(--ct-muted); font-size: 15px; }
.ct-breadcrumb { margin: 0 auto; color: var(--ct-muted); font: 10px var(--ct-mono); letter-spacing: .08em; }
.ct-breadcrumb a { color: var(--ct-muted); }

/* forms */
.ct-input, .ct-select, .ct-textarea, .form-control, .form-select {
  width: 100%;
  padding: 12px 13px;
  color: var(--ct-ink);
  background: var(--ct-white);
  border: 1px solid var(--ct-line);
  outline: 0;
  font: 13px var(--ct-body);
  text-transform: none;
}
.ct-input:focus, .ct-select:focus, .ct-textarea:focus, .form-control:focus, .form-select:focus { border-color: var(--ct-black); box-shadow: none; }
.form-label, .ct-label { display: block; margin: 0 0 7px; color: var(--ct-ink); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: lowercase; }
.form-note { color: var(--ct-muted); font-size: 11px; }
.form-msg { min-height: 20px; margin: 12px 0 0; font: 11px var(--ct-mono); }
.form-msg.ok { color: var(--ct-green); }
.form-msg.err { color: var(--ct-rust); }

/* shop listing */
.shop-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(28px, 4vw, 60px); }
.shop-sidebar { align-self: start; position: sticky; top: 105px; }
.shop-sidebar h2 { margin: 0 0 18px; font-size: 15px; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; margin-bottom: 24px; border-top: 1px solid var(--ct-line); border-bottom: 1px solid var(--ct-line); font-size: 11px; }
.toolbar-left { display: flex; align-items: center; gap: 14px; }
.filter-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; color: var(--ct-ink); background: var(--ct-white); border: 1px solid var(--ct-ink); font: 11px var(--ct-mono); font-weight: 400; text-transform: lowercase; }
.filter-btn svg { display: block; width: 17px; height: 17px; flex: 0 0 17px; }
.sort { display: flex; align-items: center; gap: 8px; }
.sort label { font-weight: 700; }
.sort select { min-width: 185px; padding: 8px 10px; color: var(--ct-ink); background: var(--ct-white); border: 1px solid var(--ct-line); font: 10px var(--ct-mono); }
.active-filters { display: flex; flex-wrap: wrap; gap: 7px; min-height: 27px; margin: -6px 0 21px; }
.filter-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 8px; color: var(--ct-ink); background: var(--ct-surface); font: 10px var(--ct-mono); }
.filter-pill button { padding: 0; color: var(--ct-ink); background: none; border: 0; line-height: 1; }
.filter-block { padding: 18px 0; border-bottom: 1px solid var(--ct-line); }
.filter-block:first-of-type { padding-top: 0; }
.filter-block h5 { margin: 0 0 11px; font-size: 11px; letter-spacing: .07em; text-transform: lowercase; }
.filter-check { display: flex; align-items: center; gap: 8px; margin: 7px 0; color: var(--ct-muted); font: 11px var(--ct-body); text-transform: none; }
.filter-check input { accent-color: var(--ct-black); }
.filter-scroll { max-height: 180px; overflow-y: auto; }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price-inputs input { width: 100%; padding: 8px; border: 1px solid var(--ct-line); font: 11px var(--ct-mono); }
.range-line { margin-top: 12px; }
.range-line input { width: 100%; accent-color: var(--ct-black); }
.filter-clear { display: inline-block; margin-top: 13px; color: var(--ct-muted); border-bottom: 1px solid currentColor; font: 10px var(--ct-mono); }
#filtersOffcanvas {
  width: min(440px, 100vw);
  max-width: 100vw;
  padding: 30px;
  color: var(--ct-ink);
  background: var(--ct-white);
  box-shadow: 0 12px 40px rgba(23,23,19,.18);
}
#filtersOffcanvas .offcanvas-header {
  flex: 0 0 auto;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--ct-line) !important;
}
#filtersOffcanvas .offcanvas-header .modal-title { margin: 0; font: 20px/30px var(--ct-body); font-weight: 400; }
#filtersOffcanvas .offcanvas-header .btn-close { margin: 0; opacity: 1; }
#filtersOffcanvas .offcanvas-body { padding: 24px 0 0; overflow-y: auto; }
#filtersOffcanvas .filter-block h5 { font: 16px/24px var(--ct-body); font-weight: 400; letter-spacing: 0; text-transform: lowercase; }
#filtersOffcanvas .filter-check { color: var(--ct-ink); font: 14px/20px var(--ct-body); text-transform: lowercase; }
#filtersOffcanvas .filter-actions { display: flex; flex: 0 0 auto; gap: 10px; padding: 20px 0 0; border-top: 1px solid var(--ct-line); }
#filtersOffcanvas .filter-actions .btn-ct { flex: 1; min-height: 44px; padding: 9px 14px; font-size: 14px; line-height: 24px; font-weight: 400; }
#filtersOffcanvas .filter-actions .btn-ct:last-child { color: var(--ct-ink) !important; background: transparent !important; border: 1px solid var(--ct-ink); }
@media (max-width: 767.98px) {
  #filtersOffcanvas { width: min(360px, 100vw); padding: 24px 20px; }
}
#cartOffcanvas {
  --bs-offcanvas-width: min(600px, 100vw);
  width: min(600px, 100vw);
  max-width: 100vw;
  padding: 30px;
  color: var(--ct-ink);
  background: var(--ct-white);
  box-shadow: 0 12px 40px rgba(23,23,19,.18);
}
#cartOffcanvas .offcanvas-header {
  flex: 0 0 auto;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--ct-line) !important;
}
#cartOffcanvas .offcanvas-header .modal-title { margin: 0; font: 20px/30px var(--ct-heading); font-weight: 400; }
#cartOffcanvas .offcanvas-header .btn-close { margin: 0; opacity: 1; }
#cartOffcanvas .offcanvas-body { display: flex; flex-direction: column; min-height: 0; padding: 24px 0 0; overflow-y: auto; }
#cartOffcanvas .cart-item { display: flex; align-items: flex-start; gap: 16px; position: relative; padding: 0 0 20px; margin: 0; border-bottom: 1px solid var(--ct-line); }
#cartOffcanvas .cart-item + .cart-item { margin-top: 40px; }
#cartOffcanvas .cart-item > img { display: block; width: 110px; height: 110px; flex: 0 0 110px; padding: 10px; background: var(--ct-surface); object-fit: cover; }
#cartOffcanvas .cart-item > div { min-width: 0; flex: 1 1 auto; }
#cartOffcanvas .cart-item h6 { margin: 0 0 7px; color: var(--ct-ink); font: 16px/20px var(--ct-body); font-weight: 400; }
#cartOffcanvas .cart-item p { margin: 0 0 5px; color: var(--ct-muted); font: 13px/20px var(--ct-body); }
#cartOffcanvas .cart-item p:nth-of-type(2) { color: var(--ct-rust); }
#cartOffcanvas .cart-item p.price { margin: 10px 0 0; color: var(--ct-ink); font: 14px/20px var(--ct-mono); text-align: right; }
#cartOffcanvas .cart-total { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 24px; font: 16px/24px var(--ct-body); }
#cartOffcanvas .cart-total span:last-child { font-family: var(--ct-mono); }
#cartOffcanvas .cart-ship { margin: 16px 0 0; color: var(--ct-muted); font-size: 13px; line-height: 20px; text-align: center; }
#cartOffcanvas .d-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px !important; padding-top: 19px; margin-top: 4px; border-top: 1px solid var(--ct-line); }
#cartOffcanvas .d-grid .btn-ct { width: 100%; min-height: 44px; padding: 10px 14px; font-size: 14px; line-height: 20px; font-weight: 400; letter-spacing: 0; }
@media (max-width: 460px) {
  #cartOffcanvas { width: min(360px, 100vw); padding: 24px 20px; }
  #cartOffcanvas .cart-item { gap: 12px; }
  #cartOffcanvas .cart-item > img { width: 88px; height: 88px; flex-basis: 88px; padding: 7px; }
  #cartOffcanvas .cart-item h6 { font-size: 14px; line-height: 18px; }
  #cartOffcanvas .cart-item p { font-size: 12px; line-height: 17px; }
}
.shop-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 22px; }
.shop-card { min-width: 0; }
.shop-card .thumb { aspect-ratio: 1 / 1.14; }
.shop-card .product-info { padding-top: 12px; }
.ct-pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 54px; }
.ct-pagination a, .ct-pagination span { padding-bottom: 3px; color: var(--ct-muted); border-bottom: 1px solid transparent; font-size: 10px; }
.ct-pagination a:hover, .ct-pagination a.active { color: var(--ct-black); border-color: var(--ct-black); }
.stock-hero { display: flex; align-items: center; gap: 10px; max-width: max-content; margin-bottom: 18px; padding: 7px 10px; color: var(--ct-green); background: rgba(43,105,75,.1); font: 10px var(--ct-mono); }
.stock-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50% !important; background: var(--ct-green); }

/* banners and content pages */
.editorial-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(30px, 6vw, 90px); align-items: center; }
.editorial-grid.reverse .editorial-copy { order: 2; }
.editorial-grid.reverse .editorial-media { order: 1; }
.editorial-media img { display: block; width: 100%; }
.editorial-copy h2 { margin: 0 0 18px; font-size: clamp(24px, 3.5vw, 46px); line-height: 1.08; letter-spacing: -.08em; }
.editorial-copy p { max-width: 560px; color: var(--ct-muted); font-size: 14px; }
.about-careers-copy { text-align: center; }
.about-careers-title { margin: 0 0 8px; font: 16px/26px var(--ct-body); }
.about-careers-copy > p:not(.about-careers-title) { max-width: 600px; margin: 0 auto 18px; }
.about-careers-link { color: var(--ct-ink); border-bottom: 1px solid currentColor; font: 18px/1.2 var(--ct-body); font-weight: 500; }
.about-careers-link:hover { color: var(--ct-rust); }
.content-narrow { max-width: 840px; margin: 0 auto; }
.content-narrow h2, .content-narrow h3 { margin: 42px 0 13px; font-size: 19px; letter-spacing: -.05em; }
.content-narrow h2:first-child, .content-narrow h3:first-child { margin-top: 0; }
.content-narrow p, .content-narrow li { color: var(--ct-muted); font-size: 14px; }
.content-narrow ul { padding-left: 20px; }

/* gallery */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.gallery-filter button { padding: 9px 12px; color: var(--ct-muted); background: var(--ct-white); border: 1px solid var(--ct-line); font: 10px var(--ct-mono); letter-spacing: .05em; text-transform: lowercase; }
.gallery-filter button:hover, .gallery-filter button.active { color: var(--ct-white); background: var(--ct-black); border-color: var(--ct-black); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.g-item { display: block; }
.g-item.is-hidden { display: none; }
.g-item .g-image { position: relative; overflow: hidden; background: var(--ct-surface); }
.g-item img { display: block; width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; transition: transform .55s ease; }
.g-item:hover img { transform: scale(1.04); }
.g-cap { display: block; padding-top: 10px; font: 11px var(--ct-mono); }
.g-meta { display: block; margin-top: 3px; color: var(--ct-muted); font-size: 11px; }

/* cards, lightbox, modals */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { height: 100%; padding: 24px; background: var(--ct-paper); border: 1px solid var(--ct-line); }
.info-card h3 { margin: 0 0 9px; font-size: 15px; }
.info-card p { margin: 0; color: var(--ct-muted); font-size: 13px; }
.modal-content { color: var(--ct-ink); background: var(--ct-paper); border: 0; box-shadow: 0 24px 50px rgba(0,0,0,.18); }
.modal-title { font: 19px var(--ct-mono); font-weight: 700; }
.modal .btn-close { position: absolute; top: 17px; right: 18px; z-index: 3; }
.quick-modal-img { display: block; width: 100%; height: 100%; min-height: 360px; object-fit: cover; background: var(--ct-surface); }
.modal-copy { padding: 36px; }
.modal-copy p { color: var(--ct-muted); font-size: 13px; }
.lightbox-img { display: block; width: 100%; max-height: 74vh; object-fit: contain; background: var(--ct-black); }
.lightbox-caption { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 20px; color: var(--ct-white); background: var(--ct-black); font: 11px var(--ct-mono); }

/* product detail */
.pdp-hero { padding: clamp(26px, 4vw, 58px) 0 70px; }
.pdp-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); gap: clamp(28px, 5vw, 84px); align-items: start; }
.pdp-gallery { position: sticky; top: 105px; }
.pdp-imgwrap { position: relative; display: flex; align-items: center; justify-content: center; min-height: 590px; padding: 52px; background: var(--ct-surface); }
.pdp-slider { width: 100%; }
.pdp-slide { display: none; width: 100%; aspect-ratio: 1 / .92; align-items: center; justify-content: center; }
.pdp-slide.active { display: flex; animation: ctFade .35s ease both; }
.pdp-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }
.pdp-arrow { position: absolute; top: 50%; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; color: var(--ct-ink); background: var(--ct-white); border: 1px solid var(--ct-line); transform: translateY(-50%); }
.pdp-arrow:hover { color: var(--ct-white); background: var(--ct-black); border-color: var(--ct-black); }
.pdp-prev { left: 14px; }
.pdp-next { right: 14px; }
.pdp-arrow svg { width: 17px; height: 17px; }
.pdp-360 { position: absolute; top: 17px; left: 19px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 0; color: var(--ct-ink); background: none; border: 0; font: 10px var(--ct-mono); letter-spacing: .1em; text-transform: lowercase; }
.pdp-360:hover { color: var(--ct-rust); }
.pdp-360 svg { width: 16px; height: 16px; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 11px; }
.pdp-thumb { padding: 4px; background: var(--ct-surface); border: 1px solid transparent; }
.pdp-thumb img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--ct-black); }
.pdp-title-row { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.pdp-title-row h1 { margin: 0; font-size: clamp(25px, 3vw, 43px); line-height: 1.05; letter-spacing: -.09em; }
.pdp-wish { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex: 0 0 auto; padding: 0; color: var(--ct-ink); background: transparent; border: 1px solid var(--ct-line); }
.pdp-wish:hover, .pdp-wish.is-saved { color: var(--ct-white); background: var(--ct-black); border-color: var(--ct-black); }
.pdp-wish svg { width: 18px; height: 18px; }
.pdp-wish.is-saved svg { fill: currentColor; }
.pdp-dim { margin: 14px 0 0; color: var(--ct-muted); font: 12px var(--ct-mono); }
.pdp-sku { margin: 4px 0 0; color: var(--ct-muted); font: 10px var(--ct-mono); letter-spacing: .08em; }
.pdp-rating { display: flex; align-items: center; gap: 12px; margin: 17px 0 0; }
.pdp-stars { display: inline-flex; gap: 3px; }
.pdp-stars svg { width: 14px; height: 14px; fill: var(--ct-black); }
.pdp-stars svg.empty { fill: none; stroke: var(--ct-black); stroke-width: 1.5; }
.pdp-rating span { color: var(--ct-muted); font: 11px var(--ct-body); }
.pdp-price { margin: 22px 0 0; font: 19px var(--ct-mono); font-weight: 700; }
.pdp-price small { color: var(--ct-muted); font: 11px var(--ct-body); }
.pdp-stock { display: flex; align-items: center; gap: 8px; margin: 10px 0 23px; color: var(--ct-green); font: 11px var(--ct-mono); }
.pdp-stock .stock-dot { flex: 0 0 auto; }
.variant-label { margin: 0 0 9px; font: 10px var(--ct-mono); font-weight: 700; letter-spacing: .08em; text-transform: lowercase; }
.pdp-swatches { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 25px; }
.pdp-swatch { position: relative; padding: 3px; background: var(--ct-white); border: 1px solid var(--ct-line); }
.pdp-swatch img { display: block; width: 55px; height: 55px; object-fit: cover; }
.pdp-swatch span { display: block; padding: 5px 4px 2px; font: 9px var(--ct-mono); text-align: center; }
.pdp-swatch.active { border-color: var(--ct-black); }
.order-switcher { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 26px; border: 1px solid var(--ct-line); }
.order-switcher button { min-height: 58px; padding: 9px 7px; color: var(--ct-muted); background: var(--ct-white); border: 0; border-right: 1px solid var(--ct-line); font: 10px var(--ct-mono); font-weight: 700; text-transform: lowercase; }
.order-switcher button:last-child { border-right: 0; }
.order-switcher button.active { color: var(--ct-white); background: var(--ct-black); }
.order-panel { display: none; padding: 22px 0 0; }
.order-panel.active { display: block; animation: ctFade .25s ease both; }
.order-panel h2 { margin: 0 0 7px; font-size: 16px; }
.order-panel > p { color: var(--ct-muted); font-size: 12px; }
.sample-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: end; margin: 18px 0 13px; }
.order-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 12px 0 15px; font: 11px var(--ct-mono); }
.order-price-row strong { font-weight: 700; }
.order-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.calc-card { padding: 30px 32px 32px; background: #f2f2f2; }
.calc-card h2 { margin: 0 0 24px; font-size: 24px; line-height: 1.2; letter-spacing: -.03em; }
.calc-card .ct-input, .calc-card .ct-select { background: var(--ct-white); }
.floor-calc .calc-size-line { margin: 0 0 18px; color: var(--ct-muted); font-size: 13px; line-height: 1.4; }
.floor-calc .calc-size-line strong { color: var(--ct-ink); font-weight: 700; }
.calc-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.calc-field-label { display: block; margin: 0 0 9px; color: var(--ct-ink); font: 13px/1.3 var(--ct-mono); font-weight: 400; }
.calc-input-shell { display: flex; align-items: center; min-height: 54px; padding: 0 13px; background: var(--ct-white); border-bottom: 2px solid #a9a9a9; }
.calc-input-shell input { width: 100%; min-width: 0; padding: 0; color: var(--ct-ink); background: transparent; border: 0; outline: 0; font: 18px/1 var(--ct-body); }
.calc-input-shell input::-webkit-outer-spin-button, .calc-input-shell input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.calc-input-shell input[type="number"] { -moz-appearance: textfield; }
.calc-input-shell span { flex: 0 0 auto; color: var(--ct-muted); font-size: 12px; }
.calc-input-shell sup { font-size: 8px; }
.calc-quantity { display: grid; grid-template-columns: 36px minmax(0, 1fr) auto 36px; align-items: center; min-height: 54px; background: var(--ct-white); border: 1px solid #d8d8d8; }
.calc-quantity button { display: inline-flex; align-items: center; justify-content: center; height: 52px; padding: 0; color: var(--ct-ink); background: transparent; border: 0; font: 20px/1 var(--ct-body); }
.calc-quantity button:hover { background: #e9e9e9; }
.calc-quantity input { width: 100%; min-width: 0; padding: 0 4px; color: var(--ct-ink); background: transparent; border: 0; outline: 0; font: 16px/1 var(--ct-body); text-align: center; }
.calc-quantity input::-webkit-outer-spin-button, .calc-quantity input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.calc-quantity input[type="number"] { -moz-appearance: textfield; }
.calc-quantity > span { padding: 0 8px 0 3px; color: var(--ct-ink); font: 12px var(--ct-body); white-space: nowrap; }
.floor-calc-coverage { margin: 11px 0 0; color: var(--ct-ink); font: 12px/1.4 var(--ct-body); }
.floor-calc-coverage sup { font-size: 8px; }
.calc-breakdown { padding: 16px 0 0; margin-top: 17px; border-top: 1px solid var(--ct-line); }
.calc-breakdown strong { display: block; margin-bottom: 3px; font: 14px var(--ct-mono); }
.calc-breakdown span { color: var(--ct-muted); font-size: 11px; }
.floor-calc .calc-note { margin: 13px 0 0; color: var(--ct-muted); font-size: 11px; line-height: 1.5; }
.calc-minimum { margin: 20px 0 0; color: var(--ct-rust); font-size: 12px; line-height: 1.4; text-align: center; }
.calc-summary { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding-top: 18px; margin-top: 18px; border-top: 1px solid #949494; }
.calc-summary-boxes { color: var(--ct-ink); font: 13px/1.35 var(--ct-body); }
.calc-summary-boxes small { color: var(--ct-muted); font-size: 11px; }
.calc-summary-total { display: flex; align-items: baseline; gap: 7px; color: var(--ct-ink); font: 13px/1.35 var(--ct-body); text-align: right; }
.calc-summary-total strong { font-weight: 700; white-space: nowrap; }
.calc-result-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; margin-top: 22px; }
.calc-result-box { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; min-height: 58px; padding: 0 14px; background: var(--ct-white); border: 1px solid var(--ct-black); }
.calc-result-box input { width: 100%; min-width: 0; padding: 0; color: var(--ct-ink); background: transparent; border: 0; outline: 0; font: 20px/1 var(--ct-body); }
.calc-result-box span { padding: 0 10px; color: var(--ct-muted); }
.calc-result-box strong { color: var(--ct-ink); font: 12px var(--ct-body); font-weight: 400; white-space: nowrap; }
.calc-quote-btn { min-height: 58px; padding: 10px 16px; font-weight: 400; letter-spacing: 0; }
.waste-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.waste-option { padding: 10px 7px; color: var(--ct-ink); background: var(--ct-white); border: 1px solid var(--ct-line); font: 10px var(--ct-mono); }
.waste-option small { display: block; margin-top: 4px; color: var(--ct-muted); font: 9px var(--ct-body); }
.waste-option.active { color: var(--ct-white); background: var(--ct-black); border-color: var(--ct-black); }
.waste-option.active small { color: rgba(255,255,255,.72); }
.info-tooltip { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; margin-left: 3px; color: var(--ct-white); background: var(--ct-black); border-radius: 50% !important; font: 9px var(--ct-mono); cursor: help; }
.pdp-accordions { margin-top: 20px; border-top: 1px solid var(--ct-line); }
.pdp-accordion-item { border-bottom: 1px solid var(--ct-line); }
.pdp-accordion-heading { margin: 0; }
.pdp-accordion-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; padding: 22px 0; color: var(--ct-ink); background: transparent; border: 0; font: 22px/1.2 var(--ct-heading); text-align: left; }
.pdp-accordion-toggle:hover { color: var(--ct-rust); }
.pdp-accordion-icon { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex: 0 0 auto; color: var(--ct-black); font: 28px/1 var(--ct-body); font-weight: 300; transition: transform .2s ease; }
.pdp-accordion-item.is-open .pdp-accordion-icon { transform: rotate(45deg); }
.pdp-accordion-panel { display: none; padding: 0 0 24px; animation: ctFade .25s ease both; }
.pdp-accordion-item.is-open .pdp-accordion-panel { display: block; }
.pdp-accordion-panel p, .pdp-accordion-panel li { max-width: 780px; color: var(--ct-muted); font-size: 13px; }
.pdp-accordion-panel p:last-child { margin-bottom: 0; }
.pdp-spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 840px; }
.spec-item { display: flex; align-items: center; gap: 10px; padding: 13px; background: var(--ct-surface); }
.spec-item svg { width: 21px; height: 21px; flex: 0 0 auto; }
.spec-item strong { display: block; font: 10px var(--ct-mono); }
.spec-item span { display: block; color: var(--ct-muted); font-size: 10px; }
.review { padding: 17px 0; border-bottom: 1px solid var(--ct-line); }
.review:last-child { border-bottom: 0; }
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-head strong { font: 11px var(--ct-mono); }
.review p { margin: 7px 0 0; }
.mobile-sticky-cart { display: none; }

/* cart */
.cart-shell { padding: 63px 0 90px; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(28px, 5vw, 80px); align-items: start; }
.cart-table { border-top: 1px solid var(--ct-line); }
.cart-cols, .cart-row { display: grid; grid-template-columns: minmax(0, 1fr) 112px 130px 105px; gap: 16px; align-items: center; }
.cart-cols { padding: 12px 0; border-bottom: 1px solid var(--ct-line); color: var(--ct-muted); font-size: 10px; letter-spacing: .08em; text-transform: lowercase; }
.cart-cols span:not(:first-child) { text-align: right; }
.cart-row { position: relative; padding: 22px 0; border-bottom: 1px solid var(--ct-line); }
.cart-prod { display: flex; align-items: center; gap: 15px; min-width: 0; }
.cart-thumb { display: block; width: 84px; flex: 0 0 auto; background: var(--ct-surface); }
.cart-thumb img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.cart-name { display: block; margin-bottom: 5px; font: 11px/1.45 var(--ct-mono); font-weight: 700; }
.cart-meta, .cart-stock { margin: 3px 0 0; color: var(--ct-muted); font-size: 11px; }
.cart-stock.stock { color: var(--ct-green); }
.cart-stock.made { color: var(--ct-orange); }
.cart-sub { font: 11px var(--ct-mono); text-align: right; }
.qty-stepper { display: inline-flex; align-items: center; justify-content: space-between; width: 95px; border: 1px solid var(--ct-line); }
.qty-stepper button { width: 28px; height: 31px; padding: 0; color: var(--ct-ink); background: var(--ct-white); border: 0; }
.qty-stepper input { width: 35px; height: 31px; padding: 0; border: 0; text-align: center; font: 11px var(--ct-mono); }
.cart-remove { padding: 0; color: var(--ct-muted); background: transparent; border: 0; font: 10px var(--ct-mono); text-decoration: underline; }
.cart-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 19px; }
.cart-coupon { display: flex; max-width: 310px; }
.cart-coupon input { width: 165px; padding: 10px; border: 1px solid var(--ct-line); font-size: 11px; }
.cart-coupon button { padding: 10px 13px; color: var(--ct-white); background: var(--ct-black); border: 1px solid var(--ct-black); font: 10px var(--ct-mono); }
.cart-update { padding: 10px 13px; color: var(--ct-ink); background: transparent; border: 1px solid var(--ct-line); font: 10px var(--ct-mono); }
.cart-empty { display: none; padding: 80px 20px; border: 1px solid var(--ct-line); text-align: center; }
.cart-empty.is-visible { display: block; }
.cart-empty svg { width: 36px; height: 36px; margin-bottom: 15px; }
.cart-empty h2 { margin: 0 0 8px; font-size: 21px; }
.cart-empty p { margin: 0 0 18px; color: var(--ct-muted); font-size: 13px; }
.totals-panel { padding: 24px; background: var(--ct-paper); }
.totals-panel h2 { margin: 0 0 16px; font-size: 18px; }
.totals-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--ct-line); font: 11px var(--ct-mono); }
.totals-row.total { padding-top: 18px; border-bottom: 0; font-size: 14px; font-weight: 700; }
.totals-note { margin: 10px 0 0; color: var(--ct-muted); font-size: 11px; }
.cart-flow { margin: 19px 0; padding: 12px; color: var(--ct-orange); background: rgba(181,102,46,.1); font: 10px/1.55 var(--ct-mono); }
.cart-actions-stack { display: grid; gap: 9px; }

/* checkout */
.checkout-wrap { padding: 60px 0 90px; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: clamp(30px, 6vw, 92px); align-items: start; }
.checkout-main { min-width: 0; }
.checkout-banner { padding: 13px 15px; margin-bottom: 10px; color: var(--ct-white); background: var(--ct-black); font: 11px var(--ct-mono); }
.checkout-banner a { color: var(--ct-white); text-decoration: underline; }
.checkout-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 30px 0 41px; }
.checkout-step { position: relative; padding: 13px 11px; color: var(--ct-muted); border-top: 2px solid var(--ct-line); font: 10px var(--ct-mono); font-weight: 700; }
.checkout-step::before { display: block; margin-bottom: 5px; color: var(--ct-muted); content: attr(data-step); font-size: 9px; }
.checkout-step.active { color: var(--ct-black); border-top-color: var(--ct-rust); }
.checkout-step.active::before { color: var(--ct-rust); }
.checkout-section { padding: 27px 0 34px; border-top: 1px solid var(--ct-line); }
.checkout-section h2 { margin: 0 0 22px; font-size: 19px; }
.checkout-section h2 span { color: var(--ct-rust); }
.checkout-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.checkout-field.full { grid-column: 1 / -1; }
.optional { color: var(--ct-muted); font: 10px var(--ct-body); font-weight: 400; letter-spacing: 0; text-transform: none; }
.account-toggle { display: flex; align-items: start; gap: 9px; margin: 22px 0 0; font: 11px var(--ct-mono); }
.account-benefits { display: none; margin-top: 14px; padding: 14px; background: var(--ct-surface); }
.account-benefits.open { display: block; }
.account-benefits p { margin: 0 0 8px; color: var(--ct-muted); font-size: 11px; }
.account-benefits ul { margin: 0; padding-left: 18px; color: var(--ct-muted); font-size: 11px; }
.shipping-options { display: grid; gap: 8px; }
.shipping-option { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 14px; border: 1px solid var(--ct-line); font: 11px var(--ct-mono); }
.shipping-option.selected { border-color: var(--ct-black); }
.shipping-option label { display: flex; align-items: center; gap: 9px; }
.payment-options { display: grid; gap: 9px; }
.payment-option { display: flex; align-items: center; gap: 10px; padding: 13px; color: var(--ct-ink); border: 1px solid var(--ct-line); font-size: 11px; }
.payment-option.selected { border-color: var(--ct-black); }
.payment-logo { display: inline-flex; align-items: center; justify-content: center; min-width: 52px; height: 32px; padding: 0 4px; background: var(--ct-white); }
.payment-logo img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.payment-logo-knet { width: 52px; min-width: 52px; height: 32px; padding: 0 2px; }
.payment-logo-knet img { width: 47px; height: 32px; }
.payment-logo-cards { width: 78px; min-width: 78px; gap: 7px; }
.payment-logo-cards img:first-child { width: 38px; }
.payment-logo-cards img:last-child { width: 30px; }
.payment-logo-gateway { width: 96px; min-width: 96px; gap: 7px; padding: 3px 6px; background: var(--ct-black); }
.payment-logo-gateway .payment-logo-tap { width: auto; height: 26px; max-width: 18px; }
.payment-logo-gateway .payment-logo-myfatoorah { width: 60px; height: auto; max-height: 19px; }
.payment-logo.cash { color: var(--ct-black); background: var(--ct-surface-deep); }
.order-summary { position: sticky; top: 105px; padding: 25px; background: var(--ct-paper); }
.order-summary h2 { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 0 18px; font-size: 18px; }
.order-summary h2 a { color: var(--ct-muted); border-bottom: 1px solid currentColor; font: 10px var(--ct-mono); }
.summary-item { display: flex; align-items: start; gap: 12px; padding: 14px 0; border-top: 1px solid var(--ct-line); }
.summary-item img { width: 58px; height: 68px; flex: 0 0 auto; object-fit: cover; }
.summary-item h3 { margin: 0 0 4px; font-size: 10px; line-height: 1.4; }
.summary-item p { margin: 0; color: var(--ct-muted); font: 10px/1.45 var(--ct-body); }
.summary-item strong { margin-left: auto; font: 10px var(--ct-mono); white-space: nowrap; }
.order-summary .totals-row { font-size: 11px; }
.order-summary .form-msg { margin-bottom: 0; }

/* accordions / faq */
.faq-search { display: flex; max-width: 690px; margin: 0 auto 33px; border-bottom: 1px solid var(--ct-black); }
.faq-search input { flex: 1; padding: 11px 0; border: 0; outline: 0; font: 13px var(--ct-body); }
.faq-search button { padding: 0 5px; background: none; border: 0; }
.faq-search svg { width: 17px; height: 17px; }
.faq-category { margin: 40px 0 0; color: var(--ct-rust); font: 11px var(--ct-mono); font-weight: 700; letter-spacing: .12em; text-transform: lowercase; }
.accordion-item { background: transparent; border: 0; border-bottom: 1px solid var(--ct-line); }
.accordion-button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 0; color: var(--ct-ink); background: transparent; border: 0; font: 13px var(--ct-mono); font-weight: 700; text-align: left; }
.accordion-button::after { width: 14px; height: 14px; flex: 0 0 auto; margin-left: 15px; background-image: none; content: "+"; font: 17px/1 var(--ct-body); font-weight: 400; }
.accordion-button:not(.collapsed)::after { content: "−"; }
.accordion-button:not(.collapsed) { color: var(--ct-rust); background: transparent; box-shadow: none; }
.accordion-collapse { display: none; }
.accordion-collapse.show { display: block; }
.accordion-body { padding: 0 32px 22px 0; color: var(--ct-muted); font-size: 13px; }
.faq-item.is-hidden { display: none; }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px 23px; }
.blog-card { display: block; }
.blog-card .thumb { overflow: hidden; background: var(--ct-surface); }
.blog-card .thumb img { display: block; width: 100%; aspect-ratio: 1 / .76; object-fit: cover; transition: transform .55s ease; }
.blog-card:hover .thumb img { transform: scale(1.04); }
.blog-card .date { margin: 15px 0 7px; color: var(--ct-muted); font: 10px var(--ct-mono); }
.blog-card h2, .blog-card h5 { margin: 0 0 11px; font-size: 15px; line-height: 1.45; }
.blog-card .read { border-bottom: 1px solid currentColor; font: 10px var(--ct-mono); }
.blog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.blog-filter button { padding: 8px 11px; color: var(--ct-muted); background: var(--ct-white); border: 1px solid var(--ct-line); font: 10px var(--ct-mono); text-transform: lowercase; }
.blog-filter button.active, .blog-filter button:hover { color: var(--ct-white); background: var(--ct-black); border-color: var(--ct-black); }
.blog-card.is-hidden { display: none; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(250px, .7fr); gap: clamp(35px, 7vw, 100px); align-items: start; }
.blog-single .hero { display: block; width: 100%; margin-bottom: 24px; }
.blog-single .meta { color: var(--ct-muted); font: 10px var(--ct-mono); }
.blog-single h2 { margin: 14px 0 20px; font-size: clamp(26px, 4vw, 49px); line-height: 1.05; letter-spacing: -.09em; }
.blog-single p, .blog-single li { color: var(--ct-muted); font-size: 14px; line-height: 1.9; }
.blog-single h3 { margin: 34px 0 17px; font-size: 19px; }
.blog-quote { padding: 25px; margin: 30px 0; color: var(--ct-ink); background: var(--ct-surface); font: 16px/1.6 var(--ct-mono); }
.blog-side .widget { padding: 20px; margin-bottom: 20px; border: 1px solid var(--ct-line); }
.blog-side h3 { margin: 0 0 14px; font-size: 14px; }
.latest-posts { list-style: none; margin: 0; padding: 0; }
.latest-posts li { display: flex; gap: 11px; margin-bottom: 16px; }
.latest-posts img { width: 60px; height: 60px; object-fit: cover; }
.latest-posts .date { color: var(--ct-muted); font: 9px var(--ct-mono); }
.latest-posts h4 { margin: 4px 0 0; font-size: 10px; line-height: 1.5; }
.related-products { margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--ct-line); }

/* account, legal, utility */
.account-layout { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 44px; align-items: start; }
.account-nav { border-top: 1px solid var(--ct-line); }
.account-nav a { display: block; padding: 12px 0; color: var(--ct-muted); border-bottom: 1px solid var(--ct-line); font-size: 10px; }
.account-nav a.active, .account-nav a:hover { color: var(--ct-black); padding-left: 8px; border-left: 2px solid var(--ct-rust); }
.account-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.account-heading h2 { margin: 0; font-size: 23px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-bottom: 28px; }
.stat-card { padding: 18px; background: var(--ct-paper); }
.stat-card strong { display: block; margin-bottom: 4px; font: 24px var(--ct-mono); }
.stat-card span { color: var(--ct-muted); font-size: 11px; }
.data-table { width: 100%; border-top: 1px solid var(--ct-line); }
.table-head, .table-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr 100px; gap: 13px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--ct-line); }
.table-head { color: var(--ct-muted); font-size: 9px; letter-spacing: .08em; text-transform: lowercase; }
.table-row { font-size: 11px; }
.status { display: inline-block; padding: 4px 6px; color: var(--ct-green); background: rgba(43,105,75,.1); font: 9px var(--ct-mono); }
.status.pending { color: var(--ct-orange); background: rgba(181,102,46,.1); }
.status.expired { color: var(--ct-rust); background: rgba(168,76,54,.1); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 30px 0; }
.timeline-step { position: relative; padding-top: 28px; color: var(--ct-muted); font: 10px var(--ct-mono); text-align: center; }
.timeline-step::before { position: absolute; top: 0; left: 50%; z-index: 1; width: 13px; height: 13px; border: 2px solid var(--ct-line); background: var(--ct-white); border-radius: 50% !important; content: ""; transform: translateX(-50%); }
.timeline-step:not(:last-child)::after { position: absolute; top: 6px; right: 0; left: 50%; height: 2px; background: var(--ct-line); content: ""; }
.timeline-step.done { color: var(--ct-black); }
.timeline-step.done::before { border-color: var(--ct-rust); background: var(--ct-rust); }
.timeline-step.done:not(:last-child)::after { background: var(--ct-rust); }
.project-card { border: 1px solid var(--ct-line); }
.project-card img { display: block; width: 100%; aspect-ratio: 1/.65; object-fit: cover; }
.project-copy { padding: 18px; }
.project-copy h3 { margin: 0 0 6px; font-size: 14px; }
.project-copy p { margin: 0; color: var(--ct-muted); font-size: 12px; }
.legal-layout { display: grid; grid-template-columns: 200px minmax(0, 780px); gap: 50px; align-items: start; }
.legal-nav { position: sticky; top: 105px; }
.legal-nav a { display: block; padding: 8px 0; color: var(--ct-muted); font: 10px var(--ct-mono); }
.legal-nav a:hover { color: var(--ct-black); }
.legal-copy h2 { scroll-margin-top: 110px; margin: 0 0 13px; font-size: 20px; }
.legal-copy h2:not(:first-child) { margin-top: 42px; }
.legal-copy p, .legal-copy li { color: var(--ct-muted); font-size: 13px; }
.utility-card { max-width: 620px; padding: 30px; margin: 0 auto; background: var(--ct-paper); }
.utility-card h2 { margin: 0 0 10px; font-size: 24px; }
.utility-card p { color: var(--ct-muted); font-size: 13px; }
.search-results-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.search-results-head h2 { margin: 0; font-size: 24px; }
.no-results { display: none; max-width: 560px; padding: 55px 20px; margin: 0 auto; text-align: center; }
.no-results.is-visible { display: block; }
.no-results h2 { margin: 0 0 9px; font-size: 22px; }
.no-results p { color: var(--ct-muted); }
.suggestion-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 18px 0; }
.suggestion-links a { padding: 7px 9px; background: var(--ct-surface); font: 10px var(--ct-mono); }

/* footer */
.ct-footer { padding: 68px 0 24px; color: var(--ct-white); background: var(--ct-black); }
.ct-footer a { color: var(--ct-white); }
.ct-footer a:hover { color: #d8ab97; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 38px; }
.ct-footer h2 { margin: 0 0 10px; color: var(--ct-white); font-size: 19px; }
.ct-footer .fine { max-width: 350px; margin: 0 0 18px; color: rgba(255,255,255,.58); font-size: 12px; }
.newsletter-form { display: flex; max-width: 410px; border-bottom: 1px solid rgba(255,255,255,.7); }
.newsletter-form input { min-width: 0; flex: 1; padding: 10px 0; color: var(--ct-white); background: transparent; border: 0; outline: 0; font: 11px var(--ct-mono); text-transform: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form button { padding: 0 4px; color: var(--ct-white); background: transparent; border: 0; }
.newsletter-form svg { width: 18px; height: 18px; }
.newsletter-msg { min-height: 19px; margin: 8px 0 0; color: #d8ab97; font: 10px var(--ct-mono); }
.ct-social { display: flex; gap: 16px; margin-top: 24px; }
.ct-social a { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.45); }
.ct-social svg { width: 14px; height: 14px; }
.footer-col h3 { margin: 0 0 13px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .1em; text-transform: lowercase; }
.foot-links { list-style: none; margin: 0; padding: 0; }
.foot-links li { margin: 0 0 7px; }
.foot-links a { font: 11px var(--ct-mono); }
.payment-row { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 26px; }
.payment-chip { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; height: 26px; padding: 0 7px; color: var(--ct-black); background: var(--ct-white); font: 9px var(--ct-mono); font-weight: 700; }
.payment-chip.cod { color: var(--ct-white); background: #3b4d42; }
.payment-brand { display: inline-flex; align-items: center; justify-content: center; width: 52px; min-width: 52px; height: 32px; padding: 4px 8px; background: var(--ct-white); }
.payment-brand img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.payment-brand-knet { width: 52px; height: 32px; padding: 0 2px; }
.payment-brand-knet img { width: 47px; height: 32px; }
.payment-brand-visa { width: 68px; }
.payment-brand-visa img { width: 52px; height: 22px; }
.payment-brand-mastercard { width: 52px; }
.payment-brand-mastercard img { width: 33px; height: 20px; }
.payment-brand-tap { width: 34px; height: 40px; padding: 2px 7px; background: var(--ct-black); }
.payment-brand-tap img { width: auto; height: 35px; max-width: 23px; }
.payment-brand-myfatoorah { width: 102px; padding: 6px 9px; background: var(--ct-black); }
.payment-brand-myfatoorah img { width: 84px; height: auto; max-height: 18px; }
.ct-copy { padding-top: 30px; margin: 42px 0 0; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.2); font: 10px var(--ct-mono); text-align: right; }

/* mobile menu/offcanvas */
.menu-offcanvas { color: var(--ct-ink); background: var(--ct-paper); }
.menu-offcanvas .offcanvas-header { padding: 22px; border-bottom: 1px solid var(--ct-line); }
.menu-offcanvas .offcanvas-body { padding: 20px 22px; }
.menu-offcanvas .nav-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; color: var(--ct-ink); border-bottom: 1px solid var(--ct-line); font: 12px var(--ct-mono); font-weight: 700; }
.menu-offcanvas .m-toggle { width: 100%; color: var(--ct-ink); background: none; border: 0; text-align: left; }
.menu-offcanvas .m-panel { display: none; padding-left: 14px; border-left: 1px solid var(--ct-line); }
.menu-offcanvas .m-sub.open > .m-panel { display: block; }
.menu-offcanvas .m-panel .nav-link { color: var(--ct-muted); border: 0; font-size: 11px; }
.menu-offcanvas .chev { transition: transform .2s ease; }
.menu-offcanvas .m-sub.open > .m-toggle .chev { transform: rotate(180deg); }

/* helpers */
.fade-in { animation: ctFade .55s ease both; }
@keyframes ctFade { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* responsive */
@media (max-width: 1199.98px) {
  .ct-nav { gap: 16px; }
  .ct-nav > a, .ct-nav .drop-label { font-size: 10px; }
  .pdp-imgwrap { min-height: 490px; }
}
@media (max-width: 991.98px) {
  .site-announcement { font-size: 9px; }
  .mobile-menu-trigger { display: inline-flex; }
  .ct-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; min-height: 66px; }
  .ct-logo { justify-self: center; }
  .ct-logo img { height: 27px; }
  .ct-icons { gap: 12px; }
  .ct-icons .hide-m { display: none; }
  .ct-carousel { grid-auto-columns: calc(50% - 12px); }
  .shop-layout, .checkout-grid, .cart-layout, .pdp-layout, .blog-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .filter-btn { display: inline-flex; }
  .pdp-gallery, .order-summary { position: static; }
  .pdp-layout { gap: 38px; }
  .order-summary { order: -1; }
  .checkout-grid .checkout-main { order: 2; }
  .checkout-grid .order-summary { order: 1; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 28px; }
  .account-layout { grid-template-columns: 1fr; }
  .account-nav { display: flex; flex-wrap: wrap; gap: 5px 17px; border-top: 0; border-bottom: 1px solid var(--ct-line); }
  .account-nav a { padding: 9px 0; border-bottom: 0; }
  .account-nav a.active, .account-nav a:hover { padding-left: 0; border-left: 0; border-bottom: 2px solid var(--ct-rust); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 10px 18px; padding-bottom: 12px; border-bottom: 1px solid var(--ct-line); }
}
@media (max-width: 767.98px) {
  body { font-size: 16px; }
  .ct-hero, .ct-hero img { min-height: 640px; }
  .ct-hero .caption { right: 22px; bottom: 70px; left: 22px; }
  .ct-hero .caption h1 { font-size: clamp(31px, 10vw, 50px); line-height: 1.2; }
  .ct-banner .caption h2 { font-size: 42px; }
  .ct-pagehead h1 { font-size: 50px; line-height: 1.2; }
  .ct-banner img { min-height: 420px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .trust-item:last-child { border-bottom: 0; }
  .shop-grid, .gallery-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 13px; }
  .card-grid { grid-template-columns: 1fr; }
  .best-card .thumb img { height: 270px; }
  .pdp-imgwrap { min-height: 390px; padding: 38px; }
  .pdp-title-row h1 { font-size: 30px; }
  .pdp-spec-grid { grid-template-columns: 1fr 1fr; }
  .pdp-accordion-toggle { padding: 18px 0; font-size: 20px; }
  .cart-cols { display: none; }
  .cart-row { grid-template-columns: minmax(0, 1fr) 96px; gap: 10px; align-items: start; }
  .cart-prod { align-items: start; }
  .cart-row > .qty-stepper { grid-column: 2; grid-row: 1; justify-self: end; }
  .cart-row > .cart-sub { grid-column: 2; grid-row: 1; align-self: end; margin-top: 45px; }
  .cart-row > .cart-remove { grid-column: 1; grid-row: 2; justify-self: start; }
  .cart-foot { display: grid; }
  .cart-coupon { max-width: 100%; }
  .cart-coupon input { flex: 1; width: auto; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-field.full { grid-column: auto; }
  .checkout-steps { gap: 4px; }
  .checkout-step { font-size: 9px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 25px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .ct-copy { text-align: center; }
  .table-head { display: none; }
  .table-row { grid-template-columns: 1fr 1fr; gap: 9px; padding: 17px 0; }
  .table-row > :nth-child(odd) { color: var(--ct-muted); }
  .timeline { grid-template-columns: 1fr; gap: 13px; }
  .timeline-step { min-height: 28px; padding: 0 0 0 33px; text-align: left; }
  .timeline-step::before { top: 1px; left: 7px; transform: none; }
  .timeline-step:not(:last-child)::after { top: 12px; right: auto; bottom: -17px; left: 12px; width: 2px; height: 30px; }
  .timeline-step.done:not(:last-child)::after { background: var(--ct-rust); }
  .search-results-head { display: block; }
  .search-results-head .kicker { margin-top: 9px; }
  .mobile-sticky-cart { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1015; display: flex; align-items: center; justify-content: space-between; gap: 13px; padding: 10px 14px; color: var(--ct-white); background: var(--ct-black); box-shadow: 0 -8px 18px rgba(0,0,0,.1); }
  .mobile-sticky-cart span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 10px var(--ct-mono); }
  .mobile-sticky-cart strong { display: block; margin-top: 2px; font-size: 12px; }
  .mobile-sticky-cart .btn-ct { min-height: 37px; padding: 8px 13px; color: var(--ct-black); background: var(--ct-white); border-color: var(--ct-white); font-size: 9px; }
}
@media (max-width: 575.98px) {
  .container-fluid { padding-left: 18px; padding-right: 18px; }
  .ct-carousel { grid-auto-columns: 78%; }
  .shop-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
  .product-card .thumb, .shop-card .thumb { aspect-ratio: 1 / 1.06; }
  .section-head { align-items: start; }
  .section-head h2, .ct-section-head h2 { font-size: 21px; line-height: 1.2; }
  .sort { width: 100%; }
  .sort select { flex: 1; min-width: 0; }
  .shop-toolbar { flex-wrap: wrap; }
  .shop-toolbar > .kicker { display: none; }
  .pdp-thumbs { gap: 6px; }
  .pdp-imgwrap { min-height: 310px; padding: 27px; }
  .pdp-spec-grid { grid-template-columns: 1fr; }
  .sample-row, .order-switcher { grid-template-columns: 1fr; }
  .order-switcher button { border-right: 0; border-bottom: 1px solid var(--ct-line); }
  .order-switcher button:last-child { border-bottom: 0; }
  .waste-options { grid-template-columns: 1fr; }
  .calc-card { padding: 24px 20px 22px; }
  .calc-card h2 { font-size: 22px; }
  .calc-field-grid, .calc-result-row { grid-template-columns: 1fr; }
  .calc-summary { align-items: start; flex-direction: column; gap: 8px; }
  .calc-summary-total { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .modal-copy { padding: 26px 20px; }
  .quick-modal-img { min-height: 260px; }
  .cart-prod { gap: 10px; }
  .cart-thumb { width: 66px; }
  .cart-name { font-size: 10px; }
  .cart-meta, .cart-stock { font-size: 10px; }
  .totals-panel { padding: 18px; }
}

/* rtl */
[dir="rtl"] body, [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] .ct-nav, [dir="rtl"] .ct-mega, [dir="rtl"] .btn-ct, [dir="rtl"] .btn-ct-outline,
[dir="rtl"] .ct-footer, [dir="rtl"] .filter-block h5, [dir="rtl"] .form-label, [dir="rtl"] .ct-label {
  font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
[dir="rtl"] body { line-height: 1.9; }
[dir="rtl"] .ct-hero .caption { right: clamp(24px, 8vw, 128px); left: auto; text-align: right; }
[dir="rtl"] .ct-hero .slide::after { background: linear-gradient(270deg, rgba(0,0,0,.68), rgba(0,0,0,.16) 68%, rgba(0,0,0,.18)); }
[dir="rtl"] .ct-banner .caption { right: clamp(24px, 8vw, 128px); left: auto; }
[dir="rtl"] .ct-mega { text-align: right; }
[dir="rtl"] .ct-mega > div { border-right: 1px solid var(--ct-line); border-left: 0; }
[dir="rtl"] .ct-mega > div:first-child { padding-right: 0; border-right: 0; }
[dir="rtl"] .ct-mega > div:last-child { padding-left: 0; }
[dir="rtl"] .accordion-button { text-align: right; }
[dir="rtl"] .accordion-button::after { margin-right: 15px; margin-left: 0; }
[dir="rtl"] .accordion-body { padding-right: 0; padding-left: 32px; }
[dir="rtl"] .account-nav a.active, [dir="rtl"] .account-nav a:hover { padding-right: 8px; padding-left: 0; border-right: 2px solid var(--ct-rust); border-left: 0; }
@media (max-width: 991.98px) { [dir="rtl"] .account-nav a.active, [dir="rtl"] .account-nav a:hover { padding-right: 0; border-right: 0; border-bottom: 2px solid var(--ct-rust); } }
[dir="rtl"] .menu-offcanvas .m-panel { padding-right: 14px; padding-left: 0; border-right: 1px solid var(--ct-line); border-left: 0; }
[dir="rtl"] .pdp-prev { right: 14px; left: auto; }
[dir="rtl"] .pdp-next { right: auto; left: 14px; }
[dir="rtl"] .ct-copy { text-align: left; }

/* compatibility for the imported page markup */
.ct-section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.ct-section-head h2 { margin: 0; font-size: 28px; line-height: 56px; letter-spacing: normal; }
.ct-section-head .ct-arrows { flex: 0 0 auto; }
.ct-section > .container-fluid > h2 { font-family: var(--ct-heading); font-weight: 400; letter-spacing: normal; }
.product-card h5, .best-card h5, .shop-card h5 { margin: 13px 0 0; font: 12px/1.45 var(--ct-mono); font-weight: 700; }
.best-card h5 { font-size: 16px; }
.shop-card > a { color: var(--ct-ink); }
.shop-card .quick { position: absolute; right: 0; bottom: -46px; left: 0; z-index: 4; width: 100%; padding: 11px; color: var(--ct-white); background: var(--ct-black); border: 0; font: 10px var(--ct-mono); letter-spacing: .08em; text-transform: lowercase; transition: bottom .22s ease; }
.shop-card:hover .quick { bottom: 0; }
.shop-card .thumb { position: relative; }
.shop-card .thumb .hover-img { position: absolute; inset: 0; opacity: 0; }
.shop-card:hover .thumb .main-img { opacity: 0; }
.shop-card:hover .thumb .hover-img { opacity: 1; }
.shop-card:hover .thumb img { transform: scale(1.035); }
.calc-label { display: block; margin: 0 0 8px; color: var(--ct-ink); font: 10px var(--ct-mono); font-weight: 700; letter-spacing: .08em; text-transform: lowercase; }
.calc-size-btns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 12px 0 22px; }
.size-btn { padding: 11px 10px; color: var(--ct-ink); background: var(--ct-white); border: 1px solid var(--ct-line); font: 10px var(--ct-mono); }
.size-btn.active, .size-btn:hover { color: var(--ct-white); background: var(--ct-black); border-color: var(--ct-black); }
.calc-box-size { color: var(--ct-ink); font: 12px var(--ct-mono); }
.calc-min { display: block; color: var(--ct-muted); font-size: 11px; }
.calc-result { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; padding: 16px 0 0; margin-top: 17px; border-top: 1px solid var(--ct-line); font: 13px var(--ct-mono); }
.calc-total { font-weight: 700; }
.calc-note { color: var(--ct-muted); font-size: 12px; }
.calc-steps { padding-left: 20px; margin: 0; color: var(--ct-muted); font-size: 13px; }
.calc-steps li { margin-bottom: 14px; padding-left: 6px; }
.calc-stock { display: flex; align-items: center; gap: 9px; color: var(--ct-green); font: 11px var(--ct-mono); }
.calc-stock svg { width: 20px; height: 20px; flex: 0 0 auto; }
.about-img { display: block; width: 100%; height: auto; }
.ct-contact-help { padding: 60px 0; background: #f6f6f6; }
.ct-contact-shell { width: min(100% - 32px, 1424px); margin: 0 auto; }
.ct-contact-section-title { margin: 0 0 50px; text-align: center; }
.ct-contact-section-title h1 { margin: 0; color: var(--ct-ink); font: 28px/38px var(--ct-heading); font-weight: 500; letter-spacing: normal; }
.ct-contact-help-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; text-align: center; }
.ct-contact-help-card { min-width: 0; padding: 0 24px; }
.ct-contact-icon { display: flex; width: 161px; height: 115px; align-items: center; justify-content: center; margin: 0 auto; color: var(--ct-ink); }
.ct-contact-icon-svg { display: block; width: 150px; height: 115px; }
.ct-contact-help-link { display: inline-block; padding: 10px; color: var(--ct-ink); background: var(--ct-white); border: 1px solid var(--ct-black); font: 18px/26px var(--ct-body); text-transform: lowercase; }
.ct-contact-help-link:hover { color: var(--ct-ink); background: var(--ct-surface); }
.ct-contact-help-card p { max-width: 340px; margin: 18px auto 0; color: var(--ct-ink); font: 16px/26px var(--ct-body); }
.ct-contact-form-section { padding: 120px 0 140px; background: #e5e5e5; }
.ct-contact-form-wrap { width: min(calc(100% - 32px), 660px); margin: 0 auto; }
.ct-contact-form-wrap h2 { margin: 0 0 30px; color: var(--ct-ink); font: 40px/48px var(--ct-body); font-weight: 400; text-align: center; }
.ct-contact-form-intro { margin: 0 0 50px; color: var(--ct-ink); font: 16px/26px var(--ct-body); text-align: center; }
.ct-reference-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; }
.ct-reference-contact-grid .ct-input,
.ct-reference-contact-grid .ct-select,
.ct-reference-contact-grid .ct-textarea { min-height: 54px; margin: 0; padding: 14px 24px; color: var(--ct-ink); background: #f6f6f6; border: 1px solid var(--ct-black); border-radius: 0; font: italic 16px/24px var(--ct-body); text-transform: none; }
.ct-reference-contact-grid .ct-input::placeholder,
.ct-reference-contact-grid .ct-textarea::placeholder { color: var(--ct-ink); opacity: 1; }
.ct-reference-contact-grid .ct-select { appearance: auto; font-style: italic; }
.ct-reference-contact-grid .ct-textarea { grid-column: 1 / -1; min-height: 174px; resize: vertical; }
.ct-reference-contact-grid .ct-input:focus,
.ct-reference-contact-grid .ct-select:focus,
.ct-reference-contact-grid .ct-textarea:focus { border-color: var(--ct-black); box-shadow: none; }
.ct-contact-submit { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 34px; margin-top: 36px; color: var(--ct-white); background: var(--ct-black); border: 1px solid transparent; font: 16px/24px var(--ct-body); font-weight: 400; text-transform: capitalize; }
.ct-contact-submit:hover { color: var(--ct-white); background: #292929; }
.ct-reference-contact-form .form-msg { margin: 14px 0 0; font: 14px/22px var(--ct-body); }
@media (max-width: 767.98px) {
  .ct-contact-help { padding: 58px 0 64px; }
  .ct-contact-shell { width: calc(100% - 32px); }
  .ct-contact-section-title { margin-bottom: 40px; }
  .ct-contact-section-title h1 { font-size: 26px; line-height: 34px; }
  .ct-contact-help-grid { grid-template-columns: 1fr; gap: 48px; }
  .ct-contact-help-card { padding: 0 10px; }
  .ct-contact-form-section { padding: 70px 0 80px; }
  .ct-contact-form-wrap { width: calc(100% - 32px); }
  .ct-contact-form-wrap h2 { font-size: 36px; line-height: 43px; }
  .ct-contact-form-intro { margin-bottom: 38px; }
  .ct-reference-contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .ct-reference-contact-grid .ct-textarea { grid-column: auto; }
  .ct-contact-submit { margin-top: 30px; }
}
.faq-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px; margin-top: 42px; color: var(--ct-white); background: var(--ct-black); }
.faq-cta h3 { margin: 0; font-size: 16px; }
.faq-cta .eyebrow { margin-bottom: 5px; }
.shipping-timeline { max-width: 680px; margin: 28px 0 38px; }
.shipping-timeline .timeline-step { padding-bottom: 20px; }
.shipping-timeline .timeline-step span { display: block; margin-top: 6px; color: var(--ct-muted); font: 10px var(--ct-body); }
.btn-whatsapp { display: inline-flex; padding: 9px 12px; color: var(--ct-white); background: var(--ct-green); font: 10px var(--ct-mono); text-transform: lowercase; }
.btn-whatsapp:hover { color: var(--ct-white); background: var(--ct-black); }

/* imported cart layout */
.cart-wrap { padding: 63px 0 90px; background: var(--ct-white); }
.cart-head h1 { margin: 0 0 10px; font: 30px var(--ct-mono); font-weight: 700; letter-spacing: -.07em; }
.cart-crumb { margin: 0; color: var(--ct-muted); font: 10px var(--ct-mono); }
.cart-table { margin-top: 48px; border: 1px solid var(--ct-line); }
.cart-cols { grid-template-columns: minmax(0, 1fr) 95px 120px 170px; padding: 14px 24px; }
.cart-row { grid-template-columns: 24px minmax(0, 1fr) 95px 120px 170px; padding: 24px; }
.cart-summary { max-width: 650px; }
.cart-summary .totals-title { margin-top: 50px; }
.cart-x { padding: 0; color: var(--ct-muted); background: transparent; border: 0; font: 23px/1 var(--ct-body); }
.cart-name { color: var(--ct-ink); }
.cart-name:hover { color: var(--ct-rust); }
.cart-actions { display: flex; justify-content: flex-end; gap: 8px; }
.cart-btn { display: inline-flex; align-items: center; justify-content: center; padding: 9px 13px; color: var(--ct-white); border: 1px solid transparent; font: 10px var(--ct-mono); text-transform: lowercase; }
.cart-btn-remove { background: var(--ct-rust); }
.cart-btn-edit { background: var(--ct-green); }
.cart-btn-dark { padding: 11px 15px; color: var(--ct-white); background: var(--ct-black); border: 1px solid var(--ct-black); font: 10px var(--ct-mono); text-transform: lowercase; }
.cart-btn-dark:hover { color: var(--ct-black); background: transparent; }
.totals-title { margin: 60px 0 18px; font: 20px var(--ct-mono); font-weight: 700; }
.totals-panel { max-width: 650px; padding: 0; border: 1px solid var(--ct-line); background: var(--ct-white); }
.totals-panel .totals-row { grid-template-columns: 220px minmax(0, 1fr); padding: 18px 24px; }
.totals-value { font: 12px var(--ct-mono); }
.totals-ship label { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font: 11px var(--ct-body); }
.totals-calc { color: var(--ct-ink); font: 11px var(--ct-mono); text-decoration: underline; }
.quote-btn { display: inline-flex; margin-top: 26px; padding: 15px 24px; color: var(--ct-white); background: var(--ct-black); font: 10px var(--ct-mono); letter-spacing: .08em; text-transform: lowercase; }
.quote-btn:hover { color: var(--ct-black); background: transparent; border: 1px solid var(--ct-black); }

/* imported checkout layout */
.checkout-heading { margin: 0 0 22px; font: 19px var(--ct-mono); font-weight: 700; }
.checkout-check { display: flex; align-items: start; gap: 8px; margin: 19px 0; font: 11px var(--ct-mono); }
.order-panel { padding: 24px; background: var(--ct-paper); }
.order-head, .order-item, .order-line { display: grid; grid-template-columns: minmax(0, 1fr) 108px; gap: 14px; align-items: center; }
.order-head { padding-bottom: 13px; color: var(--ct-muted); border-bottom: 1px solid var(--ct-line); font-size: 10px; text-transform: lowercase; }
.order-head span:last-child, .order-price { text-align: right; }
.order-item { grid-template-columns: 58px minmax(0, 1fr) 88px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--ct-line); }
.order-item img { width: 58px; height: 64px; object-fit: cover; }
.order-item h6 { margin: 0 0 4px; font-size: 10px; line-height: 1.4; }
.order-item p { margin: 0; color: var(--ct-muted); font-size: 10px; }
.order-stock { color: var(--ct-green) !important; }
.order-price { font: 10px var(--ct-mono); }
.order-line { padding: 12px 0; border-bottom: 1px solid var(--ct-line); font: 11px var(--ct-mono); }
.order-line.total { padding-top: 17px; border-bottom: 0; font-size: 13px; font-weight: 700; }
.order-pay { display: grid; gap: 10px; padding: 17px 0; border-top: 1px solid var(--ct-line); border-bottom: 1px solid var(--ct-line); font: 11px var(--ct-mono); }
.order-privacy { margin: 17px 0; color: var(--ct-muted); font-size: 10px; }
.order-btn { min-height: 48px; }
.coupon-form { display: flex; gap: 9px; padding: 14px; margin-bottom: 14px; background: var(--ct-surface); }
.coupon-form .ct-input { max-width: 300px; }
.checkout-banner.light { color: var(--ct-ink); background: var(--ct-surface); }
.checkout-banner.light a { color: var(--ct-ink); }

/* overlays */
.ct-toast { position: fixed; right: 18px; bottom: 18px; z-index: 2000; max-width: calc(100vw - 36px); padding: 11px 15px; color: var(--ct-white); background: var(--ct-black); font: 10px var(--ct-mono); opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; pointer-events: none; }
.ct-toast.show { opacity: 1; transform: none; }
.ct-lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(23,23,19,.92); }
.ct-lightbox.is-open { display: flex; }
.ct-lightbox .lightbox-img { max-width: min(100%, 1100px); max-height: 78vh; }
.ct-lightbox .lightbox-caption { position: absolute; right: 28px; bottom: 28px; left: 28px; max-width: 1100px; margin: auto; }
.ct-lightbox-close { position: absolute; top: 18px; right: 22px; z-index: 1; color: var(--ct-white); background: transparent; border: 0; font-size: 32px; line-height: 1; }

@media (max-width: 991.98px) {
  .cart-row { grid-template-columns: 24px minmax(0, 1fr); }
  .cart-row > .cart-prod { grid-column: 2; }
  .cart-row > .cart-sub { grid-column: 2; text-align: left; }
  .cart-row > .cart-actions { grid-column: 2; justify-content: flex-start; }
  .cart-table { border-left: 0; border-right: 0; }
  .totals-panel { max-width: none; }
}
@media (max-width: 575.98px) {
  .ct-section-head { align-items: start; }
  .calc-size-btns { grid-template-columns: 1fr; }
  .coupon-form { display: grid; }
  .coupon-form .ct-input { max-width: none; }
  .order-panel { padding: 18px; }
  .order-item { grid-template-columns: 48px minmax(0, 1fr); }
  .order-item img { width: 48px; height: 54px; }
  .order-price { grid-column: 2; text-align: left; }
  .totals-panel .totals-row { grid-template-columns: 1fr; gap: 7px; }
  .ct-lightbox { padding: 14px; }
  .ct-lightbox .lightbox-caption { right: 14px; bottom: 14px; left: 14px; }
}

/* new customer journeys */
.utility-bar { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 24px; margin-bottom: 30px; border-bottom: 1px solid var(--ct-line); }
.utility-bar h2 { margin: 0; font: 24px var(--ct-mono); letter-spacing: -.07em; }
.center-state { padding: 54px 20px; text-align: center; }
.wishlist-empty { display: none; }
.wishlist-empty.is-visible { display: block; }
.center-state h2 { margin: 0 0 9px; font: 22px var(--ct-mono); }
.center-state p { color: var(--ct-muted); }
.search-wide { display: flex; max-width: 760px; margin: 0 auto 42px; border-bottom: 1px solid var(--ct-black); }
.search-wide input { min-width: 0; flex: 1; padding: 13px 0; border: 0; outline: 0; font: 13px var(--ct-body); }
.search-wide .btn-ct { border-bottom: 0; }
.utility-page { padding: clamp(80px, 12vw, 150px) 0; text-align: center; }
.utility-page h1 { max-width: 760px; margin: 0 auto 18px; font: clamp(30px, 5vw, 60px)/1 var(--ct-mono); letter-spacing: -.09em; }
.utility-lead { max-width: 570px; margin: 0 auto; color: var(--ct-muted); font-size: 15px; }
.success-mark { display: grid; width: 60px; height: 60px; margin: 0 auto 28px; color: var(--ct-white); background: var(--ct-green); border-radius: 50% !important; font: 30px/1 var(--ct-body); place-items: center; }
.success-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 680px; margin: 38px auto; border-top: 1px solid var(--ct-line); border-bottom: 1px solid var(--ct-line); }
.success-summary div { padding: 17px 12px; border-right: 1px solid var(--ct-line); }
.success-summary div:last-child { border-right: 0; }
.success-summary span, .detail-list span { display: block; margin-bottom: 5px; color: var(--ct-muted); font: 10px var(--ct-mono); text-transform: lowercase; }
.success-summary strong, .detail-list strong { font: 12px var(--ct-mono); }
.utility-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.detail-list { display: grid; gap: 12px; margin: 24px 0; }
.detail-list div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 11px; border-bottom: 1px solid var(--ct-line); }
.detail-list a { color: inherit; border-bottom: 1px solid currentColor; }
.section-paper { background: var(--ct-paper); }
.narrow { max-width: 880px; margin-right: auto; margin-left: auto; }
.form-panel { padding: clamp(22px, 4vw, 38px); background: var(--ct-paper); border: 1px solid var(--ct-line); }
.form-panel .ct-input, .form-panel .ct-select, .form-panel textarea { margin-bottom: 16px; }
.form-panel .btn-ct { margin-top: 5px; }
.trade-benefits .info-card { background: var(--ct-white); }
.compare-table-wrap { overflow-x: auto; border-top: 1px solid var(--ct-line); }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 12px; }
.compare-table th, .compare-table td { padding: 16px 14px; border-bottom: 1px solid var(--ct-line); border-right: 1px solid var(--ct-line); text-align: left; vertical-align: middle; }
.compare-table th:last-child, .compare-table td:last-child { border-right: 0; }
.compare-table thead th { min-width: 180px; font: 11px var(--ct-mono); }
.compare-table thead th:first-child { min-width: 125px; }
.compare-table thead img { display: block; width: 100%; height: 150px; margin-bottom: 13px; object-fit: cover; }
.compare-table thead strong { display: block; margin-bottom: 10px; font: 11px/1.4 var(--ct-mono); }
.compare-table thead button { padding: 0; color: var(--ct-muted); background: none; border: 0; font: 10px var(--ct-mono); text-decoration: underline; }
.compare-table tbody th { color: var(--ct-muted); font: 10px var(--ct-mono); text-transform: lowercase; }
.compare-table tbody td { font: 11px var(--ct-mono); }
.prose-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: clamp(30px, 7vw, 90px); align-items: start; }
.prose-main h2 { margin: 0 0 12px; font: 20px var(--ct-mono); }
.prose-main h2:not(:first-child) { margin-top: 40px; }
.prose-main p { color: var(--ct-muted); font-size: 14px; line-height: 1.85; }
.prose-side { display: grid; gap: 14px; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 60px; }
.step-grid > div { padding-top: 17px; border-top: 2px solid var(--ct-black); }
.step-number { display: block; margin-bottom: 24px; color: var(--ct-rust); font: 12px var(--ct-mono); }
.step-grid h3 { margin: 0 0 8px; font-size: 14px; }
.step-grid p { margin: 0; color: var(--ct-muted); font-size: 13px; }
.sample-callout { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(25px, 5vw, 50px); color: var(--ct-white); background: var(--ct-black); }
.sample-callout h2 { margin: 0 0 10px; font-size: clamp(21px, 3vw, 32px); }
.sample-callout p { max-width: 500px; margin: 0; color: rgba(255,255,255,.75); font-size: 13px; }
.auth-page { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 76px); }
.auth-image { min-height: 620px; background: var(--ct-surface); }
.auth-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.auth-copy { display: flex; flex-direction: column; justify-content: center; max-width: 540px; padding: clamp(35px, 7vw, 100px); }
.auth-copy h1 { margin: 0 0 12px; font: clamp(30px, 4vw, 50px)/1 var(--ct-mono); letter-spacing: -.08em; }
.auth-copy .lead { margin: 0 0 26px; color: var(--ct-muted); font-size: 14px; }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 0 19px; font: 10px var(--ct-mono); }
.auth-switch { margin: 19px 0 0; color: var(--ct-muted); font-size: 12px; text-align: center; }
.auth-switch a { color: var(--ct-ink); text-decoration: underline; }
.address-grid, .project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.order-detail-card { padding: clamp(22px, 4vw, 40px); background: var(--ct-paper); }
.career-panel { max-width: 650px; padding: 45px; background: var(--ct-surface); }
.card-add { min-height: 30px; padding: 7px 9px; font-size: 9px; }
.tracking-result { margin-top: 38px; }
.tracking-result[hidden] { display: none; }
@media (max-width: 991.98px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-image { min-height: 320px; max-height: 420px; }
  .auth-copy { max-width: none; }
}
@media (max-width: 767.98px) {
  .utility-bar, .sample-callout { display: block; }
  .utility-bar .btn-ct-soft { margin-top: 18px; }
  .success-summary { grid-template-columns: 1fr; }
  .success-summary div { border-right: 0; border-bottom: 1px solid var(--ct-line); }
  .success-summary div:last-child { border-bottom: 0; }
  .prose-layout, .step-grid { grid-template-columns: 1fr; }
  .prose-side { margin-top: 10px; }
  .step-grid { gap: 30px; margin-bottom: 38px; }
  .sample-callout .btn-ct { margin-top: 22px; }
  .address-grid, .project-grid { grid-template-columns: 1fr; }
  .career-panel { padding: 27px; }
}

/* reference typography scale */
html:not([dir="rtl"]) h1,
html:not([dir="rtl"]) h2,
html:not([dir="rtl"]) h3,
html:not([dir="rtl"]) h4,
html:not([dir="rtl"]) h5,
html:not([dir="rtl"]) h6 {
  font-family: var(--ct-heading);
}
.ct-nav > a, .ct-nav .drop-label {
  font-family: var(--ct-body);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: .5px;
}
.ct-mega h6 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: normal;
}
.ct-mega li a {
  font-family: var(--ct-body);
  font-size: 18px;
  line-height: 26px;
}
.menu-offcanvas .nav-link,
.menu-offcanvas .m-panel .nav-link {
  font-family: var(--ct-body);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.ct-pagehead .lead { font-size: 18px; line-height: 28px; }
.ct-input, .ct-select, .ct-textarea, .form-control, .form-select {
  font-size: 16px;
  line-height: 26px;
}
.btn-ct, .btn-ct-outline, .btn-ct-soft {
  font-size: 16px;
  line-height: 26px;
}
.text-link, .about-join a { font-size: 16px; line-height: 26px; }
.product-card h5, .best-card h5, .shop-card h5, .blog-card h2, .blog-card h5 {
  font-family: var(--ct-heading);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.best-card p,
.editorial-copy p,
.content-narrow p, .content-narrow li,
.info-card p, .modal-copy p,
.pdp-accordion-panel p, .pdp-accordion-panel li,
.accordion-body,
.blog-single p, .blog-single li,
.legal-copy p, .legal-copy li,
.utility-card p, .prose-main p,
.step-grid p, .sample-callout p,
.auth-copy .lead {
  font-size: 16px;
  line-height: 26px;
}
.ct-footer h2 { font-size: 20px; line-height: 30px; }
.footer-col h3 { font-size: 16px; line-height: 26px; }
.foot-links a { font-size: 13px; line-height: 20px; }

@media (max-width: 1199.98px) {
  .ct-nav > a, .ct-nav .drop-label { font-size: 18px; }
}
@media (max-width: 991.98px) {
  .menu-offcanvas .nav-link,
  .menu-offcanvas .m-panel .nav-link { font-size: 16px; line-height: 26px; }
}

/* readable lowercase type scale */
.site-announcement { font-size: 12px; }
.eyebrow { font-size: 12px; }
.ct-breadcrumb, .kicker, .shop-toolbar, .filter-btn, .sort, .sort select,
.filter-pill, .filter-clear, .ct-pagination a, .ct-pagination span { font-size: 14px; }
.product-size, .shop-card .product-size, .product-card .product-size { font-size: 14px; line-height: 20px; }
.product-unit { font-size: 13px; }
.product-badge-text, .product-badge, .quick-view, .shop-card .quick { font-size: 12px; }
.form-label, .ct-label, .filter-block h5 { font-size: 14px; }
.filter-block > label { font-size: 14px !important; }
.filter-check { font-size: 14px; line-height: 20px; }
.gallery-filter button, .blog-filter button, .blog-card .date, .blog-card .read,
.blog-single .meta, .latest-posts .date, .legal-nav a, .suggestion-links a,
.g-cap, .g-meta { font-size: 14px; }
.pdp-360, .pdp-dim, .pdp-sku, .pdp-rating span, .pdp-price small,
.variant-label, .pdp-swatch span, .order-switcher button, .order-panel > p,
.order-price-row, .calc-breakdown span, .waste-option, .spec-item strong,
.spec-item span, .review-head strong, .cart-cols, .cart-name, .cart-meta,
.cart-stock, .cart-sub, .qty-stepper input, .cart-remove, .cart-coupon input,
.cart-coupon button, .cart-update, .totals-row, .totals-note, .cart-flow,
.checkout-banner, .checkout-step, .account-toggle, .account-benefits p,
.account-benefits ul, .shipping-option, .payment-option, .order-summary h2 a,
.summary-item h3, .summary-item p, .summary-item strong, .order-summary .totals-row,
.account-nav a, .table-row, .timeline-step, .project-copy p, .newsletter-form input,
.newsletter-msg, .foot-links a, .ct-copy, .calc-label, .size-btn, .calc-box-size,
.calc-min, .calc-note, .calc-stock, .contact-card p, .shipping-timeline .timeline-step span,
.contact-meta-grid p:not(.eyebrow), .btn-whatsapp, .cart-crumb, .cart-btn,
.cart-btn-dark, .totals-value, .totals-ship label, .totals-calc, .quote-btn,
.checkout-check, .order-head, .order-item h6, .order-item p, .order-price,
.order-line, .order-pay, .order-privacy, .ct-toast, .success-summary span,
.detail-list span, .success-summary strong, .detail-list strong, .compare-table thead th,
.compare-table thead strong, .compare-table thead button, .compare-table tbody th,
.compare-table tbody td, .auth-row, .auth-switch { font-size: 14px; }
.footer-col h3, .menu-offcanvas .nav-link, .menu-offcanvas .m-panel .nav-link { font-size: 16px; }
.status, .payment-chip, .step-number, .info-tooltip { font-size: 12px; }
.ct-footer .fine { font-size: 14px; }
.modal [style*="font-size"] { font-size: 14px !important; }

/* reference-style login and register popup */
#authModal .modal-dialog { width: calc(100% - 2rem); max-width: 600px; }
#authModal .modal-content { position: relative; background: var(--ct-white); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
#authModal .modal-body { padding: 48px; }
#authModal .ct-form-close { top: 10px; right: 10px; width: 18px; height: 18px; padding: 0; }
#authModal .ct-auth-panel { text-align: center; }
#authModal .modal-title { margin: 0 0 22px; color: var(--ct-ink); font: 28px/1.2 var(--ct-heading); font-weight: 400; letter-spacing: normal; }
#authModal .ct-auth-intro { margin: 0 0 30px; color: var(--ct-ink); font: 16px/26px var(--ct-body); }
#authModal .ct-auth-form { text-align: left; }
#authModal .ct-auth-form .ct-input { display: block; min-height: 54px; margin: 0 0 14px; padding: 14px 18px; background: transparent; border-color: var(--ct-line); font-size: 16px; line-height: 24px; }
#authModal .ct-auth-form .ct-input:focus { border-color: var(--ct-black); }
#authModal .ct-auth-options { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin: 8px 0 0; font: 14px/22px var(--ct-body); }
#authModal .ct-auth-options label, #authModal .ct-auth-newsletter { display: inline-flex; align-items: center; gap: 7px; margin: 0; }
#authModal .ct-auth-options input, #authModal .ct-auth-newsletter input { width: 15px; height: 15px; margin: 0; accent-color: var(--ct-black); }
#authModal .ct-auth-options a, #authModal .ct-auth-terms a, #authModal .ct-auth-switch a { text-decoration: underline; text-underline-offset: 3px; }
#authModal .ct-auth-form .btn-ct { width: 100%; min-height: 48px; margin-top: 26px; font-size: 16px; font-weight: 400; letter-spacing: .02em; }
#authModal .ct-auth-newsletter { margin-top: 8px; font: 14px/22px var(--ct-body); }
#authModal .ct-auth-terms { margin: 18px 0 0; color: var(--ct-muted); font: 14px/22px var(--ct-body); }
#authModal .ct-auth-switch { margin: 28px 0 0; color: var(--ct-ink); font: 14px/22px var(--ct-body); text-align: center; }
@media (max-width: 575.98px) {
  #authModal .modal-dialog { width: calc(100% - 1.5rem); margin: .75rem auto; }
  #authModal .modal-body { padding: 38px 22px 30px; }
  #authModal .modal-title { font-size: 25px; }
  #authModal .ct-auth-intro { font-size: 15px; line-height: 24px; }
  #authModal .ct-auth-options { align-items: flex-start; flex-direction: column; gap: 6px; }
}

/* reference-style header search side popup */
.ct-search-trigger { display: inline-flex; position: relative; align-items: center; justify-content: center; width: 25px; height: 30px; padding: 0; color: var(--ct-ink); background: none; border: 0; appearance: none; }
.ct-search-trigger svg { width: 19px; height: 19px; }
.ct-search-offcanvas { width: min(520px, 100vw) !important; color: var(--ct-ink); background: var(--ct-white); border-left: 1px solid var(--ct-line); box-shadow: -20px 0 50px rgba(0,0,0,.08); }
.ct-search-offcanvas .offcanvas-header { min-height: 76px; padding: 20px 28px; border-bottom: 1px solid var(--ct-line); }
.ct-search-offcanvas .offcanvas-title { margin: 0; font: 28px/1.2 var(--ct-heading); font-weight: 400; }
.ct-search-offcanvas .offcanvas-body { padding: 34px 28px; }
.ct-search-intro { max-width: 360px; margin: 0 0 28px; font: 18px/28px var(--ct-body); }
.ct-drawer-search { margin: 0; }
.ct-drawer-search-field { display: flex; align-items: stretch; border-bottom: 1px solid var(--ct-ink); }
.ct-drawer-search-field input { min-width: 0; flex: 1; padding: 13px 0; color: var(--ct-ink); background: transparent; border: 0; outline: 0; font: 16px/26px var(--ct-body); }
.ct-drawer-search-field input::placeholder { color: var(--ct-muted); opacity: 1; }
.ct-drawer-search-field button { display: inline-flex; align-items: center; justify-content: center; width: 42px; padding: 0; color: var(--ct-ink); background: transparent; border: 0; }
.ct-drawer-search-field button:hover { color: var(--ct-rust); }
.ct-drawer-search-field svg { width: 20px; height: 20px; }
.ct-search-note { margin: 20px 0 0; color: var(--ct-muted); font: 14px/22px var(--ct-body); }
@media (max-width: 575.98px) {
  .ct-search-offcanvas .offcanvas-header { padding: 18px 20px; }
  .ct-search-offcanvas .offcanvas-body { padding: 28px 20px; }
}

/* search drawer matches the supplied reference */
.ct-search-offcanvas { width: min(600px, 100vw) !important; max-width: 600px; padding: 0; color: var(--ct-ink); background: var(--ct-white); border: 0; box-shadow: -18px 0 50px rgba(0,0,0,.12); }
.ct-search-reference-panel { position: relative; min-height: 100%; padding: 66px 6px; }
.ct-search-reference-panel .ct-drawer-search { width: 100%; margin: 0; }
.ct-search-reference-panel .ct-drawer-search label { display: flex; align-items: center; width: 100%; margin: 0; padding: 0 0 14px; border-bottom: 1px solid var(--ct-line); }
.ct-search-reference-panel .ct-drawer-search label > svg { width: 18px; height: 18px; flex: 0 0 auto; margin-right: 14px; color: var(--ct-ink); }
.ct-search-reference-panel .ct-drawer-search input { width: 100%; min-width: 0; padding: 0; color: var(--ct-ink); background: transparent; border: 0; outline: 0; font: 18px/28px var(--ct-body); }
.ct-search-reference-panel .ct-drawer-search input::placeholder { color: var(--ct-ink); opacity: 1; }
.ct-search-reference-panel .ct-search-close { position: absolute; top: 24px; right: 26px; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; padding: 0; color: var(--ct-ink); background: transparent; border: 0; }
.ct-search-reference-panel .ct-search-close:hover { color: var(--ct-rust); }
.ct-search-reference-panel .ct-search-close svg { width: 20px; height: 20px; }
@media (max-width: 575.98px) {
  .ct-search-offcanvas { width: min(360px, 100vw) !important; }
  .ct-search-reference-panel { padding: 66px 20px 40px; }
  .ct-search-reference-panel .ct-search-close { right: 18px; }
}

/* search drawer uses the same side-popup treatment as the cart */
#searchOffcanvas {
  --bs-offcanvas-width: min(600px, 100vw);
  width: min(600px, 100vw);
  max-width: 100vw;
  padding: 30px;
  color: var(--ct-ink);
  background: var(--ct-white);
  border: 0;
  box-shadow: 0 12px 40px rgba(23,23,19,.18);
}
#searchOffcanvas .offcanvas-header {
  flex: 0 0 auto;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--ct-line) !important;
}
#searchOffcanvas .offcanvas-header .modal-title { margin: 0; font: 20px/30px var(--ct-heading); font-weight: 400; }
#searchOffcanvas .offcanvas-header .btn-close { margin: 0; opacity: 1; }
#searchOffcanvas .offcanvas-body { display: block; min-height: 0; padding: 24px 0 0; overflow-y: auto; }
#searchOffcanvas .ct-drawer-search .ct-label { margin-bottom: 8px; font: 14px/22px var(--ct-body); font-weight: 400; letter-spacing: 0; }
#searchOffcanvas .ct-drawer-search .ct-input { min-height: 54px; margin-bottom: 16px; padding: 13px 14px; font-size: 16px; }
#searchOffcanvas .ct-drawer-search .btn-ct { min-height: 48px; font-size: 16px; font-weight: 400; letter-spacing: 0; }
@media (max-width: 460px) {
  #searchOffcanvas { width: min(360px, 100vw); padding: 24px 20px; }
}

/* show matching products inside the cart-style search drawer */
#searchOffcanvas .ct-drawer-results { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--ct-line); }
#searchOffcanvas .ct-drawer-results-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; font: 14px/22px var(--ct-body); }
#searchOffcanvas .ct-drawer-results-head strong { font-weight: 400; }
#searchOffcanvas .ct-drawer-result-list { display: grid; gap: 14px; }
#searchOffcanvas .ct-drawer-result { display: flex; align-items: flex-start; gap: 13px; padding-bottom: 14px; color: var(--ct-ink); border-bottom: 1px solid var(--ct-line); }
#searchOffcanvas .ct-drawer-result img { display: block; width: 76px; height: 76px; flex: 0 0 76px; padding: 6px; background: var(--ct-surface); object-fit: cover; }
#searchOffcanvas .ct-drawer-result span { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
#searchOffcanvas .ct-drawer-result strong { font: 16px/20px var(--ct-body); font-weight: 400; }
#searchOffcanvas .ct-drawer-result small { color: var(--ct-muted); font: 13px/18px var(--ct-body); }
#searchOffcanvas .ct-drawer-result b { margin-top: 3px; font: 13px/18px var(--ct-body); font-weight: 400; }
#searchOffcanvas .ct-drawer-result:hover strong { color: var(--ct-rust); }
#searchOffcanvas .ct-drawer-no-results { margin: 18px 0 0; color: var(--ct-muted); font: 14px/22px var(--ct-body); }
#searchOffcanvas .ct-drawer-view-all { width: 100%; margin-top: 20px; min-height: 44px; font-size: 14px; font-weight: 400; letter-spacing: 0; }
@media (max-width: 460px) {
  #searchOffcanvas .ct-drawer-result img { width: 64px; height: 64px; flex-basis: 64px; }
  #searchOffcanvas .ct-drawer-result strong { font-size: 14px; line-height: 18px; }
}

/* add-address popup — matched to the supplied Club Tino reference */
.ct-address-modal .modal-dialog { width: calc(100% - 2rem); max-width: 800px; }
.ct-address-modal .modal-content { position: relative; color: var(--ct-ink); background: var(--ct-white); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.ct-address-modal .ct-form-close { top: 10px; right: 10px; width: 18px; height: 18px; padding: 0; }
.ct-address-modal .modal-body { padding: 48px; }
.ct-address-modal .modal-title { margin: 0; color: var(--ct-ink); font: 28px/38px var(--ct-heading); font-weight: 500; letter-spacing: normal; }
.ct-address-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 30px; text-align: left; }
.ct-address-field { display: grid; gap: 10px; min-width: 0; }
.ct-address-field.full { grid-column: 1 / -1; }
.ct-address-field label { color: var(--ct-ink); font: 16px/26px var(--ct-body); font-weight: 400; }
.ct-address-field input,
.ct-address-field select { width: 100%; min-height: 54px; padding: 14px 24px; color: var(--ct-ink); background: transparent; border: 1px solid var(--ct-line); border-radius: 0; outline: 0; font: 16px/24px var(--ct-body); font-weight: 300; text-transform: none; }
.ct-address-field input:focus,
.ct-address-field select:focus { border-color: var(--ct-black); }
.ct-address-field select { appearance: none; padding-right: 52px; background-image: linear-gradient(45deg, transparent 50%, var(--ct-ink) 50%), linear-gradient(135deg, var(--ct-ink) 50%, transparent 50%); background-position: calc(100% - 28px) 25px, calc(100% - 22px) 25px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.ct-address-save { display: flex; width: 100%; min-height: 52px; align-items: center; justify-content: center; grid-column: 1 / -1; padding: 13px 34px; margin: 0; color: var(--ct-white); background: var(--ct-black); border: 1px solid transparent; font: 16px/24px var(--ct-body); font-weight: 400; text-transform: uppercase; }
.ct-address-save:hover { color: var(--ct-white); background: #292929; }
.ct-address-form .form-msg { grid-column: 1 / -1; margin: -8px 0 0; font: 14px/22px var(--ct-body); }
@media (max-width: 575.98px) {
  .ct-address-modal .modal-dialog { width: calc(100% - 1rem); margin: .5rem auto; }
  .ct-address-modal .modal-body { padding: 36px 24px 30px; }
  .ct-address-form { grid-template-columns: 1fr; gap: 24px; }
  .ct-address-field.full, .ct-address-save { grid-column: auto; }
}

/* account pages shaped from the supplied Club Tino reference */
.account-ref-page { background: var(--ct-white); }
.account-ref-page .account-ref-head { padding: 61px 20px 0; text-align: center; }
.account-ref-page .account-ref-head h1 { margin: 0; color: var(--ct-ink); font: 38px/48px var(--ct-heading); font-weight: 400; letter-spacing: -.04em; }
.account-ref-page .account-ref-crumb { display: flex; justify-content: center; gap: 12px; margin: 13px 0 0; color: var(--ct-muted); font: 16px/26px var(--ct-body); }
.account-ref-page .account-ref-crumb strong { color: var(--ct-ink); font-weight: 700; }
.account-ref-page .account-ref-crumb a { color: var(--ct-muted); }
.account-ref-page .account-ref-wide { width: calc(100% - 76px); max-width: 1400px; margin-right: auto; margin-left: auto; }
.account-ref-page .account-ref-shell { width: calc(100% - 144px); max-width: 1296px; margin-right: auto; margin-left: auto; }
.account-ref-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 3px; }
.account-ref-tabs a { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; padding: 0 23px; color: var(--ct-ink); background: var(--ct-white); border: 1px solid var(--ct-black); font: 16px/26px var(--ct-body); font-weight: 400; white-space: nowrap; }
.account-ref-tabs a:hover,
.account-ref-tabs a.active { color: var(--ct-white); background: var(--ct-black); }
.account-ref-dashboard { margin-top: 128px; padding-bottom: 57px; }
.account-ref-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px; }
.account-ref-card { display: flex; min-height: 168px; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--ct-white); background: linear-gradient(135deg, #171717 0%, #464646 100%); border-radius: 10px !important; box-shadow: 0 1px 0 rgba(0,0,0,.08); transition: transform .2s ease, box-shadow .2s ease; }
.account-ref-card:hover { color: var(--ct-white); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(23,23,19,.14); }
.account-ref-card svg { width: 68px; height: 68px; color: var(--ct-white); }
.account-ref-card span { font: 16px/24px var(--ct-body); font-weight: 700; }
.account-ref-content .account-ref-tabs { margin-top: 58px; }
.account-ref-content { padding-bottom: 140px; }
.account-ref-order .order-list { margin-top: 64px; }
.reference-order { display: grid; grid-template-columns: 46px minmax(0, 1fr); min-height: 242px; border: 1px solid #d0d0d0; }
.reference-order + .reference-order { margin-top: 20px; }
.reference-order-date { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ct-white); background: var(--ct-black); font-family: var(--ct-body); }
.reference-order-date strong { font: 20px/26px var(--ct-body); font-weight: 400; }
.reference-order-date span { font: 18px/26px var(--ct-body); }
.reference-order-main { min-width: 0; }
.reference-order-meta { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 18px; align-items: center; min-height: 46px; padding: 0 10px; color: var(--ct-ink); background: #f1f1f1; font: 14px/20px var(--ct-body); }
.reference-order-meta > :nth-child(2) { text-align: center; }
.reference-order-meta > :last-child { text-align: right; }
.reference-order-meta strong { font-weight: 700; }
.reference-status { display: inline-flex; align-items: center; gap: 5px; }
.reference-status i { display: inline-block; width: 14px; height: 14px; background: #f4c400; }
.reference-status.delivered i { background: #299469; }
.reference-order-item { display: flex; align-items: center; gap: 10px; min-height: 122px; padding: 20px 10px 10px; }
.reference-order-item img { display: block; width: 58px; height: 80px; flex: 0 0 58px; padding: 7px; background: var(--ct-surface); object-fit: cover; }
.reference-order-copy { min-width: 0; }
.reference-order-copy h2 { margin: 0 0 6px; color: var(--ct-ink); font: 16px/23px var(--ct-body); font-weight: 700; }
.reference-order-copy p { margin: 0 0 7px; color: var(--ct-ink); font: 14px/20px var(--ct-body); }
.reference-order-copy strong { display: block; color: var(--ct-ink); font: 15px/22px var(--ct-body); font-weight: 700; }
.reference-order-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 10px 10px; }
.reference-order-actions a { display: inline-flex; min-width: 122px; min-height: 46px; align-items: center; justify-content: center; padding: 0 14px; color: var(--ct-green); border: 1px solid #d3d3d3; font: 14px/20px var(--ct-body); }
.reference-order-actions a:hover { color: var(--ct-ink); border-color: var(--ct-black); }
.reference-order-actions a.order-info { color: #1769cf; }
.reference-order-actions a.reorder { color: #c34862; }
.account-ref-address .address-list { margin-top: 72px; }
.account-ref-add-bar { display: flex; width: 100%; min-height: 52px; align-items: center; justify-content: center; padding: 0 18px; color: var(--ct-white); background: var(--ct-black); border: 0; font: 16px/26px var(--ct-body); }
.account-ref-add-bar:hover { color: var(--ct-white); background: #292929; }
.account-ref-add-bar span { margin-right: 4px; font-size: 23px; line-height: 1; }
.reference-address { display: flex; align-items: center; gap: 20px; min-height: 114px; padding: 22px 14px; border-bottom: 1px solid #e6e6e6; }
.reference-address.is-selected { background: #d0d0d0; }
.reference-address input { width: 32px; height: 32px; flex: 0 0 32px; margin: 0; appearance: none; background: var(--ct-white); border: 1px solid var(--ct-black); border-radius: 50% !important; }
.reference-address input:checked { box-shadow: inset 0 0 0 9px var(--ct-white); background: var(--ct-black); }
.reference-address-copy { min-width: 0; }
.reference-address-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 20px; margin-bottom: 8px; font: 14px/20px var(--ct-body); }
.reference-address-line strong { font-weight: 700; }
.reference-address-line a { color: #1769cf; font-weight: 700; }
.reference-address-copy p { margin: 0; color: var(--ct-ink); font: 14px/22px var(--ct-body); }
.reference-address .address-secondary { color: var(--ct-muted); }
.account-ref-password .password-panel { margin-top: 64px; }
.reference-password-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 27px 24px; }
.reference-password-field { display: grid; gap: 9px; }
.reference-password-field.full { grid-column: 1 / -1; }
.reference-password-field label { color: var(--ct-ink); font: 14px/20px var(--ct-body); font-weight: 700; }
.reference-password-field input { width: 100%; min-height: 54px; padding: 12px 13px; color: var(--ct-ink); background: var(--ct-white); border: 1px solid #dedede; outline: 0; font: 16px/26px var(--ct-body); }
.reference-password-field input:focus { border-color: var(--ct-black); }
.reference-password-submit { display: flex; width: 100%; min-height: 52px; align-items: center; justify-content: center; grid-column: 1 / -1; margin-top: -2px; color: var(--ct-white); background: var(--ct-black); border: 0; font: 16px/26px var(--ct-body); }
.reference-password-submit:hover { background: #292929; }
.reference-password-form .form-msg { grid-column: 1 / -1; margin: -10px 0 0; font: 14px/22px var(--ct-body); }
.account-ref-wishlist .wishlist-table { margin-top: 32px; border: 1px solid #e2e2e2; }
.reference-wishlist-head,
.reference-wishlist-row { display: grid; grid-template-columns: minmax(0, 1fr) 145px 140px 166px; gap: 24px; align-items: center; }
.reference-wishlist-head { min-height: 73px; padding: 0 32px; color: var(--ct-ink); border-bottom: 1px solid #e2e2e2; font: 14px/20px var(--ct-body); font-weight: 400; }
.reference-wishlist-row { min-height: 149px; padding: 20px 40px; border-bottom: 1px solid #e2e2e2; }
.reference-wishlist-row:last-child { border-bottom: 0; }
.reference-wishlist-product { display: flex; min-width: 0; align-items: center; gap: 23px; }
.reference-wishlist-remove { width: 20px; flex: 0 0 20px; padding: 0; color: var(--ct-black); background: transparent; border: 0; font: 22px/1 var(--ct-body); }
.reference-wishlist-remove:hover { color: var(--ct-rust); }
.reference-wishlist-product img { display: block; width: 80px; height: 80px; flex: 0 0 80px; padding: 8px; background: var(--ct-surface); object-fit: cover; }
.reference-wishlist-copy { min-width: 0; }
.reference-wishlist-copy h2 { margin: 0 0 9px; color: var(--ct-ink); font: 16px/23px var(--ct-body); font-weight: 700; }
.reference-wishlist-copy p { margin: 0 0 4px; color: var(--ct-rust); font: 14px/20px var(--ct-body); }
.reference-wishlist-copy span { display: block; color: var(--ct-ink); font: 14px/20px var(--ct-body); }
.reference-wishlist-price,
.reference-wishlist-stock { color: var(--ct-ink); font: 14px/20px var(--ct-body); }
.reference-wishlist-stock { text-transform: lowercase; }
.reference-wishlist-add { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 20px; color: var(--ct-white); background: var(--ct-black); border: 1px solid var(--ct-black); font: 14px/20px var(--ct-body); }
.reference-wishlist-add:hover { color: var(--ct-black); background: var(--ct-white); }
.account-ref-empty { padding: 60px 20px; text-align: center; }
.account-ref-empty h2 { margin: 0 0 10px; font: 22px/30px var(--ct-body); font-weight: 700; }
.account-ref-empty p { margin: 0; color: var(--ct-muted); font: 16px/26px var(--ct-body); }

@media (max-width: 991.98px) {
  .account-ref-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .account-ref-dashboard { margin-top: 70px; padding-bottom: 70px; }
  .account-ref-shell { width: calc(100% - 48px); }
  .account-ref-wide { width: calc(100% - 48px) !important; }
  .reference-wishlist-head, .reference-wishlist-row { grid-template-columns: minmax(0, 1fr) 110px 118px 135px; gap: 14px; padding-right: 20px; padding-left: 20px; }
}
@media (max-width: 767.98px) {
  .account-ref-page .account-ref-head { padding-top: 45px; }
  .account-ref-page .account-ref-head h1 { font-size: 32px; line-height: 42px; }
  .account-ref-dashboard { margin-top: 58px; }
  .account-ref-card-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .account-ref-card { min-height: 145px; }
  .account-ref-card svg { width: 57px; height: 57px; }
  .account-ref-card span { font-size: 14px; line-height: 20px; text-align: center; }
  .account-ref-tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; }
  .account-ref-tabs a { min-height: 50px; padding: 0 16px; font-size: 14px; }
  .account-ref-content .account-ref-tabs { margin-top: 42px; }
  .reference-order { grid-template-columns: 42px minmax(0, 1fr); }
  .reference-order-meta { grid-template-columns: 1fr; gap: 5px; align-items: start; padding: 12px 10px; }
  .reference-order-meta > :nth-child(2), .reference-order-meta > :last-child { text-align: left; }
  .reference-order-item { align-items: flex-start; }
  .reference-order-copy h2 { font-size: 14px; line-height: 20px; }
  .reference-order-copy p, .reference-order-copy strong, .reference-order-actions a { font-size: 13px; }
  .account-ref-address .address-list { margin-top: 42px; }
  .reference-address { gap: 13px; padding: 19px 10px; }
  .reference-address input { width: 26px; height: 26px; flex-basis: 26px; }
  .reference-address-line { gap: 10px; font-size: 13px; }
  .reference-address-copy p { font-size: 13px; }
  .account-ref-password .password-panel { margin-top: 42px; }
  .reference-password-form { grid-template-columns: 1fr; gap: 20px; }
  .reference-password-field.full, .reference-password-submit { grid-column: auto; }
  .reference-wishlist-head { display: none; }
  .account-ref-wishlist .wishlist-table { margin-top: 35px; }
  .reference-wishlist-row { display: grid; grid-template-columns: minmax(0, 1fr) 92px; gap: 13px; min-height: 0; padding: 20px 15px; }
  .reference-wishlist-product { grid-column: 1 / -1; gap: 14px; }
  .reference-wishlist-product img { width: 68px; height: 68px; flex-basis: 68px; }
  .reference-wishlist-copy h2 { font-size: 14px; line-height: 20px; }
  .reference-wishlist-copy p, .reference-wishlist-copy span, .reference-wishlist-price, .reference-wishlist-stock { font-size: 13px; line-height: 19px; }
  .reference-wishlist-add { grid-column: 2; grid-row: 2; min-height: 40px; padding: 0 10px; font-size: 13px; }
  .reference-wishlist-price { grid-column: 1; grid-row: 2; align-self: center; }
  .reference-wishlist-stock { grid-column: 1; grid-row: 3; }
}
@media (max-width: 460px) {
  .account-ref-card-grid { grid-template-columns: 1fr; }
  .account-ref-card { min-height: 132px; }
  .account-ref-shell, .account-ref-wide { width: calc(100% - 36px) !important; }
  .reference-order { grid-template-columns: 38px minmax(0, 1fr); }
  .reference-order-date strong { font-size: 17px; }
  .reference-order-date span { font-size: 15px; }
  .reference-order-item { padding-right: 7px; padding-left: 7px; }
  .reference-order-item img { width: 50px; height: 70px; flex-basis: 50px; }
  .reference-order-actions { padding-right: 7px; padding-left: 7px; }
  .reference-order-actions a { min-width: 0; flex: 1 1 120px; }
  .reference-wishlist-product img { width: 58px; height: 58px; flex-basis: 58px; }
}
