:root {
  color-scheme: light;
  --ink: #17191f;
  --muted: #656b76;
  --line: #d8dde5;
  --soft: #f4f6f8;
  --panel: #ffffff;
  --dark: #111318;
  --accent: #aeb4bb;
  --signal: #d8c34f;
  --metal: #c9cdd2;
  --blue: #46a9d8;
  --green: #71b86d;
  --violet: #8c67ce;
  --danger: #bd4a4a;
  --shadow: 0 18px 55px rgba(17, 19, 24, 0.14);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Bahnschrift, "Arial Narrow", "Aptos Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfcfd;
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 221, 229, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 38px;
  place-items: center;
  color: #101216;
  background: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
  transform: skew(-12deg);
}

.brand-logo {
  display: block;
  width: 98px;
  height: 44px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-nav a {
  color: var(--muted);
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--ink);
}

.cart-pill,
.account-button,
.primary-button,
.ghost-button,
.text-button,
.icon-button,
.primary-link,
.secondary-link {
  min-height: 42px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  color: #101216;
  background: var(--accent);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  min-height: 42px;
  justify-content: center;
  padding: 0;
  color: #f5f5f2;
  background: #17181b;
  border: 1px solid #55585e;
  border-radius: 4px;
  font-size: 0;
  font-weight: 900;
}

.mobile-menu-button::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px currentColor, 0 6px currentColor;
}

.account-button {
  max-width: 220px;
  min-height: 42px;
  padding: 9px 14px;
  overflow: hidden;
  color: #f5f5f2;
  background: transparent;
  border: 1px solid #55585e;
  border-radius: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-icon {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -7px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.shop-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  background: var(--dark);
  color: #fff;
}

.shop-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(28px, 6vw, 72px);
  background: linear-gradient(120deg, #111318 0%, #23262b 100%);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 760;
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: #d7dbe2;
  font-size: 1.07rem;
  line-height: 1.7;
}

.hero-actions,
.form-actions,
.cart-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.primary-link,
.secondary-link,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 7px;
}

.primary-link,
.primary-button {
  color: #111318;
  background: var(--accent);
}

.secondary-link,
.ghost-button {
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  padding: clamp(42px, 7vw, 82px) clamp(16px, 4vw, 46px);
}

body.customer-app main {
  background: #08090b;
}

body.customer-app .section {
  padding: clamp(22px, 3vw, 42px) clamp(14px, 3vw, 34px);
}

body.customer-app .section-title h2,
body.customer-app .purchases-header h2,
body.customer-app .shipping-address-panel .section-title h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.08;
}

body.customer-app .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

body.customer-app .section-lead,
body.customer-app .catalog-toolbar span,
body.customer-app .purchases-header p {
  font-size: 0.95rem;
  line-height: 1.45;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-title.compact {
  display: block;
  margin-bottom: 20px;
}

.section-lead,
.panel-note {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.panel-note {
  margin: -8px 0 0;
  font-size: 0.9rem;
}

.company-section {
  background:
    linear-gradient(180deg, #111214 0%, #0b0b0c 100%);
  border-bottom: 1px solid #34363b;
}

.company-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.company-story article {
  display: grid;
  gap: 12px;
  padding: 22px;
  color: #f5f5f2;
  background: #17191f;
  border: 1px solid #3f4248;
  border-radius: 8px;
}

.company-story .company-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  align-items: center;
  grid-column: 1 / -1;
  max-width: none;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(90deg, #191b20 0%, #121315 100%);
}

.company-story .company-intro p {
  max-width: 860px;
  font-size: 1.05rem;
}

.company-story figure {
  margin: 0;
  overflow: hidden;
  background: #080809;
  border: 1px solid #4a4d54;
  border-radius: 8px;
}

.company-story img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.88;
}

.company-story strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.company-story p,
.order-access p {
  margin: 0;
  color: #c6c7ca;
  line-height: 1.65;
}

.seo-topic-section {
  border-top: 1px solid #24262b;
  border-bottom: 1px solid #24262b;
}

.seo-topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.seo-topic-grid a {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.seo-topic-grid article:hover {
  border-color: #bcc1c8;
  background: #1d2026;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promo-card,
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(17, 19, 24, 0.05);
}

.promo-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
}

.promo-card strong {
  color: var(--muted);
  font-size: 0.86rem;
}

.promo-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #27303a;
  background: #edf1f6;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag.yellow {
  background: #fff3b8;
}

.tag.blue {
  background: #dff3fb;
}

.tag.green {
  background: #e0f2df;
}

.tag.violet {
  background: #eee8fb;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: var(--soft);
}

.filters-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box,
.filter-row label,
.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd6df;
  border-radius: 7px;
  padding: 10px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #252a33;
  box-shadow: 0 0 0 3px rgba(242, 207, 69, 0.35);
}

.filter-group {
  display: grid;
  gap: 9px;
}

.filter-group > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.segmented {
  display: grid;
  gap: 8px;
}

.segmented button {
  min-height: 38px;
  padding: 8px 10px;
  color: #343a44;
  background: #f4f6f8;
  border: 1px solid #e0e5ec;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.segmented button.active {
  color: #111318;
  background: var(--accent);
  border-color: #d8b72d;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.text-button {
  justify-self: start;
  min-height: 36px;
  padding: 0;
  color: #3f4754;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pdf-section {
  background: #080809;
  border-top: 1px solid #34363b;
  border-bottom: 1px solid #34363b;
}

.pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.catalog-cover-card {
  position: relative;
  width: min(100%, 620px);
  margin: 30px auto 0;
  padding: clamp(10px, 1.4vw, 16px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #111214;
  border: 1px solid #3f4146;
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
}

.catalog-cover-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.catalog-cover-download {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  min-width: min(260px, calc(100% - 36px));
  min-height: 58px;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.price-list-section {
  background: #080809;
  border-top: 1px solid #34363b;
  border-bottom: 1px solid #34363b;
}

.price-list-card {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(127, 183, 230, 0.12), rgba(17, 18, 20, 0.98) 44%),
    #111214;
  border: 1px solid #46505b;
  border-radius: 8px;
  box-shadow: inset 4px 0 0 #7fb7e6, 0 18px 42px rgba(0, 0, 0, 0.22);
}

.price-list-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.price-list-card dl div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #34363b;
  border-radius: 8px;
}

.price-list-card dt {
  margin-bottom: 8px;
  color: #aeb2ba;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-list-card dd {
  margin: 0;
  color: #f7f7f5;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 850;
}

.price-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.price-list-actions .primary-button,
.price-list-actions .ghost-button {
  min-width: 220px;
}

.catalog-book {
  margin-top: 24px;
  background: #111214;
  border: 1px solid #3f4146;
  border-radius: 8px;
  overflow: hidden;
}

.catalog-book-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #34363b;
}

.catalog-book-toolbar strong {
  color: #f5f5f2;
  font-family: var(--font-display);
}

.catalog-page-frame {
  display: block;
  height: min(78vh, 820px);
  margin: 0;
  padding: clamp(10px, 2vw, 22px);
  overflow: auto;
  background: #080809;
}

.catalog-page-frame img {
  display: block;
  width: 100%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
  background: #101113;
  border: 1px solid #3f4146;
  border-radius: 6px;
}

.catalog-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 92px;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  border-top: 1px solid #34363b;
}

.catalog-thumbs button {
  display: grid;
  gap: 6px;
  padding: 5px;
  color: #c6c7ca;
  background: #17191f;
  border: 1px solid #3f4146;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.catalog-thumbs button.active {
  color: #09090a;
  background: var(--metal);
  border-color: #d8dde3;
}

.catalog-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #080809;
  border-radius: 4px;
}

.catalog-thumbs span {
  font-size: 0.75rem;
}

.products-area {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

body.customer-app .catalog-toolbar {
  margin-bottom: 12px;
}

body.customer-app .catalog-toolbar strong {
  font-size: 0.98rem;
}

.catalog-toolbar strong,
.catalog-toolbar span {
  display: block;
}

.catalog-toolbar span {
  color: var(--muted);
  margin-top: 4px;
}

.catalog-toolbar select {
  max-width: 220px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.product-family-section {
  display: grid;
  gap: 14px;
}

.product-family-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #131416;
  border: 1px solid #34363b;
  border-left: 5px solid #8f969e;
  border-radius: var(--radius);
}

.product-family-header h3 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.05;
}

.product-family-header p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-family-count {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #dfe5ec;
  background: #1c1f24;
  border: 1px solid #3a3f48;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 325px;
  overflow: hidden;
}

body.customer-app .product-card {
  min-height: 292px;
}

.product-card.is-promo {
  background:
    linear-gradient(180deg, rgba(213, 238, 139, 0.075), rgba(18, 19, 21, 0) 38%),
    #151618;
  border-color: rgba(218, 232, 126, 0.48);
  box-shadow:
    inset 5px 0 #8ca77a,
    0 0 0 1px rgba(214, 232, 105, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.2);
}

.product-card.is-special-price:not(.is-promo) {
  background:
    linear-gradient(180deg, rgba(120, 184, 255, 0.07), rgba(18, 19, 21, 0) 34%),
    #151618;
  border-color: rgba(139, 198, 255, 0.42);
}

.product-load-more {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 0 28px;
}

.product-load-more button {
  position: relative;
  min-height: 56px;
  padding: 0 28px;
  color: #111008;
  font-weight: 900;
  background: linear-gradient(135deg, #f4e36e, #d1b63f);
  border: 1px solid #f6e982;
  border-radius: var(--radius);
  box-shadow: 0 0 0 0 rgba(216, 195, 79, 0.38), 0 12px 26px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  animation: product-load-more-pulse 2.4s ease-in-out infinite;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.product-load-more button::after {
  content: "  ↓";
  font-size: 1.05em;
}

.product-load-more button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 0 0 5px rgba(216, 195, 79, 0.15), 0 16px 30px rgba(0, 0, 0, 0.34);
}

.product-load-more span {
  color: #e4d77a;
  font-weight: 800;
}

@keyframes product-load-more-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216, 195, 79, 0.34), 0 12px 26px rgba(0, 0, 0, 0.28); }
  50% { box-shadow: 0 0 0 7px rgba(216, 195, 79, 0.08), 0 15px 30px rgba(0, 0, 0, 0.34); }
}

@media (prefers-reduced-motion: reduce) {
  .product-load-more button { animation: none; }
}

.product-card.family-lana { box-shadow: inset 5px 0 #8ca77a; }
.product-card.family-poliespuma { box-shadow: inset 5px 0 #4aa9d6; }
.product-card.family-accesorios { box-shadow: inset 5px 0 #8f77b3; }
.product-card.family-tacos { box-shadow: inset 5px 0 #8f969e; }

.product-card.is-promo.family-lana {
  box-shadow: inset 5px 0 #8ca77a, 0 0 0 1px rgba(214, 232, 105, 0.16), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-card.is-promo.family-poliespuma {
  box-shadow: inset 5px 0 #4aa9d6, 0 0 0 1px rgba(214, 232, 105, 0.16), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-card.is-promo.family-accesorios {
  box-shadow: inset 5px 0 #8f77b3, 0 0 0 1px rgba(214, 232, 105, 0.16), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-card.is-promo.family-tacos {
  box-shadow: inset 5px 0 #8f969e, 0 0 0 1px rgba(214, 232, 105, 0.16), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 118px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, #22262d, #434a56);
}

.product-visual.has-image {
  min-height: 254px;
  padding: 12px;
  overflow: hidden;
  background: #101113;
}

.product-visual-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.product-visual:not(.has-image) .product-visual-head {
  align-self: start;
  margin-bottom: 0;
}

.product-visual.has-image figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #020203;
  border: 1px solid #e8e8e2;
  border-radius: 4px;
}

.product-image-zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.product-image-zoom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-thumbs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 9px;
}

.product-gallery-thumbs button {
  height: 34px;
  padding: 2px;
  overflow: hidden;
  background: #f2f2ef;
  border: 1px solid #3f4146;
  border-radius: 4px;
  cursor: pointer;
}

.product-gallery-thumbs button.active {
  border-color: var(--metal);
  box-shadow: 0 0 0 1px var(--metal);
}

.product-gallery-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-visual.lana {
  background: linear-gradient(135deg, #22262d, #6d7b64);
}

.product-visual.poliespuma {
  background: linear-gradient(135deg, #253040, #55a8d4);
}

.product-visual.accesorios {
  background: linear-gradient(135deg, #2e2a36, #8166aa);
}

.product-visual.tacos {
  background: linear-gradient(135deg, #26323b, #d6b834);
}

.product-code {
  position: relative;
  z-index: 3;
  align-self: start;
  justify-self: start;
  padding: 6px 9px;
  color: #111318;
  background: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-visual.has-image .product-code {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.promo-badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  align-self: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 11px;
  color: #050505;
  background: linear-gradient(135deg, #f5e15a 0%, #c9f36f 44%, #78df80 100%);
  border: 1px solid rgba(255, 244, 125, 0.92);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.35),
    0 8px 18px rgba(139, 223, 91, 0.22);
}

.special-price-badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  align-self: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 11px;
  color: #061018;
  background: linear-gradient(135deg, #eaf5ff 0%, #9ed6ff 48%, #62b8ff 100%);
  border: 1px solid rgba(178, 222, 255, 0.92);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.36),
    0 8px 18px rgba(82, 174, 255, 0.22);
}

.product-visual:not(.has-image) .promo-badge {
  transform: translateY(0);
}

.product-body {
  padding: 16px;
}

body.customer-app .product-body {
  padding: 14px;
}

body.customer-app .product-body h3 {
  font-size: 0.92rem;
  line-height: 1.18;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.product-actions {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}

.product-body .product-actions {
  margin-top: 16px;
  padding: 0;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  border: 0;
  cursor: zoom-out;
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(1100px, 100%);
  max-height: 92vh;
  padding: 16px;
  overflow: hidden;
  background: #111214;
  border: 1px solid #454950;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.image-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #020203;
  border: 1px solid #e8e8e2;
  border-radius: 4px;
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
}

.image-lightbox-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}

.price-block,
.private-price {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.private-price {
  margin-top: 14px;
  padding-top: 12px;
}

.price-block span,
.price-block small,
.private-price span {
  color: var(--muted);
  font-size: 0.78rem;
}

.price-block strong {
  color: #fff;
  font-size: 1.35rem;
}

.price-block s {
  margin-left: 5px;
}

.qty-control {
  display: grid;
  grid-template-columns: 31px 1fr 31px;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.qty-control button {
  height: 100%;
  border: 0;
  background: #f2f4f7;
  cursor: pointer;
  font-weight: 900;
}

.qty-control input {
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 900;
}

.add-button {
  min-height: 42px;
  color: #09090a;
  background: linear-gradient(180deg, #f2f3f2, #aeb4bb);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
}

.commercial-section {
  background: #080809;
  color: #fff;
}

.section-visual {
  margin-bottom: 28px;
  overflow: hidden;
  background: #080809;
  border: 1px solid #34363b;
  border-radius: 8px;
}

.section-visual img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
}

.commercial-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.commercial-layout {
  grid-template-columns: minmax(0, 0.92fr);
}

.contact-card {
  padding: 22px;
  background: #111214;
  border: 1px solid #3c3e43;
  border-radius: 8px;
}

.contact-card dl,
.contact-card dd {
  margin: 0;
}

.contact-card dl {
  display: grid;
  gap: 18px;
}

.contact-card dt {
  margin-bottom: 6px;
  color: #f5f5f2;
  font-family: var(--font-display);
  font-weight: 800;
}

.contact-card dd,
.contact-card a {
  color: #c6c7ca;
  line-height: 1.55;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.order-form .full,
.form-actions {
  grid-column: 1 / -1;
}

.shipping-address-panel,
.shipping-address-form {
  display: grid;
  gap: 16px;
  grid-column: 1 / -1;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(95, 155, 210, 0.14), rgba(17, 18, 20, 0.98) 42%),
    #111214;
  border: 1px solid #46505b;
  border-radius: 8px;
  box-shadow: inset 4px 0 0 #7fb7e6, 0 18px 42px rgba(0, 0, 0, 0.24);
}

body.checkout-focus #catalogo,
body.checkout-focus #catalogo-pdf,
body.checkout-focus #lista-precios,
body.checkout-focus #customerOrders {
  display: none !important;
}

body.checkout-focus #distribuidores {
  min-height: calc(100vh - 92px);
  padding-top: clamp(24px, 5vw, 56px);
  padding-bottom: clamp(40px, 7vw, 86px);
}

body.checkout-focus .order-form {
  max-width: 980px;
  margin-inline: auto;
}

.checkout-anchor {
  scroll-margin-top: 110px;
}

.shipping-address-panel .section-title {
  gap: 8px;
}

.shipping-address-panel .section-title h3 {
  color: #f7f7f5;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 780;
  line-height: 1.05;
}

.shipping-address-list {
  display: grid;
  gap: 10px;
}

.active-shipping-address {
  display: grid;
  gap: 10px;
}

.shipping-address-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: linear-gradient(135deg, #1a1c20, #121316);
  border: 1px solid #59636e;
  border-radius: 8px;
  cursor: pointer;
}

.shipping-address-card.active {
  grid-template-columns: 1fr;
  cursor: default;
  border-color: #9fc8ec;
  box-shadow: inset 4px 0 0 #9fc8ec;
}

.shipping-address-card.selected {
  border-color: #d6d9dd;
  box-shadow: inset 4px 0 0 #d6d9dd;
}

.shipping-address-card input {
  margin-top: 3px;
}

.shipping-address-card strong,
.shipping-address-card small {
  display: block;
}

.shipping-address-card strong {
  color: #fff;
  font-size: 1.18rem;
}

.shipping-address-card em {
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 7px;
  color: #09090a;
  background: #f2f3f2;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.shipping-address-card small {
  margin-top: 7px;
  color: #d0d5dc;
  font-size: 0.96rem;
  line-height: 1.42;
}

.shipping-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shipping-config-button {
  justify-self: start;
  min-width: min(100%, 320px);
  border-color: #6f879b;
}

.order-form > .form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
}

.order-form > .form-actions .primary-button {
  min-height: 58px;
  font-size: 1.08rem;
  box-shadow: 0 14px 32px rgba(174, 180, 187, 0.16);
}

.checkout-submit-button {
  background: linear-gradient(180deg, #d7dde4, #aab3bd);
  border-color: #edf1f4;
}

.shipping-address-manager {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #2c2e33;
}

.shipping-address-form {
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shipping-address-form .full,
.shipping-address-form .form-actions,
.shipping-address-form .form-message {
  grid-column: 1 / -1;
}

.order-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  background:
    radial-gradient(circle at 16% 0%, rgba(232, 238, 244, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(44, 47, 52, 0.96), rgba(12, 13, 15, 0.98) 52%, rgba(8, 9, 10, 0.98));
  border: 1px solid #68717c;
  border-radius: 8px;
  box-shadow: inset 5px 0 0 #d7dde4, 0 22px 60px rgba(0, 0, 0, 0.32);
}

.order-access strong {
  display: block;
  max-width: 740px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.06;
}

.order-access p {
  max-width: 780px;
  color: #d8dce2;
  font-size: 1.02rem;
}

.cta-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f2e7a5;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-access-actions {
  justify-content: flex-end;
  min-width: min(100%, 420px);
}

.order-access-actions button {
  position: relative;
  flex: 1 1 190px;
  min-height: 56px;
  overflow: hidden;
}

.cta-primary {
  color: #06110d;
  background:
    linear-gradient(135deg, #e7ff8d 0%, #a8f56d 44%, #60d98a 100%);
  border: 1px solid rgba(204, 255, 146, 0.95);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(126, 235, 128, 0.28),
    0 16px 38px rgba(48, 179, 113, 0.24);
  text-shadow: none;
  animation: cta-attention-pulse 2.8s ease-in-out infinite;
}

.cta-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-18deg);
  animation: cta-attention-sweep 3.8s ease-in-out infinite;
  pointer-events: none;
}

.cta-primary:hover {
  border-color: #f3ffd6;
  filter: brightness(1.04);
}

.cta-secondary {
  color: #f7f7f5;
  background: rgba(5, 6, 7, 0.45);
  border-color: #6d747c;
}

@keyframes cta-attention-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(0, 0, 0, 0.36),
      0 0 22px rgba(126, 235, 128, 0.22),
      0 16px 38px rgba(48, 179, 113, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(0, 0, 0, 0.36),
      0 0 34px rgba(126, 235, 128, 0.38),
      0 18px 44px rgba(48, 179, 113, 0.3);
  }
}

@keyframes cta-attention-sweep {
  0%,
  62% {
    left: -55%;
  }

  100% {
    left: 118%;
  }
}

.distributor-layout {
  align-items: stretch;
}

.distributor-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(17, 18, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.distributor-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.official-distributor-list {
  display: grid;
  gap: 12px;
}

.official-distributor-item {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: rgba(8, 9, 11, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.official-distributor-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: #f7f7f5;
}

.official-distributor-item p,
.official-distributor-item small {
  margin: 0;
  color: #c7cbd1;
  line-height: 1.42;
}

.official-distributor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.official-distributor-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #f7f7f5;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-decoration: none;
}

.official-distributor-actions a:hover {
  border-color: var(--metal);
  color: #ffffff;
}

.distributor-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.distributor-card li {
  position: relative;
  padding-left: 18px;
  color: #d5d8dd;
  line-height: 1.45;
}

.distributor-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 2px;
  background: var(--metal);
}

.distributor-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.distributor-steps article {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(17, 18, 20, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.distributor-steps span {
  color: var(--metal);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
}

.distributor-steps strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.distributor-steps p {
  margin: 0;
  color: #c6c9cf;
  line-height: 1.48;
}

.order-result {
  max-width: 760px;
  padding: 22px;
  border: 1px solid #55585e;
  background: #111214;
}

.order-result dl,
.cart-totals {
  margin: 18px 0;
}

.order-result dl div,
.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #34363b;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.order-result dt,
.order-result dd,
.cart-totals dt,
.cart-totals dd {
  margin: 0;
}

.customer-orders {
  display: grid;
  gap: 22px;
  color: #f5f5f2;
  background: #0b0c0e;
}

body.customer-app .customer-orders {
  gap: 14px;
}

.section-title.compact {
  margin-bottom: 0;
}

.scroll-anchor {
  display: block;
  position: relative;
  top: -92px;
  height: 0;
  visibility: hidden;
}

.purchases-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

body.customer-app .purchases-header {
  gap: 14px;
}

.purchases-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.purchases-header p {
  margin: 4px 0 0;
  color: #b8bcc3;
}

.purchase-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.purchase-metrics button {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 96px;
  width: 100%;
  padding: 16px 18px;
  color: #d4d8dd;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(145deg, #181a1e, #0f1012);
  border: 1px solid #3b3f47;
  border-left: 5px solid #858b94;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

body.customer-app .purchase-metrics button {
  min-height: 74px;
  padding: 12px 14px;
}

.purchase-metrics button.active {
  color: #f6f8fa;
  background:
    radial-gradient(circle at top right, rgba(255, 221, 68, 0.16), transparent 35%),
    linear-gradient(145deg, #202226, #121316);
  border-color: rgba(255, 255, 255, 0.36);
  border-left-color: var(--signal);
}

.purchase-metrics button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.purchase-refreshing {
  padding: 13px 16px;
  color: #dfe7ef;
  background: #15181c;
  border: 1px solid #3b3f47;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.purchase-metrics strong {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 0.95;
}

body.customer-app .purchase-metrics strong {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.purchase-metrics span {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.push-permission-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 36%),
    linear-gradient(145deg, #17191d, #101114);
  border: 1px solid #3c3e43;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.push-permission-card.active {
  border-left-color: var(--green);
}

.push-permission-card.muted {
  border-left-color: #747980;
}

.push-permission-card div {
  display: grid;
  gap: 5px;
}

.push-permission-card strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.push-permission-card span,
.push-permission-card small {
  color: #b8bcc3;
  line-height: 1.45;
}

.push-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 9px 13px;
  color: #dfffe7;
  background: rgba(112, 210, 127, 0.14);
  border: 1px solid rgba(112, 210, 127, 0.45);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.purchase-list {
  display: grid;
  gap: 8px;
}

.customer-order-card {
  background: #111214;
  border: 1px solid #3c3e43;
  border-left: 5px solid #747980;
  border-radius: 8px;
  overflow: hidden;
}

.customer-order-card.status-info {
  border-left-color: var(--blue);
}

.customer-order-card.status-warn {
  border-left-color: var(--signal);
}

.customer-order-card.status-success {
  border-left-color: var(--green);
}

.customer-order-card.status-danger {
  border-left-color: var(--danger);
}

.purchase-detail {
  display: grid;
}

.customer-order-summary {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(290px, 0.9fr) minmax(170px, auto);
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}

body.customer-app .customer-order-summary {
  padding: 10px 14px;
}

.customer-order-summary::-webkit-details-marker {
  display: none;
}

.purchase-summary-main {
  display: grid;
  gap: 2px;
}

.purchase-summary-main strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
}

.purchase-summary-total {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.purchase-summary-total strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
}

.purchase-toggle {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  color: #09090a;
  background: linear-gradient(180deg, #f8f9fa, #c7ccd1);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.toggle-open {
  display: none;
}

.purchase-detail[open] .toggle-closed {
  display: none;
}

.purchase-detail[open] .toggle-open {
  display: inline;
}

.purchase-detail-body {
  display: grid;
  gap: 16px;
  padding: 4px 16px 16px;
}

.order-status-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.order-status-pills span {
  padding: 5px 9px;
  color: #e9edf2;
  background: #22252b;
  border: 1px solid #42464e;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-status-pills .status-info {
  color: #d9f2ff;
  border-color: rgba(70, 169, 216, 0.55);
  background: rgba(70, 169, 216, 0.16);
}

.order-status-pills .status-warn {
  color: #fff7bf;
  border-color: rgba(216, 195, 79, 0.55);
  background: rgba(216, 195, 79, 0.15);
}

.order-status-pills .status-success {
  color: #def7df;
  border-color: rgba(113, 184, 109, 0.55);
  background: rgba(113, 184, 109, 0.15);
}

.order-status-pills .status-danger {
  color: #ffdcdc;
  border-color: rgba(189, 74, 74, 0.6);
  background: rgba(189, 74, 74, 0.18);
}

.purchase-summary-status {
  display: grid;
  justify-items: start;
  gap: 5px;
}

.purchase-summary-status span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: #e9edf2;
  background: #22252b;
  border: 1px solid #42464e;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.purchase-summary-status small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.purchase-summary-status .status-info {
  color: #d9f2ff;
  border-color: rgba(70, 169, 216, 0.55);
  background: rgba(70, 169, 216, 0.16);
}

.purchase-summary-status .status-warn {
  color: #fff7bf;
  border-color: rgba(216, 195, 79, 0.55);
  background: rgba(216, 195, 79, 0.15);
}

.purchase-summary-status .status-success {
  color: #def7df;
  border-color: rgba(113, 184, 109, 0.55);
  background: rgba(113, 184, 109, 0.15);
}

.purchase-summary-status .status-danger {
  color: #ffdcdc;
  border-color: rgba(189, 74, 74, 0.6);
  background: rgba(189, 74, 74, 0.18);
}

.customer-order-card span,
.customer-order-card p {
  color: var(--muted);
}

.purchase-card-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
}

.customer-order-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: #34363b;
}

.customer-order-card dl div {
  padding: 10px;
  background: #181a1e;
}

.customer-order-card dt {
  color: #aeb4bb;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.customer-order-card dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 900;
}

.purchase-shipping,
.purchase-bank,
.customer-order-lines {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #34363b;
  background: #15161a;
}

.purchase-shipping strong,
.purchase-bank strong,
.customer-order-lines strong {
  color: #fff;
}

.customer-order-lines strong {
  margin-top: 4px;
}

.customer-order-lines span {
  display: block;
}

.order-adjustment-notice {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid rgba(227, 190, 77, 0.55);
  border-left-width: 4px;
  border-radius: 7px;
  background: rgba(227, 190, 77, 0.1);
}

.order-adjustment-notice strong {
  color: #fff1ad;
}

.order-adjustment-notice span {
  color: #e0e2e5;
  line-height: 1.45;
}

.order-adjustment-notice.review-requested {
  border-color: rgba(90, 172, 222, 0.58);
  background: rgba(90, 172, 222, 0.1);
}

.order-adjustment-notice.review-requested strong {
  color: #bde9ff;
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.purchase-actions p,
.purchase-note,
.purchase-bank small {
  margin: 0;
  color: #b8bcc3;
}

.payment-options {
  display: grid;
  width: 100%;
  gap: 10px;
  padding: 14px;
  border: 1px solid #2f3339;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.payment-options > strong {
  color: #f4f6f8;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.payment-options > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.purchase-bank {
  max-width: 760px;
}

.purchase-bank-account {
  display: grid;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid #2a2d33;
}

.purchase-bank-account:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.purchase-bank-account span:first-child {
  color: #fff;
  font-weight: 900;
}

.receipt-upload {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: #09090a;
  background: linear-gradient(180deg, #f8f9fa, #c7ccd1);
  border: 1px solid #dfe3e6;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(180, 188, 196, 0.16);
  font-weight: 900;
  cursor: pointer;
}

.receipt-upload {
  flex-direction: column;
  text-align: center;
}

.receipt-upload span {
  color: #09090a;
}

.receipt-upload small {
  color: #333940;
  font-size: 0.72rem;
  font-weight: 800;
}

.receipt-upload.disabled {
  cursor: wait;
  opacity: 0.72;
}

.receipt-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.mercadopago-button {
  min-height: 52px;
  padding: 12px 18px;
  color: #ffffff;
  background: linear-gradient(180deg, #129ee3, #0078b7);
  border: 1px solid #41c4ff;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0, 137, 209, 0.24);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 900;
  cursor: pointer;
}

.mercadopago-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.empty-purchases {
  display: grid;
  gap: 6px;
  padding: 24px;
  color: #b8bcc3;
  background: #111214;
  border: 1px solid #34363b;
  border-radius: 8px;
}

.empty-purchases strong {
  color: #fff;
}

.purchase-more {
  justify-self: center;
  margin-top: 10px;
  min-width: min(260px, 100%);
}

.grand-total {
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 900;
}

.order-form input,
.order-form textarea,
.shipping-address-form input,
.shipping-address-form select,
.shipping-address-form textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.order-form input::placeholder,
.order-form textarea::placeholder,
.shipping-address-form input::placeholder,
.shipping-address-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  background: rgba(17, 19, 24, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-shell {
  width: min(720px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  padding: 0;
  background: #fff;
  transform: translateX(20px);
  transition: transform 180ms ease;
  overflow: hidden;
}

.cart-drawer.open .cart-shell {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 28px 14px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cart-summary-text {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.icon-button {
  width: 38px;
  min-height: 38px;
  color: var(--ink);
  background: #eef1f5;
  border-radius: 999px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 18px 28px;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
}

.cart-line-main,
.cart-line-controls,
.cart-line strong,
.cart-line span,
.cart-line b {
  display: block;
}

.cart-line-main {
  min-width: 0;
}

.cart-line-main .product-code {
  width: fit-content;
  margin-bottom: 8px;
}

.cart-line span {
  color: var(--muted);
  margin-top: 3px;
  font-size: 0.86rem;
}

.cart-line .cart-promo-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 4px 8px;
  color: #bdf0b9;
  background: rgba(84, 183, 91, 0.12);
  border: 1px solid rgba(159, 225, 155, 0.35);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.cart-line-controls {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.cart-qty {
  grid-template-columns: 42px minmax(58px, 1fr) 42px;
}

.cart-line-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 2px;
}

.cart-line-price b {
  color: #fff;
  font-size: 1.05rem;
  text-align: right;
}

.cart-remove {
  min-height: 36px;
  color: #ff9a9a;
  background: transparent;
  border: 1px solid rgba(255, 112, 112, 0.45);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.cart-empty {
  color: var(--muted);
  align-self: start;
  margin: 18px 28px;
}

.cart-footer {
  padding: 18px 28px 22px;
  background: #111214;
  border-top: 1px solid #3c3e43;
}

.cart-totals {
  padding-top: 0;
  border-top: 0;
}

.cart-note {
  margin: 12px 0 0;
  color: #a7a9ae;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cart-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.cart-checkout-button,
.cart-back-button {
  min-height: 54px;
}

.cart-checkout-button {
  color: #08090b;
  background: linear-gradient(180deg, #d8dde3, #aeb6bf);
  border-color: #eef1f4;
}

.cart-back-button {
  width: 100%;
  color: #eef2f6;
  background: #191b1f;
  border-color: #5b6570;
}

.account-dialog {
  width: min(820px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  padding: 24px;
  overflow: auto;
  color: #f5f5f2;
  background: #111214;
  border: 1px solid #44474d;
  border-radius: 6px;
}

.account-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 22px 0;
  background: #3f4146;
  border: 1px solid #3f4146;
}

.account-tabs button {
  min-height: 44px;
  color: #d4d5d8;
  background: #191a1d;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.account-tabs button.active {
  color: #0a0a0a;
  background: var(--accent);
}

.account-form {
  display: grid;
  gap: 14px;
}

.registration-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.account-form .wide {
  grid-column: 1 / -1;
}

.password-control {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  overflow: hidden;
  color: #f5f5f2;
  background: #191a1d;
  border: 1px solid #3f4146;
  border-radius: 7px;
}

.password-control:focus-within {
  border-color: #c9cdd2;
  box-shadow: 0 0 0 3px rgba(242, 207, 69, 0.35);
}

.password-control input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.password-control input:focus {
  border: 0;
  box-shadow: none;
}

.password-control .password-toggle {
  flex: 0 0 auto;
  min-width: 76px;
  margin: 5px;
  padding: 0 12px;
  color: #f5f5f2;
  background: rgba(183, 184, 255, 0.1);
  border: 1px solid rgba(183, 184, 255, 0.42);
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}

.password-control .password-toggle:hover,
.password-control .password-toggle:focus-visible {
  color: #09090a;
  background: #dedcff;
  outline: 0;
}

.field-error {
  display: block;
  width: 100%;
  margin-top: 2px;
  color: #ff8f8f;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none !important;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"],
.password-control.has-error {
  border-color: #ff7676 !important;
  box-shadow: 0 0 0 3px rgba(255, 118, 118, 0.18) !important;
}

.form-message.is-error,
.admin-note.is-error {
  color: #ff8f8f;
}

.form-message.is-success,
.admin-note.is-success {
  color: #86d69a;
}

.check-field {
  grid-template-columns: 20px 1fr;
  align-items: center;
}

.check-field input {
  min-height: 18px;
  margin: 0;
}

.session-panel {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.session-panel span,
.form-message {
  color: var(--muted);
}

.recovery-link {
  justify-self: start;
  color: var(--metal);
  font-size: 0.86rem;
  text-underline-offset: 4px;
}

.reset-page {
  min-height: 100vh;
  background: #09090a;
}

.reset-header {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: #050506;
  border-bottom: 1px solid #2c2d31;
}

.reset-main {
  display: grid;
  min-height: calc(100vh - 72px);
  padding: 24px;
  place-items: center;
}

.reset-panel {
  display: grid;
  width: min(480px, 100%);
  gap: 18px;
  padding: 28px;
  background: #111214;
  border: 1px solid #3b3d42;
}

.reset-panel h1 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
}

.form-message {
  min-height: 24px;
  margin: 16px 0 0;
}

.empty-card {
  min-height: 180px;
}

.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 60;
  min-width: min(420px, calc(100vw - 30px));
  padding: 13px 16px;
  color: #fff;
  background: #17191f;
  border-radius: 7px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.seo-landing .seo-faq {
  display: grid;
  gap: 18px;
}

.seo-keyword-card {
  grid-column: 1 / -1;
}

.seo-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 16px;
  background: rgba(17, 18, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

.seo-related-links span {
  width: 100%;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-related-links a {
  color: #f5f5f2;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #3f4146;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.seo-related-links a:hover {
  border-color: var(--metal);
}

.product-seo-page {
  min-height: calc(100vh - 78px);
  padding-top: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 78% 12%, rgba(174, 180, 187, 0.12), transparent 30%),
    linear-gradient(180deg, #0b0b0c, #050506);
}

.product-seo-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  max-width: 1360px;
  margin: 0 auto;
}

.product-seo-shell-single {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.product-seo-media,
.product-seo-content {
  background: #121315;
  border: 1px solid #34363b;
  border-radius: 8px;
}

.product-seo-media {
  display: grid;
  gap: 12px;
  padding: 16px;
  box-shadow: inset 5px 0 #8f77b3;
}

.product-seo-media figure {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020203;
  border: 1px solid #e8e8e2;
  border-radius: 4px;
}

.product-seo-media figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-seo-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.product-seo-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f2f2ef;
  border: 1px solid #3f4146;
  border-radius: 4px;
}

.product-seo-content {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: inset 5px 0 #8f77b3;
}

.product-seo-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.product-seo-kicker .eyebrow {
  margin: 0;
}

.product-seo-content h1 {
  max-width: 960px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.product-seo-content .section-lead {
  max-width: 920px;
}

.product-seo-content h2 {
  margin-top: 12px;
  font-size: 1.4rem;
}

.product-seo-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 8px 0;
  overflow: hidden;
  background: #34363b;
  border: 1px solid #34363b;
  border-radius: 6px;
}

.product-seo-specs div {
  padding: 12px;
  background: #17191f;
}

.product-seo-specs dt,
.product-seo-specs dd {
  margin: 0;
}

.product-seo-specs dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-seo-specs dd {
  margin-top: 4px;
  color: #f5f5f2;
  font-weight: 800;
}

.seo-commercial-note {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #0e0f11;
  border: 1px solid #3f4146;
  border-radius: 8px;
}

.seo-commercial-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-seo-related {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid #34363b;
  border-radius: 8px;
}

.product-seo-related h2 {
  margin: 4px 0 0;
}

.product-seo-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-seo-related-grid a {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 14px;
  color: #f5f5f2;
  background: #0e0f11;
  border: 1px solid #3f4146;
  border-radius: 8px;
  text-decoration: none;
}

.product-seo-related-grid a:hover {
  border-color: var(--metal);
}

.product-seo-related-grid strong {
  line-height: 1.15;
}

.product-seo-related-grid small {
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .product-family-grid,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-hero {
    grid-template-columns: 1fr;
  }

  .shop-hero {
    min-height: 0;
  }

  .shop-hero img {
    min-height: 380px;
  }
}

@media (max-width: 860px) {
  .app-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .top-nav.open {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 4px;
    padding: 10px;
    background: rgba(8, 8, 9, 0.98);
    border: 1px solid #34363b;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  }

  .top-nav.open a {
    padding: 13px 14px;
    color: #f5f5f2;
    border-bottom: 1px solid #24262b;
  }

  .top-nav.open a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }

  .order-form,
  .shipping-address-form {
    grid-template-columns: 1fr;
  }

  .shipping-config-button,
  .shipping-address-actions .ghost-button {
    width: 100%;
  }

  .purchases-header,
  .purchase-actions,
  .push-permission-card {
    align-items: stretch;
    flex-direction: column;
  }

  .push-permission-card .ghost-button,
  .push-status-pill {
    width: 100%;
  }

  .customer-order-summary {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  body.customer-app .section {
    padding-block: 18px;
  }

  body.customer-app .section-title h2,
  body.customer-app .purchases-header h2,
  body.customer-app .shipping-address-panel .section-title h3 {
    font-size: 1.55rem;
  }

  body.customer-app .purchase-metrics {
    gap: 7px;
  }

  body.customer-app .purchase-metrics button {
    min-height: 64px;
    padding: 10px 12px;
  }

  body.customer-app .purchase-metrics strong {
    font-size: 1.32rem;
  }

  body.customer-app .purchase-summary-main strong,
  body.customer-app .purchase-summary-total strong {
    font-size: 0.95rem;
  }

  .price-list-card dl {
    grid-template-columns: 1fr;
  }

  .price-list-actions .primary-button,
  .price-list-actions .ghost-button {
    width: 100%;
    min-width: 0;
  }

  .receipt-upload {
    width: 100%;
  }

  .payment-options {
    padding: 12px;
  }

  .payment-options > div {
    grid-template-columns: 1fr;
  }

  .payment-options .mercadopago-button,
  .payment-options .receipt-upload {
    width: 100%;
  }

  .purchase-summary-total {
    justify-items: start;
  }

  .purchase-summary-status {
    justify-items: start;
  }

  .order-status-pills {
    justify-content: flex-start;
  }

  .purchase-card-grid,
  .customer-order-card dl {
    grid-template-columns: 1fr;
  }

  .purchase-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .purchase-metrics button {
    min-height: 94px;
    padding: 14px 15px;
  }

  .order-access {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .app-header {
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 42px;
    height: 34px;
  }

  .brand-logo {
    width: 84px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .cart-pill {
    padding: 8px 12px;
  }

  .shipping-address-panel {
    padding: 22px 18px;
  }

  .shipping-address-card {
    padding: 16px;
  }

  .order-form > .form-actions {
    grid-template-columns: 1fr;
  }

  .account-button {
    max-width: 110px;
  }

  .hero-copy {
    padding: 28px 18px 36px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .section {
    padding: 42px 14px;
  }

  .product-grid,
  .product-family-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .product-family-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-cover-download {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    min-width: 0;
  }

  .price-list-card {
    gap: 14px;
    padding: 18px;
  }

  .price-list-card dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-list-card dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
  }

  .price-list-card dt {
    margin: 0;
    font-size: 0.72rem;
  }

  .price-list-card dd {
    text-align: right;
    font-size: 1rem;
  }

  .price-list-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-toolbar select {
    max-width: none;
  }

  .registration-form {
    grid-template-columns: 1fr;
  }

  .account-form .wide {
    grid-column: auto;
  }
}

/* 2026 institutional theme */
:root {
  color-scheme: dark;
  --ink: #f5f5f2;
  --muted: #a7a9ae;
  --line: #34363b;
  --soft: #0d0e10;
  --panel: #121315;
  --dark: #070708;
  --accent: #aeb4bb;
  --signal: #d8c34f;
  --metal: #c9cdd2;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

body,
body * {
  letter-spacing: 0;
}

body {
  background: #09090a;
  color: var(--ink);
}

.app-header {
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(5, 5, 6, 0.96);
  border-color: #2c2d31;
}

.brand {
  color: #fff;
  gap: 14px;
}

.brand-mark {
  width: auto;
  height: auto;
  color: #fff;
  background: transparent;
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1;
  transform: skew(-10deg);
}

.brand-logo {
  width: 112px;
  height: 48px;
}

.brand-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--signal), transparent);
  transform: skew(-12deg);
}

.brand strong {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.top-nav {
  gap: 2px;
}

.top-nav a {
  position: relative;
  color: #d5d5d7;
  font-size: 0.88rem;
  font-weight: 500;
}

.top-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 2px;
  left: 12px;
  height: 2px;
  background: var(--metal);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.top-nav a:hover {
  color: #fff;
}

.top-nav a:hover::after {
  transform: scaleX(1);
}

.cart-pill {
  color: #f5f5f2;
  background: #1a1b1f;
  border: 1px solid #5c6269;
}

.shop-hero {
  position: relative;
  min-height: min(650px, calc(100svh - 132px));
  grid-template-columns: minmax(0, 760px) 1fr;
  border-bottom: 1px solid #3f4248;
  background:
    linear-gradient(90deg, #070708 0%, rgba(7, 7, 8, 0.96) 30%, rgba(7, 7, 8, 0.58) 58%, rgba(7, 7, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 7, 8, 0.22), rgba(7, 7, 8, 0.05)),
    url("./assets/km-hero-detailing.png") center right / cover no-repeat;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  gap: 20px;
  padding: clamp(44px, 6vw, 82px) clamp(22px, 5vw, 82px);
  background: transparent;
}

.hero-copy::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--signal);
}

.eyebrow {
  color: var(--metal);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  color: #f7f7f5;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.7vw, 4.75rem);
  font-weight: 800;
  line-height: 1.06;
}

h2 {
  color: #f7f7f5;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 760;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #c6c7ca;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 6px;
}

.primary-link,
.secondary-link,
.primary-button,
.ghost-button {
  min-height: 50px;
  gap: 20px;
  padding: 13px 20px;
  border-radius: 4px;
}

.primary-link,
.primary-button {
  color: #070708;
  background: linear-gradient(180deg, #f2f3f2, #aeb4bb);
  border: 1px solid #c9cdd2;
}

.secondary-link,
.ghost-button {
  color: #f5f5f2;
  background: rgba(10, 10, 10, 0.66);
  border-color: #77797e;
}

.catalog-toolbar span,
.product-body p,
.cart-line span,
.cart-empty {
  color: var(--muted);
}

.section {
  background: #0b0b0c;
}

#promos {
  border-top: 1px solid #232529;
}

.promo-card,
.product-card,
.filters-panel {
  background: #121315;
  border-color: #34363b;
  box-shadow: none;
}

.product-card.family-lana { box-shadow: inset 5px 0 #8ca77a; }
.product-card.family-poliespuma { box-shadow: inset 5px 0 #4aa9d6; }
.product-card.family-accesorios { box-shadow: inset 5px 0 #8f77b3; }
.product-card.family-tacos { box-shadow: inset 5px 0 #8f969e; }

.product-card.is-promo {
  background:
    linear-gradient(180deg, rgba(213, 238, 139, 0.075), rgba(18, 19, 21, 0) 38%),
    #151618;
  border-color: rgba(218, 232, 126, 0.48);
}

.product-card.is-promo.family-lana {
  box-shadow: inset 5px 0 #8ca77a, 0 0 0 1px rgba(214, 232, 105, 0.16), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-card.is-promo.family-poliespuma {
  box-shadow: inset 5px 0 #4aa9d6, 0 0 0 1px rgba(214, 232, 105, 0.16), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-card.is-promo.family-accesorios {
  box-shadow: inset 5px 0 #8f77b3, 0 0 0 1px rgba(214, 232, 105, 0.16), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-card.is-promo.family-tacos {
  box-shadow: inset 5px 0 #8f969e, 0 0 0 1px rgba(214, 232, 105, 0.16), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.promo-card:hover,
.product-card:hover {
  border-color: #5a5c62;
}

.catalog-layout {
  background: #09090a;
}

input,
select,
textarea,
.segmented button {
  color: #f5f5f2;
  background: #191a1d;
  border-color: #3f4146;
}

.segmented button.active {
  color: #09090a;
  background: var(--accent);
  border-color: #c9cdd2;
}

.product-visual,
.product-visual.lana,
.product-visual.poliespuma,
.product-visual.accesorios,
.product-visual.tacos {
  background: #0a0a0b;
  border-bottom: 1px solid #34363b;
}

.product-visual.has-image {
  background: #101113;
}

.product-visual.lana {
  box-shadow: inset 5px 0 #8ca77a;
}

.product-visual.poliespuma {
  box-shadow: inset 5px 0 #4aa9d6;
}

.product-visual.accesorios {
  box-shadow: inset 5px 0 #8f77b3;
}

.product-visual.tacos {
  box-shadow: inset 5px 0 #8f969e;
}

.product-code {
  color: #0a0a0a;
  background: #f0f0ed;
}

.qty-control {
  border-color: #3f4146;
}

.qty-control button {
  color: #f5f5f2;
  background: #222327;
}

.qty-control input {
  color: #fff;
  background: #111214;
}

.add-button {
  color: #09090a;
  background: linear-gradient(180deg, #f2f3f2, #aeb4bb);
}

.order-section {
  border-top: 1px solid #3f4248;
  background: #080809;
}

.commercial-section {
  border-top: 1px solid #3f4248;
  background: #080809;
}

.section-visual {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(520px, 58vw, 680px);
  margin-bottom: clamp(22px, 3vw, 34px);
  overflow: hidden;
  background: #080809;
  border: 1px solid #34363b;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.08) 0%, rgba(8, 8, 9, 0.18) 48%, rgba(8, 8, 9, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 8, 9, 0.58) 0%, rgba(8, 8, 9, 0.18) 52%, rgba(8, 8, 9, 0.46) 100%);
  pointer-events: none;
}

.section-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.section-visual-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  padding: clamp(28px, 5vw, 74px);
}

.distributor-visual {
  align-items: start;
}

.distributor-visual::after {
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.24) 0%, rgba(8, 8, 9, 0.54) 24%, rgba(8, 8, 9, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 8, 9, 0.82) 0%, rgba(8, 8, 9, 0.48) 58%, rgba(8, 8, 9, 0.34) 100%);
}

.distributor-visual .section-visual-content {
  align-self: start;
  max-width: 1160px;
  padding-top: clamp(96px, 9vw, 132px);
}

.distributor-visual .commercial-layout {
  grid-template-columns: minmax(0, 760px);
}

.distributor-visual .section-lead {
  max-width: 760px;
}

.commercial-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 24px;
  align-items: start;
  margin-bottom: 0;
}

.contact-layout {
  align-items: stretch;
  margin-bottom: 0;
}

.contact-card {
  background: rgba(17, 18, 20, 0.78);
  backdrop-filter: blur(6px);
  box-shadow: inset 4px 0 #8f969e;
}

.section-visual .order-access {
  max-width: 1040px;
  background: rgba(17, 18, 20, 0.78);
  backdrop-filter: blur(6px);
}

.company-visual {
  align-items: start;
  min-height: clamp(520px, 46vw, 640px);
}

.company-visual .section-visual-content {
  padding-top: clamp(118px, 10vw, 160px);
}

.company-heading {
  max-width: 840px;
}

.company-heading p {
  max-width: 760px;
  margin: 0 0 12px;
  color: #d4d5d8;
  font-size: 1rem;
  line-height: 1.65;
}

.cart-shell {
  color: #f5f5f2;
  background: #111214;
  border-left: 1px solid #3c3e43;
}

.cart-line {
  border-color: #3c3e43;
}

.icon-button {
  color: #fff;
  background: #25262a;
}

.toast {
  color: #111;
  background: var(--accent);
}

@media (max-width: 700px) {
  .cart-shell {
    width: 100vw;
  }

  .cart-head,
  .cart-items,
  .cart-footer {
    padding-inline: 18px;
  }

  .cart-head h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-line-controls {
    grid-template-columns: 1fr;
  }

  .cart-line-price {
    align-items: center;
  }

  .cart-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .top-nav a {
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .shop-hero {
    grid-template-columns: minmax(0, 690px) 1fr;
    background-position: 58% center;
  }

  h1 {
    font-size: 3rem;
  }

  .company-story {
    grid-template-columns: 1fr;
  }

  .company-story .company-intro {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 860px) {
  .shop-hero {
    grid-template-columns: 1fr;
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.64), #070708 88%),
      url("./assets/km-hero-detailing.png") 68% center / cover no-repeat;
  }

  .hero-copy {
    min-height: 520px;
    background: transparent;
  }

  .hero-copy::after {
    content: none;
  }

  .section-title {
    align-items: start;
    flex-direction: column;
  }

  .pdf-actions {
    justify-content: flex-start;
  }

  .pdf-actions a,
  .order-access button {
    width: 100%;
  }

  .order-access {
    align-items: stretch;
    flex-direction: column;
  }

  .distributor-steps {
    grid-template-columns: 1fr;
  }

  .commercial-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .distributor-visual .section-visual-content {
    padding-top: 82px;
  }

  .company-visual .company-story {
    grid-template-columns: 1fr;
  }

  .company-visual {
    min-height: auto;
  }

  .catalog-book-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-page-frame {
    height: 70vh;
  }

  .product-seo-shell {
    grid-template-columns: 1fr;
  }

  .product-seo-specs {
    grid-template-columns: 1fr;
  }

  .product-seo-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-divider,
  .brand strong {
    display: none;
  }

  .brand-mark {
    font-size: 1.8rem;
  }

  .brand-logo {
    width: 82px;
    height: 34px;
  }

  .hero-copy {
    min-height: 520px;
    padding: 42px 18px;
  }

  .section-visual-content {
    padding: 28px 20px;
  }

  .company-heading p,
  .company-story p {
    font-size: 0.95rem;
  }

  .company-visual .section-visual-content {
    padding-top: 86px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-actions a {
    width: 100%;
  }

}
.seo-product-directory {
  display: grid;
  gap: 24px;
}

.seo-landing-products {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.seo-landing-products .seo-product-family-heading > a {
  margin-left: auto;
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.seo-product-directory-card {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  transition: border-color 160ms ease, transform 160ms ease;
}

.seo-product-directory-intro {
  max-width: 900px;
}

.seo-product-family {
  display: grid;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.seo-product-family-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px 14px;
}

.seo-product-family-heading .eyebrow {
  width: 100%;
}

.seo-product-family-heading h2 {
  margin: 0;
}

.seo-product-family-heading span {
  margin-left: auto;
  color: var(--muted);
  white-space: nowrap;
}

.seo-product-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.seo-product-directory-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border-color: #383b42;
  border-radius: 12px;
  background: #101214;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.seo-product-directory-code {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  color: #111214;
  background: #f3f3ef;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.seo-product-directory-media {
  display: grid;
  grid-template-rows: minmax(180px, 1fr) 64px;
  gap: 6px;
  min-height: 250px;
  padding: 12px;
  background: #030405;
  border-bottom: 1px solid #35383e;
}

.seo-product-directory-main-image {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: contain;
  border: 1px solid #dadbd7;
  border-radius: 5px;
  background: #020203;
}

.seo-product-directory-thumbs {
  display: flex;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.seo-product-directory-thumbs img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border: 2px solid #f0f0eb;
  border-radius: 5px;
  background: #020203;
}

.seo-product-directory-no-image {
  display: grid;
  place-items: center;
  grid-row: 1 / -1;
  min-height: 240px;
  color: var(--muted);
  border: 1px dashed #50535b;
  border-radius: 5px;
  font-size: 0.9rem;
}

.seo-product-directory-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 17px 17px;
  border-left: 4px solid #86c48e;
}

.seo-product-directory-content strong,
.seo-product-directory-content small {
  overflow-wrap: anywhere;
}

.seo-product-directory-content strong {
  min-height: 2.8em;
  font-size: 1rem;
  line-height: 1.4;
}

.seo-product-directory-content small {
  color: var(--muted);
  line-height: 1.5;
}

.seo-product-directory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 3px;
}

.seo-product-directory-tags span {
  padding: 5px 8px;
  color: #17191b;
  background: #eef2ef;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.seo-product-directory-tags .yellow {
  background: #fff0ad;
}

.seo-product-directory-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  align-self: start;
  margin-top: auto;
  padding-top: 5px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .seo-product-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .seo-product-directory-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .seo-product-directory-grid {
    grid-template-columns: 1fr;
  }
}
