:root {
  --primary: #16A34A;
  --primary-dark: #15803D;
  --secondary: #EAB308;
  --secondary-dark: #CA8A04;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-h: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  --dark: #1A1A2E;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --bg-light: #F9FAFB;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Poppins', sans-serif; color: #1f2937; background: #fff; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* BTN */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: 50px; font-family: inherit;
  font-weight: 600; font-size: .95rem; border: none; cursor: pointer; transition: .2s;
}
.btn--wa  { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1ebe5d; }
.btn--sm  { padding: .5rem 1rem; font-size: .85rem; }
.btn--lg  { padding: 1rem 2rem; font-size: 1.1rem; }
.btn--grad { background: var(--gradient); color: #fff; }
.btn--grad:hover { background: var(--gradient-h); }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark); color: #fff;
  padding: 1rem 0; box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; }
.header__logo  { display: flex; align-items: center; gap: .75rem; flex: 1; }
.header__logo img { height: 40px; border-radius: 6px; }
.header__brand { font-size: 1.2rem; font-weight: 700; }
.header__nav   { display: flex; gap: 1.5rem; }
.header__nav a { font-size: .9rem; opacity: .85; transition: opacity .2s; }
.header__nav a:hover { opacity: 1; }

/* HERO */
.hero {
  position: relative; min-height: 480px;
  display: flex; align-items: center;
  background: var(--gradient);
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 1; color: #fff; padding: 4rem 0; }
.hero__content h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 1rem; }
.hero__content p  { font-size: 1.15rem; opacity: .9; margin-bottom: 2rem; }

/* CATALOG */
.catalog { padding: 5rem 0; background: var(--bg-light); }
.section-title { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 2.5rem; }
.section-title--light { color: #fff; }

/* FILTER */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .45rem 1.1rem; border-radius: 50px; border: 2px solid var(--gray-light);
  background: #fff; font-family: inherit; font-size: .85rem; cursor: pointer; transition: .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient); color: #fff; border-color: transparent;
}

/* GRID */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.prod-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.prod-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.prod-card__body { padding: 1.25rem; }
.prod-card__body h3 { font-size: 1rem; font-weight: 600; margin-bottom: .35rem; }
.prod-card__body p  { font-size: .85rem; color: var(--gray); margin-bottom: .75rem; line-height: 1.5; }
.prod-card__cat   { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-bottom: .25rem; }
.prod-card__price { font-size: .8rem; color: var(--primary); font-weight: 600; margin-bottom: .75rem; }
.prod-card .btn { width: 100%; justify-content: center; }

.loading { text-align: center; color: var(--gray); padding: 3rem; grid-column: 1/-1; }

/* CONTACT */
.contact { padding: 5rem 0; background: var(--gradient); }
.contact__info { color: #fff; }
.contact__info .info-item { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; font-size: .95rem; }
.contact__info .info-item i { opacity: .8; }
.contact__info--center {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
  margin-top: .5rem;
}
.contact__info--center .info-item { margin-bottom: 0; }
.info-item--link {
  color: inherit; text-decoration: none;
  transition: opacity .15s;
}
.info-item--link:hover { opacity: .75; }

/* FOOTER */
.footer { background: var(--dark); color: #9CA3AF; padding: 2rem 0 1rem; text-align: center; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 1rem; font-size: .9rem; }
.footer__inner a:hover { color: #fff; }
.footer__powered { font-size: .75rem; opacity: .5; }

/* Suspended state */
.suspended-banner {
  background: #dc2626; color: #fff; text-align: center; padding: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .header__inner { gap: .75rem; }
  .header__nav { display: none; }
  .header__brand { font-size: 1rem; }
  .hero { min-height: 300px; }
  .hero__content { padding: 2.5rem 0; }
  .hero__content h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .catalog { padding: 3rem 0; }
  .catalog__grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .prod-card img { height: 160px; }
  .filter-bar { gap: .4rem; margin-bottom: 1.5rem; }
  .filter-btn { padding: .35rem .85rem; font-size: .8rem; }
  .contact { padding: 3rem 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-title { font-size: 1.5rem; margin-bottom: 1.75rem; }
}

@media (max-width: 400px) {
  .catalog__grid { grid-template-columns: 1fr 1fr; }
  .prod-card img { height: 130px; }
  .container { padding: 0 1rem; }
  .btn--wa { font-size: .8rem; padding: .6rem 1rem; }
}

/* ── ABOUT ─────────────────────────────────────────────────────────── */
.about-section { padding: 5rem 0; background: #fff; }
.about-desc { text-align: center; color: var(--gray); font-size: 1.05rem; max-width: 720px; margin: 0 auto 2.5rem; line-height: 1.8; }
.about-bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.about-bullet { display: flex; align-items: flex-start; gap: .85rem; padding: 1.25rem; background: var(--bg-light); border-radius: var(--radius); }
.about-bullet .bullet-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.about-bullet .bullet-text strong { display: block; margin-bottom: .2rem; color: #1f2937; font-size: .95rem; }
.about-bullet .bullet-text span { font-size: .85rem; color: var(--gray); line-height: 1.5; }

/* ── PROCESS ────────────────────────────────────────────────────────── */
.process-section { padding: 5rem 0; background: var(--bg-light); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.process-step { text-align: center; }
.process-step .step-num { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient); color: #fff; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-weight: 700; }
.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.process-step p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ── SERVICES ───────────────────────────────────────────────────────── */
.services-section { padding: 5rem 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.service-card { padding: 2rem 1.5rem; border-radius: var(--radius); border: 2px solid var(--gray-light); transition: .2s; text-align: center; }
.service-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card .svc-icon { font-size: 2.5rem; margin-bottom: .75rem; line-height: 1; }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.service-card p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ── HERO secondary CTA ─────────────────────────────────────────────── */
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn--hero-sec { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn--hero-sec:hover { background: rgba(255,255,255,.3); }

@media (max-width: 768px) {
  .about-section, .process-section, .services-section { padding: 3rem 0; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .process-steps { gap: 1.5rem; }
}

/* ── Botão "Simular Orçamento" nos cards ─────────────────────── */
.btn--sim {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  width: 100%; padding: .65rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-weight: 600; font-size: .88rem;
  border: none; border-radius: 8px; cursor: pointer; margin-top: auto;
  transition: opacity .15s;
}
.btn--sim:hover { opacity: .88; }

/* ── Simulador de Orçamento ──────────────────────────────────── */
#sim-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  display: flex; align-items: flex-end; justify-content: center;
}
.sim-modal {
  background: #fff; width: 100%; max-width: 480px;
  border-radius: 20px 20px 0 0;
  display: flex; flex-direction: column;
  max-height: 92vh; overflow: hidden;
  animation: simUp .22s ease;
}
@keyframes simUp { from { transform: translateY(100%); } to { transform: none; } }
@media (min-width: 600px) {
  #sim-backdrop { align-items: center; }
  .sim-modal { border-radius: 16px; max-height: 82vh; }
}
.sim-header {
  background: #1a1f2e; color: #fff;
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem; flex-shrink: 0;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 600px) { .sim-header { border-radius: 16px 16px 0 0; } }
.sim-header > span:first-child { font-weight: 700; font-size: .9rem; white-space: nowrap; }
.sim-brand { color: #9ca3af; font-size: .8rem; flex: 1; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sim-close-btn { background: none; border: none; color: #9ca3af; font-size: 1.1rem; cursor: pointer; padding: .15rem .4rem; flex-shrink: 0; }
.sim-close-btn:hover { color: #fff; }
.sim-body { flex: 1; overflow-y: auto; padding: 1rem; }
.sim-product-bar {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: .5rem; margin-bottom: 1.1rem;
  padding-bottom: .85rem; border-bottom: 1px solid #f3f4f6;
}
.sim-product-bar > div { flex: 1; min-width: 0; }
.sim-product-bar strong { font-size: .92rem; display: block; }
.sim-cat-chip {
  display: inline-block; background: #f3f4f6; color: #6b7280;
  font-size: .7rem; padding: .12rem .5rem; border-radius: 99px; margin-top: .2rem;
}
.btn--outline-dark {
  background: #fff; border: 1.5px solid #d1d5db; color: #374151;
  font-size: .78rem; padding: .35rem .65rem; border-radius: 7px; cursor: pointer; white-space: nowrap; flex-shrink: 0;
}
.btn--outline-dark:hover { border-color: var(--primary); color: var(--primary); }
.sim-step { margin-bottom: 1.25rem; }
.sim-step-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .65rem; }
.sim-step-num {
  width: 26px; height: 26px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; flex-shrink: 0;
}
.sim-step-head strong { font-size: .92rem; }
.sim-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.sim-chip {
  border: 2px solid #e5e7eb; border-radius: 10px; padding: .5rem .8rem;
  cursor: pointer; background: #fff; text-align: center; font-size: .82rem;
  line-height: 1.35; transition: border-color .12s, background .12s;
  user-select: none;
}
.sim-chip:hover { border-color: var(--primary); }
.sim-chip.selected { border-color: var(--primary); background: #f0fdf4; }
.sim-chip .chip-top { font-weight: 700; font-size: .88rem; display: block; }
.sim-chip .chip-sub { color: #6b7280; font-size: .75rem; display: block; }
.sim-picker-back { margin-bottom: .75rem; background: #f3f4f6; border: none; border-radius: 8px; padding: .4rem .8rem; cursor: pointer; font-size: .85rem; }
.sim-picker-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .75rem; border: 2px solid #e5e7eb; border-radius: 10px;
  cursor: pointer; background: #fff; margin-bottom: .4rem; transition: border-color .12s;
}
.sim-picker-item:hover { border-color: var(--primary); }
.sim-picker-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 7px; background: #f3f4f6; flex-shrink: 0; }
.sim-picker-item strong { font-size: .88rem; display: block; }
.sim-picker-item span { font-size: .75rem; color: #6b7280; }
.sim-footer { padding: .85rem 1rem 1rem; border-top: 1px solid #e5e7eb; flex-shrink: 0; }
.sim-result-box {
  background: #1a1f2e; color: #9ca3af; font-size: .85rem; text-align: center;
  padding: .8rem 1rem; border-radius: 10px; margin-bottom: .65rem; line-height: 1.45;
}
.sim-result-box.has-result { color: #d1fae5; }
.sim-result-box .res-price { font-size: 1.25rem; font-weight: 700; color: #fff; display: block; }
.sim-result-box .res-detail { font-size: .74rem; color: #9ca3af; }
.sim-cart-btn {
  width: 100%; padding: .82rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-weight: 700; font-size: .95rem;
  border: none; border-radius: 10px; cursor: pointer;
  opacity: .4; transition: opacity .2s; display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.sim-cart-btn:not([disabled]) { opacity: 1; }
.sim-cart-btn[disabled] { cursor: default; }

/* ── Carrinho ────────────────────────────────────────────────── */
.cart-header-btn {
  position: relative; background: none; border: 2px solid rgba(255,255,255,.35);
  color: #fff; border-radius: 8px; padding: .35rem .6rem; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; gap: .3rem;
}
.cart-header-btn:hover { background: rgba(255,255,255,.1); }
.cart-badge {
  position: absolute; top: -7px; right: -7px;
  background: #ef4444; color: #fff; font-size: .65rem; font-weight: 700;
  border-radius: 99px; min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
#cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 9000; display: flex; align-items: flex-end; justify-content: center;
}
.cart-modal {
  background: #fff; width: 100%; max-width: 480px;
  border-radius: 20px 20px 0 0;
  display: flex; flex-direction: column; max-height: 92vh; overflow: hidden;
  animation: simUp .22s ease;
}
@media (min-width: 600px) {
  #cart-backdrop { align-items: center; }
  .cart-modal { border-radius: 16px; max-height: 82vh; }
}
.cart-header {
  background: #1a1f2e; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1rem; flex-shrink: 0; border-radius: 20px 20px 0 0;
  font-weight: 700; font-size: .92rem;
}
@media (min-width: 600px) { .cart-header { border-radius: 16px 16px 0 0; } }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-header-count { font-weight: 400; opacity: .75; margin-left: .25rem; }
.cart-empty { text-align: center; color: #9ca3af; padding: 3rem 1rem; font-size: .9rem; }
.cart-empty i { font-size: 2rem; display: block; margin-bottom: .75rem; opacity: .3; }

/* Cart item */
.cart-item {
  border: 1.5px solid #e5e7eb; border-radius: 14px; padding: .9rem 1rem;
  margin-bottom: .75rem; background: #fff;
}
.cart-item-name { font-weight: 700; font-size: .95rem; color: #111827; margin-bottom: .2rem; }
.cart-item-qty  { font-size: .82rem; color: #6b7280; margin-bottom: .35rem; }
.cart-item-opts { font-size: .78rem; color: #6b7280; margin-bottom: .4rem; line-height: 1.7; }
.cart-item-opts span { display: block; }
.cart-item-price-row {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; margin-bottom: .65rem; flex-wrap: wrap;
}
.cart-item-unit  { color: #6b7280; }
.cart-item-sep   { color: #d1d5db; }
.cart-item-total { font-weight: 700; color: var(--primary); }
.cart-item-actions { display: flex; gap: .5rem; }
.cart-action-btn {
  flex: 1; padding: .45rem .6rem; border-radius: 9px; border: 1.5px solid;
  font-size: .8rem; font-weight: 600; cursor: pointer; transition: background .15s, color .15s;
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  background: #fff; font-family: inherit;
}
.cart-edit-btn   { border-color: #d1d5db; color: #374151; }
.cart-edit-btn:hover { background: #f3f4f6; }
.cart-remove-btn { border-color: #fecaca; color: #ef4444; }
.cart-remove-btn:hover { background: #fef2f2; }

/* Cart footer */
.cart-footer { background: #1a1f2e; padding: .9rem 1rem 1rem; flex-shrink: 0; border-radius: 0 0 20px 20px; }
@media (min-width: 600px) { .cart-footer { border-radius: 0 0 16px 16px; } }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .75rem; font-size: .9rem; color: #e5e7eb;
}
.cart-total-row strong { font-size: 1.1rem; color: #facc15; }
.cart-footer-btns { display: flex; gap: .5rem; }
.cart-continue-btn {
  flex: 1; padding: .65rem .5rem; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.25);
  background: transparent; color: #e5e7eb; font-size: .82rem; font-weight: 600; font-family: inherit;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .4rem;
  transition: background .15s; white-space: nowrap;
}
.cart-continue-btn:hover { background: rgba(255,255,255,.1); }
.cart-checkout-btn {
  flex: 2; padding: .65rem .75rem; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: .88rem; font-weight: 700; font-family: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  transition: opacity .15s; white-space: nowrap;
}
.cart-checkout-btn:hover { opacity: .9; }

/* Simulator — success state after add */
.sim-added-banner {
  background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 10px;
  color: #16a34a; font-weight: 600; font-size: .88rem;
  padding: .65rem .9rem; margin-bottom: .6rem; text-align: center;
}
.sim-added-banner i { margin-right: .4rem; }
.sim-footer-btns { display: flex; gap: .5rem; }

/* Checkout modal */
#checkout-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 1200; padding: 0;
}
@media (min-width: 600px) {
  #checkout-backdrop { align-items: center; padding: 1rem; }
}
.checkout-modal {
  background: #fff; border-radius: 20px 20px 0 0;
  width: 100%; max-width: 480px;
  max-height: 92vh; display: flex; flex-direction: column;
  overflow: hidden;
}
@media (min-width: 600px) { .checkout-modal { border-radius: 16px; } }
.checkout-body { flex: 1; overflow-y: auto; padding: 1rem; }
.checkout-summary { margin-bottom: .5rem; }
.co-item {
  padding: .6rem .75rem; background: #f9fafb; border-radius: 10px;
  margin-bottom: .5rem;
}
.co-item-name { font-weight: 700; font-size: .88rem; color: #111827; }
.co-item-detail { font-size: .78rem; color: #6b7280; margin: .15rem 0 .2rem; line-height: 1.5; }
.co-opt-tag {
  display: inline-block; background: #e5e7eb; border-radius: 5px;
  padding: .05rem .35rem; font-size: .72rem; margin-left: .2rem;
}
.co-item-price { font-size: .82rem; color: #374151; }
.co-item-price strong { color: var(--primary); }
.checkout-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: #1a1f2e; color: #e5e7eb; border-radius: 10px;
  padding: .65rem .9rem; margin-bottom: .85rem; font-size: .9rem;
}
.checkout-total-bar strong { color: #facc15; font-size: 1.05rem; }
.checkout-form-title { font-size: .88rem; font-weight: 700; color: #374151; margin: 0 0 .65rem; }
.co-field { margin-bottom: .65rem; }
.co-field label { display: block; font-size: .78rem; font-weight: 600; color: #6b7280; margin-bottom: .3rem; }
.co-field input, .co-field textarea {
  width: 100%; padding: .6rem .8rem; border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-size: .9rem; font-family: inherit; outline: none; box-sizing: border-box;
  transition: border-color .15s;
}
.co-field input:focus, .co-field textarea:focus { border-color: var(--primary); }
.co-field textarea { resize: vertical; min-height: 60px; }
.checkout-footer {
  background: #1a1f2e; padding: .9rem 1rem 1rem; flex-shrink: 0;
  border-radius: 0 0 20px 20px; display: flex; gap: .5rem;
}
@media (min-width: 600px) { .checkout-footer { border-radius: 0 0 16px 16px; } }

/* Optional group badge & free-qty input */
.sim-optional-tag { font-size:.72rem; font-weight:600; color:#6b7280; background:#f3f4f6; border-radius:6px; padding:.15rem .45rem; margin-left:.1rem; }
.sim-qty-free { display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; }
.sim-qty-free input[type=number] { width:100px; padding:.5rem .75rem; border:2px solid #e5e7eb; border-radius:10px; font-size:1rem; font-family:inherit; outline:none; transition:border-color .12s; }
.sim-qty-free input[type=number]:focus { border-color:var(--primary); }
.sim-qty-unit { font-size:.88rem; color:#374151; }
.sim-qty-price { font-size:.88rem; color:#374151; font-weight:600; }
