:root {
  --sq-ink: #161018;
  --sq-text: #22181d;
  --sq-muted: #5c4a52;
  --sq-bg: #fffcfb;
  --sq-paper: #fffcfb;
  --sq-magenta: #a81e57;
  --sq-magenta-deep: #7d1641;
  --sq-gold: #b8892a;
  --sq-line: rgba(22, 16, 24, 0.12);
  --sq-font-display: "Sora", "Segoe UI", sans-serif;
  --sq-font-body: "Nunito", "Segoe UI", sans-serif;
  --sq-wrap: min(1160px, calc(100% - 2rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.sq-body {
  margin: 0;
  font-family: var(--sq-font-body);
  color: var(--sq-text);
  background: #fffcfb;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; height: auto; }
.sq-wrap { width: var(--sq-wrap); margin-inline: auto; }

.sq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1rem, calc((100% - 1160px) / 2));
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 252, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sq-line);
}
/* logo nav replaced below */
.sq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.05rem;
  align-items: center;
}
.sq-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sq-muted);
}
.sq-nav a:hover { color: var(--sq-magenta); }
.sq-nav-cta {
  background: var(--sq-ink) !important;
  color: #fff !important;
  padding: 0.45rem 0.85rem;
  border-radius: 0.35rem;
}

/* HERO — full bleed photo, brand first */
.sq-hero {
  min-height: clamp(360px, 63vh, 640px);
  max-height: 720px;
  display: grid;
  align-content: end;
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 2.6rem max(1rem, calc((100% - 1160px) / 2)) 2.8rem;
  background:
    linear-gradient(105deg, rgba(18, 10, 14, 0.88) 0%, rgba(18, 10, 14, 0.55) 46%, rgba(168, 30, 87, 0.28) 100%),
    var(--sq-hero-image) center 34% / cover no-repeat;
}
.sq-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(18, 10, 14, 0.35));
  z-index: -1;
}
.sq-brand-mark {
  font-family: var(--sq-font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 0.95;
  margin: 0 0 0.55rem;
  letter-spacing: -0.04em;
  animation: sq-rise 0.7s ease both;
}
/* hero logo replaced */
.sq-hero h1 {
  font-family: var(--sq-font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  max-width: 20ch;
  margin: 0 0 0.7rem;
  animation: sq-rise 0.7s 0.08s ease both;
}
.sq-hero .sq-lead {
  max-width: 42ch;
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  animation: sq-rise 0.7s 0.16s ease both;
}
@keyframes sq-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.sq-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; animation: sq-rise 0.7s 0.24s ease both; }
.sq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border: 0;
  border-radius: 0.35rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sq-btn:hover { transform: translateY(-2px); }
.sq-btn-primary {
  background: var(--sq-magenta);
  color: #fff;
  box-shadow: 0 12px 28px rgba(168, 30, 87, 0.35);
}
.sq-btn-accent { background: var(--sq-gold); color: #1a1208; }
.sq-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.sq-btn-dark { background: var(--sq-ink); color: #fff; }

.sq-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--sq-ink);
  color: #f4ecef;
}
.sq-trust > div {
  padding: 1.35rem 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sq-trust > div:last-child { border-right: 0; }
.sq-trust strong {
  display: block;
  font-family: var(--sq-font-display);
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.sq-trust span { color: rgba(244, 236, 239, 0.75); font-size: 0.92rem; }

.sq-section { padding: 3rem 0; }
.sq-section h2 {
  font-family: var(--sq-font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}
.sq-sub { color: var(--sq-muted); margin: 0 0 1.5rem; max-width: 54ch; }

.sq-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
.sq-cat {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 0.45rem;
  min-height: 180px;
  background: #222;
  isolation: isolate;
}
.sq-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 0.45s ease;
}
.sq-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(18, 10, 14, 0.85) 100%);
}
.sq-cat:hover img { transform: scale(1.06); }
.sq-cat span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  right: 0.85rem;
  color: #fff;
  font-family: var(--sq-font-display);
  font-weight: 700;
  font-size: 1.02rem;
}

.sq-proof {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}
.sq-proof-main {
  position: relative;
  min-height: 360px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sq-proof-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.sq-proof-main figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-weight: 700;
}
.sq-proof-side { display: grid; gap: 1rem; }
.sq-proof-side figure {
  margin: 0;
  position: relative;
  min-height: 170px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sq-proof-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.sq-proof-side figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.sq-band {
  background: var(--sq-paper);
  border-block: 1px solid var(--sq-line);
}
.sq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.sq-split img {
  width: 100%;
  border-radius: 0.5rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.sq-list {
  margin: 1rem 0 1.4rem;
  padding-left: 1.1rem;
}
.sq-list li { margin: 0.35rem 0; }

.sq-certs {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}
.sq-cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.sq-cert-grid img {
  width: 100%;
  border-radius: 0.4rem;
  background: #fff;
  border: 1px solid var(--sq-line);
  padding: 0.5rem;
}

.sq-clients {
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--sq-line);
  border-radius: 0.5rem;
}
.sq-clients img {
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
  display: block;
}
.sq-clients--wide {
  padding: 1rem 1.1rem;
}
.sq-clients--wide img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
}
.sq-clients-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
  margin-top: 1.25rem;
}
.sq-clients-media .sq-clients--wide {
  margin: 0;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.sq-clients-media .sq-clients--wide img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.sq-clients-media > img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}
@media (max-width: 640px) {
  .sq-clients-media { grid-template-columns: 1fr; }
  .sq-clients-media > img { min-height: 200px; }
}
.sq-brand-mark img {
  height: clamp(110px, 18vw, 168px);
  width: auto;
  max-width: min(300px, 78vw);
  display: block;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
}

.sq-final {
  background:
    linear-gradient(120deg, rgba(22, 16, 24, 0.92), rgba(125, 22, 65, 0.82)),
    var(--sq-final-image, none) center / cover no-repeat;
  color: #fff;
  padding: 3.2rem max(1rem, calc((100% - 1160px) / 2));
  border-radius: 0;
}
.sq-final h2 { color: #fff; margin-top: 0; }
.sq-final .sq-sub { color: rgba(255, 255, 255, 0.85); }

.sq-footer {
  margin-top: 0;
  padding: 2.2rem max(1rem, calc((100% - 1160px) / 2)) 3rem;
  background: var(--sq-ink);
  color: #e8dce2;
}
.sq-footer a { color: #f0b4cb; text-decoration: none; }
.sq-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.sq-footer h3 {
  font-family: var(--sq-font-display);
  margin: 0 0 0.6rem;
  color: #fff;
}

.sq-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  animation: sq-pulse 2.8s ease-in-out infinite;
  max-width: min(92vw, 17.5rem);
}
.sq-wa__avatar {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
}
.sq-wa__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  padding-right: 0.25rem;
}
.sq-wa__name {
  font-size: 0.82rem;
  font-weight: 800;
}
.sq-wa__hint {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.92;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sq-wa__badge {
  position: absolute;
  left: 2.05rem;
  bottom: 0.28rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #128c7e;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
}
.sq-wa__badge svg {
  width: 0.65rem;
  height: 0.65rem;
  fill: #fff;
}
@keyframes sq-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (max-width: 520px) {
  .sq-wa__hint { display: none; }
  .sq-wa { padding-right: 0.7rem; }
}

.sq-page-hero {
  padding: 2.2rem max(1rem, calc((100% - 1160px) / 2)) 1rem;
  background: linear-gradient(90deg, rgba(168, 30, 87, 0.08), transparent);
  border-bottom: 1px solid var(--sq-line);
}
.sq-page-hero h1 {
  font-family: var(--sq-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0;
  letter-spacing: -0.03em;
}
.sq-prose { max-width: 70ch; }
.sq-prose h2 { font-family: var(--sq-font-display); }
.sq-steps { display: grid; gap: 0.8rem; }
.sq-step {
  padding: 1rem 1.1rem;
  background: var(--sq-paper);
  border-left: 4px solid var(--sq-magenta);
  border-radius: 0.25rem;
}
.sq-product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
}
.sq-specs { width: 100%; border-collapse: collapse; }
.sq-specs th, .sq-specs td {
  text-align: left;
  padding: 0.5rem 0.35rem;
  border-bottom: 1px solid var(--sq-line);
}
.sq-form {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 36rem;
}
.sq-form label {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  font-weight: 700;
}
.sq-form input, .sq-form textarea {
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 0.7rem 0.8rem;
  border-radius: 0.35rem;
  border: 1.5px solid var(--sq-line);
  font: inherit;
  background: #fff;
  margin: 0;
}
.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.45rem;
  background: #ddd;
}
.gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.6rem; overflow-x: auto; }
.gallery-thumbs img { width: 68px; height: 68px; object-fit: cover; border-radius: 0.3rem; }
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--sq-paper);
  border: 1px solid var(--sq-line);
  border-radius: 0.45rem;
  overflow: hidden;
}
.card a { display: block; padding: 0.85rem; text-decoration: none; }
.card img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  margin-bottom: 0.55rem;
  border-radius: 0.3rem;
}

@media (max-width: 960px) {
  .sq-trust, .sq-cats, .sq-proof, .sq-split, .sq-certs, .sq-footer-grid, .sq-product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sq-cats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sq-nav{display:flex;}
  .sq-trust, .sq-cats, .sq-proof, .sq-split, .sq-certs, .sq-footer-grid, .sq-product-grid, .sq-cert-grid {
    grid-template-columns: 1fr;
  }
  .sq-hero { min-height: min(54vh, 480px); padding-block: 2rem 2.2rem; }
}

@media (max-width: 640px) {
  .sq-hero { min-height: min(52vh, 460px) !important; max-height: 520px; padding: 2rem 1.1rem 2.2rem !important; background-position: center 30% !important; align-content: end; }
  .sq-brand-mark { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .sq-hero h1 { font-size: 1.15rem !important; }
}
@media (min-width: 1100px) {
  .sq-hero { min-height: clamp(420px, 58vh, 620px); }
}
.product-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:1rem; }
.card { background:#fffcfb; border:1px solid rgba(22,16,24,.12); border-radius:.45rem; overflow:hidden; }
.card a { display:block; padding:.85rem; text-decoration:none; color:inherit; }
.card img { aspect-ratio:1; object-fit:cover; width:100%; margin-bottom:.5rem; background:#eee; }

/* ===== PLP catalog (SqueeZaa + Baymard B2B patterns) ===== */
.plp { max-width: 1180px; margin: 0 auto; padding: 1.25rem 1rem 3rem; }
.plp-crumb { font-size: .88rem; color: rgba(0,0,0,.55); margin: 0 0 1rem; display:flex; flex-wrap:wrap; gap:.35rem; align-items:center; }
.plp-crumb a { color: inherit; text-decoration: none; }
.plp-crumb a:hover { text-decoration: underline; }
.plp-head { margin: 0 0 1.25rem; }
.plp-head h1 { margin: 0 0 .4rem; font-size: clamp(1.55rem, 3vw, 2.15rem); letter-spacing: -.02em; }
.plp-lead { margin: 0; max-width: 54ch; color: rgba(0,0,0,.62); line-height: 1.45; }
.plp-toolbar {
  position: sticky; top: 3.6rem; z-index: 30;
  display: grid; gap: .75rem;
  padding: .85rem 0 .95rem;
  margin: 0 0 1.1rem;
  background: color-mix(in srgb, var(--plp-bg, #fff) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.plp-toolbar__row { display:flex; flex-wrap:wrap; gap:.65rem; align-items:center; justify-content:space-between; }
.plp-search { flex: 1 1 220px; min-width: 180px; max-width: 360px; position: relative; }
.plp-search input {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid rgba(0,0,0,.14);
  border-radius: .55rem;
  padding: .7rem .85rem .7rem 2.35rem;
  font: inherit; background: #fff;
}
.plp-search input:focus { outline: 2px solid color-mix(in srgb, var(--plp-accent, #a81e57) 45%, transparent); border-color: var(--plp-accent, #a81e57); }
.plp-search::before {
  content: ""; position: absolute; left: .8rem; top: 50%; width: .9rem; height: .9rem;
  transform: translateY(-50%);
  border: 2px solid rgba(0,0,0,.35); border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}
.plp-search::after {
  content: ""; position: absolute; left: 1.55rem; top: calc(50% + .28rem);
  width: .45rem; height: 2px; background: rgba(0,0,0,.35); transform: rotate(45deg);
  pointer-events: none;
}
.plp-chips { display:flex; flex-wrap:nowrap; gap:.45rem; overflow-x:auto; padding-bottom: .15rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.plp-chip {
  flex: 0 0 auto;
  border: 1.5px solid rgba(0,0,0,.14);
  background: #fff;
  color: inherit;
  border-radius: 999px;
  padding: .45rem .85rem;
  font: inherit; font-size: .9rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  white-space: nowrap;
}
.plp-chip:hover { border-color: var(--plp-accent, #a81e57); }
.plp-chip.is-active {
  background: var(--plp-accent, #a81e57);
  border-color: var(--plp-accent, #a81e57);
  color: #fff;
}
.plp-meta-bar { display:flex; flex-wrap:wrap; gap:.75rem; align-items:center; justify-content:space-between; }
.plp-count { font-size: .92rem; color: rgba(0,0,0,.55); }
.plp-count strong { color: rgba(0,0,0,.85); font-weight: 700; }
.plp-views { display:inline-flex; border: 1.5px solid rgba(0,0,0,.14); border-radius: .5rem; overflow:hidden; }
.plp-views button {
  border: 0; background: #fff; padding: .45rem .75rem; font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer;
}
.plp-views button + button { border-left: 1.5px solid rgba(0,0,0,.14); }
.plp-views button.is-active { background: var(--plp-accent, #a81e57); color: #fff; }

.plp-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.plp-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: .7rem;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border-color: color-mix(in srgb, var(--plp-accent, #a81e57) 35%, rgba(0,0,0,.1));
}
.plp-card__media {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.666%; /* 3:2 fixed box */
  overflow: hidden;
  background: #f4f4f6;
  margin: 0;
  display: block;
  flex: 0 0 auto;
  isolation: isolate;
}
.plp-card__media a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.plp-card__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: contain !important;
  object-position: center;
  padding: .5rem .65rem;
  box-sizing: border-box;
  transition: transform .25s ease;
  aspect-ratio: auto !important;
}
.plp-card:hover .plp-card__media img { transform: scale(1.03); }
.plp-card__sku {
  position: absolute; left: .55rem; top: .55rem; z-index: 5;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  background: rgba(255,255,255,.96); border: 1px solid rgba(0,0,0,.08);
  padding: .22rem .45rem; border-radius: .35rem;
  pointer-events: none;
}
.plp-card__body { display:flex; flex-direction:column; gap: .35rem; padding: .85rem .9rem 1rem; flex: 1; }
.plp-kicker { margin: 0; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--plp-accent, #a81e57); opacity: .9; }
.plp-card__title { margin: 0; font-size: 1rem; line-height: 1.3; font-weight: 700; }
.plp-card__title a {
  color: inherit; text-decoration: none;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.plp-card__title a:hover { text-decoration: underline; }
.plp-price { margin: .15rem 0 0; font-weight: 800; font-size: 1.02rem; }
.plp-price span { font-weight: 600; font-size: .82rem; color: rgba(0,0,0,.5); }
.plp-card__meta { margin: 0; font-size: .82rem; color: rgba(0,0,0,.55); }
.plp-card__actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: .45rem;
  margin-top: auto; padding-top: .55rem;
}
.plp-card__actions a,
.plp-card__actions button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.35rem; border-radius: .45rem; font: inherit; font-size: .86rem; font-weight: 700;
  cursor: pointer; text-decoration: none; border: 1.5px solid transparent;
}
.plp-btn-primary { background: var(--plp-accent, #a81e57); color: #fff; border-color: var(--plp-accent, #a81e57); }
.plp-btn-primary:hover { filter: brightness(1.05); }
.plp-btn-ghost { background: #fff; color: inherit; border-color: rgba(0,0,0,.16); }
.plp-btn-ghost:hover { border-color: var(--plp-accent, #a81e57); color: var(--plp-accent, #a81e57); }

.plp-table-wrap { overflow: auto; border: 1px solid rgba(0,0,0,.1); border-radius: .65rem; background: #fff; }
.plp-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .92rem; }
.plp-table th, .plp-table td { padding: .7rem .75rem; border-bottom: 1px solid rgba(0,0,0,.07); text-align: left; vertical-align: middle; }
.plp-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(0,0,0,.5); background: #f7f7f9; position: sticky; top: 0; }
.plp-table tr:hover td { background: color-mix(in srgb, var(--plp-accent, #a81e57) 5%, #fff); }
.plp-table__prod { display:flex; gap: .7rem; align-items:center; min-width: 220px; }
.plp-table__prod img { width: 52px; height: 52px; object-fit: contain; background: #f4f4f6; border-radius: .35rem; flex: 0 0 auto; }
.plp-table__prod a { color: inherit; text-decoration: none; font-weight: 700; }
.plp-table__prod a:hover { text-decoration: underline; }
.plp-empty { text-align: center; padding: 2.5rem 1rem; color: rgba(0,0,0,.5); }

.sq-body .plp { --plp-accent: #a81e57; --plp-bg: #fffcfb; }
.bq-body .plp { --plp-accent: #1b4f9c; --plp-bg: #f5f8fc; }

@media (max-width: 720px) {
  .plp-card__actions { grid-template-columns: 1fr; }
  .plp-views { display: none; }
  .plp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
  .plp-card__body { padding: .7rem; }
  .plp-card__title { font-size: .92rem; }
  .plp-price { font-size: .95rem; }
}
@media (max-width: 420px) {
  .plp-grid { grid-template-columns: 1fr; }
}

/* ===== PDP + Blog article (professional B2B) ===== */
.pdp { max-width: 1180px; margin: 0 auto; padding: 1.25rem 1rem 3.5rem; }
.pdp-crumb, .post-crumb {
  font-size: .88rem; color: rgba(0,0,0,.5); margin: 0 0 1.35rem;
  display: flex; flex-wrap: wrap; gap: .35rem; align-items: center;
}
.pdp-crumb a, .post-crumb a { color: inherit; text-decoration: none; }
.pdp-crumb a:hover, .post-crumb a:hover { text-decoration: underline; color: var(--pdp-accent, #a81e57); }

.pdp-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 2.5rem;
}
.pdp-gallery { position: sticky; top: 4.5rem; }
.pdp-gallery__stage {
  background: linear-gradient(160deg, #f7f2f4, #fff);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: .85rem;
  aspect-ratio: 1;
  display: grid; place-items: center;
  overflow: hidden;
}
.pdp-gallery__stage .gallery-main {
  width: 100%; height: 100%;
  object-fit: contain; padding: 1.25rem;
  background: transparent; border-radius: 0; aspect-ratio: auto;
}
.pdp-gallery__thumbs, .gallery-thumbs {
  display: flex; gap: .55rem; margin-top: .75rem; overflow-x: auto;
  padding-bottom: .15rem;
}
.pdp-gallery__thumbs button, .gallery-thumbs button {
  flex: 0 0 auto; border: 1.5px solid rgba(0,0,0,.1);
  border-radius: .45rem; padding: 0; background: #fff; cursor: pointer;
  overflow: hidden; width: 68px; height: 68px;
}
.pdp-gallery__thumbs button.is-active,
.pdp-gallery__thumbs button:hover,
.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  border-color: var(--pdp-accent, #a81e57);
}
.pdp-gallery__thumbs img, .gallery-thumbs img {
  width: 100%; height: 100%; object-fit: contain; display: block; background: #f6f6f8;
}

.pdp-buy { display: flex; flex-direction: column; gap: .65rem; padding-top: .2rem; }
.pdp-kicker {
  margin: 0; font-size: .78rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--pdp-accent, #a81e57);
}
.pdp-buy h1 {
  margin: 0; font-family: var(--sq-font-display, inherit);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.15; letter-spacing: -.03em; font-weight: 700;
}
.pdp-sku {
  margin: 0; font-size: .92rem; color: rgba(0,0,0,.55);
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
}
.pdp-sku code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .84rem; font-weight: 700;
  background: rgba(0,0,0,.05); padding: .2rem .45rem; border-radius: .3rem;
}
.pdp-price {
  margin: .35rem 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800; letter-spacing: -.02em;
}
.pdp-price span { font-size: .9rem; font-weight: 600; color: rgba(0,0,0,.45); }
.pdp-lead {
  margin: .15rem 0 .4rem; color: rgba(0,0,0,.68);
  line-height: 1.55; font-size: 1.02rem; max-width: 42ch;
}
.pdp-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .75rem;
  margin: .55rem 0 0; padding: 1rem;
  background: rgba(0,0,0,.025);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: .7rem;
}
.pdp-facts > div { display: grid; gap: .15rem; }
.pdp-facts dt {
  margin: 0; font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: rgba(0,0,0,.45);
}
.pdp-facts dd { margin: 0; font-weight: 700; font-size: .95rem; }
.pdp-actions {
  display: flex; flex-wrap: wrap; gap: .65rem;
  margin-top: 1rem; padding-top: .2rem;
}
.pdp-actions .sq-btn, .pdp-actions .bq-btn { min-height: 2.75rem; padding-inline: 1.25rem; }
.pdp-note {
  margin: .35rem 0 0; font-size: .85rem; color: rgba(0,0,0,.5);
}

.pdp-detail {
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 2rem; margin-top: .5rem;
}
.pdp-detail h2, .pdp-detail h3 {
  font-family: var(--sq-font-display, inherit);
  letter-spacing: -.02em; margin: 1.6rem 0 .7rem;
}
.pdp-detail h2:first-child, .pdp-detail h3:first-child { margin-top: 0; }
.pdp-detail p { line-height: 1.65; color: rgba(0,0,0,.78); max-width: 72ch; }
.pdp-detail ul { padding-left: 1.15rem; max-width: 72ch; }
.pdp-detail li { margin-bottom: .55rem; line-height: 1.55; }
.pdp-detail table {
  width: 100%; max-width: 720px; border-collapse: collapse;
  margin: 1rem 0 1.5rem; font-size: .94rem;
}
.pdp-detail th, .pdp-detail td {
  text-align: left; padding: .65rem .7rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.pdp-detail th { width: 38%; color: rgba(0,0,0,.5); font-weight: 600; background: rgba(0,0,0,.02); }
.pdp-back { margin-top: 2rem; font-size: .95rem; }
.pdp-back a { color: var(--pdp-accent, #a81e57); font-weight: 700; text-decoration: none; }
.pdp-back a:hover { text-decoration: underline; }

/* Blog listing */
.blog-index { max-width: 1100px; margin: 0 auto; padding: 1.5rem 1rem 3.5rem; }
.blog-index__head { margin: 0 0 1.5rem; }
.blog-index__head h1 {
  margin: 0 0 .4rem; font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -.03em; font-family: var(--sq-font-display, inherit);
}
.blog-index__lead { margin: 0; color: rgba(0,0,0,.58); max-width: 48ch; }
.blog-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.1rem;
}
.blog-tile {
  display: flex; flex-direction: column; gap: .55rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: .7rem; background: #fff;
  text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 11rem;
}
.blog-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
  border-color: color-mix(in srgb, var(--pdp-accent, #a81e57) 40%, rgba(0,0,0,.1));
}
.blog-tile__tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; color: var(--pdp-accent, #a81e57);
}
.blog-tile h2 {
  margin: 0; font-size: 1.12rem; line-height: 1.3;
  font-family: var(--sq-font-display, inherit); letter-spacing: -.02em;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-tile p {
  margin: 0; color: rgba(0,0,0,.55); font-size: .92rem; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-top: auto;
}

/* Blog article */
.post { max-width: 1120px; margin: 0 auto; padding: 1.25rem 1rem 3.5rem; }
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.post-header { margin: 0 0 1.75rem; max-width: 42rem; }
.post-eyebrow {
  margin: 0 0 .55rem; font-size: .78rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--pdp-accent, #a81e57);
}
.post-header h1 {
  margin: 0 0 .75rem;
  font-family: var(--sq-font-display, inherit);
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  line-height: 1.12; letter-spacing: -.035em;
}
.post-dek {
  margin: 0; font-size: 1.08rem; line-height: 1.55;
  color: rgba(0,0,0,.62); max-width: 40rem;
}
.post-body {
  max-width: 42rem;
  font-size: 1.05rem; line-height: 1.7; color: rgba(0,0,0,.82);
}
.post-body > h1 { display: none; } /* avoid duplicate titles from imported articles */
.post-body .page-hero, .post-body .page-hero--compact { display: none; }
.post-body h2 {
  font-family: var(--sq-font-display, inherit);
  font-size: 1.35rem; letter-spacing: -.02em;
  margin: 2rem 0 .75rem; line-height: 1.25;
}
.post-body h3 { font-size: 1.12rem; margin: 1.5rem 0 .55rem; }
.post-body p { margin: 0 0 1.05rem; }
.post-body ul, .post-body ol { margin: 0 0 1.2rem; padding-left: 1.2rem; }
.post-body li { margin-bottom: .4rem; }
.post-body a { color: var(--pdp-accent, #a81e57); font-weight: 600; }
.post-body .post-lead, .post-body .sourcing-note {
  background: rgba(0,0,0,.03);
  border-left: 3px solid var(--pdp-accent, #a81e57);
  padding: 1rem 1.1rem; margin: 1.5rem 0;
  border-radius: 0 .45rem .45rem 0;
}
.post-body .blog-layout { display: block; }
.post-body .blog-sidebar { display: none; } /* use our aside instead */
.post-aside {
  position: sticky; top: 4.5rem;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: .7rem; background: #fff;
}
.post-aside h3 {
  margin: 0 0 .65rem; font-size: .95rem;
  font-family: var(--sq-font-display, inherit);
}
.post-aside p { margin: 0 0 .85rem; font-size: .9rem; color: rgba(0,0,0,.6); line-height: 1.45; }
.post-aside .sq-btn, .post-aside .bq-btn { width: 100%; justify-content: center; }
.post-aside .sq-btn-primary,
.post-aside .bq-btn-primary,
.post-aside a.sq-btn-primary,
.post-aside a.bq-btn-primary {
  background: #fff !important;
  color: var(--pdp-accent, #a81e57) !important;
  border: 1.5px solid var(--pdp-accent, #a81e57) !important;
  box-shadow: none !important;
}
.post-aside .sq-btn-primary:hover,
.post-aside .bq-btn-primary:hover,
.post-aside a.sq-btn-primary:hover,
.post-aside a.bq-btn-primary:hover {
  background: color-mix(in srgb, var(--pdp-accent, #a81e57) 8%, #fff) !important;
  text-decoration: none !important;
}
.post-aside ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.post-aside li { margin: 0 0 .45rem; }
.post-aside a { color: inherit; font-size: .9rem; font-weight: 600; text-decoration: none; }
.post-aside a:hover { color: var(--pdp-accent, #a81e57); text-decoration: underline; }
.post-footer {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
}

.sq-body { --pdp-accent: #a81e57; }
.bq-body { --pdp-accent: #1b4f9c; }
.bq-body .pdp-gallery__stage {
  background: linear-gradient(160deg, #eef3fa, #fff);
  border: 2px solid rgba(27,79,156,.18);
  border-radius: .2rem;
}
.bq-body .pdp-buy h1,
.bq-body .post-header h1,
.bq-body .blog-index__head h1,
.bq-body .blog-tile h2,
.bq-body .post-body h2 {
  font-family: var(--bq-font-heading, var(--bq-font-display, inherit));
}
.bq-body .pdp-facts {
  border: 2px solid rgba(27,79,156,.15);
  border-radius: .15rem;
  background: #f5f8fc;
}

@media (max-width: 900px) {
  .pdp-top { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
  .post-layout { grid-template-columns: 1fr; }
  .post-aside { position: static; }
}
@media (max-width: 560px) {
  .pdp-facts { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== OEM services (Leeline-inspired) + PDP v2 (spinningtoy/CAYI) ===== */
.svc { max-width: 1200px; margin: 0 auto; padding: 0 1.15rem 3.5rem; }
.svc-hero {
  padding: 2.4rem 0 2rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: 2rem;
}
.svc-hero__eyebrow {
  margin: 0 0 .55rem; font-size: .78rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--svc-accent, #a81e57);
}
.svc-hero h1 {
  margin: 0 0 .75rem; font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -.035em; line-height: 1.1;
  font-family: var(--sq-font-display, var(--bq-font-heading, inherit));
  max-width: 18ch;
}
.svc-hero__lead { margin: 0 0 1.35rem; max-width: 48ch; color: rgba(0,0,0,.62); font-size: 1.08rem; line-height: 1.55; }
.svc-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .75rem;
  margin: 1.75rem 0 0;
}
.svc-stat {
  padding: 1rem .9rem; background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.07); border-radius: .65rem; text-align: center;
}
.svc-stat strong {
  display: block; font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-family: var(--sq-font-display, var(--bq-font-heading, inherit));
  letter-spacing: -.03em; color: var(--svc-accent, #a81e57);
}
.svc-stat span { font-size: .85rem; color: rgba(0,0,0,.55); }
.svc-section { margin: 2.75rem 0; }
.svc-section h2 {
  margin: 0 0 .4rem; font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -.025em;
  font-family: var(--sq-font-display, var(--bq-font-heading, inherit));
}
.svc-section > .svc-sub { margin: 0 0 1.35rem; color: rgba(0,0,0,.55); max-width: 46ch; }
.svc-pillars {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem;
}
.svc-pillar {
  padding: 1.35rem 1.2rem 1.45rem;
  border: 1px solid rgba(0,0,0,.09); border-radius: .75rem; background: #fff;
}
.svc-pillar h3 { margin: 0 0 .5rem; font-size: 1.08rem; }
.svc-pillar p { margin: 0; color: rgba(0,0,0,.62); font-size: .95rem; line-height: 1.5; }
.svc-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .85rem;
}
.svc-steps li {
  display: grid; grid-template-columns: 2.6rem 1fr; gap: .9rem; align-items: start;
  padding: 1rem 1.1rem; background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: .65rem;
}
.svc-steps b {
  width: 2.4rem; height: 2.4rem; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--svc-accent, #a81e57); color: #fff; font-size: .95rem;
}
.svc-steps h3 { margin: 0 0 .25rem; font-size: 1.02rem; }
.svc-steps p { margin: 0; color: rgba(0,0,0,.58); font-size: .92rem; line-height: 1.45; }
.svc-trust-title { text-align: center; margin-bottom: 1.85rem; }
.svc-trust-title h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  letter-spacing: -.03em;
}
.svc-trust-title .svc-sub {
  margin-top: .55rem;
  font-size: 1.05rem;
  max-width: 42ch;
}
.svc-quotes {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.35rem;
  align-items: stretch;
}
.svc-quote {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 17rem;
  padding: 2.15rem 1.65rem 1.75rem;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: .9rem;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--svc-accent, #a81e57) 7%, #fff) 0%, #fff 42%);
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}
.svc-quote::before {
  content: "“";
  position: absolute;
  top: .55rem; left: 1.1rem;
  font-family: var(--sq-font-display, var(--bq-font-heading, Georgia, serif));
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 700;
  color: color-mix(in srgb, var(--svc-accent, #a81e57) 28%, transparent);
  pointer-events: none;
}
.svc-quote p {
  position: relative;
  flex: 1;
  margin: .85rem 0 1.35rem;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.55;
  letter-spacing: -.015em;
  color: rgba(0,0,0,.82);
  font-weight: 600;
}
.svc-quote cite {
  font-style: normal;
  font-size: .95rem;
  color: rgba(0,0,0,.52);
  display: block;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.08);
  line-height: 1.4;
}
.svc-quote strong {
  display: block;
  color: rgba(0,0,0,.88);
  font-size: 1.02rem;
  margin-bottom: .15rem;
}
.svc-faq details {
  border-bottom: 1px solid rgba(0,0,0,.08); padding: .95rem 0;
}
.svc-faq summary {
  cursor: pointer; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after { content: "+"; color: var(--svc-accent, #a81e57); font-weight: 800; }
.svc-faq details[open] summary::after { content: "–"; }
.svc-faq p { margin: .65rem 0 0; color: rgba(0,0,0,.62); line-height: 1.55; max-width: 62ch; }
.svc-cta-band {
  margin-top: 2.5rem; padding: 1.75rem 1.4rem;
  border-radius: .85rem; color: #fff;
  background: linear-gradient(120deg, var(--svc-accent, #a81e57), color-mix(in srgb, var(--svc-accent, #a81e57) 55%, #111));
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.svc-cta-band h2 { margin: 0 0 .35rem; font-size: 1.35rem; letter-spacing: -.02em; }
.svc-cta-band p { margin: 0; opacity: .9; max-width: 36ch; font-size: .95rem; }
.svc-cta-band .sq-btn, .svc-cta-band .bq-btn { background: #fff; color: #111; }

.sq-body { --svc-accent: #a81e57; }
.bq-body { --svc-accent: #1b4f9c; }
.bq-body .svc-stat, .bq-body .svc-pillar, .bq-body .svc-steps li, .bq-body .svc-quote {
  border-radius: .15rem; border-width: 2px;
}

/* PDP v2 extras */
.pdp-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: .3rem .55rem; border-radius: .35rem;
  background: color-mix(in srgb, var(--pdp-accent, #a81e57) 12%, #fff);
  color: var(--pdp-accent, #a81e57); margin: 0 0 .35rem; width: fit-content;
}
.pdp-trust {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .55rem;
  margin: .85rem 0 0;
}
.pdp-trust > div {
  text-align: center; padding: .7rem .4rem;
  border: 1px solid rgba(0,0,0,.08); border-radius: .5rem; background: rgba(0,0,0,.02);
}
.pdp-trust strong { display: block; font-size: .98rem; letter-spacing: -.01em; }
.pdp-trust span { font-size: .72rem; color: rgba(0,0,0,.5); text-transform: uppercase; letter-spacing: .03em; }
.pdp-tabs { display: flex; gap: .35rem; flex-wrap: wrap; margin: 0 0 1rem; border-bottom: 1px solid rgba(0,0,0,.08); }
.pdp-tabs button {
  border: 0; background: transparent; padding: .75rem 1rem; font: inherit; font-weight: 700;
  cursor: pointer; color: rgba(0,0,0,.5); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.pdp-tabs button.is-active { color: var(--pdp-accent, #a81e57); border-bottom-color: var(--pdp-accent, #a81e57); }
.pdp-panel[hidden] { display: none; }
.pdp-why {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; margin: 1rem 0;
}
.pdp-why > div {
  padding: 1rem; border: 1px solid rgba(0,0,0,.08); border-radius: .6rem; background: #fff;
}
.pdp-why h3 { margin: 0 0 .35rem; font-size: .98rem; }
.pdp-why p { margin: 0; font-size: .9rem; color: rgba(0,0,0,.6); line-height: 1.45; }
.pdp-faq details { border-bottom: 1px solid rgba(0,0,0,.08); padding: .85rem 0; }
.pdp-faq summary { cursor: pointer; font-weight: 700; list-style: none; }
.pdp-faq summary::-webkit-details-marker { display: none; }
.pdp-faq p { margin: .5rem 0 0; color: rgba(0,0,0,.62); line-height: 1.5; max-width: 65ch; }
.pdp-related { margin-top: 2.75rem; }
.pdp-related h2 {
  margin: 0 0 1rem; font-size: 1.35rem; letter-spacing: -.02em;
  font-family: var(--sq-font-display, var(--bq-font-heading, inherit));
}
.pdp-related__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .85rem;
}
.pdp-related__grid a {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid rgba(0,0,0,.09); border-radius: .6rem; overflow: hidden; background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pdp-related__grid a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.07); }
.pdp-related__grid img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #f4f4f6; padding: .5rem; }
.pdp-related__grid span { display: block; padding: .65rem .7rem .85rem; font-size: .88rem; font-weight: 700; line-height: 1.3; }
.pdp-cta-band {
  margin-top: 2.5rem; padding: 1.5rem 1.25rem; border-radius: .75rem;
  background: color-mix(in srgb, var(--pdp-accent, #a81e57) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--pdp-accent, #a81e57) 22%, transparent);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.pdp-cta-band h2 { margin: 0 0 .25rem; font-size: 1.2rem; }
.pdp-cta-band p { margin: 0; color: rgba(0,0,0,.58); font-size: .92rem; }

@media (max-width: 900px) {
  .svc-stats, .svc-pillars, .svc-quotes { grid-template-columns: 1fr 1fr; }
  .svc-quote { min-height: 14.5rem; }
  .pdp-trust { grid-template-columns: 1fr 1fr; }
  .pdp-why { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .svc-stats, .svc-pillars, .svc-quotes { grid-template-columns: 1fr; }
  .svc-quote { min-height: 0; padding: 1.85rem 1.35rem 1.5rem; }
}


/* sq-commerce-bg: brighter list/detail surfaces */
.sq-body .plp,
.sq-body .pdp {
  background: transparent;
}
.sq-body .plp-card,
.sq-body .pdp-gallery__stage,
.sq-body .pdp-facts,
.sq-body .pdp-why > div,
.sq-body .nav-dd__menu {
  background: #fff;
}
.sq-body .plp-card__media {
  background: #f7f5f4;
}
.sq-body .plp-toolbar {
  background: color-mix(in srgb, #fffcfb 94%, transparent);
}

/* ===== Nav Productos dropdown ===== */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd__trigger {
  display: inline-flex; align-items: center; gap: .35rem;
  text-decoration: none; font: inherit; font-weight: 600;
  background: none; border: 0; cursor: pointer; color: inherit;
  padding: .35rem 0;
}
.sq-nav .nav-dd__trigger { color: var(--sq-muted); }
.sq-nav .nav-dd__trigger:hover,
.sq-nav .nav-dd.is-open .nav-dd__trigger { color: var(--sq-magenta); }
.bq-nav .nav-dd__trigger { color: var(--bq-text); }
.bq-nav .nav-dd__trigger:hover,
.bq-nav .nav-dd.is-open .nav-dd__trigger { color: var(--bq-primary); }
.nav-dd__caret {
  width: 0; height: 0;
  border-left: .28rem solid transparent;
  border-right: .28rem solid transparent;
  border-top: .32rem solid currentColor;
  opacity: .7;
  transition: transform .18s ease;
}
.nav-dd.is-open .nav-dd__caret { transform: rotate(180deg); }
.nav-dd__menu {
  position: absolute; top: calc(100% - 2px); left: 0; z-index: 80;
  min-width: 14rem;
  padding: .4rem;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: .55rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  display: none;
  flex-direction: column; gap: .1rem;
}
.nav-dd__menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px; /* bridge so mouse can move into menu */
}
.nav-dd.is-open .nav-dd__menu,
.nav-dd:focus-within .nav-dd__menu { display: flex; }
.nav-dd__menu a {
  display: block; padding: .55rem .7rem; border-radius: .35rem;
  text-decoration: none; font-weight: 600; font-size: .9rem;
  color: rgba(0,0,0,.78) !important; background: transparent !important;
  border: 0 !important; box-shadow: none !important;
}
.nav-dd__menu a:hover {
  background: rgba(0,0,0,.045) !important;
  color: var(--nav-dd-accent, #a81e57) !important;
}
.sq-body { --nav-dd-accent: #a81e57; }
.bq-body { --nav-dd-accent: #1b4f9c; }
.bq-body .nav-dd__menu { border-radius: .15rem; border-width: 2px; }
@media (max-width: 720px) {
  .nav-dd__menu {
    position: static; box-shadow: none; border: 0;
    padding: .25rem 0 .25rem .75rem; min-width: 0; background: transparent;
  }
  .nav-dd__menu::before { display: none; }
}

/* PLP media hard lock 3:2 contain */
.plp .plp-card__media,
ul.plp-grid .plp-card__media,
li.plp-item .plp-card__media {
  position: relative !important;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 66.666% !important; /* 3:2 */
  aspect-ratio: unset !important;
  overflow: hidden !important;
  display: block !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  background: #f4f4f6 !important;
}
.plp .plp-card__media > a {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
}
.plp .plp-card__sku {
  z-index: 5 !important;
  top: .55rem !important;
  left: .55rem !important;
}
.plp .plp-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  aspect-ratio: auto !important;
  max-width: none !important;
  max-height: none !important;
  box-sizing: border-box !important;
}

/* ===== PDP magnifier ===== */
.pdp-gallery__stage {
  position: relative;
  cursor: crosshair;
}
.pdp-gallery__stage.is-zooming { cursor: none; }
.pdp-zoom-hint {
  position: absolute; right: .7rem; bottom: .7rem; z-index: 4;
  width: 2rem; height: 2rem; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  pointer-events: none;
  color: rgba(0,0,0,.55);
}
.pdp-zoom-hint svg { width: 1rem; height: 1rem; display: block; }
.pdp-zoom-lens {
  position: absolute; z-index: 6;
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18), 0 10px 28px rgba(0,0,0,.22);
  pointer-events: none;
  display: none;
  background-repeat: no-repeat;
  background-color: #fff;
}
.pdp-gallery__stage.is-zooming .pdp-zoom-lens { display: block; }
.pdp-zoom-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12,10,14,.78);
  display: none; align-items: center; justify-content: center;
  padding: 1.25rem; cursor: zoom-out;
}
.pdp-zoom-lightbox.is-open { display: flex; }
.pdp-zoom-lightbox img {
  max-width: min(960px, 100%);
  max-height: min(90vh, 100%);
  object-fit: contain;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
@media (hover: none), (max-width: 900px) {
  .pdp-gallery__stage { cursor: zoom-in; }
  .pdp-zoom-lens, .pdp-zoom-hint { display: none !important; }
  .pdp-gallery__stage.is-zooming .pdp-zoom-lens { display: none !important; }
}


/* ===== Quote cart (lista de cotización) ===== */
.qc-fab {
  position: fixed;
  right: 1rem;
  bottom: 4.85rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .72rem 1rem .72rem .85rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: -.01em;
  color: #fff;
  background: var(--svc-accent, #a81e57);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  border-radius: .55rem;
}
.bq-body .qc-fab {
  background: #1b4f9c;
  border-radius: .15rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.qc-fab svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.qc-fab__badge,
.qc-nav-btn__badge {
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 .3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  background: #fff;
  color: var(--svc-accent, #a81e57);
}
.bq-body .qc-fab__badge,
.bq-body .qc-nav-btn__badge { color: #1b4f9c; border-radius: .15rem; }
.qc-fab.is-empty { opacity: .92; }
.qc-fab.is-pulse { animation: qc-pulse .55s ease; }
@keyframes qc-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.qc-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-left: .35rem;
  padding: .35rem .7rem;
  border: 1.5px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.03);
  border-radius: .45rem;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: .88rem;
  color: inherit;
  text-decoration: none;
}
.bq-body .qc-nav-btn { border-radius: .12rem; border-width: 2px; }
.qc-nav-btn__badge {
  background: var(--svc-accent, #a81e57);
  color: #fff;
}
.bq-body .qc-nav-btn__badge { background: #1b4f9c; }

.qc-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 20, 30, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.qc-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qc-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(400px, 100vw);
  height: 100%;
  background: #fff;
  box-shadow: -16px 0 48px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.qc-drawer.is-open { transform: translateX(0); }
.qc-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.qc-drawer__head h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  font-family: var(--sq-font-display, var(--bq-font-heading, inherit));
}
.qc-drawer__close {
  width: 2.2rem; height: 2.2rem;
  border: 0; background: rgba(0,0,0,.05);
  border-radius: .4rem; cursor: pointer;
  font-size: 1.35rem; line-height: 1; color: rgba(0,0,0,.55);
}
.qc-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.15rem 1.25rem;
}
.qc-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: rgba(0,0,0,.55);
}
.qc-empty p { margin: 0 0 1rem; line-height: 1.45; }
.qc-item {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.qc-item__img {
  width: 3.6rem; height: 3.6rem;
  object-fit: contain;
  background: #f4f4f6;
  border-radius: .4rem;
  border: 1px solid rgba(0,0,0,.06);
}
.qc-item__img--ph {
  display: grid; place-items: center;
  font-size: .65rem; font-weight: 800; color: rgba(0,0,0,.35);
}
.qc-item__title {
  margin: 0 0 .2rem;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
}
.qc-item__title:hover { color: var(--svc-accent, #a81e57); }
.bq-body .qc-item__title:hover { color: #1b4f9c; }
.qc-item__sku {
  margin: 0 0 .55rem;
  font-size: .78rem;
  color: rgba(0,0,0,.45);
  font-family: ui-monospace, monospace;
}
.qc-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.qc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: .35rem;
  overflow: hidden;
}
.qc-qty button {
  width: 1.85rem; height: 1.85rem;
  border: 0; background: rgba(0,0,0,.04);
  cursor: pointer; font: inherit; font-weight: 700;
}
.qc-qty span {
  min-width: 1.8rem; text-align: center;
  font-size: .88rem; font-weight: 700;
}
.qc-item__remove {
  border: 0; background: transparent;
  color: rgba(0,0,0,.4); cursor: pointer;
  font-size: .8rem; text-decoration: underline;
}
.qc-drawer__foot {
  padding: 1rem 1.15rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: grid; gap: .55rem;
  background: #fafafa;
}
.qc-drawer__cta {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: .85rem 1rem;
  font-weight: 800;
  color: #fff;
  background: var(--svc-accent, #a81e57);
  border-radius: .5rem;
}
.bq-body .qc-drawer__cta { background: #1b4f9c; border-radius: .15rem; }
.qc-drawer__clear {
  border: 0; background: transparent;
  color: rgba(0,0,0,.45); cursor: pointer;
  font: inherit; font-size: .85rem; text-decoration: underline;
}

.qc-preview {
  margin: 0 0 1.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: .65rem;
  background: rgba(0,0,0,.02);
  width: 100%;
  max-width: 36rem;
  box-sizing: border-box;
}
.bq-body .qc-preview { border-radius: .15rem; border-width: 2px; }
.qc-preview h2 {
  margin: 0 0 .65rem;
  font-size: 1.05rem;
  letter-spacing: -.015em;
}
.qc-preview__list { margin: 0; padding: 0; list-style: none; }
.qc-preview__list li {
  display: flex; justify-content: space-between; gap: .75rem;
  padding: .4rem 0; font-size: .92rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.qc-preview__list li:last-child { border-bottom: 0; }
.qc-preview__meta { color: rgba(0,0,0,.45); font-size: .82rem; white-space: nowrap; }
.qc-preview__empty { margin: 0; color: rgba(0,0,0,.5); font-size: .92rem; }

.sq-body { --svc-accent: #a81e57; }
.bq-body { --svc-accent: #1b4f9c; }

@media (max-width: 560px) {
  .qc-fab span.qc-fab__label { display: none; }
  .qc-fab { padding: .85rem; border-radius: 999px; }
  .bq-body .qc-fab { border-radius: .2rem; clip-path: none; }
}


/* === brand logos v2 === */
.sq-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.sq-logo img {
  height: 44px;
  width: auto;
  max-width: min(200px, 48vw);
  display: block;
  object-fit: contain;
}
.sq-brand-mark {
  background: transparent;
}
.sq-brand-mark img {
  height: clamp(110px, 18vw, 168px);
  width: auto;
  max-width: min(300px, 78vw);
  display: block;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
}
/* === end brand logos v2 === */

/* PLP depth — SEO/GEO content below product grid */
.plp-depth {
  margin: 2.5rem 0 0;
  padding: 2rem max(1rem, calc((100% - 1160px) / 2)) 2.5rem;
  background: linear-gradient(180deg, rgba(168, 30, 87, 0.04), transparent 40%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.plp-depth__inner { max-width: 1160px; margin: 0 auto; }
.plp-depth__head h2 {
  font-family: var(--sq-font-display, Sora, sans-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
.plp-depth__head p,
.plp-depth__lead {
  margin: 0 0 1.25rem;
  max-width: 68ch;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.5;
}
.plp-depth__block { margin: 0 0 2rem; }
.plp-depth__block > h2 {
  font-family: var(--sq-font-display, Sora, sans-serif);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}
.plp-depth__faq-list details {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.45rem;
  background: #fff;
  padding: 0.75rem 1rem;
  margin: 0 0 0.5rem;
}
.plp-depth__faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.plp-depth__faq-list summary::-webkit-details-marker { display: none; }
.plp-depth__faq-list details[open] summary { margin-bottom: 0.45rem; color: var(--sq-primary, #a81e57); }
.plp-depth__faq-list p { margin: 0; color: rgba(0, 0, 0, 0.7); line-height: 1.5; font-size: 0.95rem; }
.plp-depth__qc ul { margin: 0; padding-left: 1.15rem; line-height: 1.55; color: rgba(0, 0, 0, 0.72); }
.plp-depth__qc li { margin: 0.35rem 0; }
.plp-depth__scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}
.plp-depth__scene-grid article {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  padding: 1rem 1.05rem;
}
.plp-depth__scene-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-family: var(--sq-font-display, Sora, sans-serif);
}
.plp-depth__scene-grid p { margin: 0; font-size: 0.92rem; color: rgba(0, 0, 0, 0.68); line-height: 1.45; }
.plp-depth__links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 0;
  padding: 1rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.plp-depth__links a { font-weight: 700; color: var(--sq-primary, #a81e57); }
