:root {
  --bg: #f6f8fb;
  --ink: #17202c;
  --muted: #667085;
  --line: #d9e1ea;
  --panel: #ffffff;
  --panel-2: #eef4f8;
  --brand: #007f8f;
  --brand-dark: #005968;
  --accent: #d7ff53;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(20, 33, 46, 0.14);
  --radius: 8px;
}

/* Checkout final override */
.commerce-summary {
  align-items: start;
}

.commerce-summary > div:first-child {
  position: sticky;
  top: 112px;
}

@media (max-width: 980px) {
  .commerce-summary > div:first-child {
    position: static;
  }
}

/* Final product page overrides */
.breadcrumb-bar {
  justify-content: flex-start;
  padding: 16px clamp(16px, 4vw, 64px);
}

.breadcrumb-list {
  justify-content: flex-start;
  width: 100%;
}

.breadcrumb-list li + li::before {
  content: ">";
}

.catalog-navigation button::after,
.catalog-navigation a::after {
  color: var(--market-muted);
  content: ">";
  font-weight: 900;
}

.product-detail {
  align-items: start;
  gap: clamp(20px, 3vw, 42px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  padding-bottom: clamp(24px, 4vw, 52px);
  padding-top: clamp(18px, 3vw, 42px);
}

.product-gallery {
  position: sticky;
  top: 92px;
}

.main-detail-image {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: clamp(10px, 1.5vw, 18px);
}

.product-gallery > div img {
  object-fit: contain;
  padding: 6px;
}

.product-detail-copy {
  align-self: start;
  max-width: 820px;
}

.product-taxonomy-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-taxonomy-line a,
.product-taxonomy-line span {
  background: #eef6f8;
  border: 1px solid rgba(0, 127, 143, 0.18);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.product-detail-copy h1 {
  font-size: clamp(30px, 4.1vw, 54px);
  line-height: 1.02;
  margin-bottom: 14px;
  max-width: 760px;
}

.product-summary {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 720px;
}

.product-purchase-panel {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(13, 35, 70, 0.08);
  display: grid;
  gap: 12px;
  max-width: 640px;
  padding: clamp(16px, 2vw, 22px);
}

.product-purchase-panel > span {
  color: var(--market-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-purchase-panel > strong {
  color: var(--brand-dark);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
}

.product-purchase-panel > small {
  color: var(--market-muted);
  font-size: 14px;
}

.product-purchase-panel .spec-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2px 0;
}

.product-purchase-panel .spec-list div {
  background: #f7fbfc;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  padding: 10px;
}

.product-purchase-panel dt {
  color: var(--market-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-purchase-panel dd {
  color: var(--market-ink);
  font-size: 13px;
  font-weight: 800;
  margin: 3px 0 0;
  overflow-wrap: anywhere;
}

.product-info-section {
  align-items: start;
  gap: clamp(18px, 3vw, 42px);
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  padding-bottom: clamp(28px, 4vw, 54px);
  padding-top: clamp(28px, 4vw, 54px);
}

.product-info-heading h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.product-description {
  font-size: 16px;
  gap: 12px;
  line-height: 1.58;
  max-width: 820px;
}

.product-description-compact {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.04);
  padding: clamp(16px, 2vw, 22px);
}

.technical-details {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
}

.technical-details summary {
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 16px 18px;
}

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

.technical-details summary::after {
  content: "+";
  float: right;
}

.technical-details[open] summary::after {
  content: "-";
}

.technical-details .product-description {
  border-top: 1px solid var(--market-line);
  padding: 18px;
}

@media (max-width: 1100px) {
  .product-gallery {
    position: static;
  }
}

@media (max-width: 720px) {
  .breadcrumb-bar {
    padding: 12px 14px;
  }

  .breadcrumb-list {
    font-size: 12px;
    gap: 6px;
  }

  .product-detail {
    gap: 18px;
    padding: 16px 14px 28px;
  }

  .product-detail-copy h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .product-summary {
    font-size: 15px;
  }

  .product-purchase-panel .spec-list {
    grid-template-columns: 1fr;
  }

  .product-purchase-panel .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-info-section {
    grid-template-columns: 1fr;
    padding: 24px 14px;
  }

  .product-description {
    font-size: 15px;
    line-height: 1.55;
  }
}

.admin-user-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
}

.admin-user-summary strong {
  color: #fff;
  font-size: 14px;
}

.admin-user-summary span {
  color: #b9cff2;
  font-size: 12px;
}

.admin-role-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0;
}

.admin-role-card {
  background: #f7faff;
  border: 1px solid #dbe8fa;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.admin-role-card strong {
  color: #12345f;
}

.admin-role-card span {
  color: #536174;
  font-size: 13px;
  line-height: 1.35;
}

.customer-portal {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 18px 56px;
}

.customer-panel {
  margin: 0;
}

@media (max-width: 900px) {
  .admin-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .admin-role-grid {
    grid-template-columns: 1fr;
  }
}

/* Product and catalog polish */
.catalog-navigation {
  gap: 14px;
}

.catalog-navigation h3 {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-navigation button,
.catalog-navigation a {
  background: #fff;
  border-color: var(--market-line);
  color: var(--market-ink);
  min-height: 40px;
  position: relative;
}

.catalog-navigation button::after,
.catalog-navigation a::after {
  color: var(--market-muted);
  content: ">";
  font-weight: 900;
}

.catalog-navigation button.active,
.catalog-navigation button:hover,
.catalog-navigation a:hover {
  background: #e9f8fb;
  border-color: rgba(0, 127, 143, 0.24);
  color: var(--brand-dark);
}

.breadcrumb-bar {
  justify-content: flex-start;
  padding: 16px clamp(16px, 4vw, 64px);
}

.breadcrumb-list {
  justify-content: flex-start;
  width: 100%;
}

.breadcrumb-list li + li::before {
  content: ">";
}

.product-detail {
  align-items: start;
  gap: clamp(20px, 3vw, 42px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  padding-bottom: clamp(24px, 4vw, 52px);
  padding-top: clamp(18px, 3vw, 42px);
}

.product-gallery {
  position: sticky;
  top: 92px;
}

.main-detail-image {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: clamp(10px, 1.5vw, 18px);
}

.product-gallery > div img {
  object-fit: contain;
  padding: 6px;
}

.product-detail-copy {
  align-self: start;
  max-width: 820px;
}

.product-taxonomy-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-taxonomy-line a,
.product-taxonomy-line span {
  background: #eef6f8;
  border: 1px solid rgba(0, 127, 143, 0.18);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.product-detail-copy h1 {
  font-size: clamp(30px, 4.1vw, 54px);
  line-height: 1.02;
  margin-bottom: 14px;
  max-width: 760px;
}

.product-summary {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 720px;
}

.product-purchase-panel {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(13, 35, 70, 0.08);
  display: grid;
  gap: 12px;
  max-width: 640px;
  padding: clamp(16px, 2vw, 22px);
}

.product-purchase-panel > span {
  color: var(--market-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-purchase-panel > strong {
  color: var(--brand-dark);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
}

.product-purchase-panel > small {
  color: var(--market-muted);
  font-size: 14px;
}

.product-purchase-panel .spec-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2px 0;
}

.product-purchase-panel .spec-list div {
  background: #f7fbfc;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  padding: 10px;
}

.product-purchase-panel dt {
  color: var(--market-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-purchase-panel dd {
  color: var(--market-ink);
  font-size: 13px;
  font-weight: 800;
  margin: 3px 0 0;
  overflow-wrap: anywhere;
}

.product-info-section {
  align-items: start;
  gap: clamp(18px, 3vw, 42px);
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  padding-bottom: clamp(28px, 4vw, 54px);
  padding-top: clamp(28px, 4vw, 54px);
}

.product-info-heading h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.product-description {
  font-size: 16px;
  gap: 12px;
  line-height: 1.58;
  max-width: 820px;
}

.product-description-compact {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.04);
  padding: clamp(16px, 2vw, 22px);
}

.technical-details {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
}

.technical-details summary {
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 16px 18px;
}

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

.technical-details summary::after {
  content: "+";
  float: right;
}

.technical-details[open] summary::after {
  content: "-";
}

.technical-details .product-description {
  border-top: 1px solid var(--market-line);
  padding: 18px;
}

@media (max-width: 1100px) {
  .product-gallery {
    position: static;
  }
}

@media (max-width: 720px) {
  .breadcrumb-bar {
    padding: 12px 14px;
  }

  .breadcrumb-list {
    font-size: 12px;
    gap: 6px;
  }

  .product-detail {
    gap: 18px;
    padding: 16px 14px 28px;
  }

  .product-detail-copy h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .product-summary {
    font-size: 15px;
  }

  .product-purchase-panel .spec-list {
    grid-template-columns: 1fr;
  }

  .product-purchase-panel .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-info-section {
    grid-template-columns: 1fr;
    padding: 24px 14px;
  }

  .product-description {
    font-size: 15px;
    line-height: 1.55;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  align-items: center;
  background: rgba(246, 248, 251, 0.94);
  border-bottom: 1px solid rgba(217, 225, 234, 0.75);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(16px, 4vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--brand);
  border-radius: 6px;
  color: white;
  display: inline-flex;
  flex: 0 0 38px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--brand-dark);
}

.hero {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.78fr);
  min-height: calc(100vh - 68px);
  padding: clamp(32px, 5vw, 78px) clamp(16px, 4vw, 64px) 42px;
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.92;
  margin-bottom: 22px;
  max-width: 850px;
}

.hero-lead {
  color: #3d4b5c;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
  max-width: 680px;
}

.search-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 30px 0 22px;
  max-width: 760px;
  padding: 12px;
}

.search-panel label {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 4px 4px 10px;
  text-transform: uppercase;
}

.search-panel div {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.search-panel input,
.lead-form input,
.lead-form select {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.search-panel button,
.lead-form button,
.button,
.mini-button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}

.search-panel button,
.button.primary,
.lead-form button {
  background: var(--brand);
  color: #fff;
}

.button.secondary,
.mini-button {
  background: #e5edf2;
  color: var(--ink);
}

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

.hero-product {
  align-self: stretch;
  background: #0e1924;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-product::after {
  background: linear-gradient(180deg, transparent, rgba(14, 25, 36, 0.9));
  bottom: 0;
  content: "";
  height: 45%;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-product img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-product-info {
  bottom: 0;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-product-info span {
  color: var(--accent);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-product-info h2 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-product-info p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  max-width: 470px;
}

.hero-product-info strong {
  font-size: 22px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 clamp(16px, 4vw, 64px);
}

.trust-strip div {
  border-right: 1px solid var(--line);
  padding: 18px;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.section {
  padding: clamp(42px, 6vw, 90px) clamp(16px, 4vw, 64px);
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading.split {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: none;
}

.section-heading h2,
.experience-band h2,
.contact-panel h2 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.98;
  margin-bottom: 0;
}

.section-heading.split > p {
  color: var(--muted);
  line-height: 1.45;
  max-width: 420px;
}

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

.category-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 185px;
  padding: 18px;
}

.category-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.category-card span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-section {
  background: #eaf0f5;
}

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

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
}

.product-card[hidden] {
  display: none;
}

.product-media {
  background: #eef3f6;
  overflow: hidden;
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.product-meta,
.product-footer {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.product-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-body h3 {
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 0;
}

.product-body p {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tags span {
  background: #eef5f6;
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

.product-footer {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.product-footer strong {
  font-size: 18px;
}

.mini-button {
  font-size: 13px;
  min-height: 38px;
  padding: 0 12px;
}

.experience-band {
  align-items: center;
  background: #101820;
  color: #fff;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  padding: clamp(44px, 6vw, 86px) clamp(16px, 4vw, 64px);
}

.experience-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.45;
  max-width: 620px;
}

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

.journey span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 900;
  min-height: 120px;
  padding: 16px;
}

.contact-panel {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
}

.contact-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  max-width: 680px;
}

.lead-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.lead-form.submitted {
  border-color: var(--brand);
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 22px clamp(16px, 4vw, 64px);
}

.breadcrumb-bar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 64px) 0;
}

.breadcrumb-back {
  align-items: center;
  background: #e5edf2;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  min-height: 42px;
  padding: 0 14px;
}

.breadcrumb-back::before {
  content: "<";
  font-size: 16px;
  margin-right: 8px;
}

.breadcrumb-list {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.breadcrumb-list li {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  min-width: 0;
}

.breadcrumb-list li[aria-current="page"] {
  max-width: min(46vw, 520px);
}

.breadcrumb-list li + li::before {
  color: #98a2b3;
  content: "/";
}

.breadcrumb-list a {
  color: var(--brand-dark);
}

.breadcrumb-list [aria-current="page"],
.breadcrumb-list li[aria-current="page"] span {
  color: var(--ink);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-detail {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 64px) clamp(32px, 5vw, 78px);
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.main-detail-image {
  aspect-ratio: 1;
  background: #eef3f6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.product-gallery > div {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}

.product-gallery > div img {
  aspect-ratio: 1;
  background: #eef3f6;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.product-video {
  background: #101820;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-video video {
  aspect-ratio: 16 / 9;
  display: block;
  width: 100%;
}

.product-detail-copy {
  align-self: center;
}

.product-detail-copy h1 {
  font-size: clamp(38px, 5vw, 72px);
  margin-bottom: 18px;
}

.product-detail-copy > p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.product-summary {
  color: #3d4b5c;
  font-size: 20px;
  line-height: 1.48;
  margin: 0 0 20px;
  max-width: 760px;
}

.product-info-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  padding: clamp(30px, 5vw, 70px) clamp(16px, 4vw, 64px);
}

.product-info-heading {
  position: sticky;
  top: 96px;
  align-self: start;
}

.product-info-heading h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
  margin: 0;
}

.product-description {
  display: grid;
  gap: 16px;
  color: #3d4b5c;
  font-size: 17px;
  line-height: 1.68;
  max-width: 980px;
}

.product-description p {
  margin: 0;
}

.smart-buy-section {
  border-top: 1px solid var(--line);
  padding: clamp(30px, 5vw, 70px) clamp(16px, 4vw, 64px);
}

.smart-buy-section .section-heading {
  margin-bottom: 22px;
}

.smart-buy-section .section-heading p:last-child {
  color: var(--muted);
  line-height: 1.45;
  max-width: 520px;
}

.smart-buy-layout {
  display: grid;
  gap: 18px;
}

.smart-buy-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.smart-buy-panel[hidden] {
  display: none;
}

.smart-buy-panel-heading {
  align-items: end;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.smart-buy-panel-heading span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.smart-buy-panel-heading strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.smart-product-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.smart-product-card {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.smart-product-card a {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  min-height: 112px;
}

.smart-product-card img {
  align-self: stretch;
  background: #fff;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  width: 88px;
}

.smart-product-card span {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.smart-product-card strong {
  color: var(--ink);
  display: -webkit-box;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.smart-product-card em {
  color: var(--brand-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.spec-list {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0;
}

.spec-list div {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.spec-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  font-size: 18px;
  font-weight: 800;
  margin: 4px 0 0;
}

.admin-page {
  background: #eef3f7;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-mobile-bar {
  display: none;
}

.admin-menu-toggle,
.admin-menu-backdrop {
  display: none;
}

.admin-sidebar {
  background: linear-gradient(180deg, #101820 0%, #142332 100%);
  color: #fff;
  min-height: 100vh;
  padding: 18px;
}

.admin-sidebar .brand {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
  margin-bottom: 34px;
  padding-bottom: 20px;
}

.admin-sidebar .admin-brand-logo {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  justify-content: center;
  padding: 12px;
}

.admin-sidebar .admin-brand-logo img,
.admin-mobile-brand img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.admin-sidebar .admin-brand-logo img {
  width: 184px;
}

.admin-sidebar .brand span:last-child,
.admin-mobile-brand {
  display: grid;
  gap: 2px;
}

.admin-sidebar .brand strong,
.admin-mobile-brand strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
}

.admin-sidebar .brand small,
.admin-mobile-brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  align-items: center;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  font-weight: 800;
  min-height: 42px;
  padding: 12px;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-sidebar nav a.active {
  box-shadow: inset 3px 0 0 var(--green);
}

.admin-main {
  padding: 30px;
}

.admin-hero,
.admin-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 18px;
  padding: 24px;
}

.admin-hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  margin-bottom: 12px;
}

.admin-stats,
.connector-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}

.admin-stats article,
.connector-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.admin-stats strong {
  display: block;
  font-size: 34px;
}

.admin-stats span,
.connector-grid span {
  color: var(--muted);
  font-size: 13px;
}

.admin-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  overflow-y: hidden;
}

.admin-product-controls {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(260px, 1fr) 170px 150px auto auto;
  margin: 18px 0 12px;
}

.admin-search-field,
.admin-page-size {
  display: grid;
  gap: 6px;
}

.admin-search-field span,
.admin-page-size span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-search-field input,
.admin-page-size select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  height: 44px;
  padding: 0 12px;
  width: 100%;
}

.admin-clear-link {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  text-decoration: none;
}

.admin-heading-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-page .mini-button,
.admin-page .button {
  background: #0b74de;
  box-shadow: 0 8px 18px rgba(11, 116, 222, 0.18);
  color: #fff;
}

.admin-page .mini-button:hover,
.admin-page .button:hover {
  background: #075bb0;
  color: #fff;
}

.admin-flash,
.admin-sync-status {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 12px 0;
  padding: 12px 14px;
}

.admin-flash.success {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.admin-flash.error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.admin-sync-status {
  background: #f8fbff;
  color: var(--muted);
  font-size: 13px;
}

.admin-sync-status strong {
  color: var(--ink);
}

.admin-table-summary {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 8px 16px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bi-hero,
.bi-kpi-grid article,
.bi-card,
.bi-strategy-panel {
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 244, 255, 0.16), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(251, 37, 255, 0.12), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #0b1222 54%, #080b14 100%);
  border: 1px solid rgba(92, 242, 255, 0.22);
  box-shadow: 0 18px 60px rgba(4, 10, 22, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #f8fbff;
}

.bi-hero {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  overflow: hidden;
  position: relative;
}

.bi-hero::after {
  background: linear-gradient(90deg, rgba(37, 244, 255, 0), rgba(37, 244, 255, 0.34), rgba(189, 255, 95, 0));
  bottom: 0;
  content: "";
  height: 2px;
  left: 24px;
  position: absolute;
  right: 24px;
}

.bi-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
}

.bi-hero p {
  color: rgba(232, 246, 255, 0.78);
  max-width: 720px;
}

.bi-hero .eyebrow,
.bi-card .eyebrow,
.bi-strategy-panel .eyebrow {
  color: #5cf2ff;
}

.bi-hero-pulse {
  align-content: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  min-height: 170px;
  padding: 22px;
}

.bi-hero-pulse span,
.bi-kpi-grid span,
.bi-card-heading span,
.bi-rank-row small,
.bi-channel-grid small,
.bi-strategy-grid span {
  color: rgba(232, 246, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bi-hero-pulse strong {
  color: #bdff5f;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  text-shadow: 0 0 22px rgba(189, 255, 95, 0.22);
}

.bi-hero-pulse small {
  color: rgba(232, 246, 255, 0.7);
  font-weight: 800;
}

.bi-kpi-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 18px;
}

.bi-kpi-grid article {
  border-radius: 8px;
  min-height: 132px;
  padding: 18px;
}

.bi-kpi-grid strong {
  color: #fff;
  display: block;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  margin: 10px 0 8px;
}

.bi-kpi-grid small {
  color: rgba(232, 246, 255, 0.66);
  font-weight: 800;
}

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

.bi-card,
.bi-strategy-panel {
  border-radius: 8px;
  padding: 20px;
}

.bi-card-wide {
  grid-column: span 2;
}

.bi-card-heading {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.bi-card-heading h2 {
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
  margin: 0;
}

.bi-card-heading strong {
  color: #5cf2ff;
  font-size: 20px;
  text-shadow: 0 0 22px rgba(92, 242, 255, 0.22);
  white-space: nowrap;
}

.bi-card-heading a {
  color: #bdff5f;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.bi-bars {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(7, 1fr);
  min-height: 230px;
  padding-top: 8px;
}

.bi-bar {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-rows: 1fr auto;
  height: 230px;
}

.bi-bar span {
  align-self: end;
  background: linear-gradient(180deg, #5cf2ff 0%, #bdff5f 100%);
  border-radius: 8px 8px 2px 2px;
  box-shadow: 0 0 24px rgba(92, 242, 255, 0.22);
  display: block;
  min-height: 8px;
  width: 100%;
}

.bi-bar small {
  color: rgba(232, 246, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.bi-funnel {
  display: grid;
  gap: 16px;
}

.bi-funnel div {
  display: grid;
  gap: 8px;
}

.bi-funnel span {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.bi-funnel strong {
  color: #fff;
}

.bi-funnel em,
.bi-funnel small {
  color: rgba(232, 246, 255, 0.65);
  font-style: normal;
  font-weight: 800;
}

.bi-funnel i {
  background: linear-gradient(90deg, #fb25ff, #5cf2ff);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(251, 37, 255, 0.2);
  display: block;
  height: 12px;
}

.bi-rank-list {
  display: grid;
  gap: 10px;
}

.bi-rank-row,
.bi-chip-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 12px;
}

.bi-rank-row b {
  align-items: center;
  background: rgba(92, 242, 255, 0.14);
  border: 1px solid rgba(92, 242, 255, 0.28);
  border-radius: 999px;
  color: #5cf2ff;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.bi-rank-row span {
  color: #fff;
  display: grid;
  font-weight: 900;
  gap: 4px;
  min-width: 0;
}

.bi-rank-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.bi-chip-row {
  grid-template-columns: 70px minmax(0, 1fr);
}

.bi-chip-row strong {
  color: #bdff5f;
  font-size: 22px;
}

.bi-chip-row span {
  color: rgba(232, 246, 255, 0.78);
  font-weight: 900;
  text-align: right;
}

.bi-channel-grid,
.bi-strategy-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bi-channel-grid div,
.bi-strategy-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 14px;
}

.bi-channel-grid strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.05;
}

.bi-strategy-panel {
  margin-bottom: 18px;
}

.bi-strategy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bi-strategy-grid strong {
  color: #fff;
  font-size: 17px;
}

.bi-strategy-grid p,
.bi-empty {
  color: rgba(232, 246, 255, 0.72);
  line-height: 1.5;
  margin: 0;
}

.bi-strategy-grid span {
  color: #bdff5f;
}

.report-hero {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.report-hero h1 {
  font-size: clamp(36px, 4vw, 58px);
}

.report-actions,
.report-form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.report-form form {
  display: grid;
  gap: 18px;
}

.report-filter-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.report-filter-grid label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  text-transform: uppercase;
}

.report-filter-grid input,
.report-filter-grid select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 42px;
  min-width: 0;
  padding: 10px 11px;
  text-transform: none;
}

.report-fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 18px;
}

.report-fieldset legend {
  color: var(--ink);
  font-weight: 900;
  padding: 0 8px;
}

.report-fieldset label {
  align-items: center;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
}

.report-fieldset input {
  accent-color: var(--brand);
  flex: 0 0 auto;
}

.report-document {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.08);
  color: var(--ink);
  margin-bottom: 32px;
  overflow: hidden;
}

.report-document-header {
  align-items: center;
  background: #101820;
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px;
}

.report-document-header span,
.report-section-heading .eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-document-header h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1.05;
  margin: 4px 0 6px;
}

.report-document-header p {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  margin: 0;
}

.report-document-header img {
  background: #fff;
  border-radius: 8px;
  height: auto;
  padding: 10px;
  width: 150px;
}

.report-section {
  border-top: 1px solid var(--line);
  padding: 24px;
}

.report-section-heading {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.report-section-heading h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  margin: 2px 0 0;
}

.report-section-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.report-kpi-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-kpi-grid article,
.report-action-grid article {
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.report-kpi-grid span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-kpi-grid strong {
  color: var(--ink);
  display: block;
  font-size: 25px;
  line-height: 1.05;
  margin: 8px 0;
}

.report-kpi-grid small {
  color: var(--muted);
  font-weight: 800;
}

.report-split {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-table-wrap h4 {
  color: var(--ink);
  font-size: 17px;
  margin: 0 0 10px;
}

.report-table {
  border-collapse: collapse;
  font-size: 14px;
  width: 100%;
}

.report-table th,
.report-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.report-table th {
  background: #f7fafc;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-table td {
  color: var(--ink);
  font-weight: 700;
}

.report-table td:last-child,
.report-table th:last-child {
  text-align: right;
}

.report-table-dense {
  font-size: 12px;
}

.report-table-dense th,
.report-table-dense td {
  padding: 8px;
}

.report-action-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-action-grid strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.report-action-grid p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.admin-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(320px, 1fr) 130px 150px 96px;
  min-width: 720px;
  padding: 13px 14px;
}

.admin-products-row {
  grid-template-columns: 72px 78px 170px minmax(240px, 1fr) 120px 95px 120px 120px 90px;
  min-width: 1140px;
}

.affiliate-admin-row {
  grid-template-columns: minmax(280px, 1fr) 130px 110px 170px 80px;
  min-width: 820px;
}

.admin-row:nth-child(even) {
  background: #f7fafc;
}

.admin-products-row.needs-review {
  background:
    linear-gradient(90deg, rgba(255, 0, 38, 0.20), rgba(255, 0, 38, 0.06) 38%, rgba(255, 0, 38, 0.025)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 235, 238, 0.72));
  border: 1px solid rgba(255, 37, 57, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    inset 0 0 22px rgba(255, 0, 38, 0.22),
    0 0 0 1px rgba(255, 18, 42, 0.22),
    0 0 18px rgba(255, 0, 38, 0.48),
    0 0 42px rgba(255, 0, 38, 0.22);
  position: relative;
}

.admin-products-row.needs-review:nth-child(even) {
  background:
    linear-gradient(90deg, rgba(255, 0, 38, 0.24), rgba(255, 0, 38, 0.075) 38%, rgba(255, 0, 38, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 232, 236, 0.78));
}

.admin-products-row.needs-review::before,
.admin-products-row.needs-review::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.admin-products-row.needs-review::before {
  background: linear-gradient(180deg, #fff6f7, #ff1632 42%, #ff0026);
  border-radius: 999px;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 16px rgba(255, 0, 38, 0.9),
    0 0 32px rgba(255, 0, 38, 0.55);
  inset: 8px auto 8px 6px;
  width: 3px;
}

.admin-products-row.needs-review::after {
  border: 1px solid rgba(255, 246, 247, 0.86);
  border-radius: 6px;
  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.68),
    0 0 10px rgba(255, 255, 255, 0.62),
    0 0 22px rgba(255, 0, 38, 0.5);
  inset: 7px 8px;
}

.admin-head {
  align-items: center;
  background: #e6eef4;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-row > span {
  min-width: 0;
}

.admin-row:not(.admin-products-row) > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-empty-state {
  color: var(--muted);
  font-weight: 800;
  padding: 22px 14px;
}

.admin-product-thumb {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  width: 58px;
}

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

.admin-product-title {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.admin-product-title strong,
.admin-product-title small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-product-title small {
  color: var(--muted);
  font-size: 12px;
}

.inline-action-form,
.inline-featured-form {
  margin: 0;
}

.admin-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

.admin-pagination a,
.admin-pagination span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 12px;
  text-decoration: none;
}

.admin-pagination a {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.admin-pagination a.is-disabled {
  background: #edf2f7;
  border-color: var(--line);
  color: var(--muted);
  pointer-events: none;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.featured-star {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #7a8594;
  cursor: pointer;
  display: inline-flex;
  font-size: 21px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  width: 34px;
}

.featured-star:hover,
.featured-star:focus-visible {
  border-color: #d69e2e;
  color: #b7791f;
  outline: 0;
  transform: translateY(-1px);
}

.featured-star.is-active {
  background: #fff7db;
  border-color: #e2b63f;
  color: #c58a00;
}

.publication-cell {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.publication-badge,
.publish-action {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 34px;
  padding: 0;
  white-space: nowrap;
}

.publication-badge {
  width: 42px;
}

.publication-badge svg,
.publish-action svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  width: 18px;
}

.publish-action svg path[fill] {
  stroke: none;
}

.publication-badge.is-published {
  background: #e9f8ef;
  border-color: #b9ebca;
  color: #0f7a3f;
}

.publication-badge.is-paused {
  background: #fff6df;
  border-color: #f4d98c;
  color: #8a5a00;
}

.publication-badge.is-unpublished {
  background: #edf2f7;
  border-color: #d8e0ea;
  color: #4a5568;
}

.publish-action {
  background: #0b74de;
  color: #fff;
  cursor: pointer;
  width: 42px;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.publish-action.is-pause-action {
  background: #fff;
  border-color: #f4d98c;
  color: #8a5a00;
}

.publish-action:hover,
.publish-action:focus-visible {
  background: #075bb0;
  border-color: #075bb0;
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.status-ok,
.status-warn,
.status-review,
.status-muted {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  padding: 6px 10px;
}

.status-ok {
  background: #e9f8ef;
  color: #0f7a3f;
}

.status-warn {
  background: #fff6df;
  color: #8a5a00;
}

.status-review {
  background: rgba(45, 0, 8, 0.82);
  border: 1px solid rgba(255, 231, 235, 0.88);
  box-shadow:
    inset 0 0 10px rgba(255, 0, 38, 0.3),
    0 0 7px rgba(255, 255, 255, 0.7),
    0 0 18px rgba(255, 0, 38, 0.82),
    0 0 34px rgba(255, 0, 38, 0.45);
  color: #fff7f8;
  letter-spacing: 0;
  text-shadow:
    0 0 4px #fff,
    0 0 9px #ff4960,
    0 0 16px #ff0026;
}

.status-muted {
  background: #eef2f7;
  color: #526070;
}

.admin-success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #166534;
  font-weight: 900;
  margin: 0 0 14px;
  padding: 10px 12px;
}

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

.admin-order-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.admin-order-card header {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.admin-order-card header strong,
.admin-order-card header span,
.admin-order-card header em {
  display: block;
}

.admin-order-card header strong {
  color: var(--text);
  font-weight: 950;
}

.admin-order-card header span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.admin-order-card header em {
  color: var(--primary);
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.admin-order-meta {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.admin-order-meta div {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}

.admin-order-meta dt,
.admin-order-meta dd {
  margin: 0;
}

.admin-order-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-order-meta dd {
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  margin-top: 3px;
}

.admin-order-card details {
  color: var(--muted);
  font-size: 13px;
}

.admin-order-card summary {
  color: var(--primary);
  cursor: pointer;
  font-weight: 950;
}

.admin-order-items {
  margin: 10px 0;
  padding-left: 18px;
}

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

.admin-order-form label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 5px;
}

.admin-order-form label:has(textarea) {
  grid-column: span 3;
}

.admin-order-form input,
.admin-order-form select,
.admin-order-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  min-height: 42px;
  padding: 9px 10px;
}

.admin-order-form textarea {
  resize: vertical;
}

.admin-order-form button {
  align-self: end;
  min-height: 42px;
}

.product-form {
  display: grid;
  gap: 16px;
}

.product-admin-preview,
.admin-subsection {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.product-admin-preview {
  align-items: center;
  display: flex;
  gap: 14px;
}

.product-admin-preview img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 92px;
  object-fit: contain;
  width: 92px;
}

.product-admin-preview div {
  display: grid;
  gap: 4px;
}

.product-admin-preview strong {
  color: var(--ink);
  font-size: 18px;
}

.product-admin-preview span {
  color: var(--muted);
  font-size: 13px;
}

.admin-subsection {
  display: grid;
  gap: 12px;
}

.admin-subsection h2 {
  color: var(--ink);
  font-size: 18px;
  margin: 0;
}

.product-form label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  text-transform: uppercase;
}

.product-form input,
.product-form textarea,
.product-form select {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 10px 12px;
  text-transform: none;
  width: 100%;
}

.product-form textarea {
  line-height: 1.45;
  resize: vertical;
}

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

.checkbox-line {
  align-items: center;
  display: flex !important;
  flex-direction: row;
  gap: 10px;
}

.checkbox-line input {
  min-height: 0;
  width: auto;
}

.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.admin-password-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(215, 255, 83, 0.34), transparent 28%),
    linear-gradient(135deg, #eef7ff 0%, #f8fbff 46%, #eaf4f7 100%);
  display: block;
  overflow-x: hidden;
  min-height: 100vh;
}

.admin-password-main {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: clamp(18px, 4vw, 56px);
}

.password-card {
  background: #fff;
  border: 1px solid rgba(0, 87, 216, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 31, 120, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  margin: 0 auto;
  max-width: 1040px;
  min-height: 600px;
  overflow: hidden;
  width: 100%;
}

.password-card,
.password-brand-panel,
.password-form-panel,
.password-form,
.password-form label {
  min-width: 0;
}

.password-brand-panel {
  background:
    linear-gradient(145deg, rgba(0, 87, 216, 0.96), rgba(0, 31, 120, 0.98)),
    #0057d8;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 5vw, 64px);
}

.password-logo {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  display: inline-flex;
  margin-bottom: 34px;
  padding: 10px 14px;
  width: fit-content;
}

.password-logo img {
  height: 44px;
  object-fit: contain;
  width: 164px;
}

.password-brand-panel > span {
  color: #d7ff53;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.password-brand-panel h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  margin: 0 0 22px;
  max-width: 620px;
  overflow-wrap: anywhere;
}

.password-brand-panel p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 520px;
  overflow-wrap: anywhere;
}

.password-brand-panel ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.password-brand-panel li {
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  gap: 10px;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: anywhere;
}

.password-brand-panel li::before {
  background: #d7ff53;
  border-radius: 999px;
  content: "";
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.password-form-panel {
  align-self: center;
  min-width: 0;
  padding: clamp(26px, 4vw, 54px);
}

.password-form-panel .eyebrow {
  color: #219e31;
  margin-bottom: 10px;
}

.password-form-panel h2 {
  color: #001f78;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
  overflow-wrap: anywhere;
}

.password-support {
  color: #5d6980;
  line-height: 1.55;
  margin: 0 0 26px;
}

.password-form {
  gap: 18px;
}

.password-form input {
  background: #f8fbff;
  border: 1px solid #d7e1ee;
  border-radius: 8px;
  min-height: 54px;
  padding: 0 16px;
}

.password-form input:focus {
  border-color: #0057d8;
  box-shadow: 0 0 0 4px rgba(0, 87, 216, 0.12);
  outline: 0;
}

.password-form .form-actions {
  justify-content: stretch;
  margin-top: 4px;
}

.password-form .button.primary {
  background: #0057d8;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 87, 216, 0.24);
  min-height: 54px;
  width: 100%;
}

.password-form .button.primary:hover {
  background: #001f78;
}

.password-message {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  padding: 14px 16px;
}

.password-message.success {
  background: #eaf8ef;
  border: 1px solid rgba(33, 158, 49, 0.26);
  color: #116624;
  display: grid;
  gap: 4px;
}

.password-message.success a {
  color: #0057d8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.password-message.error {
  background: #fff2f0;
  border: 1px solid rgba(180, 35, 24, 0.22);
  color: #b42318;
  margin-bottom: 18px;
}

.floating-product-cta {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 8px;
  bottom: 92px;
  box-shadow: 0 20px 56px rgba(16, 24, 40, 0.2);
  display: grid;
  gap: 10px;
  grid-template-columns: 78px minmax(0, 1fr);
  max-width: 330px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: fixed;
  right: 18px;
  transform: translate3d(18px, 10px, 0);
  transition: opacity 180ms ease, transform 180ms ease;
  width: calc(100vw - 36px);
  z-index: 120;
}

.floating-product-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.floating-product-cta img {
  aspect-ratio: 1;
  background: #f3f7fa;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: contain;
  padding: 5px;
  width: 78px;
}

.floating-product-cta-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.floating-product-cta-copy strong {
  color: var(--ink);
  display: -webkit-box;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.18;
  margin-right: 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.floating-product-cta-copy span {
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.floating-product-cta-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.floating-product-cta-copy .button {
  font-size: 12px;
  justify-content: center;
  margin-top: 4px;
  min-height: 36px;
  padding: 9px 12px;
  width: 100%;
}

.floating-product-cta-close {
  align-items: center;
  background: #f2f5f8;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 24px;
}

.floating-product-cta-close:hover {
  background: #e7eef4;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .hero,
  .experience-band,
  .contact-panel,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-page {
    display: block;
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }

  .admin-mobile-bar {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(16, 24, 32, 0.1);
    box-shadow: 0 10px 28px rgba(16, 24, 32, 0.1);
    display: flex;
    gap: 12px;
    height: 64px;
    left: 0;
    padding: 10px 14px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 45;
  }

  .admin-mobile-brand strong {
    color: var(--ink);
  }

  .admin-mobile-brand small {
    color: var(--muted);
  }

  .admin-mobile-brand {
    align-items: center;
    display: flex;
    min-width: 0;
  }

  .admin-mobile-brand img {
    width: 142px;
  }

  .admin-sidebar {
    bottom: 0;
    box-shadow: 14px 0 40px rgba(16, 24, 32, 0.22);
    left: 0;
    max-width: 310px;
    overflow-y: auto;
    padding-top: 74px;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 180ms ease;
    width: min(82vw, 310px);
    z-index: 40;
  }

  .admin-menu-toggle {
    align-items: center;
    background: #101820;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(16, 24, 32, 0.2);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    z-index: 50;
  }

  .admin-menu-toggle span,
  .admin-menu-toggle::before,
  .admin-menu-toggle::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 20px;
  }

  .admin-menu-toggle::before {
    transform: translateY(-7px);
  }

  .admin-menu-toggle::after {
    transform: translateY(7px);
  }

  .admin-menu-backdrop {
    background: rgba(8, 15, 23, 0.48);
    border: 0;
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 180ms ease;
    z-index: 30;
  }

  .admin-menu-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-menu-open .admin-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .admin-menu-open {
    overflow: hidden;
  }

  .admin-menu-open .admin-menu-toggle span {
    opacity: 0;
  }

  .admin-menu-open .admin-menu-toggle::before {
    transform: rotate(45deg);
  }

  .admin-menu-open .admin-menu-toggle::after {
    transform: rotate(-45deg);
  }

  .admin-main {
    padding-top: 88px;
  }

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

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

  .bi-card-wide {
    grid-column: span 1;
  }

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

  .report-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-fieldset,
  .report-kpi-grid,
  .report-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-split {
    grid-template-columns: 1fr;
  }

  .admin-order-card header,
  .admin-order-form {
    grid-template-columns: 1fr;
  }

  .admin-order-card header {
    display: grid;
  }

  .admin-order-meta {
    grid-template-columns: 1fr 1fr;
  }

  .admin-order-form label:has(textarea) {
    grid-column: span 1;
  }

  .password-card {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .password-brand-panel {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .topbar,
  .footer,
  .section-heading.split,
  .product-meta,
  .product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar {
    position: static;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .breadcrumb-bar {
    align-items: stretch;
    flex-direction: column;
    padding-top: 14px;
  }

  .breadcrumb-back {
    align-self: flex-start;
  }

  .breadcrumb-list {
    justify-content: flex-start;
  }

  .breadcrumb-list li[aria-current="page"] {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .product-detail-copy h1 {
    font-size: 36px;
    line-height: 0.98;
  }

  .search-panel div,
  .trust-strip,
  .category-grid,
  .product-grid,
  .journey,
  .product-info-section,
  .admin-stats,
  .connector-grid,
  .bi-hero,
  .bi-kpi-grid,
  .bi-layout,
  .bi-channel-grid,
  .bi-strategy-grid,
  .report-hero,
  .report-filter-grid,
  .report-fieldset,
  .report-kpi-grid,
  .report-action-grid {
    grid-template-columns: 1fr;
  }

  .product-info-heading {
    position: static;
  }

  .product-summary {
    font-size: 18px;
  }

  .product-description {
    font-size: 16px;
    line-height: 1.62;
  }

  .floating-product-cta {
    bottom: 72px;
    grid-template-columns: 60px minmax(0, 1fr);
    left: 10px;
    max-width: none;
    padding: 9px;
    right: 10px;
    transform: translate3d(0, 14px, 0);
    width: auto;
  }

  .floating-product-cta img {
    width: 60px;
  }

  .floating-product-cta-copy {
    gap: 3px;
  }

  .floating-product-cta-copy strong {
    font-size: 12px;
    line-height: 1.15;
  }

  .floating-product-cta-copy span {
    font-size: 16px;
  }

  .floating-product-cta-copy .button {
    min-height: 34px;
    padding: 8px 10px;
  }

  .smart-buy-panel-heading {
    align-items: start;
    flex-direction: column;
  }

  .smart-product-row {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 440px;
  }

  .trust-strip div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .admin-main {
    padding: 84px 14px 14px;
  }

  .admin-product-controls {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .admin-table-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .bi-card-wide {
    grid-column: span 1;
  }

  .bi-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-actions,
  .report-form-actions,
  .report-section-heading,
  .report-document-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-document-header img {
    width: 132px;
  }

  .report-section {
    padding: 18px;
  }

  .bi-hero-pulse {
    min-height: 132px;
  }

  .bi-bars {
    gap: 8px;
    min-height: 190px;
  }

  .bi-bar {
    height: 190px;
  }

  .admin-row {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .admin-products-row {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .admin-pagination {
    justify-content: flex-start;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

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

  .admin-password-main {
    align-items: start;
    min-width: 0;
    overflow-x: hidden;
    padding: 12px;
  }

  .password-card {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    max-width: 100%;
    width: 100%;
  }

  .password-brand-panel,
  .password-form-panel {
    padding: 22px;
  }

  .password-logo {
    margin-bottom: 24px;
  }

  .password-brand-panel h1 {
    font-size: 32px;
    line-height: 1.04;
  }

  .password-brand-panel p,
  .password-brand-panel li,
  .password-support {
    font-size: 15px;
  }

  .password-form-panel h2 {
    font-size: 34px;
  }

  .password-brand-panel ul {
    margin-top: 24px;
  }

  .form-actions {
    flex-direction: column;
  }
}

/* Loja Nova final commerce layer */
.storefront {
  --market-bg: #f4f7fb;
  --market-card: #ffffff;
  --market-ink: #132033;
  --market-muted: #5f6f86;
  --market-blue: #0057d8;
  --market-deep: #003a9f;
  --market-navy: #091f4a;
  --market-green: #1f9f4a;
  --market-yellow: #ffd84d;
  --market-coral: #ff6b4a;
  --market-line: #d9e4f2;
  --market-soft-blue: #edf5ff;
  --market-soft-green: #eaf8ef;
  background: var(--market-bg);
}

.store-top {
  background: var(--market-navy);
}

.store-top-inner {
  min-height: 38px;
}

.store-header {
  background: #fff;
  border-bottom: 1px solid var(--market-line);
  box-shadow: 0 10px 30px rgba(13, 35, 70, 0.08);
  color: var(--market-ink);
  gap: 18px;
}

.store-brand {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(13, 35, 70, 0.08);
  display: inline-flex;
  min-height: 58px;
  padding: 8px 12px;
}

.store-brand img {
  height: 42px;
  object-fit: contain;
  width: 154px;
}

.store-brand span,
.store-brand strong {
  display: none;
}

.store-search {
  background: #f8fbff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: none;
  max-width: 720px;
}

.store-search:focus-within {
  background: #fff;
  border-color: var(--market-blue);
  box-shadow: 0 0 0 4px rgba(0, 87, 216, 0.11);
}

.store-search button {
  align-items: center;
  background: var(--market-blue);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
}

.store-actions > a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  color: var(--market-deep);
  display: inline-flex;
  gap: 7px;
}

.store-actions .outlet-pill {
  background: var(--market-yellow);
  border-color: var(--market-yellow);
  color: #172033;
}

.department-bar {
  background: #fff;
  box-shadow: 0 8px 18px rgba(13, 35, 70, 0.05);
}

.department-bar a {
  border-radius: 8px;
  font-weight: 850;
}

.store-hero {
  background: #fff;
  border-bottom: 1px solid var(--market-line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  min-height: 520px;
  padding: 42px clamp(18px, 4vw, 64px);
}

.store-hero-copy {
  align-self: center;
}

.store-kicker,
.store-section-heading p,
.commerce-summary p,
.store-consult p {
  color: var(--market-green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.store-hero h1 {
  color: var(--market-navy);
  font-size: 56px;
  line-height: 1;
  max-width: 760px;
}

.store-hero-copy > p:not(.store-kicker) {
  color: #40516a;
  font-size: 19px;
  line-height: 1.5;
  max-width: 650px;
}

.store-hero-actions {
  margin-top: 24px;
}

.store-button {
  border-radius: 8px;
  min-height: 48px;
}

.store-button.primary {
  background: var(--market-blue);
  box-shadow: 0 12px 24px rgba(0, 87, 216, 0.22);
}

.store-button.secondary {
  background: #fff;
  border: 1px solid var(--market-line);
  color: var(--market-deep);
}

.hero-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 680px;
}

.hero-proof span {
  background: var(--market-soft-blue);
  border: 1px solid #cfe1ff;
  border-radius: 8px;
  color: var(--market-muted);
  display: grid;
  gap: 2px;
  min-height: 74px;
  padding: 12px;
}

.hero-proof strong {
  color: var(--market-deep);
  font-size: 21px;
}

.store-hero-product {
  align-self: center;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 35, 70, 0.12);
  grid-template-columns: 1fr;
  min-height: 440px;
  overflow: hidden;
}

.store-hero-product img {
  aspect-ratio: 1.25;
  background: #fff;
  height: auto;
  object-fit: contain;
  padding: 24px;
}

.store-hero-product div {
  border-top: 1px solid var(--market-line);
  display: grid;
  gap: 8px;
  padding: 18px;
}

.store-hero-product span {
  color: var(--market-green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.store-hero-product h2 {
  color: var(--market-ink);
  font-size: 22px;
  line-height: 1.18;
  margin: 0;
}

.store-hero-product small {
  color: var(--market-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.store-hero-product strong {
  color: var(--market-deep);
  font-size: 28px;
  line-height: 1;
}

.store-hero-product a {
  align-items: center;
  background: var(--market-blue);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  margin-top: 4px;
  min-height: 44px;
  padding: 0 14px;
}

.commerce-trust {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px clamp(18px, 4vw, 64px) 8px;
}

.commerce-trust article {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(13, 35, 70, 0.06);
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 16px;
}

.commerce-trust svg {
  color: var(--market-blue);
}

.commerce-trust strong {
  color: var(--market-ink);
  font-size: 16px;
  line-height: 1.15;
}

.commerce-trust span {
  color: var(--market-muted);
  font-size: 14px;
  line-height: 1.42;
}

.quick-categories {
  gap: 10px;
}

.quick-categories a {
  border-radius: 8px;
  font-weight: 900;
}

.store-section-heading {
  align-items: end;
}

.store-section-heading h2,
.commerce-summary h2,
.store-consult h2 {
  color: var(--market-navy);
  font-size: 36px;
  line-height: 1.08;
}

.department-grid {
  gap: 12px;
}

.department-card {
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.department-card:hover {
  box-shadow: 0 16px 34px rgba(13, 35, 70, 0.12);
  transform: translateY(-2px);
}

.department-card > a {
  min-height: 192px;
}

.department-icon {
  border-radius: 8px;
}

.shop-floor {
  gap: 20px;
  grid-template-columns: 260px minmax(0, 1fr);
}

.shop-sidebar,
.commerce-tools,
.store-product,
.cart-box {
  border-radius: 8px;
}

.commerce-tools {
  align-items: center;
}

.product-grid {
  gap: 16px;
}

.store-product {
  border: 1px solid var(--market-line);
  box-shadow: 0 10px 24px rgba(13, 35, 70, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-product:hover {
  box-shadow: 0 18px 36px rgba(13, 35, 70, 0.13);
  transform: translateY(-2px);
}

.store-product .product-media {
  background: #fff;
}

.store-product .product-media img {
  mix-blend-mode: multiply;
}

.commerce-badge {
  background: var(--market-green);
  border-radius: 8px;
}

.store-product .product-body h3 {
  font-size: 16px;
  min-height: 58px;
}

.price-block strong {
  color: var(--market-deep);
}

.store-product .mini-button {
  background: var(--market-blue);
  color: #fff;
  min-height: 42px;
}

.checkout-steps {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 22px 0 0;
  max-width: 680px;
  padding: 0;
}

.checkout-steps li {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  color: var(--market-muted);
  font-size: 13px;
  font-weight: 950;
  min-height: 42px;
  padding: 12px;
  text-align: center;
}

.checkout-steps li.active {
  background: var(--market-blue);
  border-color: var(--market-blue);
  color: #fff;
}

.checkout-form {
  gap: 14px;
}

.customer-login-card {
  background: linear-gradient(135deg, #edf5ff, #ffffff 70%);
  border: 2px solid var(--market-blue);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 87, 216, 0.09);
}

.customer-login-card > div:first-child {
  display: grid;
  gap: 4px;
}

.customer-login-card span {
  color: var(--market-green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.customer-login-card strong {
  color: var(--market-deep);
  font-size: 18px;
}

.customer-login-card small {
  color: var(--market-muted);
  line-height: 1.4;
}

.customer-login-form {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

.customer-login-form button {
  background: var(--market-blue);
  border: 1px solid var(--market-blue);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  min-height: 44px;
  padding: 0 18px;
}

.customer-login-help {
  color: var(--market-blue);
  font-size: 13px;
  font-weight: 850;
  justify-self: start;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-fieldset {
  border: 1px solid var(--market-line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 14px;
}

.checkout-fieldset legend {
  color: var(--market-deep);
  font-size: 13px;
  font-weight: 950;
  padding: 0 8px;
}

.checkout-fieldset input,
.checkout-fieldset select {
  min-width: 0;
}

.checkout-fieldset [hidden] {
  display: none;
}

.checkout-fieldset select {
  background: #fff;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  font: inherit;
  min-height: 44px;
  padding: 0 12px;
}

.zip-row {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
}

.zip-row span,
.shipping-cost-note small {
  align-items: center;
  background: #f8fbff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  color: var(--market-muted);
  display: flex;
  font-size: 13px;
  line-height: 1.35;
  min-height: 44px;
  padding: 8px 12px;
}

.shipping-calculate-button {
  background: var(--market-blue);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  min-height: 44px;
  padding: 0 16px;
}

.shipping-address-fields[hidden] {
  display: none;
}

.checkout-options {
  grid-template-columns: 1fr;
}

.checkout-step-panel {
  background: #fff;
}

.checkout-choice {
  align-items: center;
  background: #f8fbff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding: 12px;
}

.checkout-choice:has(input:checked) {
  background: #eef6ff;
  border-color: var(--market-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 216, 0.08);
}

.checkout-choice input {
  margin: 3px 0 0;
}

.checkout-choice span {
  color: var(--market-ink);
  display: grid;
  gap: 0;
}

.checkout-choice small {
  color: var(--market-muted);
  line-height: 1.35;
}

.shipping-cost-note,
.coupon-box {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.shipping-cost-note {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.shipping-cost-note small {
  grid-column: 1 / -1;
  min-height: 0;
}

.shipping-options {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  margin-top: 10px;
}

.shipping-options[hidden] {
  display: none;
}

.shipping-option {
  align-items: center;
  background: #f8fbff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  padding: 10px;
}

.shipping-option:has(input:checked) {
  background: #eef6ff;
  border-color: var(--market-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 216, 0.08);
}

.shipping-option input {
  margin: 0;
}

.shipping-option span,
.shipping-option strong,
.shipping-option small,
.shipping-option em {
  display: block;
}

.shipping-option strong {
  color: var(--market-ink);
  font-size: 13px;
  font-weight: 950;
}

.shipping-option small {
  background: transparent;
  border: 0;
  color: var(--market-muted);
  font-size: 12px;
  min-height: 0;
  padding: 0;
}

.shipping-option em {
  color: var(--market-blue);
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.shipping-cost-note span,
.coupon-box label {
  color: var(--market-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shipping-cost-note strong {
  color: var(--market-deep);
  font-size: 18px;
  font-weight: 950;
}

.coupon-row {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.coupon-row input {
  text-transform: uppercase;
}

.coupon-row button {
  background: var(--market-blue);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  min-height: 44px;
  padding: 0 16px;
}

.coupon-box p {
  color: var(--market-muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.pagarme-panel {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.pagarme-panel[hidden] {
  display: none;
}

.customer-login-card[hidden] {
  display: none;
}

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

.pagarme-trust-strip {
  align-items: center;
  background: #f8fbff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
}

.pagarme-trust-strip strong {
  color: var(--market-deep);
  font-size: 13px;
  font-weight: 950;
}

.pagarme-trust-strip span {
  color: var(--market-muted);
  font-size: 13px;
  line-height: 1.3;
}

.pagarme-methods label {
  cursor: pointer;
  min-width: 0;
}

.pagarme-methods.is-static span {
  border-color: var(--market-blue);
}

.pagarme-methods input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pagarme-methods span {
  align-items: center;
  background: #f8fbff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  color: var(--market-ink);
  display: grid;
  font-size: 13px;
  gap: 4px;
  justify-content: center;
  min-height: 68px;
  padding: 10px 8px;
  text-align: center;
}

.pagarme-method-icon {
  align-items: center;
  background: #eef6ff;
  border: 1px solid rgba(0, 87, 216, 0.14);
  border-radius: 999px;
  color: var(--market-blue);
  display: inline-flex;
  height: 28px;
  justify-content: center;
  justify-self: center;
  width: 28px;
}

.pagarme-method-icon svg {
  display: block;
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 17px;
}

.pagarme-methods strong,
.pagarme-methods small {
  display: block;
}

.pagarme-methods strong {
  font-size: 14px;
  font-weight: 950;
}

.pagarme-methods small {
  color: var(--market-muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.pagarme-methods input:checked + span {
  background: #eef6ff;
  border-color: var(--market-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 216, 0.08);
}

.pagarme-frame-shell {
  border: 1px solid var(--market-line);
  border-radius: 8px;
  overflow: hidden;
}

.pagarme-frame-shell[hidden] {
  display: none;
}

.pagarme-frame-head {
  align-items: center;
  background: #f8fbff;
  border-bottom: 1px solid var(--market-line);
  display: grid;
  gap: 10px;
  padding: 10px 12px;
}

.pagarme-frame-head strong {
  color: var(--market-ink);
  font-size: 13px;
}

.pagarme-frame-head span {
  color: var(--market-muted);
  font-size: 13px;
  line-height: 1.3;
}

.pagarme-action-link {
  align-items: center;
  background: var(--market-blue);
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 950;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
}

.pagarme-action-link[hidden] {
  display: none;
}

.checkout-review {
  background: var(--market-navy);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.checkout-review span,
.checkout-review strong,
.checkout-review em {
  display: block;
}

.checkout-review span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-review strong {
  font-size: 16px;
}

.checkout-review em {
  color: var(--market-yellow);
  font-size: 27px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.checkout-terms {
  align-items: start;
  color: var(--market-muted);
  display: grid;
  font-size: 14px;
  gap: 12px;
  grid-template-columns: 24px minmax(0, 1fr);
  line-height: 1.4;
  margin: 4px 0 2px;
}

.checkout-terms input {
  accent-color: var(--market-blue);
  height: 22px;
  margin: 1px 0 0;
  width: 22px;
}

.checkout-terms span {
  min-width: 0;
}

.checkout-status {
  color: var(--market-deep);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
  margin: 0;
}

.commerce-summary {
  align-items: start;
}

.commerce-summary > div:first-child {
  position: sticky;
  top: 112px;
}

.commerce-summary {
  border-top: 1px solid var(--market-line);
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 0.45fr);
}

.cart-list {
  max-height: 280px;
  overflow: auto;
}

.store-consult {
  background: var(--market-navy);
  border-radius: 0;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.5fr);
}

.store-consult h2,
.store-consult span {
  color: #fff;
}

.store-consult span {
  display: block;
  line-height: 1.5;
  max-width: 560px;
}

.store-consult .lead-form {
  border: 0;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.store-footer {
  background: #fff;
}

@media (max-width: 1180px) {
  .commerce-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .store-hero,
  .commerce-summary,
  .store-consult {
    grid-template-columns: 1fr;
  }

  .store-hero-product {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .store-header {
    background: #fff;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px 12px;
  }

  .store-brand {
    box-shadow: none;
    min-height: 44px;
    padding: 4px 0;
  }

  .store-brand img {
    height: 36px;
    width: 132px;
  }

  .store-search {
    grid-column: 1 / -1;
    order: 2;
  }

  .store-search button span {
    display: none;
  }

  .store-hero {
    min-height: auto;
    padding: 24px 14px;
  }

  .store-hero h1 {
    font-size: 34px;
    line-height: 1.05;
    max-width: none;
  }

  .store-hero-copy > p:not(.store-kicker) {
    font-size: 16px;
    max-width: none;
  }

  .store-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-proof span {
    min-height: 62px;
  }

  .store-hero-product {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .store-hero-product img {
    aspect-ratio: auto;
    height: 100%;
    padding: 10px;
  }

  .store-hero-product div {
    border-left: 1px solid var(--market-line);
    border-top: 0;
    padding: 12px;
  }

  .store-hero-product h2 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    font-size: 15px;
    overflow: hidden;
  }

  .store-hero-product strong {
    font-size: 20px;
  }

  .commerce-trust {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .commerce-trust article {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: auto;
  }

  .commerce-trust span {
    grid-column: 2;
  }

  .store-section-heading h2,
  .commerce-summary h2,
  .store-consult h2 {
    font-size: 28px;
  }

  .store-actions {
    background: #fff;
    border-top: 1px solid var(--market-line);
  }

  .store-actions > a,
  .store-actions .outlet-pill {
    color: var(--market-deep);
    justify-content: center;
  }

  .store-actions .outlet-pill {
    background: #fff7d8;
  }

  .store-product .mini-button {
    min-height: 38px;
  }

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

  .checkout-fieldset {
    grid-template-columns: 1fr;
  }

  .zip-row {
    grid-template-columns: 1fr;
  }

  .coupon-row,
  .shipping-cost-note {
    grid-template-columns: 1fr;
  }

  .customer-login-form,
  .zip-row {
    grid-template-columns: 1fr;
  }

  .commerce-summary > div:first-child {
    position: static;
  }

  .store-consult span {
    font-size: 15px;
  }
}

/* Storefront redesign */
.storefront {
  --store-blue: #0057d8;
  --store-blue-dark: #003f9f;
  --store-blue-deep: #000a9f;
  --store-sky: #1bb0ce;
  --store-green: #219e31;
  --store-lime: #d7ff53;
  --store-coral: #ff6b4a;
  --store-yellow: #fcb900;
  --store-ink: #14213d;
  --store-muted: #5d6980;
  --store-line: #dce7f5;
  --store-soft: #f3f8ff;
  background: #fff;
  color: var(--store-ink);
}

.store-top {
  background: #eaf4ff;
  color: var(--store-blue-dark);
  font-size: 14px;
  font-weight: 750;
}

.store-top-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 clamp(16px, 4vw, 64px);
}

.store-top nav {
  display: flex;
  gap: 14px;
}

.store-header {
  align-items: center;
  background: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  padding: 24px clamp(16px, 4vw, 64px);
}

.store-brand {
  align-items: center;
  color: var(--store-blue);
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.store-brand span {
  border: 4px solid var(--store-blue);
  display: inline-grid;
  font-size: 27px;
  font-weight: 950;
  height: 58px;
  line-height: 1;
  place-items: center;
  width: 58px;
}

.store-brand strong {
  font-size: 27px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.store-search {
  align-items: center;
  border-bottom: 2px solid var(--store-blue);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  max-width: 680px;
  min-height: 48px;
  width: 100%;
}

.store-search label {
  color: var(--store-muted);
  font-size: 13px;
  margin-right: 10px;
}

.store-search input {
  background: transparent;
  border: 0;
  color: var(--store-ink);
  min-height: 46px;
  outline: 0;
  padding: 0;
}

.store-search button {
  background: transparent;
  border: 0;
  color: var(--store-blue-dark);
  cursor: pointer;
  font-weight: 900;
  padding: 0 0 0 12px;
}

.store-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.store-actions > a {
  align-items: center;
  border: 2px solid var(--store-blue);
  border-radius: 999px;
  color: var(--store-blue-dark);
  display: inline-flex;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  min-width: 46px;
  padding: 0 14px;
}

.store-actions .outlet-pill {
  min-width: 132px;
  text-transform: uppercase;
}

.department-bar {
  align-items: center;
  background: var(--store-blue);
  color: #fff;
  display: flex;
  gap: 6px;
  min-height: 64px;
  overflow-x: auto;
  padding: 0 clamp(16px, 4vw, 64px);
  white-space: nowrap;
}

.department-bar::-webkit-scrollbar,
.quick-categories::-webkit-scrollbar {
  display: none;
}

.department-bar a {
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  padding: 12px 16px;
}

.department-bar a:hover,
.department-bar .top-products-link,
.department-bar .all-departments {
  background: #fff;
  color: var(--store-blue-dark);
}

.department-bar .all-departments {
  background: var(--store-green);
  color: #fff;
  margin-right: 6px;
}

.store-hero {
  align-items: center;
  background: linear-gradient(90deg, #f6fbff 0%, #fff 48%, #eaf4ff 100%);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  min-height: 430px;
  padding: 34px clamp(16px, 4vw, 64px);
}

.store-hero-copy {
  max-width: 760px;
}

.store-kicker,
.store-section-heading p,
.store-consult p {
  color: var(--store-blue-dark);
  font-size: 12px;
  font-weight: 950;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.store-hero h1 {
  color: var(--store-blue-deep);
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.98;
  margin-bottom: 14px;
  max-width: 760px;
}

.store-hero-copy > p:not(.store-kicker) {
  color: var(--store-muted);
  font-size: 18px;
  line-height: 1.45;
  max-width: 610px;
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.store-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  min-height: 46px;
  padding: 0 20px;
}

.store-button.primary {
  background: var(--store-blue);
  color: #fff;
}

.store-button.secondary {
  background: #fff;
  border: 1px solid var(--store-line);
  color: var(--store-blue-dark);
}

.store-hero-product {
  align-items: center;
  background: #fff;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 115, 255, 0.14);
  display: grid;
  gap: 18px;
  grid-template-columns: 46% 1fr;
  min-height: 305px;
  overflow: hidden;
}

.store-hero-product img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.store-hero-product div {
  padding: 22px 22px 22px 0;
}

.store-hero-product span {
  color: var(--store-green);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.store-hero-product h2 {
  color: var(--store-ink);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.store-hero-product strong {
  color: var(--store-blue-dark);
  font-size: 21px;
}

.quick-categories {
  background: #fff;
  border-bottom: 1px solid var(--store-line);
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px clamp(16px, 4vw, 64px);
}

.quick-categories a {
  background: linear-gradient(180deg, #fff, #f3f8ff);
  border: 1px solid var(--store-line);
  border-radius: 999px;
  color: var(--store-blue-dark);
  font-weight: 850;
  min-width: max-content;
  padding: 13px 24px;
}

.store-section {
  padding: 44px clamp(16px, 4vw, 64px);
}

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

.store-section-heading:not(.split) {
  align-items: start;
  display: block;
}

.store-section-heading h2,
.store-consult h2 {
  color: var(--store-ink);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  margin: 0;
}

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

.department-card {
  background: #fff;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  overflow: hidden;
}

.department-card > a {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 170px;
}

.department-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.department-card > a > div {
  border-top: 6px solid var(--dept-color, var(--store-blue));
  padding: 18px;
}

.department-card.green { --dept-color: var(--store-green); }
.department-card.purple { --dept-color: var(--store-sky); }
.department-card.coral { --dept-color: var(--store-coral); }
.department-card.blue { --dept-color: var(--store-blue); }
.department-card.yellow { --dept-color: var(--store-yellow); }
.department-card.violet { --dept-color: var(--store-blue-deep); }

.department-card span {
  color: var(--store-blue-dark);
  display: block;
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 8px;
}

.department-card p {
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.department-card ul {
  border-top: 1px solid var(--store-line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.department-card li {
  border-bottom: 1px solid var(--store-line);
  color: var(--store-muted);
  font-size: 13px;
  font-weight: 750;
  padding: 10px 14px;
}

.product-showcase {
  background: var(--store-soft);
}

.rental-showcase {
  background:
    linear-gradient(135deg, rgba(4, 138, 92, 0.08), rgba(11, 116, 222, 0.06));
  border-bottom: 1px solid rgba(11, 116, 222, 0.12);
  border-top: 1px solid rgba(4, 138, 92, 0.16);
}

.rental-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.rental-card {
  border-color: rgba(4, 138, 92, 0.24);
}

.rental-badge {
  background: #048a5c;
}

.rental-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px 42px;
}

.rental-reserve-link {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  justify-content: center;
  min-height: 42px;
  min-width: 118px;
  white-space: nowrap;
  width: 100%;
}

.rental-reserve-link svg {
  flex: 0 0 auto;
}

.commerce-tools {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.view-switch {
  background: #fff;
  border: 1px solid var(--store-line);
  border-radius: 999px;
  display: inline-flex;
  min-width: max-content;
  padding: 3px;
}

.view-switch button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--store-blue-dark);
  cursor: pointer;
  font-weight: 950;
  height: 32px;
  min-width: 36px;
}

.view-switch button.active {
  background: var(--store-blue);
  color: #fff;
}

.filter-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.filter-pills::-webkit-scrollbar {
  display: none;
}

.filter-pills button {
  background: #fff;
  border: 1px solid var(--store-line);
  border-radius: 999px;
  color: var(--store-blue-dark);
  cursor: pointer;
  font-weight: 850;
  min-height: 38px;
  min-width: max-content;
  padding: 0 14px;
}

.filter-pills button.active {
  background: var(--store-blue);
  border-color: var(--store-blue);
  color: #fff;
}

.commerce-tools label {
  align-items: center;
  color: var(--store-muted);
  display: flex;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  min-width: max-content;
}

.commerce-tools select {
  background: #fff;
  border: 1px solid var(--store-line);
  border-radius: 999px;
  color: var(--store-blue-dark);
  font-weight: 850;
  min-height: 38px;
  padding: 0 14px;
}

.store-product {
  border-color: var(--store-line);
  border-radius: 8px;
  box-shadow: none;
  grid-template-rows: 240px 1fr;
}

.store-product .product-media {
  background: #fff;
  position: relative;
}

.store-product .product-media img {
  object-fit: cover;
}

.video-badge {
  align-items: center;
  background: rgba(0, 10, 209, 0.92);
  border-radius: 999px;
  bottom: 12px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 12px;
  width: 34px;
}

.store-product .product-body h3 {
  color: var(--store-ink);
  font-size: 18px;
  min-height: 58px;
}

.store-product .product-body p {
  font-size: 14px;
  max-height: 61px;
  overflow: hidden;
}

.store-product .product-meta {
  color: var(--store-blue-dark);
}

.store-product .product-footer strong {
  color: var(--store-blue-dark);
}

.store-product .mini-button {
  background: var(--store-blue);
  color: #fff;
}

.store-product button.mini-button {
  border: 0;
}

.commerce-summary {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--store-line);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  padding: 42px clamp(16px, 4vw, 64px);
}

.commerce-summary p {
  color: var(--store-blue-dark);
  font-size: 12px;
  font-weight: 950;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.commerce-summary h2 {
  color: var(--store-ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  margin-bottom: 10px;
}

.commerce-summary span {
  color: var(--store-muted);
  display: block;
  font-size: 17px;
  line-height: 1.45;
  max-width: 620px;
}

.quote-box,
.cart-box {
  background: var(--store-soft);
  border: 1px solid var(--store-line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.quote-box strong,
.cart-box strong {
  color: var(--store-blue-dark);
  font-size: 18px;
}

.quote-box ul,
.cart-box ul {
  color: var(--store-muted);
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-list {
  max-height: 320px;
  overflow: auto;
}

.cart-item {
  border-bottom: 1px solid var(--store-line);
  display: grid;
  gap: 8px;
  padding: 0 0 10px;
}

.cart-item > span {
  color: var(--store-ink);
  display: block;
  font-size: 14px;
  font-weight: 850;
}

.cart-item-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-item-controls button {
  background: #fff;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  color: var(--store-blue-dark);
  cursor: pointer;
  font-weight: 900;
  min-height: 32px;
  padding: 6px 9px;
}

.cart-item-controls em {
  color: var(--store-blue-dark);
  font-style: normal;
  font-weight: 950;
  margin-left: auto;
}

.cart-total {
  align-items: center;
  border-top: 1px solid var(--store-line);
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
}

.cart-total span {
  color: var(--store-muted);
  font-size: 13px;
  font-weight: 850;
}

.cart-total strong {
  color: var(--store-blue-dark);
  font-size: 24px;
  font-weight: 950;
}

.checkout-form {
  display: grid;
  gap: 10px;
}

.checkout-form input {
  border: 1px solid var(--store-line);
  border-radius: 8px;
  font: inherit;
  min-height: 44px;
  padding: 0 12px;
}

.store-consult {
  align-items: center;
  background: var(--store-blue-deep);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  padding: 44px clamp(16px, 4vw, 64px);
}

.store-consult p {
  color: var(--store-lime);
}

.store-consult h2 {
  color: #fff;
  margin-bottom: 12px;
}

.store-consult span {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 18px;
  line-height: 1.45;
  max-width: 660px;
}

.store-consult .lead-form {
  box-shadow: none;
}

.store-footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--store-line);
  color: var(--store-muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px clamp(16px, 4vw, 64px);
}

.store-footer strong {
  color: var(--store-blue-dark);
  font-size: 18px;
}

@media (min-width: 1180px) {
  .store-product {
    grid-template-rows: 255px 1fr;
  }
}

@media (max-width: 980px) {
  .store-header,
  .store-hero,
  .store-consult {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .store-top-inner,
  .store-section-heading,
  .store-footer {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }

  .store-header {
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }

  .store-brand strong {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .store-top-inner > span {
    display: none;
  }

  .store-actions {
    gap: 10px;
  }

  .store-actions .outlet-pill {
    min-width: 132px;
  }

  .store-search {
    grid-template-columns: 1fr auto;
  }

  .store-search label {
    display: none;
  }

  .store-hero {
    min-height: auto;
  }

  .store-hero h1 {
    font-size: 36px;
  }

  .store-hero-product,
  .department-card > a {
    grid-template-columns: 1fr;
  }

  .store-hero-product img,
  .department-card img {
    aspect-ratio: 16 / 10;
  }

  .department-grid,
  .commerce-summary {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .product-grid.is-two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid.is-two-columns .store-product {
    grid-template-rows: 145px 1fr;
  }

  .product-grid.is-two-columns .product-body {
    gap: 8px;
    padding: 10px;
  }

  .product-grid.is-two-columns .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    font-size: 10px;
  }

  .product-grid.is-two-columns .product-body h3 {
    font-size: 13px;
    line-height: 1.2;
    min-height: 48px;
  }

  .product-grid.is-two-columns .product-body p {
    display: none;
  }

  .product-grid.is-two-columns .product-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .product-grid.is-two-columns .product-footer strong {
    font-size: 13px;
  }

  .product-grid.is-two-columns .mini-button {
    min-height: 34px;
    width: 100%;
  }

  .commerce-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-pills,
  .quick-categories,
  .department-bar {
    scroll-snap-type: x mandatory;
  }

  .filter-pills > *,
  .quick-categories > *,
  .department-bar > * {
    scroll-snap-align: start;
  }

  .store-actions {
    background: #fff;
    border-top: 1px solid var(--store-line);
    bottom: 0;
    box-shadow: 0 -8px 26px rgba(20, 33, 61, 0.12);
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: 0;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .store-actions > a,
  .store-actions .outlet-pill {
    border-width: 1px;
    font-size: 12px;
    height: 42px;
    min-width: 0;
    padding: 0 8px;
  }

  .store-footer {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

/* Marketplace direction - Mundo Fisio own identity */
.storefront {
  --market-bg: #eef3f8;
  --market-card: #ffffff;
  --market-ink: #172033;
  --market-muted: #667085;
  --market-blue: #0057d8;
  --market-deep: #001f78;
  --market-green: #219e31;
  --market-yellow: #f6c344;
  --market-line: #d7e1ee;
  background: var(--market-bg);
  color: var(--market-ink);
}

.store-top {
  background: var(--market-deep);
  color: #fff;
}

.store-top a,
.store-top span {
  color: #fff;
}

.store-header {
  background: var(--market-blue);
  box-shadow: 0 8px 24px rgba(0, 43, 143, 0.18);
  gap: 18px;
  padding-bottom: 18px;
  padding-top: 18px;
  position: sticky;
  top: 0;
  z-index: 25;
}

.store-brand {
  color: #fff;
}

.store-brand span {
  background: #fff;
  border-color: #fff;
  border-radius: 10px;
  color: var(--market-blue);
  height: 52px;
  width: 52px;
}

.store-brand strong {
  color: #fff;
  font-size: 23px;
  letter-spacing: 4px;
}

.store-search {
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(13, 44, 84, 0.18);
  max-width: none;
  min-height: 50px;
  padding: 0 8px 0 16px;
  position: relative;
}

.store-search input {
  min-height: 50px;
}

.store-search button {
  background: var(--market-yellow);
  border-radius: 6px;
  color: #1c2536;
  min-height: 38px;
  padding: 0 16px;
}

.search-suggestions {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.18);
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
}

.search-suggestions.is-visible {
  display: grid;
}

.search-suggestion {
  align-items: center;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--market-line);
  color: var(--market-ink);
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 72px;
  padding: 8px 12px;
  text-align: left;
}

.search-suggestion:hover,
.search-suggestion:focus-visible {
  background: #eef6ff;
  outline: 0;
}

.search-suggestion img {
  aspect-ratio: 1;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  height: 54px;
  object-fit: contain;
  padding: 4px;
  width: 54px;
}

.search-suggestion span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.search-suggestion strong {
  color: var(--market-ink);
  font-size: 13px;
  line-height: 1.22;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion em {
  color: var(--market-deep);
  font-size: 15px;
  font-style: normal;
  font-weight: 950;
}

.search-empty {
  color: var(--market-muted);
  font-size: 13px;
  font-weight: 850;
  padding: 14px;
}

.store-actions > a {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #fff;
}

.store-actions .whatsapp-action {
  gap: 6px;
}

.store-actions .whatsapp-action svg {
  flex: 0 0 auto;
}

.store-actions .outlet-pill {
  background: var(--market-yellow);
  border-color: var(--market-yellow);
  color: #1c2536;
}

.department-bar {
  background: #fff;
  border-bottom: 1px solid var(--market-line);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.8);
  color: var(--market-ink);
  min-height: 56px;
}

.department-bar a {
  background: transparent;
  border: 1px solid transparent;
  color: var(--market-muted);
  padding: 10px 14px;
}

.department-bar .all-departments,
.department-bar .top-products-link,
.department-bar a:hover {
  background: #eef6ff;
  border-color: #cfe2ff;
  color: var(--market-deep);
}

.store-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(246, 195, 68, 0.28), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 52%, #ffffff 100%);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  min-height: 360px;
  padding-bottom: 28px;
  padding-top: 28px;
}

.store-kicker,
.store-section-heading p,
.commerce-summary p,
.store-consult p {
  color: var(--market-green);
  letter-spacing: 0;
}

.store-hero h1 {
  color: var(--market-deep);
  font-size: clamp(34px, 4.2vw, 60px);
  letter-spacing: 0;
  max-width: 690px;
}

.store-hero-copy > p:not(.store-kicker) {
  color: var(--market-muted);
  max-width: 560px;
}

.store-button {
  border-radius: 8px;
}

.store-button.primary {
  background: var(--market-blue);
}

.store-button.secondary {
  border-color: var(--market-line);
  color: var(--market-deep);
}

.store-hero-product {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(23, 32, 51, 0.12);
  grid-template-columns: 44% 1fr;
  min-height: 250px;
}

.store-hero-product img {
  background: #fff;
  object-fit: contain;
  padding: 12px;
}

.store-hero-product div {
  padding: 20px 18px 20px 0;
}

.store-hero-product h2 {
  font-size: clamp(20px, 2vw, 28px);
}

.quick-categories {
  background: transparent;
  border-bottom: 0;
  padding-top: 20px;
}

.quick-categories a {
  background: #fff;
  border-color: var(--market-line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.06);
  color: var(--market-deep);
}

.store-section {
  padding-bottom: 34px;
  padding-top: 34px;
}

.store-section-heading h2,
.commerce-summary h2,
.store-consult h2 {
  color: var(--market-ink);
  letter-spacing: 0;
}

.department-grid {
  grid-template-columns: repeat(6, minmax(132px, 1fr));
}

.department-card {
  background: var(--market-card);
  border: 1px solid var(--market-line);
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.05);
}

.department-card > a {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  min-height: 184px;
  padding: 16px;
}

.department-icon {
  align-items: center;
  background: #eef6ff;
  border-radius: 14px;
  color: var(--market-blue);
  display: inline-flex;
  font-size: 18px;
  font-weight: 950;
  height: 54px;
  justify-content: center;
  letter-spacing: 0;
  margin: 0;
  width: 54px;
}

.department-card > a > div {
  border: 0;
  padding: 0;
}

.department-card span:not(.department-icon) {
  color: var(--market-ink);
  font-size: 17px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.department-card p {
  color: var(--market-muted);
  font-size: 13px;
}

.department-card ul {
  display: none;
}

.department-card.green .department-icon { background: #e9f8ec; color: var(--market-green); }
.department-card.yellow .department-icon { background: #fff7df; color: #9a6800; }
.department-card.coral .department-icon { background: #fff0eb; color: #d04a2d; }

.product-showcase {
  background: var(--market-bg);
}

.shop-floor {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 245px minmax(0, 1fr);
}

.shop-sidebar {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.05);
  display: grid;
  gap: 18px;
  padding: 16px;
  position: sticky;
  top: 88px;
}

.shop-sidebar div {
  border-bottom: 1px solid var(--market-line);
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
}

.shop-sidebar div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.shop-sidebar h3 {
  color: var(--market-ink);
  font-size: 14px;
  margin: 0 0 4px;
}

.shop-sidebar button,
.shop-sidebar a {
  align-items: center;
  background: #f7faff;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--market-muted);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: space-between;
  min-height: 36px;
  padding: 0 10px;
  text-align: left;
}

.shop-sidebar button.active,
.shop-sidebar button:hover,
.shop-sidebar a:hover {
  background: #eef6ff;
  border-color: #d5e7ff;
  color: var(--market-deep);
}

.shop-sidebar a svg {
  color: #1fa855;
}

.shop-results {
  min-width: 0;
}

.commerce-tools {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.05);
  padding: 12px;
  position: sticky;
  top: 88px;
  z-index: 20;
}

.result-count {
  color: var(--market-muted);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.filter-pills button,
.commerce-tools select,
.view-switch {
  border-color: var(--market-line);
  border-radius: 8px;
}

.filter-pills button.active,
.view-switch button.active {
  background: var(--market-deep);
  border-color: var(--market-deep);
}

.store-product {
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.06);
  grid-template-rows: 220px 1fr;
  overflow: hidden;
}

.store-product.is-highlighted {
  box-shadow: 0 0 0 3px rgba(20, 160, 56, 0.26), 0 14px 28px rgba(23, 32, 51, 0.12);
}

.store-product .product-media {
  border-bottom: 1px solid var(--market-line);
  position: relative;
}

.store-product .product-media img {
  object-fit: contain;
  padding: 16px;
}

.store-product .product-body {
  gap: 12px;
  padding: 16px;
}

.store-product .product-meta {
  color: var(--market-green);
  font-size: 11px;
  letter-spacing: 0;
}

.commerce-badge {
  background: #14a038;
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  left: 10px;
  max-width: calc(100% - 20px);
  overflow: hidden;
  padding: 6px 8px;
  position: absolute;
  text-overflow: ellipsis;
  top: 10px;
  white-space: nowrap;
}

.store-product .product-body h3 {
  color: var(--market-ink);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.22;
  min-height: 62px;
}

.store-product .product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.store-product .product-body h3 a:hover {
  color: var(--market-deep);
}

.store-product .product-body p {
  color: var(--market-muted);
  display: none;
}

.store-product .mini-button {
  background: #eef6ff;
  border-radius: 8px;
  color: var(--market-deep);
  width: 100%;
}

.price-block {
  display: grid;
  gap: 3px;
}

.price-block strong {
  color: var(--market-deep);
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}

.cash-label {
  color: var(--market-green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.regular-price,
.installment-line,
.shipping-line {
  color: var(--market-green);
  font-size: 13px;
  font-weight: 850;
}

.regular-price {
  color: var(--market-muted);
  font-weight: 750;
}

.shipping-line {
  color: var(--market-muted);
}

.video-badge {
  background: var(--market-deep);
}

.commerce-summary,
.quote-box,
.cart-box {
  background: #fff;
}

.store-consult {
  background: linear-gradient(135deg, var(--market-deep), #005ed8);
}

.store-footer {
  background: var(--market-bg);
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand p {
  color: var(--market-muted);
  font-size: 14px;
  margin: 0;
}

.footer-brand a {
  color: var(--market-deep);
  font-weight: 850;
}

.footer-links {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  min-width: min(860px, 100%);
}

.footer-links div {
  display: grid;
  gap: 8px;
}

.footer-links h2 {
  color: var(--market-ink);
  font-size: 14px;
  margin: 0 0 4px;
}

.footer-links a {
  color: var(--market-muted);
  font-size: 14px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--market-deep);
}

.footer-credit {
  align-items: center;
  border-top: 1px solid rgba(0, 63, 127, 0.12);
  color: var(--market-muted);
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px 18px;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
}

.footer-credit a {
  color: var(--market-deep);
  font-weight: 850;
}

.footer-whatsapp,
.whatsapp-link {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.footer-whatsapp svg,
.whatsapp-link svg {
  color: #1fa855;
  flex: 0 0 auto;
}

.lead-form .whatsapp-link {
  background: #e9f8ec;
  border-radius: 8px;
  color: #147a36;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
}

.cookie-consent {
  align-items: center;
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.18);
  display: none;
  gap: 18px;
  left: 18px;
  max-width: 760px;
  padding: 16px;
  position: fixed;
  right: 18px;
  z-index: 60;
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent strong {
  color: var(--market-deep);
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.cookie-consent p {
  color: var(--market-muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-actions a,
.cookie-actions button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  min-height: 40px;
  padding: 0 14px;
}

.cookie-actions a {
  background: #eef6ff;
  color: var(--market-deep);
}

.cookie-actions button {
  background: var(--market-blue);
  border: 0;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .shop-floor {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  .department-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .department-card {
    flex: 0 0 178px;
    scroll-snap-align: start;
  }

  .commerce-tools {
    top: 0;
  }
}

@media (max-width: 720px) {
  .store-top {
    display: none;
  }

  .store-header {
    gap: 12px;
    padding: 12px 14px 14px;
  }

  .store-brand span {
    height: 42px;
    width: 42px;
  }

  .store-brand strong {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .store-search {
    order: 2;
  }

  .department-bar {
    min-height: 50px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .store-hero {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 24px 14px;
  }

  .store-hero h1 {
    font-size: 34px;
    max-width: 340px;
  }

  .store-hero-copy > p:not(.store-kicker) {
    max-width: 340px;
  }

  .store-hero-product {
    grid-template-columns: 104px 1fr;
    min-height: 150px;
  }

  .store-hero-product img {
    aspect-ratio: auto;
  }

  .store-hero-product div {
    padding: 14px 14px 14px 0;
  }

  .store-hero-product h2 {
    font-size: 17px;
  }

  .quick-categories,
  .store-section,
  .commerce-summary,
  .store-consult {
    padding-left: 14px;
    padding-right: 14px;
  }

  .department-card {
    flex-basis: 160px;
  }

  .commerce-tools {
    align-items: stretch;
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .store-product {
    grid-template-rows: 132px 1fr;
  }

  .product-grid.is-two-columns .store-product {
    grid-template-rows: 132px 1fr;
  }

  .store-product .product-media img {
    padding: 10px;
  }

  .store-product .product-body {
    padding: 10px;
  }

  .store-product .product-body h3 {
    font-size: 13px;
    min-height: 50px;
  }

  .store-product .product-footer strong {
    font-size: 15px;
  }

  .price-block strong {
    font-size: 16px;
  }

  .cash-label,
  .regular-price,
  .installment-line,
  .shipping-line {
    font-size: 11px;
  }

  .store-actions {
    background: #fff;
  }

  .store-actions > a,
  .store-actions .outlet-pill {
    background: #eef6ff;
    border-color: #d5e7ff;
    color: var(--market-deep);
  }

  .store-actions .whatsapp-action span {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    align-items: stretch;
    bottom: calc(74px + env(safe-area-inset-bottom));
    flex-direction: column;
    left: 10px;
    right: 10px;
  }

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

  .cookie-actions a,
  .cookie-actions button {
    justify-content: center;
  }
}

/* Final visual authority for Loja Nova */
.store-header {
  background: #fff;
  border-bottom: 1px solid var(--market-line);
  box-shadow: 0 10px 30px rgba(13, 35, 70, 0.08);
}

.store-brand {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(13, 35, 70, 0.08);
  min-height: 58px;
  padding: 8px 12px;
}

.store-brand img {
  display: block;
  height: 42px;
  object-fit: contain;
  width: 154px;
}

.store-brand span,
.store-brand strong {
  display: none;
}

.store-actions > a {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.store-search button {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.store-hero {
  background: #fff;
  border-bottom: 1px solid var(--market-line);
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  min-height: 520px;
  padding-bottom: 42px;
  padding-top: 42px;
}

.store-hero h1 {
  color: var(--market-navy);
  font-size: 56px;
  line-height: 1;
  max-width: 760px;
}

.store-hero-copy > p:not(.store-kicker) {
  color: #40516a;
  font-size: 19px;
  line-height: 1.5;
  max-width: 650px;
}

.store-hero-product {
  align-self: center;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 35, 70, 0.12);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 440px;
  overflow: hidden;
}

.store-hero-product img {
  aspect-ratio: 1.25;
  background: #fff;
  height: auto;
  object-fit: contain;
  padding: 24px;
  width: 100%;
}

.store-hero-product div {
  border-left: 0;
  border-top: 1px solid var(--market-line);
  display: grid;
  gap: 8px;
  padding: 18px;
}

.store-hero-product h2 {
  color: var(--market-ink);
  font-size: 22px;
  line-height: 1.18;
  margin: 0;
  overflow-wrap: anywhere;
}

.store-hero-product a {
  align-items: center;
  background: var(--market-blue);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  margin-top: 4px;
  min-height: 44px;
  padding: 0 14px;
}

.hero-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 680px;
}

.hero-proof span {
  background: var(--market-soft-blue);
  border: 1px solid #cfe1ff;
  border-radius: 8px;
  color: var(--market-muted);
  display: grid;
  gap: 2px;
  min-height: 74px;
  padding: 12px;
}

.hero-proof strong {
  color: var(--market-deep);
  font-size: 21px;
}

.commerce-trust {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px clamp(18px, 4vw, 64px) 8px;
}

.commerce-trust article {
  background: #fff;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(13, 35, 70, 0.06);
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 16px;
}

.store-section-heading h2,
.commerce-summary h2,
.store-consult h2 {
  color: var(--market-navy);
  font-size: 36px;
  line-height: 1.08;
}

.store-product {
  border: 1px solid var(--market-line);
}

.store-product .mini-button {
  background: var(--market-blue);
  color: #fff;
  min-height: 42px;
}

@media (max-width: 1180px) {
  .commerce-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .store-hero,
  .commerce-summary,
  .store-consult {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .store-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px 12px;
  }

  .store-brand {
    box-shadow: none;
    min-height: 44px;
    padding: 4px 0;
  }

  .store-brand img {
    height: 36px;
    width: 132px;
  }

  .store-search {
    grid-column: 1 / -1;
  }

  .store-search button span {
    display: none;
  }

  .store-hero {
    min-height: auto;
    padding: 24px 14px;
  }

  .store-hero h1 {
    font-size: 34px;
    line-height: 1.05;
    max-width: none;
  }

  .store-hero-copy > p:not(.store-kicker) {
    font-size: 16px;
    max-width: none;
  }

  .store-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .store-hero-product {
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 160px;
  }

  .store-hero-product img {
    aspect-ratio: auto;
    height: 100%;
    padding: 10px;
  }

  .store-hero-product div {
    border-left: 1px solid var(--market-line);
    border-top: 0;
    padding: 12px;
  }

  .store-hero-product h2 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    font-size: 15px;
    overflow: hidden;
  }

  .commerce-trust {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .commerce-trust article {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: auto;
  }

  .commerce-trust span {
    grid-column: 2;
  }

  .store-section-heading h2,
  .commerce-summary h2,
  .store-consult h2 {
    font-size: 28px;
  }
}

.commerce-summary {
  align-items: start;
}

.commerce-summary > div:first-child {
  position: sticky;
  top: 112px;
}

@media (max-width: 980px) {
  .commerce-summary > div:first-child {
    position: static;
  }
}

/* Final search contrast override */
.store-search {
  background: #fff;
  border: 1px solid #cfe1ff;
  box-shadow: 0 8px 20px rgba(13, 44, 84, 0.14);
}

.store-search input {
  background: #fff;
  color: #172033;
}

.store-search input::placeholder {
  color: #65758d;
}

.store-search button {
  background: #fff;
  border: 1px solid var(--market-blue);
  color: var(--market-blue);
}

.store-search:focus-within {
  border-color: var(--market-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 216, 0.14), 0 8px 20px rgba(13, 44, 84, 0.14);
}

.installment-banner {
  align-items: center;
  background: linear-gradient(135deg, #001f78 0%, #0057d8 58%, #0aa96a 100%);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 43, 143, 0.18);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  margin: 18px clamp(16px, 4vw, 64px) 0;
  overflow: hidden;
  padding: clamp(16px, 2vw, 24px);
  position: relative;
}

.installment-banner::before {
  background: linear-gradient(90deg, var(--market-yellow), rgba(246, 195, 68, 0));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.installment-banner-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.installment-banner-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.installment-banner-copy span {
  color: #d7ff53;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.installment-banner-copy strong {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 950;
  line-height: 1.05;
}

.installment-banner-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

.installment-card-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.installment-card-flags span {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  color: var(--market-deep);
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  min-width: 82px;
  padding: 7px 12px;
}

.installment-card-flags img {
  display: block;
  height: 28px;
  max-width: 76px;
  object-fit: contain;
  width: auto;
}

@media (max-width: 860px) {
  .installment-banner {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .installment-banner-icon {
    height: 48px;
    width: 48px;
  }

  .installment-card-flags {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .installment-banner {
    margin: 14px 14px 0;
    padding: 16px;
  }

  .installment-banner-copy strong {
    font-size: 22px;
  }

  .installment-banner-copy p {
    font-size: 14px;
  }

  .store-footer {
    background: linear-gradient(180deg, #053a78 0%, #052f63 100%);
    border-top: 0;
    box-sizing: border-box;
    color: #d9e7ff;
    display: grid;
    gap: 16px;
    padding: 24px 18px calc(104px + env(safe-area-inset-bottom));
    width: 100%;
  }

  .store-footer * {
    box-sizing: border-box;
  }

  .footer-brand {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    gap: 10px;
    min-width: 0;
    overflow: hidden;
    padding: 16px;
  }

  .footer-brand strong {
    color: #fff;
    font-size: 20px;
  }

  .footer-brand span,
  .footer-brand p {
    color: #d9e7ff;
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .footer-brand a,
  .footer-links a {
    color: #fff;
  }

  .footer-whatsapp {
    color: #fff;
    flex-wrap: wrap;
    line-height: 1.35;
  }

  .footer-whatsapp svg {
    color: #25d366;
  }

  .footer-links {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .footer-links div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    gap: 8px;
    max-width: 100%;
    min-width: 0;
    padding: 14px;
  }

  .footer-links h2 {
    color: #fff;
    font-size: 13px;
    margin: 0 0 2px;
  }

  .footer-links a {
    color: #c9d9f4;
    display: block;
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .footer-links a:hover {
    color: #fff;
  }
}

@media print {
  @page {
    margin: 12mm;
    size: A4;
  }

  body.admin-page {
    background: #fff;
    display: block;
  }

  .admin-mobile-bar,
  .admin-sidebar,
  .admin-menu-backdrop,
  .admin-report-actions,
  .report-hero,
  .report-form,
  .floating-product-cta {
    display: none !important;
  }

  .admin-main {
    margin: 0;
    padding: 0;
  }

  .report-document {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    overflow: visible;
  }

  .report-document-header {
    background: #101820 !important;
    color: #fff !important;
    padding: 12px 16px;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .report-document-header h2 {
    font-size: 22px;
    margin: 2px 0 4px;
  }

  .report-document-header p {
    font-size: 11px;
  }

  .report-document-header img {
    padding: 6px;
    width: 104px;
  }

  .report-section {
    break-inside: auto;
    page-break-inside: auto;
    padding: 8px 0;
  }

  .report-section-heading {
    margin-bottom: 8px;
  }

  .report-section-heading h3 {
    font-size: 17px;
  }

  .report-kpi-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .report-split {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-table {
    break-inside: auto;
    font-size: 10px;
    page-break-inside: auto;
  }

  .report-table thead {
    display: table-header-group;
  }

  .report-table tr {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .report-table th,
  .report-table td {
    padding: 6px;
  }
}


/* Store price remains visible when Mercado Livre is offered as an immediate fallback. */
.store-price-card {
  display: grid;
  gap: 0.2rem;
  margin: 0.45rem 0 0.2rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(9, 126, 105, 0.24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 249, 245, 0.95), rgba(247, 252, 251, 0.98));
}
.store-price-label {
  color: #35645b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.store-price-value {
  color: #073d33;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.08;
}
.store-price-note {
  color: #49665f;
  font-size: 0.82rem;
  line-height: 1.35;
}


.store-newsletter {
  align-items: center;
  background: linear-gradient(135deg, #073d8f 0%, #0a6fce 52%, #16a3a8 100%);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 61, 143, 0.22);
  color: #fff;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  margin: 2.4rem 0;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  position: relative;
}
.store-newsletter::after {
  background: radial-gradient(circle, rgba(255,255,255,0.25), rgba(255,255,255,0));
  content: '';
  height: 260px;
  position: absolute;
  right: -90px;
  top: -120px;
  width: 260px;
}
.newsletter-copy,
.newsletter-form-card { position: relative; z-index: 1; }
.newsletter-copy p {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}
.newsletter-copy h2 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.04;
  margin: 0 0 0.8rem;
  max-width: 580px;
}
.newsletter-copy span {
  color: rgba(255,255,255,0.84);
  display: block;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 560px;
}
.newsletter-form-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(7, 31, 76, 0.18);
  color: #0f172a;
  padding: clamp(1rem, 2vw, 1.35rem);
}
.newsletter-form-card .mauticform_wrapper {
  margin: 0;
  max-width: none;
}
.newsletter-form-card .mauticform-row { margin-bottom: 0.85rem; }
.newsletter-form-card .mauticform-label {
  color: #12345d;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.newsletter-form-card .mauticform-helpmessage {
  color: #64748b;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}
.newsletter-form-card .mauticform-input {
  background: #f8fafc;
  border: 1px solid #d8e1ee;
  border-radius: 14px;
  color: #0f172a;
  font: inherit;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  width: 100%;
}
.newsletter-form-card .mauticform-input:focus {
  border-color: #0a6fce;
  box-shadow: 0 0 0 4px rgba(10,111,206,0.12);
  outline: none;
}
.newsletter-form-card .mauticform-button {
  background: linear-gradient(135deg, #0a6fce, #073d8f);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  width: 100%;
}
.newsletter-form-card .mauticform-message { color: #047857; font-weight: 700; }
.newsletter-form-card .mauticform-error,
.newsletter-form-card .mauticform-errormsg { color: #b91c1c; }
.newsletter-privacy {
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.45;
  margin: 0.35rem 0 0;
}
@media (max-width: 760px) {
  .store-newsletter { grid-template-columns: 1fr; border-radius: 22px; }
}


.newsletter-form {
  display: grid;
  gap: 0.85rem;
}
.newsletter-form label {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}
.newsletter-form label span {
  color: #12345d;
  font-size: 0.88rem;
  font-weight: 800;
}
.newsletter-form label small {
  color: #64748b;
  font-size: 0.76rem;
}
.newsletter-form input:not(.hp-field) {
  background: #f8fafc;
  border: 1px solid #d8e1ee;
  border-radius: 14px;
  color: #0f172a;
  font: inherit;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  width: 100%;
}
.newsletter-form input:not(.hp-field):focus {
  border-color: #0a6fce;
  box-shadow: 0 0 0 4px rgba(10,111,206,0.12);
  outline: none;
}
.newsletter-form button {
  background: linear-gradient(135deg, #0a6fce, #073d8f);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  width: 100%;
}
.newsletter-form button:disabled { cursor: wait; opacity: 0.72; }
.newsletter-status { font-size: 0.86rem; font-weight: 800; margin: 0; min-height: 1.2em; }
.newsletter-status.success { color: #047857; }
.newsletter-status.error { color: #b91c1c; }

/* Newsletter próxima ao contato — versão refinada */
.newsletter-contact-section {
  align-items: stretch;
  background:
    radial-gradient(circle at 8% 12%, rgba(22, 163, 168, 0.30), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #052f6f 0%, #075bb1 48%, #0891b2 100%);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(7, 61, 143, 0.24);
  gap: clamp(1.35rem, 3vw, 2.4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 460px);
  margin: 1.2rem 0 2.8rem;
  padding: clamp(1.45rem, 3.4vw, 2.8rem);
}
.newsletter-contact-section::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.20), rgba(255,255,255,0));
  content: '';
  height: 1px;
  left: 32px;
  position: absolute;
  right: 32px;
  top: 0;
}
.newsletter-contact-section .newsletter-copy {
  align-self: center;
  display: grid;
  gap: 0.8rem;
  max-width: 620px;
}
.newsletter-eyebrow {
  align-items: center;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-self: start;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.78rem;
  text-transform: uppercase;
}
.newsletter-contact-section .newsletter-copy h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.7vw, 2.65rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
}
.newsletter-contact-section .newsletter-copy p {
  color: rgba(255,255,255,0.84);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
  text-transform: none;
}
.newsletter-contact-section .newsletter-form-card {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(2, 20, 58, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
}
.newsletter-contact-section .newsletter-field {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  width: 100%;
}
.newsletter-contact-section .newsletter-field label {
  color: #12345d;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.newsletter-contact-section .newsletter-field input {
  background: #f8fbff;
  border: 1px solid #dbe7f4;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
  color: #0f172a;
  font: inherit;
  min-height: 54px;
  padding: 0.92rem 1rem;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  width: 100%;
}
.newsletter-contact-section .newsletter-field input:focus {
  background: #fff;
  border-color: #0a6fce;
  box-shadow: 0 0 0 4px rgba(10,111,206,0.13);
  outline: none;
}
.newsletter-contact-section .newsletter-field small {
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.35;
}
.newsletter-contact-section .newsletter-form button {
  align-items: center;
  background: linear-gradient(135deg, #0a6fce, #073d8f);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(7, 61, 143, 0.24);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.15rem;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  width: 100%;
}
.newsletter-contact-section .newsletter-form button:hover {
  box-shadow: 0 20px 42px rgba(7, 61, 143, 0.30);
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.newsletter-contact-section .newsletter-privacy {
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 0;
}
.newsletter-contact-section .newsletter-status { margin: -0.15rem 0 0; }
@media (max-width: 860px) {
  .newsletter-contact-section {
    border-radius: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
}

/* Mantém a newsletter no fim da página, próxima ao bloco de contato/consultor. */
.newsletter-contact-section { order: 8; }

/* Home banners */
.home-carousel{position:relative;max-width:1440px;margin:0 auto 24px;overflow:hidden;background:#eef4f1;touch-action:pan-y;border-radius:20px}.home-carousel-slide[hidden]{display:none}.home-carousel-slide a{display:block;position:relative;color:inherit}.home-carousel-slide picture,.home-carousel-slide img{display:block;width:100%}.home-carousel-slide img{height:auto;aspect-ratio:1781/883;object-fit:cover}.home-carousel-cta{position:absolute;left:5%;bottom:12%;background:#126b52;color:#fff;padding:.75rem 1.2rem;border-radius:999px;font-weight:700}.home-carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:2;width:44px;height:44px;border:0;border-radius:50%;background:rgba(255,255,255,.9);color:#164f40;font-size:2rem;cursor:pointer;box-shadow:0 2px 12px #0003}.home-carousel-arrow.previous{left:16px}.home-carousel-arrow.next{right:16px}.home-carousel-dots{position:absolute;left:50%;bottom:12px;transform:translateX(-50%);display:flex;gap:8px;z-index:2}.home-carousel-dots button{width:10px;height:10px;padding:0;border:1px solid #fff;border-radius:50%;background:#ffffff80;cursor:pointer}.home-carousel-dots button[aria-current=true]{background:#126b52;transform:scale(1.2)}.home-carousel :focus-visible{outline:3px solid #f2b544;outline-offset:3px}.banner-admin-preview{display:block;max-width:220px;max-height:90px;object-fit:contain;margin-top:8px;border-radius:8px}.banner-settings-form{display:flex;align-items:end;gap:12px;margin-top:24px;padding-top:20px;border-top:1px solid #ddd}.inline-form{display:inline}.link-button{border:0;background:none;color:#a52626;text-decoration:underline;cursor:pointer;padding:0}
@media(max-width:700px){.home-carousel{border-radius:12px;margin-bottom:16px}.home-carousel-slide img{aspect-ratio:1/1}.home-carousel-arrow{width:36px;height:36px}.home-carousel-cta{font-size:.9rem}.banner-settings-form{align-items:stretch;flex-direction:column}}
@media(prefers-reduced-motion:reduce){.home-carousel *{scroll-behavior:auto!important;transition:none!important;animation:none!important}}
