:root {
  /* Base */
  --site-max: 1180px;
  --bg: #fff;
  --bg2: #f7f7f4;
  --surface: #f1f1ec;
  --border: #e5e2da;
  --text: #141414;
  --muted: #77746c;
  --acc: #4b4343;
  --acc-text: #fff;
  --acc2: #d8c79d;
  --acc2-text: #111;
  --price: #788d51;

  /* Typography */
  --font-h: "DM Sans", sans-serif;
  --font-c: "DM Sans", sans-serif;
  --font-b: "DM Sans", sans-serif;

  /* Layout */
  --r: 10px;
  --nav-h: 72px;

  /* NAV */
  --nav-bg: rgba(255, 255, 255, 0.94);
  --nav-border: var(--border);
  --nav-text: var(--text);
  --nav-muted: var(--muted);
  --nav-cart-bg: var(--text);
  --nav-cart-text: #fff;

  /* HERO */
  --hero-height: 340px;
  --hero-overlay: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.22)
  );
  --hero-title: #fff;
  --hero-kicker-bg: rgba(255, 255, 255, 0.92);
  --hero-kicker-text: var(--text);

  /* BUTTONS */
  --btn-primary-bg: var(--text);
  --btn-primary-text: #fff;
  --btn-ghost-border: rgba(255, 255, 255, 0.55);
  --btn-ghost-bg: rgba(255, 255, 255, 0.12);
  --btn-ghost-text: #fff;

  /* CARD */
  --card-bg: var(--card-bg);
  --card-border: var(--border);
  --card-title: var(--acc);
  --card-meta: var(--muted);
  --card-price: var(--price);
  --card-badge-bg: var(--text);
  --card-badge-text: #fff;
  --card-cta-bg: #fff;
  --card-cta-text: var(--text);

  /* TAG SECTION */
  --tag-bg: var(--bg2);
  --tag-border: var(--border);
  --tag-text: var(--text);

  /* PRODUCT PAGE */
  --product-title: var(--text);
  --product-price: var(--text);
  --product-meta: var(--muted);
  --size-bg: #fff;
  --size-text: var(--text);
  --size-active-bg: var(--text);
  --size-active-text: #fff;

  /* FOOTER */
  --footer-bg: transparent;
  --footer-text: var(--text);
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.45;
}
.marquee-wrap {
  background: #111;
  color: #fff;
  border-bottom: 1px solid #111;
  padding: 8px 0;
}
.marquee-inner span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 34px;
}
.marquee-inner span::after {
  margin-left: 34px;
  opacity: 0.45;
}
nav {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(14px);
  padding: 0 max(24px, calc((100vw - var(--site-max)) / 2));
}
.logo {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 22px;
  color: var(--text);
}
.logo em {
  font-style: normal;
  color: var(--muted);
}
.logo-img {
  height: 42px;
  width: auto;
}
.nav-center {
  gap: 28px;
}
.nav-center a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-center a:hover {
  color: var(--text);
}
.nav-right {
  gap: 12px;
}
.nav-search {
  height: 38px;
  width: 210px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  border-radius: 999px;
  padding: 0 14px;
  font-size: 13px;
}
.btn-cart {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--text);
  color: #fff;
  font-size: 18px;
  padding: 0;
}
.btn-cart #cart-count {
  width: 19px;
  height: 19px;
  right: -4px;
  bottom: -4px;
  border-radius: 999px;
  background: var(--acc2);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
}
.hero {
  min-height: var(--hero-height);
  margin-bottom: 34px;
  background: var(--text) center/cover no-repeat;
}
.hero-overlay {
  background: var(--hero-overlay);
}
.hero-content {
  min-height: 340px;
  gap: 32px;
}
.hero-tag {
  display: inline-flex;
  background: var(--hero-kicker-bg);
  color: var(--hero-kicker-text);
  border: 1px solid color-mix(in srgb, var(--hero-kicker-text) 12%, transparent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero-tag:before {
  content: none;
}
.hero-h1 {
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: var(--hero-title);
  max-width: 740px;
  margin-bottom: 22px;
  text-transform: none;
  font-weight: 900;
}
.hero-ctas {
  gap: 10px;
}
.btn-primary,
.btn-wa,
.cart-empty-btn {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.15s,
    opacity 0.15s;
}
.btn-primary:hover,
.btn-wa:hover,
.cart-empty-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-ghost,
.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-mini-card {
  width: 150px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.hero-mini-info {
  padding: 10px;
}
.hero-mini-name {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: -0.02em;
}
.hero-mini-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--acc2);
}
.tag-section {
  width: min(100% - 48px, var(--site-max));
}
.tag-section-title {
  font-size: 22px;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  font-weight: 900;
}
.tag-section-grid {
  padding: 14px 0;
}
.tag-section-card {
  min-height: 126px;
  border-radius: 18px;
  color: var(--text);
  text-decoration: none;
  transition:
    transform 0.16s,
    border-color 0.16s,
    box-shadow 0.16s;
}
.tag-section-card:hover {
  transform: translateY(-2px);
  border-color: #ccc6b8;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
}
.tag-section-img img {
  width: 66px;
  height: 66px;
  border-radius: 999px;
}
.tag-section-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.cat-bar {
  width: min(100% - 48px, var(--site-max));
  margin: 0 auto 26px;
  padding: 0 0 10px;
  gap: 8px;
  border-bottom: 0;
}
.cat-pill {
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-pill:hover {
  border-color: #c9c4b8;
  color: var(--text);
  background: var(--bg);
}
.cat-pill.on {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
.catalog-wrap {
  gap: 34px;
  padding: 12px 0 72px;
}
.sidebar {
  top: calc(var(--nav-h) + 24px);
  max-height: calc(100vh - var(--nav-h) - 48px);
  padding: 4px 24px 0 0;
  border-right: 1px solid var(--border);
}
.sb-hd {
  margin-bottom: 22px;
}
.sb-title,
.fg-title {
  color: var(--text);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sb-clear {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.fg {
  margin-bottom: 24px;
}
.fg-title {
  padding-bottom: 9px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.fo {
  padding: 5px 0;
}
.fo a {
  color: var(--muted);
  font-size: 13px;
}
.fo a:hover {
  color: var(--text);
}
.price-input,
.sort-sel {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}
.main {
  padding-left: 0;
}
.toolbar {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.tc {
  color: var(--muted);
  font-size: 13px;
}
.tc strong {
  color: var(--text);
  font-weight: 900;
}
.vb {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  border-radius: 9px;
  padding: 8px 10px;
}
.vb.on {
  background: var(--bg2);
  border-color: var(--text);
  color: #fff;
}
.pgrid {
  gap: 22px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  transition:
    transform 0.16s,
    box-shadow 0.16s,
    border-color 0.16s;
}
.card:hover {
  background: var(--card-bg);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.07);
  border-color: #d3cec3;
  transition:.3s all;
}
.card:hover .cname,
.card:hover .cleague,
.card:hover .cprice,
.card:hover .small-note {
  opacity: 1;
}

.ci {
  background: var(--bg2);
  border-radius: 18px 18px 0 0;
}
.ci img {
  transition: transform 0.45s;
}
.card:hover .ci img {
  transform: scale(1.035);
}
.no-img-inner {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.badge {
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge.new {
  background: var(--card-badge-bg);
  color: var(--card-badge-text);
}
.card-cta {
  padding: 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.18s;
}
.card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}
.bc {
  width: 100%;
  background: var(--card-cta-bg);
  color: var(--card-cta-text);
  border: 0;
  border-radius: 999px;
  padding: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cinfo {
  padding: 14px 14px 16px;
}
.cleague {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.cname {
  position: relative;

  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--card-title);

  min-height: calc(1.3em * 2);

  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}
.cmeta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}
.cprice {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.025em;
  color: var(--card-price);
  white-space: nowrap;
}

.cprice .small-note {
  font-size: 11px;
  color: var(--muted);
}
.csizes {
  gap: 4px;
  justify-content: flex-end;
}
.csize {
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 800;
}
.pag {
  gap: 6px;
  margin-top: 42px;
}
.pg {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}
.pg:hover,
.pg.on {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.section,
.section-last {
  padding-top: 34px;
  padding-bottom: 44px;
}
.section-hd {
  margin-bottom: 18px;
}
.section-title {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: none;
}
.section-link {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-layout {
  gap: 46px;
  padding-top: 38px;
  padding-bottom: 72px;
}
.product-img-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.product-thumb {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.product-thumb.active {
  border-color: var(--text);
}
.product-eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: none;
  margin-bottom: 18px;
  font-weight: 950;
  color: var(--product-title);
}
.product-tags {
  gap: 6px;
  margin-bottom: 24px;
}
.product-tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
}
.product-size-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-size-grid {
  gap: 8px;
}
.sz-btn {
  border: 1px solid var(--border);
  background: var(--size-bg, var(--card-bg));
  color: var(--size-text, var(--text));
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
}
.sz-btn .sz-btn-price {
  color: var(--size-price, var(--muted));
}
.sz-btn.active,
.sz-btn:focus {
  background: var(--size-active-bg, var(--acc2));
  color: var(--size-active-text, var(--acc2-text));
  border-color: var(--text);
}
.sz-btn.active .sz-btn-price,
.sz-btn:focus .sz-btn-price {
  color: var(--size-active-text, var(--acc2-text));
}
.product-price {
  color: var(--product-price);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.product-delivery {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-ctas {
  gap: 10px;
}
.btn-full {
  min-height: 48px;
}
.btn-ig {
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 900;
}
.product-back {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.cart-pdf-order-form{display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}
.cart-pdf-order-form input{
  
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}
.custom-toggle {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}
.order-share-box {
  display: grid;
  gap: 14px;
}

.order-share-box h3 {
  margin: 0;
}

.order-share-help {
  margin: 0;
  color: #666;
}

.order-share-list {
  display: grid;
  gap: 14px;
}

.order-share-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  background: #fff;
}

.order-share-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  background: #f2f2f2;
}

.order-share-info {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.order-share-title {
  font-weight: 800;
}

.order-share-message {
  max-height: 130px;
  overflow: auto;
  white-space: pre-wrap;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  background: #f6f6f6;
  color: #333;
}

@media (max-width: 560px) {
  .order-share-row {
    grid-template-columns: 88px 1fr;
  }

  .order-share-thumb {
    width: 88px;
    height: 88px;
  }
}
.custom-input {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}
.custom-block {
  width: min(100% - 48px, var(--site-max));
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.custom-block-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.custom-block-text {
  margin: 0 0 14px;
  color: inherit;
  opacity: 0.88;
}
.custom-block-inner {
  gap: 24px;
}
.custom-block-media {
  max-width: 260px;
}
.custom-block-media img {
  border-radius: 14px;
}
.cart-page {
  padding-top: 38px;
  padding-bottom: 72px;
}
.cart-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 950;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
}
.cart-layout {
  gap: 28px;
}
.cart-item {
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item {
  grid-template-columns: 158px minmax(0,1fr) auto;
}
.cart-item-image {
  width: 158px;
  height: 158px;
  border-radius: 14px;
  background: var(--bg2);
}
.cart-item-title {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 5px;
}
.cart-order-note {
  width: 100%;
  min-height: 60px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font: inherit;
  display: none;
}
.cart-price-main,
.cart-price-muted,
.cart-summary-row {
  font-size: 13px;
}
.cart-price-muted,
.cart-summary-note {
  color: var(--muted);
}
.cart-meta,
.cart-customization {
  font-size: 13px;
  color: var(--text);
}
.cart-meta span {
  font-weight: bold;
}
.cart-note-wrap {
  display: none;
  margin-top: 10px;
}
.cart-item-note {
  width: 100%;
  max-width: 520px;
  min-height: 44px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 11px;
  font: inherit;
}
.cart-qty {
  gap: 8px;
  margin-top: 8px;
}
.cart-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}
.cart-line-total {
  font-weight: 950;
  font-size: 16px;
}
.cart-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.cart-summary {
  top: calc(var(--nav-h) + 24px);
  border: 1px solid var(--border);
  background: var(--bg2);
  border-radius: 20px;
  padding: 22px;
}
.cart-summary-title {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.cart-summary-total {
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
  font-weight: 950;
}
.cart-checkout-btn {
  border-radius: 999px;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 10px;
}
.cart-checkout-btn.whatsapp {
  background: var(--text);
  color: #fff;
}
.cart-checkout-btn.instagram {
  background: #e1306c;
  color: #fff;
}
.cart-continue {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}
.footer-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--strip-bg, var(--surface));
  color: var(--strip-text, var(--text));
}
.footer-marquee-inner span {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
  padding: 0 34px;
  color: var(--strip-text, var(--text));
}
.footer-marquee-inner span.acc {
  color: var(--muted);
}
footer {
  width: min(100% - 48px, var(--site-max));
  margin: 0 auto;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 44px 0 26px;
}
.fl-logo {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.fl-logo em {
  color: var(--muted);
}
.fl-logo-img {
  height: 46px;
}
.fl-p {
  color: var(--muted);
  font-size: 13px;
  max-width: 260px;
}
.fc-title {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.fc-links {
  gap: 8px;
}
.fc-links a {
  font-size: 13px;
  color: var(--text);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 960px) {
  nav {
    padding-left: 16px;
    padding-right: 16px;
  }
  .logo {
    font-size: 18px;
  }
  .hero,
  .hero-content {
    min-height: 250px;
  }
  .hero-h1 {
    font-size: clamp(34px, 10vw, 54px);
  }
  .catalog-wrap {
    padding-top: 0;
  }
  .pgrid {
    gap: 14px;
  }
  .cinfo {
    padding: 11px;
  }
  .cname {
    min-height: 34px;
    font-size: 12px;
  }
  .cprice {
    font-size: 14px;
  }
  .csizes {
    display: none;
  }
  .section,
  .section-last {
    padding-top: 24px;
    padding-bottom: 34px;
  }
  .tag-section,
  .custom-block {
    width: min(100% - 32px, var(--site-max));
  }
  .tag-section-grid {
    grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  }
  .tag-section-card {
    min-height: 108px;
    border-radius: 14px;
  }
  .tag-section-img img {
    width: 54px;
    height: 54px;
  }
  footer {
    width: min(100% - 48px, var(--site-max));
    margin: 0 auto;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    padding: 44px 0 26px;
  }
}
@media (max-width: 560px) {
  .btn-cart {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .cat-bar {
    width: min(100% - 32px, var(--site-max));
    margin-bottom: 18px;
  }
  .pgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card {
    border-radius: 14px;
  }
  .ci {
    border-radius: 14px 14px 0 0;
  }
  .cleague,
  .cmeta,
  .csizes {
    display: none;
  }
  .cfoot {
    align-items: flex-start;
  }
  .product-layout {
    gap: 24px;
    padding-top: 22px;
  }
  .cart-item-image {
    width: 76px;
    height: 76px;
  }
}
.info-modal[hidden] {
  display: none;
}

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
}

.info-modal-card {
  position: relative;
  width: min(100% - 32px, 680px);
  max-height: min(80vh, 720px);
  overflow-y: auto;
  margin: 8vh auto 0;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.info-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

.info-modal-body {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.info-modal-body * {
  max-width: 100%;
}

.info-modal-body img,
.info-modal-body video,
.info-modal-body iframe {
  max-width: 100%;
  height: auto;
}

.info-modal-body table {
  width: 100%;
  display: block;
  overflow-x: auto;
}

.info-modal-body pre,
.info-modal-body code {
  white-space: pre-wrap;
  word-break: break-word;
}

body.modal-open {
  overflow: hidden;
}

/* SPORTS BASIS — plain retail sibling theme
   Same Queen mechanics. Different visual hierarchy:
   flatter, tighter, more catalog-first, less boutique/premium. */
:root {
  --site-max: 1220px;
  --bg: #f6f6f3;
  --bg2: #eeeeea;
  --surface: #ffffff;
  --border: #d9d9d2;
  --text: #161616;
  --muted: #73736c;
  --acc: #1f2933;
  --acc-text: #ffffff;
  --acc2: #c8d1dc;
  --acc2-text: #111111;
  --price: #1f2933;

  --font-h: "DM Sans", sans-serif;
  --font-c: "DM Sans", sans-serif;
  --font-b: "DM Sans", sans-serif;

  --r: 4px;
  --nav-h: 68px;

  --nav-bg: rgba(246, 246, 243, 0.96);
  --nav-border: var(--border);
  --nav-text: var(--text);
  --nav-muted: var(--muted);
  --nav-cart-bg: var(--acc);
  --nav-cart-text: #ffffff;

  --hero-height: 260px;
  --hero-overlay: linear-gradient(90deg, rgba(15, 15, 15, 0.68), rgba(15, 15, 15, 0.18));
  --hero-title: #ffffff;
  --hero-kicker-bg: var(--acc2);
  --hero-kicker-text: var(--acc);

  --btn-primary-bg: var(--acc);
  --btn-primary-text: #ffffff;
  --btn-ghost-border: rgba(255, 255, 255, 0.58);
  --btn-ghost-bg: rgba(255, 255, 255, 0.08);
  --btn-ghost-text: #ffffff;

  --card-bg: #ffffff;
  --card-border: var(--border);
  --card-title: var(--text);
  --card-meta: var(--muted);
  --card-price: var(--price);
  --card-badge-bg: var(--acc);
  --card-badge-text: #ffffff;
  --card-cta-bg: var(--acc);
  --card-cta-text: #ffffff;

  --tag-bg: var(--bg2);
  --tag-border: var(--border);
  --tag-text: var(--text);

  --product-title: var(--text);
  --product-price: var(--price);
  --product-meta: var(--muted);
  --size-bg: #ffffff;
  --size-text: var(--text);
  --size-active-bg: var(--acc);
  --size-active-text: #ffffff;

  --strip-bg: #e9e9e3;
  --strip-text: #1f2933;
  --footer-bg: transparent;
  --footer-text: var(--text);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.45;
}

.marquee-wrap {
  background: var(--acc);
  color: var(--acc-text);
  border-bottom: 1px solid var(--acc);
  padding: 7px 0;
}
.marquee-inner span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  padding: 0 28px;
}
.marquee-inner span::after { margin-left: 28px; opacity: .35; }

nav {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(10px);
  padding: 0 max(20px, calc((100vw - var(--site-max)) / 2));
}
.logo {
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.035em;
  color: var(--nav-text);
}
.logo em { color: var(--nav-muted); }
.logo-img { height: 40px; }
.nav-center { gap: 24px; }
.nav-center a {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  color: var(--nav-muted);
}
.nav-search {
  width: 220px;
  height: 36px;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.btn-cart {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--nav-cart-bg);
  color: var(--nav-cart-text);
  border: 1px solid var(--nav-cart-bg);
}
.btn-cart #cart-count {
  width: 18px;
  height: 18px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: var(--acc2);
  color: var(--acc2-text);
}

.hero {
  min-height: var(--hero-height);
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.hero-content {
  min-height: var(--hero-height);
  gap: 24px;
}
.hero-tag {
  border-radius: var(--r);
  padding: 6px 9px;
  font-size: 10px;
  letter-spacing: .12em;
  background: var(--hero-kicker-bg);
  color: var(--hero-kicker-text);
}
.hero-h1 {
  font-size: clamp(34px, 6vw, 62px);
  line-height: .98;
  letter-spacing: -0.045em;
  max-width: 680px;
  margin-bottom: 18px;
}
.btn-primary,
.btn-wa,
.cart-empty-btn,
.cart-checkout-btn {
  border-radius: var(--r);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid var(--btn-primary-bg);
  box-shadow: none;
}
.btn-primary:hover,
.btn-wa:hover,
.cart-empty-btn:hover,
.cart-checkout-btn:hover {
  transform: none;
  opacity: .88;
}
.btn-ghost,
.btn-ghost-light {
  border-radius: var(--r);
  padding: 11px 15px;
  font-size: 12px;
  background: var(--btn-ghost-bg);
  border: 1px solid var(--btn-ghost-border);
}
.hero-mini-card {
  width: 136px;
  border-radius: var(--r);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
}
.hero-mini-info { padding: 9px; }
.hero-mini-name { font-size: 11px; letter-spacing: 0; }
.hero-mini-price { color: #fff; font-size: 13px; }

/* Special tag sections: plainer, more utility-like than Queen */
.tag-section {
  width: min(100% - 40px, var(--site-max));
  margin-top: 10px;
  margin-bottom: 28px;
}
.tag-section-title {
  font-size: 18px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.tag-section-grid {
  padding: 8px 0;
}
.tag-section-card {
  min-height: 104px;
  padding: 18px;
  border-radius: var(--r);
  box-shadow: none;
}
.tag-section-card:hover {
  transform: none;
  border-color: color-mix(in srgb, var(--acc) 35%, var(--border));
  box-shadow: none;
}
.tag-section-img img {
  width: 58px;
  height: 58px;
  border-radius: var(--r);
  transition: 0.3s all;
    filter:grayscale(0.5);
}

.tag-section-card:hover .tag-section-img img {
    transform: translate(-2px,-2px);
    filter:grayscale(0.0);
}
.tag-section-label {
  margin-top: 9px;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--tag-text);
}

.cat-bar {
  width: min(100% - 40px, var(--site-max));
  margin: 0 auto 18px;
  padding-bottom: 8px;
  gap: 6px;
}
.cat-pill {
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--r);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}
.cat-pill.on {
  background: var(--acc);
  border-color: var(--acc);
  color: var(--acc-text);
}

.catalog-wrap {
  gap: 22px;
  padding: 8px 0 58px;
}
.sidebar {
  top: calc(var(--nav-h) + 18px);
  padding-right: 18px;
  border-right: 1px solid var(--border);
}
.sb-hd { margin-bottom: 18px; }
.sb-title,
.fg-title {
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--text);
}
.fg { margin-bottom: 20px; }
.fo { padding: 4px 0; }
.fo a { font-size: 13px; }
.price-input,
.sort-sel {
  border-radius: var(--r);
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 9px 10px;
}
.toolbar {
  margin-bottom: 16px;
  padding-bottom: 12px;
}
.vb { border-radius: var(--r); }
.pgrid {
  grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
  gap: 12px;
}

/* Product card: deliberately flatter and plainer than Queen */
.card {
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: none;
  transition: border-color .12s, background .12s;
}
.ci {
  aspect-ratio: 1 / 1.08;
  border-radius: var(--r) var(--r) 0 0;
  background: var(--bg2);
}
.card:hover .ci img { transform: scale(1.015); }
.badge {
  top: 8px;
  left: 8px;
  border-radius: 3px;
  padding: 4px 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
}
.card-cta {
  position: static;
  opacity: 1;
  transform: none;
  background: transparent;
  padding: 0 10px 10px;
}
.card:hover .card-cta { opacity: 1; transform: none; }
.bc {
  border-radius: var(--r);
  background: var(--card-cta-bg);
  color: var(--card-cta-text);
  border: 1px solid var(--card-cta-bg);
  padding: 9px 10px;
  font-size: 11px;
}
.cinfo { padding: 11px 10px 8px; }
.cleague {
  font-size: 9px;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.cname {
  font-size: 14px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--card-title);
  min-height: 34px;
}
.cfoot {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 9px;
}
.cprice {
  font-size: 18px;
  line-height: 1;
  color: var(--card-price);
  letter-spacing: -0.03em;
}
.small-note {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  margin-left: 4px;
}
.csizes { gap: 4px; }
.csize {
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  font-size: 10px;
  padding: 3px 5px;
}

.section,
.section-last { margin-top: 34px; }
.section-hd { margin-bottom: 14px; }
.section-title {
  font-size: 22px;
  letter-spacing: -0.035em;
}
.section-link { font-size: 12px; }

.product-layout {
  gap: 34px;
  padding: 34px 0 70px;
}
.product-img-wrap,
.product-thumb,
.custom-block,
.cart-item,
.cart-summary,
.info-modal-card,
.size-chart-modal-card {
  border-radius: var(--r);
}
.product-h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  letter-spacing: -0.045em;
}
.product-eyebrow,
.product-size-label {
  font-size: 10px;
  letter-spacing: .12em;
}
.product-tag,
.sz-btn {
  border-radius: var(--r);
}
.sz-btn {
  min-width: 76px;
  background: var(--size-bg);
  color: var(--size-text);
}
.sz-btn.active,
.sz-btn.on,
.sz-btn[aria-pressed="true"] {
  background: var(--size-active-bg);
  color: var(--size-active-text);
}
.product-price { color: var(--product-price); }
.product-ctas { gap: 8px; }

.cart-layout { gap: 24px; }
.cart-title {
  font-size: 34px;
  letter-spacing: -0.04em;
}
.cart-item {
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: none;
  padding: 12px;
}
.cart-item-image { border-radius: var(--r); }
.cart-summary {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 18px;
}
.cart-qty button { border-radius: var(--r); }
.cart-item-note,
.cart-order-note,
.cart-input {
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);

  padding: 10px;
  border: 1px solid var(--border);
}

.footer-marquee {
  background: var(--strip-bg);
  color: var(--strip-text);
  padding: 10px 0;
}
.footer-marquee-inner span {
  font-size: 16px;
  letter-spacing: -0.02em;
}
footer { padding-top: 34px; }

@media (max-width: 960px) {
  .catalog-wrap { gap: 0; }
  .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .tag-section, .cat-bar { width: min(100% - 28px, var(--site-max)); }
  .hero { min-height: 230px; }
  .hero-content { min-height: 230px; }
  .nav-search {width: 150px}
}
@media (max-width: 560px) {
  :root { --nav-h: 62px; }
  .hero { min-height: 210px; margin-bottom: 18px; }
  .hero-content { min-height: 210px; }
  .hero-h1 { font-size: 34px; }
  .pgrid { gap: 8px; }
  .cinfo { padding: 9px 8px 7px; }
  .cname { font-size: 13px; min-height: 31px; }
  .cprice { font-size: 16px; }
  .card-cta { padding: 0 8px 8px; }
  .bc { padding: 8px; }
}



input[type="range"] {
  width: 100%;
  height: 18px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* Chrome / Edge / Safari */
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: var(--range-track);
  border-radius: 999px;
}

input[type="range"]::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  margin-top: -5px;
  background: var(--range-thumb);
  border-radius: 50%;
  border: 2px solid var(--range-bg);
  appearance: none;
  -webkit-appearance: none;
}

/* Firefox */
input[type="range"]::-moz-range-track {
  height: 4px;
  background: var(--range-track);
  border-radius: 999px;
}

input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--range-thumb);
  border-radius: 50%;
  border: 2px solid var(--range-bg);
}

/* BIG league cards */

.tag-section-grid {
    display: flex;

    overflow-x: auto;
    overflow-y: hidden;

    padding-bottom: 14px;

    scroll-snap-type: x proximity;
}

.tag-section-card {
    flex: 0 0 240px !important;

    width: 230px !important;
    min-width: 230px !important;

    min-height: 300px !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    scroll-snap-align: start;
}

.tag-section-img {
    width: 230px;
    height: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tag-section-img img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain;

    border-radius: 12px;
}

.tag-section-label {
    margin-top: 18px !important;

    font-size: 18px !important;
    font-weight: 900;
    display: none;
    text-align: center;
}
/* ========================================================================== 
   KJ MANTO NOBRE — MODERN PREMIUM
   Visual layer only. Mechanics remain in structure-queen.css.
   ========================================================================== */

:root {
  --site-max: 1280px;
  --bg: #07080a;
  --bg2: #0c0e11;
  --surface: #111419;
  --surface-2: #171b21;
  --border: rgba(219, 224, 231, 0.15);
  --border-strong: rgba(239, 242, 246, 0.32);
  --text: #f1f3f5;
  --muted: #9299a3;
  --acc: #d8dde3;
  --acc-text: #090a0c;
  --acc2: #878e98;
  --acc2-text: #07080a;
  --price: #f0f2f4;
  --accent: #d8dde3;

  --font-h: "Cinzel", Georgia, serif;
  --font-c: "Barlow Condensed", Arial Narrow, sans-serif;
  --font-b: "Manrope", Arial, sans-serif;

  --r: 4px;
  --radius: 4px;
  --radius-lg: 8px;
  --nav-h: 84px;
  --page-pad: 24px;

  --nav-bg: rgba(7, 8, 10, 0.92);
  --nav-border: rgba(225, 229, 235, 0.16);
  --nav-text: #f4f5f7;
  --nav-muted: #a2a8b0;
  --nav-cart-bg: #e1e5ea;
  --nav-cart-text: #08090b;

  --hero-height: 480px;
  --hero-overlay:
    linear-gradient(90deg, rgba(4, 5, 7, 0.94) 0%, rgba(4, 5, 7, 0.78) 38%, rgba(4, 5, 7, 0.28) 74%, rgba(4, 5, 7, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  --hero-title: #f7f8f9;
  --hero-kicker-bg: rgba(224, 228, 234, 0.1);
  --hero-kicker-text: #e6e9ed;

  --btn-primary-bg: #e1e5ea;
  --btn-primary-text: #08090b;
  --btn-ghost-border: rgba(239, 242, 246, 0.32);
  --btn-ghost-bg: rgba(255, 255, 255, 0.035);
  --btn-ghost-text: #f1f3f5;

  --card-bg: #0d1014;
  --card-border: rgba(224, 229, 235, 0.13);
  --card-title: #f4f5f7;
  --card-meta: #8f96a0;
  --card-price: #eef0f3;
  --card-badge-bg: #e0e4e9;
  --card-badge-text: #08090b;
  --card-cta-bg: #e0e4e9;
  --card-cta-text: #08090b;

  --tag-bg: #0d1014;
  --tag-border: rgba(224, 229, 235, 0.13);
  --tag-text: #eef0f3;

  --product-title: #f5f6f7;
  --product-price: #f3f4f6;
  --product-meta: #969da6;
  --size-bg: #0d1014;
  --size-text: #d6dae0;
  --size-active-bg: #e0e4e9;
  --size-active-text: #08090b;

  --strip-bg: #0a0c0f;
  --strip-text: #d9dde3;
  --footer-bg: #07080a;
  --footer-text: #f1f3f5;

  --range-track: #343941;
  --range-thumb: #e0e4e9;
  --range-bg: #07080a;
  --scroll-bg: #090b0e;
  --scroll-thumb: #727984;
  --scroll-thumb-hover: #d8dde3;

  --metal: linear-gradient(135deg, #f7f8f9 0%, #b3bbc5 28%, #e5e8ec 54%, #898b8f 72%, #b3bbc5 83%, #dee1e4 100%);
  --metal-soft: linear-gradient(110deg, rgba(247,248,249,.9), rgba(117,124,134,.85), rgba(234,237,241,.92));
  --premium-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

body.theme-manto-nobre {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(221, 226, 232, 0.07), transparent 28rem),
    radial-gradient(circle at 90% 28%, rgba(115, 122, 132, 0.07), transparent 32rem),
    repeating-linear-gradient(135deg, transparent 0 56px, rgba(255,255,255,.012) 56px 57px),
    var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.55;
}

body.theme-manto-nobre a {
  text-underline-offset: 3px;
}

body.theme-manto-nobre ::selection {
  background: #dfe3e8;
  color: #08090b;
}

/* Top identity */
body.theme-manto-nobre .marquee-wrap {
  background: #040506;
  color: #cdd2d8;
  border-bottom: 1px solid rgba(239, 242, 246, 0.12);
  padding: 8px 0;
}

body.theme-manto-nobre .marquee-inner span {
  padding: 0 34px;
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

body.theme-manto-nobre .marquee-inner span::after {
  margin-left: 34px;
  color: #e5e8ec;
  opacity: .45;
}

body.theme-manto-nobre nav {
  min-height: var(--nav-h);
  padding: 0 max(24px, calc((100vw - var(--site-max)) / 2));
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(22px) saturate(120%);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
}

body.theme-manto-nobre nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(242,244,247,.42) 22%, rgba(107,114,124,.45) 50%, rgba(242,244,247,.42) 78%, transparent 100%);
  pointer-events: none;
}

body.theme-manto-nobre .logo {
  color: var(--nav-text);
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.theme-manto-nobre .logo em {
  color: var(--nav-muted);
  font-style: normal;
}

body.theme-manto-nobre .logo-img {
  width: auto;
  max-width: 210px;
  height: 52px;
  object-fit: contain;
  filter: contrast(1.08) brightness(1.08);
}

body.theme-manto-nobre .nav-center {
  gap: 30px;
}

body.theme-manto-nobre .nav-center a,
body.theme-manto-nobre .shipping-open-btn {
  position: relative;
  color: var(--nav-muted);
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .2s ease;
}

body.theme-manto-nobre .nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--metal-soft);
  transition: right .22s ease;
}

body.theme-manto-nobre .nav-center a:hover,
body.theme-manto-nobre .shipping-open-btn:hover {
  color: #f4f5f7;
}

body.theme-manto-nobre .nav-center a:hover::after {
  right: 0;
}

body.theme-manto-nobre .shipping-open-btn span::after {
  height: 1px;
  background: var(--metal-soft);
}

body.theme-manto-nobre .nav-right {
  gap: 10px;
}

body.theme-manto-nobre .nav-search {
  width: 228px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(255,255,255,.025);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 12px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

body.theme-manto-nobre .nav-search::placeholder {
  color: #747b85;
}

body.theme-manto-nobre .nav-search:focus {
  border-color: var(--border-strong);
  background: rgba(255,255,255,.045);
  box-shadow: 0 0 0 3px rgba(218,222,228,.06);
}

body.theme-manto-nobre .btn-cart {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(249,250,251,.45);
  border-radius: 2px;
  background: var(--metal);
  color: var(--nav-cart-text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 8px 24px rgba(0,0,0,.28);
  transition: transform .18s ease, filter .18s ease;
}

body.theme-manto-nobre .btn-cart:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

body.theme-manto-nobre .btn-cart #cart-count {
  width: 20px;
  height: 20px;
  right: -7px;
  bottom: -7px;
  border: 2px solid #07080a;
  border-radius: 50%;
  background: #f0f2f4;
  color: #07080a;
  font-size: 10px;
  font-weight: 800;
}

body.theme-manto-nobre .social-links {
  height: 36px;
  background: #080a0d;
  border-bottom: 1px solid var(--border);
}

body.theme-manto-nobre .social-links a {
  opacity: .68;
  transition: opacity .2s ease, transform .2s ease;
}

body.theme-manto-nobre .social-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Hero */
body.theme-manto-nobre .hero {
  min-height: var(--hero-height);
  margin-bottom: 44px;
  background-color: #090b0e;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(229,233,238,.16);
  isolation: isolate;
}

body.theme-manto-nobre .hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 2;
  border: 1px solid rgba(230,234,239,.17);
  clip-path: polygon(0 0, 40% 0, 43% 4px, 100% 4px, 100% 100%, 62% 100%, 59% calc(100% - 4px), 0 calc(100% - 4px));
  pointer-events: none;
}

body.theme-manto-nobre .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(230,234,239,.07) 68% 68.2%, transparent 68.2% 100%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,.022) 119px 120px);
  pointer-events: none;
}

body.theme-manto-nobre .hero-overlay {
  z-index: 1;
  background: var(--hero-overlay);
}

body.theme-manto-nobre .hero-content {
  z-index: 3;
  min-height: var(--hero-height);
  gap: 54px;
  padding-top: 42px;
  padding-bottom: 42px;
}

body.theme-manto-nobre .hero-text {
  max-width: 830px;
}

body.theme-manto-nobre .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(229,233,238,.22);
  border-radius: 1px;
  background: rgba(8,10,13,.42);
  color: var(--hero-kicker-text);
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

body.theme-manto-nobre .hero-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--metal-soft);
}

body.theme-manto-nobre .hero-h1 {
  max-width: 850px;
  margin: 0 0 26px;
  color: var(--hero-title);
  font-family: var(--font-h);
  font-size: clamp(44px, 6.8vw, 88px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0,0,0,.55);
}

body.theme-manto-nobre .hero-ctas {
  gap: 10px;
}

body.theme-manto-nobre .btn-primary,
body.theme-manto-nobre .btn-wa,
body.theme-manto-nobre .cart-empty-btn,
body.theme-manto-nobre .cart-checkout-btn {
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(248,249,250,.5);
  border-radius: 2px;
  background: var(--metal);
  color: #08090b;
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 10px 30px rgba(0,0,0,.2);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

body.theme-manto-nobre .btn-primary:hover,
body.theme-manto-nobre .btn-wa:hover,
body.theme-manto-nobre .cart-empty-btn:hover,
body.theme-manto-nobre .cart-checkout-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  opacity: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 16px 36px rgba(0,0,0,.32);
}

body.theme-manto-nobre .btn-ghost,
body.theme-manto-nobre .btn-ghost-light,
body.theme-manto-nobre .btn-ig {
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid var(--btn-ghost-border);
  border-radius: 2px;
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-text);
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

body.theme-manto-nobre .btn-ghost:hover,
body.theme-manto-nobre .btn-ghost-light:hover,
body.theme-manto-nobre .btn-ig:hover {
  transform: translateY(-1px);
  border-color: rgba(244,246,248,.58);
  background: rgba(255,255,255,.07);
}

body.theme-manto-nobre .hero-mini-card {
  width: 190px;
  border: 1px solid rgba(238,241,245,.25);
  border-radius: 3px;
  background: rgba(8,10,13,.66);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
}

body.theme-manto-nobre .hero-mini-card::before {
  content: "";
  display: block;
  height: 2px;
  background: var(--metal-soft);
}

body.theme-manto-nobre .hero-mini-info {
  padding: 13px;
}

body.theme-manto-nobre .hero-mini-cat {
  color: #9ba2ac;
  font-family: var(--font-c);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.theme-manto-nobre .hero-mini-name {
  margin-top: 4px;
  color: #f3f4f6;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

body.theme-manto-nobre .hero-mini-price {
  margin-top: 8px;
  color: #f2f3f5;
  font-size: 15px;
  font-weight: 800;
}

/* Sections and editorial rhythm */
body.theme-manto-nobre .section,
body.theme-manto-nobre .section-last {
  margin-top: 0;
  padding-top: 42px;
  padding-bottom: 58px;
}

body.theme-manto-nobre .section-hd {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

body.theme-manto-nobre .section-hd::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 110px;
  height: 1px;
  background: var(--metal-soft);
}

body.theme-manto-nobre .section-title,
body.theme-manto-nobre .tag-section-title,
body.theme-manto-nobre .cart-title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}

body.theme-manto-nobre .section-title {
  font-size: clamp(23px, 3vw, 34px);
}

body.theme-manto-nobre .section-link,
body.theme-manto-nobre .sb-clear,
body.theme-manto-nobre .product-back {
  color: var(--muted);
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}

body.theme-manto-nobre .section-link:hover,
body.theme-manto-nobre .sb-clear:hover,
body.theme-manto-nobre .product-back:hover {
  color: #f0f2f4;
}

/* Tag / league showcases */
body.theme-manto-nobre .tag-section {
  width: min(100% - 48px, var(--site-max));
  margin: 34px auto 42px;
}

body.theme-manto-nobre .tag-section-title {
  margin-bottom: 16px;
  font-size: 25px;
}

body.theme-manto-nobre .tag-section-grid {
  display: flex;
  gap: 14px;
  padding: 6px 0 16px;
}

body.theme-manto-nobre .tag-section-card {
  position: relative;
  flex: 0 0 220px !important;
  width: 220px !important;
  min-width: 220px !important;
  min-height: 250px !important;
  padding: 16px !important;
  border: 1px solid var(--tag-border);
  border-radius: 4px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), transparent 52%),
    var(--tag-bg);
  color: var(--tag-text);
  box-shadow: none;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

body.theme-manto-nobre .tag-section-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(238,241,245,.3);
  pointer-events: none;
}

body.theme-manto-nobre .tag-section-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(231,235,240,.12);
  transform: rotate(45deg);
  transition: transform .3s ease;
}

body.theme-manto-nobre .tag-section-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 56px rgba(0,0,0,.34);
}

body.theme-manto-nobre .tag-section-card:hover::after {
  transform: rotate(45deg) translate(-8px,-8px);
}

body.theme-manto-nobre .tag-section-img {
  width: 100%;
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.theme-manto-nobre .tag-section-img img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 2px !important;
  object-fit: contain;
  filter: grayscale(.85) contrast(1.06);
  opacity: .9;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

body.theme-manto-nobre .tag-section-card:hover .tag-section-img img {
  transform: scale(1.025);
  filter: grayscale(0) contrast(1.03);
  opacity: 1;
}

body.theme-manto-nobre .tag-section-label {
  display: block !important;
  margin-top: 14px !important;
  color: #e9ecf0;
  font-family: var(--font-c);
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

/* Catalog navigation */
body.theme-manto-nobre .cat-bar {
  width: min(100% - 48px, var(--site-max));
  margin: 0 auto 26px;
  padding-bottom: 12px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

body.theme-manto-nobre .cat-pill {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(255,255,255,.018);
  color: var(--muted);
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

body.theme-manto-nobre .cat-pill:hover {
  border-color: var(--border-strong);
  background: rgba(255,255,255,.04);
  color: #eff1f3;
}

body.theme-manto-nobre .cat-pill.on {
  border-color: rgba(244,246,248,.46);
  background: var(--metal);
  color: #08090b;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

body.theme-manto-nobre .catalog-wrap {
  gap: 30px;
  padding: 10px 0 74px;
}

body.theme-manto-nobre .sidebar {
  top: calc(var(--nav-h) + 22px);
  max-height: calc(100vh - var(--nav-h) - 44px);
  padding: 4px 24px 0 0;
  border-right: 1px solid var(--border);
}

body.theme-manto-nobre .sb-hd {
  margin-bottom: 22px;
}

body.theme-manto-nobre .sb-title,
body.theme-manto-nobre .fg-title {
  color: #e6e9ed;
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

body.theme-manto-nobre .fg {
  margin-bottom: 25px;
}

body.theme-manto-nobre .fg-title {
  margin-bottom: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
}

body.theme-manto-nobre .fo {
  padding: 5px 0;
}

body.theme-manto-nobre .fo a {
  color: var(--muted) !important;
  font-size: 13px;
  transition: color .16s ease, transform .16s ease;
}

body.theme-manto-nobre .fo a:hover {
  color: #eef0f3 !important;
  transform: translateX(2px);
}

body.theme-manto-nobre .price-input,
body.theme-manto-nobre .sort-sel,
body.theme-manto-nobre .cart-input,
body.theme-manto-nobre .cart-item-note,
body.theme-manto-nobre .cart-order-note,
body.theme-manto-nobre .custom-input {
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #0a0c0f;
  color: var(--text);
  outline: none;
}

body.theme-manto-nobre .price-input:focus,
body.theme-manto-nobre .sort-sel:focus,
body.theme-manto-nobre .cart-input:focus,
body.theme-manto-nobre .cart-item-note:focus,
body.theme-manto-nobre .cart-order-note:focus,
body.theme-manto-nobre .custom-input:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(218,222,228,.055);
}

body.theme-manto-nobre .toolbar {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

body.theme-manto-nobre .tc {
  color: var(--muted);
  font-size: 13px;
}

body.theme-manto-nobre .tc strong {
  color: #eef0f3;
}

body.theme-manto-nobre .vb {
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #0b0d10;
  color: var(--muted);
}

body.theme-manto-nobre .vb.on {
  border-color: var(--border-strong);
  background: #171a1f;
  color: #f1f3f5;
}

/* Product cards */
body.theme-manto-nobre .pgrid {
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 16px;
}

body.theme-manto-nobre .card {
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 38%),
    var(--card-bg);
  box-shadow: 0 8px 28px rgba(0,0,0,.16);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

body.theme-manto-nobre .card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 42%;
  height: 2px;
  background: var(--metal-soft);
  opacity: .62;
  transition: width .28s ease, opacity .28s ease;
  pointer-events: none;
}

body.theme-manto-nobre .card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,234,239,.3);
  background: #101318;
  box-shadow: 0 28px 60px rgba(0,0,0,.38);
}

body.theme-manto-nobre .card:hover::before {
  width: 100%;
  opacity: 1;
}

body.theme-manto-nobre .ci {
  aspect-ratio: 4 / 5;
  border-radius: 3px 3px 0 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.06), transparent 42%),
    #111419;
}

body.theme-manto-nobre .ci::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4,5,7,.24));
  pointer-events: none;
}

body.theme-manto-nobre .ci img {
  filter: saturate(.9) contrast(1.02);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

body.theme-manto-nobre .card:hover .ci img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.03);
}

body.theme-manto-nobre .badge {
  top: 11px;
  left: 11px;
  padding: 5px 8px;
  border: 1px solid rgba(247,248,249,.42);
  border-radius: 1px;
  background: rgba(8,10,13,.76);
  color: #e9ecf0;
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

body.theme-manto-nobre .badge.new {
  background: var(--metal);
  color: #08090b;
}

body.theme-manto-nobre .card-cta {
  position: absolute;
  z-index: 2;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

body.theme-manto-nobre .card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

body.theme-manto-nobre .bc {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(248,249,250,.45);
  border-radius: 2px;
  background: var(--metal);
  color: #08090b;
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0,0,0,.32);
}

body.theme-manto-nobre .cinfo {
  padding: 15px 14px 14px;
}

body.theme-manto-nobre .cleague {
  margin-bottom: 6px;
  color: var(--card-meta);
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.theme-manto-nobre .cname {
  min-height: 38px;
  margin-bottom: 10px;
  color: var(--card-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

body.theme-manto-nobre .cfoot {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 6px;
}

body.theme-manto-nobre .cprice {
  color: var(--card-price);
  font-family: var(--font-c);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}

body.theme-manto-nobre .small-note {
  margin-left: 5px;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.theme-manto-nobre .csizes {
  gap: 4px;
}

body.theme-manto-nobre .csize {
  padding: 3px 6px;
  border: 1px solid var(--border);
  border-radius: 1px;
  background: #090b0e;
  color: #9da4ad;
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
}

body.theme-manto-nobre .pag {
  gap: 7px;
  margin-top: 42px;
}

body.theme-manto-nobre .pg {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #0a0c0f;
  color: var(--muted);
}

body.theme-manto-nobre .pg:hover,
body.theme-manto-nobre .pg.on {
  border-color: rgba(246,248,249,.45);
  background: var(--metal);
  color: #08090b;
}

/* Product detail */
body.theme-manto-nobre .product-layout {
  gap: 58px;
  padding-top: 48px;
  padding-bottom: 90px;
}

body.theme-manto-nobre .product-img-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.055), transparent 40%),
    #0d1014;
  box-shadow: var(--premium-shadow);
}

body.theme-manto-nobre .product-img-wrap::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 12px;
  border: 1px solid rgba(232,236,241,.09);
  pointer-events: none;
}

body.theme-manto-nobre .product-thumbs {
  gap: 8px;
  margin-top: 10px;
}

body.theme-manto-nobre .product-thumb {
  width: 78px;
  height: 78px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #0d1014;
  opacity: .64;
  transition: opacity .2s ease, border-color .2s ease;
}

body.theme-manto-nobre .product-thumb:hover,
body.theme-manto-nobre .product-thumb.active {
  border-color: var(--border-strong);
  opacity: 1;
}

body.theme-manto-nobre .product-eyebrow,
body.theme-manto-nobre .product-size-label {
  color: var(--product-meta);
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

body.theme-manto-nobre .product-h1 {
  margin: 5px 0 20px;
  color: var(--product-title);
  font-family: var(--font-h);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-wrap: balance;
}

body.theme-manto-nobre .product-tag {
  margin: 0 5px 5px 0;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 1px;
  background: rgba(255,255,255,.018);
  color: var(--muted);
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.theme-manto-nobre .product-size-section {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

body.theme-manto-nobre .product-size-grid {
  gap: 8px;
}

body.theme-manto-nobre .sz-btn {
  min-width: 86px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--size-bg);
  color: var(--size-text);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

body.theme-manto-nobre .sz-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}

body.theme-manto-nobre .sz-btn.active,
body.theme-manto-nobre .sz-btn.on,
body.theme-manto-nobre .sz-btn[aria-pressed="true"] {
  border-color: rgba(248,249,250,.45);
  background: var(--metal);
  color: var(--size-active-text);
}

body.theme-manto-nobre .sz-btn .size {
  font-family: var(--font-c);
  font-size: 22px;
  font-weight: 700;
}

body.theme-manto-nobre .sz-btn-price {
  color: inherit;
  opacity: .7;
  font-size: 10px;
}

body.theme-manto-nobre .product-price-section {
  margin: 26px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

body.theme-manto-nobre .product-price {
  color: var(--product-price);
  font-family: var(--font-c);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .02em;
}

body.theme-manto-nobre .product-delivery {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body.theme-manto-nobre .custom-toggle,
body.theme-manto-nobre .custom-block {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #0d1014;
}

body.theme-manto-nobre .custom-toggle {
  padding: 14px;
}

body.theme-manto-nobre .custom-toggle-label,
body.theme-manto-nobre .custom-toggle-price {
  font-size: 13px;
  font-weight: 700;
}

body.theme-manto-nobre .custom-fields {
  gap: 8px;
  margin-top: 8px;
}

body.theme-manto-nobre .product-ctas {
  gap: 9px;
}

body.theme-manto-nobre .btn-full {
  min-height: 50px;
}

/* Cart */
body.theme-manto-nobre .cart-page {
  padding-top: 46px;
  padding-bottom: 88px;
}

body.theme-manto-nobre .cart-title {
  margin-bottom: 30px;
  font-size: clamp(34px, 5vw, 58px);
}

body.theme-manto-nobre .cart-layout {
  gap: 30px;
}

body.theme-manto-nobre .cart-item {
  gap: 18px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #0d1014;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}

body.theme-manto-nobre .cart-item-image {
  width: 150px;
  height: 150px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #111419;
}

body.theme-manto-nobre .cart-item-title {
  color: #f1f3f5;
  font-size: 15px;
  font-weight: 700;
}

body.theme-manto-nobre .cart-price-main,
body.theme-manto-nobre .cart-line-total,
body.theme-manto-nobre .cart-summary-total {
  color: #f0f2f4;
  font-weight: 800;
}

body.theme-manto-nobre .cart-price-muted,
body.theme-manto-nobre .cart-line-muted,
body.theme-manto-nobre .cart-summary-note {
  color: var(--muted);
}

body.theme-manto-nobre .cart-promo-badge {
  display: inline-flex;
  margin: 5px 0;
  padding: 4px 7px;
  border: 1px solid rgba(246,248,249,.38);
  border-radius: 1px;
  background: var(--metal);
  color: #08090b;
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.theme-manto-nobre .cart-qty {
  gap: 9px;
  margin-top: 10px;
}

body.theme-manto-nobre .cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #090b0e;
  color: #e9ecf0;
}

body.theme-manto-nobre .cart-remove {
  color: #9ca3ad;
  font-family: var(--font-c);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.theme-manto-nobre .cart-summary {
  top: calc(var(--nav-h) + 24px);
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.022), transparent 38%),
    #0d1014;
  box-shadow: var(--premium-shadow);
}

body.theme-manto-nobre .cart-summary::before {
  content: "";
  display: block;
  height: 2px;
  margin: -22px -22px 20px;
  background: var(--metal-soft);
  opacity: .72;
}

body.theme-manto-nobre .cart-summary-title,
body.theme-manto-nobre .cart-shipping-title {
  color: #dfe3e8;
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body.theme-manto-nobre .cart-summary-row,
body.theme-manto-nobre .cart-summary-total {
  gap: 18px;
}

body.theme-manto-nobre .cart-summary-total {
  border-top: 1px solid var(--border);
}

body.theme-manto-nobre .cart-shipping-box {
  border-top-color: var(--border);
}

body.theme-manto-nobre .cart-shipping-option,
body.theme-manto-nobre .shipping-result {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #090b0e;
  color: var(--text);
}

body.theme-manto-nobre .cart-shipping-option:has(input:checked) {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 2px rgba(218,222,228,.07);
}

body.theme-manto-nobre .shipping-pill {
  border: 1px solid rgba(221,225,231,.2);
  border-radius: 1px;
  background: rgba(222,226,232,.08);
  color: #dfe3e8;
}

/* Custom blocks */
body.theme-manto-nobre .custom-block {
  width: min(100% - 48px, var(--site-max));
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(0,0,0,.2);
}

body.theme-manto-nobre .custom-block::before {
  content: "";
  display: block;
  height: 2px;
  background: var(--metal-soft);
  opacity: .66;
}

body.theme-manto-nobre .custom-block-title {
  color: inherit;
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: uppercase;
}

body.theme-manto-nobre .custom-block-text {
  color: inherit;
  opacity: .74;
}

body.theme-manto-nobre .custom-block-media img {
  border: 1px solid rgba(231,235,240,.13);
  border-radius: 2px;
}

/* Footer */
body.theme-manto-nobre .footer-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(255,255,255,.018), transparent 30%, rgba(255,255,255,.018) 70%, transparent),
    var(--strip-bg);
  color: var(--strip-text);
  padding: 14px 0;
}

body.theme-manto-nobre .footer-marquee-inner span {
  padding: 0 36px;
  color: var(--strip-text);
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.theme-manto-nobre .footer-marquee-inner span.acc {
  color: #717984;
}

body.theme-manto-nobre footer {
  width: min(100% - 48px, var(--site-max));
  margin: 0 auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 38px;
  padding: 54px 0 30px;
  background: transparent;
}

body.theme-manto-nobre .fl-logo {
  color: #f0f2f4;
  font-family: var(--font-h);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

body.theme-manto-nobre .fl-logo em {
  color: #969da6;
}

body.theme-manto-nobre .fl-logo-img {
  max-width: 220px;
  height: 58px;
  object-fit: contain;
}

body.theme-manto-nobre .fl-p,
body.theme-manto-nobre .fl-meta {
  max-width: 310px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

body.theme-manto-nobre .fc-title {
  margin-bottom: 14px;
  color: #dce0e5;
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.theme-manto-nobre .fc-links {
  gap: 9px;
}

body.theme-manto-nobre .fc-links a {
  color: #9299a3;
  font-size: 12px;
  transition: color .2s ease, transform .2s ease;
}

body.theme-manto-nobre .fc-links a:hover {
  color: #eff1f3;
  transform: translateX(2px);
}

body.theme-manto-nobre .lower-footer {
  grid-column: span 4;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

body.theme-manto-nobre .footer-trust {
  color: var(--muted);
  font-size: 12px;
}

body.theme-manto-nobre .footer-trust strong {
  color: #dce0e5;
  font-family: var(--font-c);
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.theme-manto-nobre .trust-links {
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
}

body.theme-manto-nobre .trust-links a {
  color: #8d949e;
  font-size: 11px;
}

body.theme-manto-nobre .trust-links a:hover {
  color: #eef0f3;
}

body.theme-manto-nobre .footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0 24px;
  color: #777f89;
  font-size: 11px;
}

body.theme-manto-nobre .footer-bottom a {
  color: #cfd4da;
}

/* Institutional pages */
body.theme-manto-nobre .trust-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(221,226,232,.065), transparent 30rem),
    repeating-linear-gradient(135deg, transparent 0 70px, rgba(255,255,255,.012) 70px 71px),
    var(--bg);
  color: var(--text);
}

body.theme-manto-nobre .trust-hero {
  position: relative;
  padding-top: clamp(60px, 8vw, 112px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

body.theme-manto-nobre .trust-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 12%;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(231,235,240,.08);
  transform: rotate(45deg);
  pointer-events: none;
}

body.theme-manto-nobre .trust-eyebrow {
  color: #a0a7b0;
  font-family: var(--font-c);
  letter-spacing: .18em;
}

body.theme-manto-nobre .trust-eyebrow::before {
  width: 28px;
  height: 1px;
  border-radius: 0;
  background: var(--metal-soft);
}

body.theme-manto-nobre .trust-hero h1 {
  color: #f2f4f6;
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
}

body.theme-manto-nobre .trust-hero p {
  color: var(--muted);
}

body.theme-manto-nobre .trust-content {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #0d1014;
  box-shadow: var(--premium-shadow);
}

body.theme-manto-nobre .trust-content h2 {
  color: #e9ecf0;
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}

body.theme-manto-nobre .trust-content p {
  color: #b4bac2;
}

body.theme-manto-nobre .trust-alert,
body.theme-manto-nobre .trust-contact-list a {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #090b0e;
  color: #b8bec6;
}

body.theme-manto-nobre .trust-contact-list a:hover {
  border-color: var(--border-strong);
  color: #f0f2f4;
}

/* Modals */
body.theme-manto-nobre .info-modal-backdrop,
body.theme-manto-nobre .shipping-modal-backdrop {
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(7px);
}

body.theme-manto-nobre .info-modal-card,
body.theme-manto-nobre .size-chart-modal-card,
body.theme-manto-nobre .shipping-modal-panel {
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: #0d1014;
  color: var(--text);
  box-shadow: 0 34px 100px rgba(0,0,0,.62);
}

body.theme-manto-nobre .shipping-modal-panel {
  padding: 24px;
}

body.theme-manto-nobre .shipping-modal-panel h3 {
  margin-top: 0;
  color: #eef0f3;
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}

body.theme-manto-nobre .info-modal-close,
body.theme-manto-nobre .shipping-modal-close {
  color: #dfe3e8;
}

/* Responsive */
@media (max-width: 1100px) {
  body.theme-manto-nobre .nav-center {
    gap: 18px;
  }

  body.theme-manto-nobre .nav-search {
    width: 170px;
  }

  body.theme-manto-nobre .hero-h1 {
    font-size: clamp(42px, 7vw, 72px);
  }
}

@media (max-width: 960px) {
  :root {
    --hero-height: 390px;
    --nav-h: 72px;
  }

  body.theme-manto-nobre nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.theme-manto-nobre .logo-img {
    max-width: 170px;
    height: 44px;
  }

  body.theme-manto-nobre .nav-search {
    width: 150px;
  }

  body.theme-manto-nobre .hero,
  body.theme-manto-nobre .hero-content {
    min-height: var(--hero-height);
  }

  body.theme-manto-nobre .hero::before {
    inset: 14px;
  }

  body.theme-manto-nobre .hero-h1 {
    font-size: clamp(38px, 9vw, 62px);
  }

  body.theme-manto-nobre .catalog-wrap {
    gap: 0;
  }

  body.theme-manto-nobre .pgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.theme-manto-nobre footer {
    grid-template-columns: 1.4fr 1fr;
    gap: 28px 20px;
  }

  body.theme-manto-nobre .lower-footer {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --hero-height: 330px;
    --nav-h: 64px;
  }

  body.theme-manto-nobre {
    font-size: 14px;
  }

  body.theme-manto-nobre .marquee-inner span {
    padding: 0 22px;
    font-size: 10px;
  }

  body.theme-manto-nobre .marquee-inner span::after {
    margin-left: 22px;
  }

  body.theme-manto-nobre .logo-img {
    max-width: 124px;
    height: 38px;
  }

  body.theme-manto-nobre .nav-right form {
    display: none;
  }

  body.theme-manto-nobre .btn-cart {
    width: 40px;
    height: 40px;
  }

  body.theme-manto-nobre .hero {
    margin-bottom: 24px;
    background-position: 62% center;
  }

  body.theme-manto-nobre .hero-content {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  body.theme-manto-nobre .hero::before {
    inset: 10px;
  }

  body.theme-manto-nobre .hero-tag {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: .14em;
  }

  body.theme-manto-nobre .hero-h1 {
    margin-bottom: 20px;
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1.02;
  }

  body.theme-manto-nobre .hero-ctas {
    gap: 7px;
  }

  body.theme-manto-nobre .btn-primary,
  body.theme-manto-nobre .btn-wa,
  body.theme-manto-nobre .cart-empty-btn,
  body.theme-manto-nobre .cart-checkout-btn,
  body.theme-manto-nobre .btn-ghost,
  body.theme-manto-nobre .btn-ghost-light,
  body.theme-manto-nobre .btn-ig {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 11px;
  }

  body.theme-manto-nobre .tag-section,
  body.theme-manto-nobre .cat-bar,
  body.theme-manto-nobre .custom-block {
    width: min(100% - 28px, var(--site-max));
  }

  body.theme-manto-nobre .tag-section-card {
    flex-basis: 176px !important;
    width: 176px !important;
    min-width: 176px !important;
    min-height: 214px !important;
    padding: 12px !important;
  }

  body.theme-manto-nobre .tag-section-img {
    height: 144px;
  }

  body.theme-manto-nobre .tag-section-label {
    font-size: 12px !important;
  }

  body.theme-manto-nobre .cat-bar {
    margin-bottom: 18px;
  }

  body.theme-manto-nobre .pgrid {
    gap: 8px;
  }

  body.theme-manto-nobre .card {
    border-radius: 3px;
  }

  body.theme-manto-nobre .cinfo {
    padding: 10px 9px 10px;
  }

  body.theme-manto-nobre .cleague,
  body.theme-manto-nobre .csizes {
    display: none;
  }

  body.theme-manto-nobre .cname {
    min-height: 35px;
    font-size: 12px;
  }

  body.theme-manto-nobre .cprice {
    font-size: 18px;
  }

  body.theme-manto-nobre .card-cta {
    left: 7px;
    right: 7px;
    bottom: 7px;
  }

  body.theme-manto-nobre .bc {
    min-height: 38px;
    font-size: 10px;
  }

  body.theme-manto-nobre .section,
  body.theme-manto-nobre .section-last {
    padding-top: 28px;
    padding-bottom: 38px;
  }

  body.theme-manto-nobre .product-layout {
    gap: 28px;
    padding-top: 24px;
  }

  body.theme-manto-nobre .product-h1 {
    font-size: 34px;
  }

  body.theme-manto-nobre .product-price {
    font-size: 34px;
  }

  body.theme-manto-nobre .cart-item {
    grid-template-columns: 78px minmax(0,1fr);
    padding: 10px;
  }

  body.theme-manto-nobre .cart-item-image {
    width: 78px;
    height: 78px;
  }

  body.theme-manto-nobre .cart-summary {
    padding: 18px;
  }

  body.theme-manto-nobre .cart-summary::before {
    margin: -18px -18px 18px;
  }

  body.theme-manto-nobre footer {
    width: min(100% - 32px, var(--site-max));
    grid-template-columns: 1fr;
  }

  body.theme-manto-nobre .lower-footer {
    grid-column: 1;
  }

  body.theme-manto-nobre .footer-bottom {
    width: min(100% - 32px, var(--site-max));
  }

  body.theme-manto-nobre .trust-hero::after {
    display: none;
  }
}
