/*
 * Loja BP Tech — Frontend 2.0
 * Camada pública reconstruída do zero.
 * O painel administrativo continua usando styles.css.
 */

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4f9;
  --surface-dark: #0b0f18;
  --surface-dark-2: #111726;
  --text: #101828;
  --text-soft: #526071;
  --text-muted: #7a8797;
  --text-on-dark: #f8fafc;
  --line: #dce4ec;
  --line-dark: rgba(255, 255, 255, 0.1);
  --brand: #1599d6;
  --brand-strong: #087bb4;
  --brand-soft: #e8f6fd;
  --success: #16a45a;
  --success-strong: #0f8d4b;
  --danger: #d94343;
  --warning: #d88b17;
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 16px 42px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 26px 70px rgba(2, 12, 27, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1480px;
  --gutter: clamp(18px, 3vw, 48px);
  --section: clamp(56px, 7vw, 104px);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.page-body,
.page-main,
.product-page {
  background: var(--bg);
}

.section {
  padding-block: var(--section);
}

.section + .section {
  padding-top: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker::before {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.9rem);
}

h2 {
  font-size: clamp(1.75rem, 2.9vw, 3rem);
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 0 22px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--surface-dark);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 15, 30, 0.16);
}

.btn-primary:hover {
  background: #151c2b;
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #bac7d4;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  background: var(--success);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 164, 90, 0.2);
}

.btn-whatsapp:hover {
  background: var(--success-strong);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line-dark);
  background: var(--surface-dark);
  color: #fff;
}

.header-top {
  display: grid;
  min-height: 102px;
  grid-template-columns: minmax(190px, 250px) minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.brand {
  display: inline-flex;
  width: min(100%, 228px);
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.search-form {
  display: flex;
  min-width: 0;
  height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.search-form:focus-within {
  border-color: rgba(21, 153, 214, 0.8);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(21, 153, 214, 0.12);
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0 18px;
  font-size: 1rem;
}

.search-form input::placeholder {
  color: #99a5b6;
}

.search-form button {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #c6d0dd;
  cursor: pointer;
}

.search-form button svg {
  width: 25px;
  height: 25px;
}

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

.header-whatsapp {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  border-radius: 13px;
  background: var(--success);
  padding: 0 15px;
  color: #fff;
  transition: transform 160ms ease, background 160ms ease;
}

.header-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--success-strong);
}

.header-whatsapp > svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.wa-copy {
  display: grid;
  line-height: 1.15;
}

.wa-copy strong {
  font-size: 0.9rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.main-nav {
  border-top: 1px solid var(--line-dark);
  background: var(--surface-dark-2);
}

.nav-inner {
  display: flex;
  min-height: 66px;
  align-items: stretch;
  justify-content: center;
  gap: clamp(12px, 2vw, 36px);
}

.nav-inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #cbd4df;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-inner a:hover,
.nav-inner a.active {
  color: #fff;
}

.nav-inner a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-inner a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 43vw, 730px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.9) 32%, rgba(3, 8, 18, 0.2) 67%, rgba(3, 8, 18, 0.06) 100%),
    url('/public/img/hero-bg-bptech-v17.webp') center center / cover no-repeat;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(21, 153, 214, 0.1), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  min-height: inherit;
  align-items: center;
}

.hero-copy {
  width: min(100%, 690px);
  padding-block: 72px;
}

.hero-copy h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.35rem, 4.15vw, 4.45rem);
  text-wrap: balance;
}

.hero-copy p {
  max-width: 640px;
  margin-bottom: 34px;
  color: #d5dde8;
  font-size: clamp(1.12rem, 1.55vw, 1.48rem);
  line-height: 1.55;
}

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

.hero-actions .btn {
  width: 255px;
  min-width: 255px;
  min-height: 52px;
  flex: 0 0 255px;
  padding-inline: 18px;
  white-space: nowrap;
}

/* Trust band */
.trust-band {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 24px clamp(16px, 2vw, 28px);
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item > svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--brand-strong);
}

.trust-item div {
  display: grid;
  gap: 3px;
}

.trust-item strong {
  font-size: 0.95rem;
}

.trust-item span {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Section headings */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.section-head > div {
  min-width: 0;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.section-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-strong);
  font-weight: 800;
  white-space: nowrap;
}

.section-link svg,
.card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.section-link:hover svg,
.card-link:hover svg {
  transform: translateX(3px);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.home-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  justify-content: center;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #c8d4df;
  box-shadow: var(--shadow-md);
}

.product-card.is-sold {
  opacity: 0.88;
}

.product-image {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, #f7f9fc, #eaf0f6);
  padding: clamp(8px, 1vw, 14px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 240ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.product-image .status-pill {
  position: absolute;
  top: 14px;
  left: 14px;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: #edf1f5;
  color: #44505f;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1;
}

.status-available,
.status-disponivel {
  background: #e4f7eb;
  color: #08723a;
}

.status-reserved,
.status-reservado {
  background: #fff2d8;
  color: #8c5800;
}

.status-sold,
.status-vendido,
.status-indisponivel {
  background: #fde7e7;
  color: #a72c2c;
}

.status-review,
.status-em-revisao,
.status-em_revisao {
  background: #e7f2fb;
  color: #0b6590;
}

.product-info {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-title:hover {
  color: var(--brand-strong);
}

.product-specs {
  min-height: 44px;
  margin: 10px 0 18px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.price-row {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.price-row strong {
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.old-price {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.installment {
  margin: 5px 0 0;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.card-action {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.card-link {
  font-size: 0.86rem;
}

/* General content components */
.consult-box,
.support-bar,
.store-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}

.consult-box-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.consult-box-main > span {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-weight: 800;
}

.consult-box-main strong,
.support-bar strong,
.store-about h2 {
  display: block;
  margin-bottom: 4px;
}

.consult-box p,
.store-about p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.support-bar {
  background: var(--surface-dark);
  color: #fff;
}

.support-bar > div:first-child {
  display: grid;
  gap: 2px;
}

.support-bar > div:first-child span {
  color: #aeb9c7;
}

.support-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.support-points span {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  padding: 7px 11px;
  color: #d9e0e8;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.category-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: #c4d4e0;
  box-shadow: var(--shadow-md);
}

.category-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.category-card div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.category-card strong {
  overflow: hidden;
  font-size: 0.96rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-card small {
  color: var(--text-soft);
}

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

.why-grid > div {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.why-grid span {
  color: var(--text-soft);
}

.store-about {
  align-items: flex-end;
}

.store-about > div {
  max-width: 940px;
}

/* Home location */
.local-store {
  background: var(--surface-dark);
  color: #fff;
  padding-block: clamp(60px, 7vw, 96px);
}

.local-store-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: stretch;
  gap: clamp(34px, 4vw, 62px);
}

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

.local-store-copy h2 {
  margin-bottom: 18px;
  color: #fff;
}

.local-store-copy > p {
  max-width: 660px;
  margin-bottom: 28px;
  color: #b9c4d1;
  font-size: 1.04rem;
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.local-info {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.9fr) minmax(0, 1.45fr);
  gap: 18px;
}

.local-info > div {
  min-width: 0;
}

.local-info small,
.footer-contact-line small {
  display: block;
  margin-bottom: 5px;
  color: #8f9dad;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.local-info strong {
  display: block;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.55;
}

.map-frame,
.map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #dce5ee;
  box-shadow: var(--shadow-lg);
}

.map-frame {
  min-height: 430px;
}

.map-frame iframe,
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Page hero */
.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 0%, rgba(21, 153, 214, 0.14), transparent 30%),
    #fff;
  padding-block: clamp(56px, 6vw, 90px);
}

.page-hero .container {
  max-width: min(var(--container), 1160px);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.page-hero p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

/* Catalog */
.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: clamp(26px, 3vw, 44px);
}

.filters {
  position: sticky;
  top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.filters h2 {
  margin: 0;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.filter-list {
  display: grid;
  padding: 8px;
}

.filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.filter-list a:hover,
.filter-list a.active {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.filter-list small {
  color: inherit;
  opacity: 0.7;
}

.catalog-content {
  min-width: 0;
}

.category-seo-box {
  margin-bottom: 22px;
  border: 1px solid #cce9f7;
  border-radius: var(--radius-md);
  background: #f1faff;
  padding: 20px;
}

.category-seo-box strong {
  display: block;
  margin-bottom: 6px;
}

.category-seo-box p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.catalog-count {
  margin-bottom: 20px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.catalog-empty,
.empty-state {
  display: grid;
  place-items: start;
  gap: 10px;
  border: 1px dashed #b9c7d5;
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
}

.catalog-empty span,
.empty-state {
  color: var(--text-soft);
}

.catalog-empty .btn {
  margin-top: 8px;
}

/* Product detail */
.product-page {
  padding-top: clamp(34px, 4vw, 62px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: start;
  gap: clamp(30px, 4vw, 64px);
}

.gallery {
  min-width: 0;
}

.main-product-image,
.product-placeholder.detail {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  object-fit: contain;
  object-position: center;
  padding: clamp(12px, 2vw, 24px);
  box-shadow: var(--shadow-sm);
}

.product-placeholder.detail {
  display: grid;
  place-items: center;
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 88px));
  gap: 10px;
  margin-top: 14px;
}

.thumbs button {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 5px;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.thumbs button:hover,
.thumbs button.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(21, 153, 214, 0.12);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary {
  position: sticky;
  top: 22px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-md);
}

.summary-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}

.breadcrumb {
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb.muted {
  color: var(--text-muted);
  font-weight: 600;
}

.summary-top .status-pill {
  margin-left: auto;
}

.product-summary h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.summary-specs {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 1rem;
}

.summary-price {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.summary-price strong {
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.summary-price small {
  color: var(--text-soft);
}

.sold-box {
  display: grid;
  gap: 5px;
  margin-bottom: 22px;
  border: 1px solid #f0caca;
  border-radius: 13px;
  background: #fff4f4;
  padding: 16px;
  color: #8f2929;
}

.sold-box span {
  font-size: 0.88rem;
}

.summary-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.info-cards > div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 13px;
}

.info-cards strong,
.info-cards span {
  display: block;
}

.info-cards strong {
  margin-bottom: 3px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-cards span {
  color: var(--text-soft);
  font-size: 0.79rem;
  line-height: 1.45;
}

.summary-trust {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.summary-trust h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.summary-trust ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-trust li,
.check-list li {
  position: relative;
  padding: 5px 0 5px 25px;
  color: var(--text-soft);
  font-size: 0.87rem;
}

.summary-trust li::before,
.check-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.product-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-block: clamp(34px, 5vw, 72px);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}

.panel-full {
  grid-column: 1 / -1;
}

.panel h2 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.panel h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.panel p {
  margin-bottom: 0;
  color: var(--text-soft);
  white-space: pre-line;
}

.spec-list {
  margin: 0;
}

.spec-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list > div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--text-soft);
  font-size: 0.87rem;
  font-weight: 700;
}

.spec-list dd {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}

/* Contact and static pages */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-card,
.content-page,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: clamp(24px, 3vw, 38px);
}

.contact-card.primary {
  background: var(--surface-dark);
  color: #fff;
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.contact-card p {
  color: var(--text-soft);
}

.contact-card.primary p {
  color: #b9c4d1;
}

.contact-data-list {
  display: grid;
  gap: 12px;
}

.contact-data-list p {
  margin-bottom: 0;
}

.inline-link {
  color: var(--brand-strong);
  font-weight: 700;
}

.map-card {
  overflow: hidden;
}

.map-card .section-head {
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.map-card .section-head h2 {
  font-size: 1.25rem;
}

.map-card iframe {
  height: 470px;
}

.content-page {
  display: grid;
  gap: 14px;
  max-width: min(calc(100% - (var(--gutter) * 2)), 980px);
  padding: clamp(24px, 4vw, 46px);
}

.content-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.content-step:last-of-type {
  border-bottom: 0;
}

.content-step > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 800;
}

.content-step p {
  margin: 4px 0 0;
  color: var(--text-soft);
}

.error-pre {
  overflow: auto;
  border-radius: 12px;
  background: #0e1420;
  padding: 18px;
  color: #dce6f1;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--surface-dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) repeat(3, minmax(170px, 0.85fr));
  align-items: start;
  gap: clamp(34px, 5vw, 76px);
  padding-block: clamp(48px, 6vw, 76px);
}

.footer-logo {
  width: 205px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 22px;
  color: #b7c1ce;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a {
  color: #c3ccd7;
  font-size: 0.9rem;
  transition: color 150ms ease;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-contact-line {
  margin: 0 0 5px;
}

.footer-contact-line a {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 20px;
  color: #8794a4;
  font-size: 0.82rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, calc((100vw - var(--container)) / 2 - 74px));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 4px solid rgba(255,255,255,0.88);
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  box-shadow: 0 16px 36px rgba(3, 12, 25, 0.24);
  transition: transform 160ms ease, background 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--success-strong);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1640px) {
  .floating-whatsapp {
    right: 18px;
    width: 52px;
    height: 52px;
  }
}

/* Responsive */

/* Desktop compacto: notebooks e janelas com área útil menor */
@media (min-width: 781px) and (max-width: 1600px) {
  :root {
    --container: 1320px;
    --gutter: clamp(22px, 2.5vw, 38px);
    --section: clamp(48px, 5.4vw, 78px);
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(1.7rem, 2.45vw, 2.55rem);
  }

  .header-top {
    min-height: 82px;
    grid-template-columns: minmax(170px, 205px) minmax(280px, 1fr) auto;
    gap: 22px;
  }

  .brand {
    width: min(100%, 198px);
  }

  .search-form {
    height: 50px;
  }

  .search-form input {
    padding-inline: 16px;
    font-size: 0.95rem;
  }

  .search-form button {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .search-form button svg {
    width: 23px;
    height: 23px;
  }

  .header-whatsapp {
    min-height: 48px;
    padding-inline: 14px;
  }

  .header-whatsapp > svg {
    width: 22px;
    height: 22px;
  }

  .nav-inner {
    min-height: 56px;
    gap: clamp(14px, 1.75vw, 28px);
  }

  .nav-inner a {
    font-size: 0.92rem;
  }

  .hero {
    min-height: clamp(480px, 37vw, 590px);
  }

  .hero-copy {
    width: min(100%, 610px);
    padding-block: 52px;
  }

  .hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.85rem, 3.55vw, 3.75rem);
  }

  .hero-copy p {
    max-width: 570px;
    margin-bottom: 26px;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
  }

  .btn {
    min-height: 48px;
    padding-inline: 19px;
  }

  .trust-item {
    padding: 19px clamp(14px, 1.8vw, 24px);
  }

  .section-head {
    margin-bottom: clamp(22px, 2.5vw, 32px);
  }
}

/* Telas de pouca altura: preserva a primeira dobra em notebooks */
@media (min-width: 781px) and (max-height: 850px) {
  .header-top {
    min-height: 76px;
  }

  .main-nav .nav-inner {
    min-height: 52px;
  }

  .hero {
    min-height: clamp(470px, calc(100svh - 240px), 570px);
  }

  .hero-copy {
    padding-block: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 3.35vw, 3.55rem);
  }

  .hero-copy p {
    margin-bottom: 24px;
    font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  }
}

@media (max-width: 1260px) {
  :root {
    --container: 1180px;
  }

  .header-top {
    grid-template-columns: minmax(180px, 220px) minmax(260px, 1fr) auto;
    gap: 24px;
  }

  .header-whatsapp {
    padding-inline: 14px;
  }

  .nav-inner {
    gap: 22px;
  }

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

  .home-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 340px));
    justify-content: center;
  }

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

  .local-store-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }

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

@media (max-width: 1040px) {
  .header-top {
    min-height: 88px;
    grid-template-columns: 190px minmax(0, 1fr) auto;
  }

  .wa-copy {
    display: none;
  }

  .header-whatsapp {
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }

  .nav-inner {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-inner::-webkit-scrollbar {
    display: none;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

  .local-store-card,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .map-frame {
    min-height: 420px;
  }

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

  .filters {
    position: static;
  }

  .filter-list {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: none;
  }

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

  .filter-list a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

@media (max-width: 780px) {
  :root {
    --gutter: 18px;
    --section: 56px;
  }

  .header-top {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 76px;
    gap: 14px;
  }

  .brand {
    width: 180px;
  }

  .search-form {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 50px;
    margin-bottom: 14px;
  }

  .search-form button {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .header-whatsapp {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-inner {
    display: grid;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    gap: 0;
    padding-block: 8px 18px;
  }

  .nav-inner a {
    min-height: 48px;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-inner a::after {
    right: auto;
    width: 34px;
  }

  .hero {
    min-height: 590px;
    background:
      linear-gradient(180deg, rgba(3, 8, 18, 0.35) 0%, rgba(3, 8, 18, 0.72) 48%, rgba(3, 8, 18, 0.98) 100%),
      url('/public/img/hero-bg-bptech-v17.webp') 68% center / cover no-repeat;
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding-block: 60px 50px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-copy p {
    max-width: 520px;
    font-size: 1.04rem;
  }

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

  .hero-actions .btn,
  .local-actions .btn {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .trust-grid,
  .product-grid,
  .category-grid,
  .why-grid,
  .catalog-grid,
  .product-panels,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .consult-box,
  .support-bar,
  .store-about {
    align-items: stretch;
    flex-direction: column;
  }

  .support-points {
    justify-content: flex-start;
  }

  .product-grid {
    gap: 16px;
  }

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

  .product-info {
    min-height: auto;
  }

  .local-info {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-card iframe {
    min-height: 360px;
    height: 360px;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .spec-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .spec-list dd {
    text-align: left;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-grid > div:not(.footer-brand) {
    border-top: 1px solid var(--line-dark);
    padding-top: 26px;
  }

  .site-footer {
    padding-bottom: 70px;
  }

  .floating-whatsapp {
    right: 16px;
    width: 52px;
    height: 52px;
    border-width: 3px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 160px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .btn {
    min-height: 50px;
    padding-inline: 18px;
  }

  .product-image {
    padding: 8px;
  }

  .product-info {
    padding: 17px;
  }

  .thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-summary,
  .panel,
  .contact-card,
  .content-page {
    border-radius: 18px;
  }

  .product-summary h1 {
    font-size: 2rem;
  }

  .map-card .section-head {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Ajuste de enquadramento das fotos nos cards de produto.
   Recupera o comportamento anterior: o card permanece quadrado,
   a imagem preenche a área e o recorte fica centralizado. */
.product-card .product-image {
  padding: 0;
  background: #eef2f6;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--card-image-focus-x, 50%) var(--card-image-focus-y, 50%);
  transform: scale(var(--card-image-zoom, 1));
  transform-origin: var(--card-image-focus-x, 50%) var(--card-image-focus-y, 50%);
}

.product-card:hover .product-image img {
  transform: scale(calc(var(--card-image-zoom, 1) + 0.025));
}

/* Correção definitiva: a vitrine usa exatamente a mesma janela quadrada da prévia do painel. */
.product-card .product-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  padding: 0 !important;
  background: #eef2f6;
}

.product-card .product-image > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: var(--card-image-focus-x, 50%) var(--card-image-focus-y, 50%);
  transform: scale(var(--card-image-zoom, 1));
  transform-origin: var(--card-image-focus-x, 50%) var(--card-image-focus-y, 50%);
}

.product-card .product-image .status-pill {
  z-index: 2;
}

@media (max-width: 520px) {
  .product-card .product-image {
    padding: 0 !important;
    aspect-ratio: 1 / 1;
  }
}


/* V59 — A foto principal usa o mesmo enquadramento quadrado da vitrine. */
.main-product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #eef2f6;
  box-shadow: var(--shadow-sm);
}

.main-product-media .main-product-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: cover;
  object-position: var(--detail-image-focus-x, 50%) var(--detail-image-focus-y, 50%);
  transform: scale(var(--detail-image-zoom, 1));
  transform-origin: var(--detail-image-focus-x, 50%) var(--detail-image-focus-y, 50%);
}

.main-product-media .product-placeholder.detail {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.thumbs button {
  padding: 0;
  background: #eef2f6;
}

.thumbs img {
  object-fit: cover;
}

/* V65 — filtros estruturais por linha e condição */
.filter-section-title {
  margin-top: 24px;
}

.filter-list-secondary a {
  padding-left: 16px;
}

.condition-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.condition-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--text, #111827);
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.condition-chip small {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #eef6fb;
  color: #52606f;
  font-size: 12px;
}

.condition-chip:hover,
.condition-chip.active {
  border-color: #0ea5e9;
  background: #eaf7ff;
  color: #0369a1;
}

.condition-chip.active small {
  background: #0ea5e9;
  color: #fff;
}

.condition-chip.is-empty {
  opacity: .58;
}

.product-condition-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 15, 28, .86);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .condition-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .condition-filter::-webkit-scrollbar { display: none; }
  .condition-chip { flex: 0 0 auto; }
}


/* V70 - disponibilidade local clara, leve e compatível com Google StoreBot */
.local-inventory-card {
  margin: 18px 0 22px;
  padding: 20px;
  border: 1px solid rgba(27, 165, 91, 0.38);
  border-radius: 18px;
  background: linear-gradient(135deg, #f2fbf6 0%, #ffffff 72%);
  box-shadow: 0 12px 28px rgba(15, 81, 48, 0.08);
}
.local-inventory-card.is-reserved {
  border-color: rgba(210, 145, 27, 0.38);
  background: linear-gradient(135deg, #fff9ea 0%, #ffffff 72%);
}
.local-inventory-card.is-unavailable {
  border-color: rgba(128, 143, 164, 0.32);
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 72%);
}
.local-inventory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.local-inventory-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #11864f;
}
.local-inventory-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #344054;
  white-space: nowrap;
}
.local-inventory-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #20c875;
  box-shadow: 0 0 0 4px rgba(32, 200, 117, 0.14);
}
.local-inventory-card.is-reserved .local-inventory-dot {
  background: #e9a72c;
  box-shadow: 0 0 0 4px rgba(233, 167, 44, 0.14);
}
.local-inventory-card.is-unavailable .local-inventory-dot {
  background: #8b96a8;
  box-shadow: 0 0 0 4px rgba(139, 150, 168, 0.14);
}
.local-inventory-content {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.local-inventory-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  background: #dff6e9;
  color: #149454;
}
.local-inventory-icon svg {
  width: 28px;
  height: 28px;
}
.local-inventory-card.is-reserved .local-inventory-icon {
  background: #fff0c9;
  color: #b97808;
}
.local-inventory-card.is-unavailable .local-inventory-icon {
  background: #e9edf2;
  color: #667085;
}
.local-inventory-copy { min-width: 0; }
.local-inventory-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.25;
  color: #111827;
}
.local-inventory-card p {
  margin: 0;
  color: #475467;
  line-height: 1.55;
}
.local-inventory-card p + p { margin-top: 9px; }
.local-inventory-store strong { color: #087bb6; }
.local-inventory-store span { overflow-wrap: anywhere; }
.local-inventory-note { font-size: 0.91rem; }
@media (max-width: 640px) {
  .local-inventory-card { padding: 16px; border-radius: 16px; }
  .local-inventory-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .local-inventory-content { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; }
  .local-inventory-icon { width: 44px; height: 44px; }
  .local-inventory-icon svg { width: 23px; height: 23px; }
}
