* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --green: #00b894; --green-dark: #00a381; --green-light: #55efc4;
    --yellow: #fdcb6e; --orange: #e17055; --red: #d63031;
    --bg: #f0f2f5; --bg-card: #ffffff; --bg-dark: #1e272e;
    --text: #2d3436; --text-light: #636e72; --text-muted: #b2bec3;
    --shadow: 0 2px 8px rgba(0,0,0,0.08); --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    --radius: 12px;
}
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--bg-dark); padding: 0 20px; height: 64px; }
.header-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; height: 100%; gap: 20px; }
.logo { display: flex; align-items: center; gap: 8px; cursor: pointer; flex-shrink: 0; }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 24px; font-weight: 800; color: var(--green); letter-spacing: -1px; }
.logo-tag { font-size: 10px; color: var(--text-muted); background: rgba(255,255,255,0.1); padding: 2px 6px; border-radius: 4px; }
.search-box { flex: 1; position: relative; max-width: 600px; }
.search-box input { width: 100%; padding: 10px 16px; border: 2px solid transparent; border-radius: 8px; font-size: 15px; background: rgba(255,255,255,0.1); color: #fff; transition: all 0.3s; }
.search-box input:focus { outline: none; border-color: var(--green); background: rgba(255,255,255,0.15); }
.search-box input::placeholder { color: var(--text-muted); }
.search-results { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-radius: 0 0 8px 8px; box-shadow: var(--shadow-hover); display: none; max-height: 400px; overflow-y: auto; z-index: 200; }
.search-results.active { display: block; }
.search-result-item { padding: 12px 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f0f0; color: var(--text); gap: 10px; }
.search-result-item:hover { background: #f8f9fa; }
.sr-info { flex: 1; min-width: 0; }
.sr-name { font-size: 14px; display: block; }
.sr-tags { display: flex; gap: 4px; margin-top: 3px; }
.sr-brand { font-size: 10px; font-weight: 600; color: var(--green-dark); background: #e8f8f5; padding: 1px 5px; border-radius: 3px; }
.sr-cont { font-size: 10px; color: var(--text-light); background: #f0f0f0; padding: 1px 5px; border-radius: 3px; }
.sr-action { font-size: 12px; font-weight: 600; color: var(--green); white-space: nowrap; padding: 6px 12px; border-radius: 6px; background: #e8f8f5; }
.sr-action.sr-added { color: var(--text-muted); background: #f0f0f0; }

.cart-btn { display: flex; align-items: center; gap: 6px; cursor: pointer; color: #fff; padding: 8px 14px; border-radius: 8px; background: var(--green); transition: background 0.2s; position: relative; flex-shrink: 0; }
.cart-btn:hover { background: var(--green-dark); }
.cart-icon { font-size: 20px; }
.cart-label { font-size: 13px; font-weight: 600; }
.cart-count { background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: -6px; right: -6px; transition: transform 0.2s; }

/* HERO */
.hero { margin-top: 64px; background: linear-gradient(135deg, #1e272e 0%, #2d3436 100%); padding: 50px 20px 40px; }
.hero-content { max-width: 1400px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 2.2em; font-weight: 800; color: #fff; line-height: 1.2; }
.hero .highlight { color: var(--green); }
.hero p { color: var(--text-muted); font-size: 1em; margin-top: 10px; }

/* SECTIONS */
.section { max-width: 1400px; margin: 25px auto; padding: 0 20px; }
.section-title { font-size: 1.2em; font-weight: 700; color: var(--text); margin-bottom: 14px; display: flex; align-items: baseline; gap: 8px; }
.section-title .subtitle { font-size: 0.6em; font-weight: 400; color: var(--text-light); }

/* PRODUCT SCROLL */
.products-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 4px 0 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.products-scroll::-webkit-scrollbar { display: none; }

/* PRODUCT CARD (sem preço) */
.product-card { min-width: 180px; max-width: 180px; background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px; scroll-snap-align: start; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; border: 2px solid transparent; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.product-card.in-cart { border-color: var(--green); background: #f0fff8; }
.pc-cat { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.pc-name { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.pc-meta { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.pc-brand { font-size: 10px; font-weight: 600; color: var(--green-dark); background: #e8f8f5; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.3px; }
.pc-content { font-size: 10px; color: var(--text-light); background: #f0f0f0; padding: 2px 6px; border-radius: 4px; }
.pc-actions { margin-top: auto; }
.btn-add { width: 100%; background: var(--green); color: #fff; border: none; padding: 9px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.btn-add:hover { background: var(--green-dark); }
.btn-added { width: 100%; background: #e8f8f5; color: var(--green-dark); border: 2px solid var(--green); padding: 7px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; }

/* PRODUCTS GRID */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.products-grid .product-card { min-width: auto; max-width: none; }
.category-row { margin-bottom: 8px; }

/* CART PANEL */
.cart-panel { position: fixed; top: 0; right: 0; width: 400px; height: 100vh; background: #fff; box-shadow: -4px 0 20px rgba(0,0,0,0.15); z-index: 300; display: flex; flex-direction: column; transition: transform 0.3s; }
.cart-panel.hidden { transform: translateX(100%); }
.cart-panel:not(.hidden) { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #eee; }
.cart-header h2 { font-size: 1.1em; }
.close-btn { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-light); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px; }
.empty-msg { text-align: center; color: var(--text-muted); padding: 40px 20px; line-height: 1.6; }
.cart-item { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 8px; background: #f8f9fa; margin-bottom: 6px; }
.ci-info { flex: 1; }
.ci-name { font-size: 13px; font-weight: 500; }
.ci-meta { display: flex; gap: 3px; margin-top: 2px; }
.ci-brand { font-size: 9px; font-weight: 600; color: var(--green-dark); background: #e8f8f5; padding: 1px 4px; border-radius: 3px; }
.ci-cont { font-size: 9px; color: var(--text-light); background: #eee; padding: 1px 4px; border-radius: 3px; }
.ci-qty { display: flex; align-items: center; gap: 6px; }
.ci-qty button { width: 26px; height: 26px; border: 1px solid #ddd; border-radius: 4px; background: #fff; cursor: pointer; font-size: 14px; }
.ci-qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.ci-remove { color: var(--text-muted); cursor: pointer; font-size: 16px; border: none; background: none; }
.ci-remove:hover { color: var(--red); }
.cart-footer { padding: 16px; border-top: 1px solid #eee; }
.compare-btn { width: 100%; padding: 14px; background: var(--green); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.compare-btn:hover:not(:disabled) { background: var(--green-dark); }
.compare-btn:disabled { background: #ccc; cursor: default; }

/* MODAL */
.modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal.hidden { display: none; }
.modal-content { background: #fff; border-radius: 16px; width: 100%; max-width: 750px; max-height: 85vh; overflow-y: auto; box-shadow: var(--shadow-hover); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #eee; position: sticky; top: 0; background: #fff; border-radius: 16px 16px 0 0; z-index: 1; }
.modal-body { padding: 20px; }
.overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 250; }
.overlay.hidden { display: none; }

/* COMPARISON RESULTS */
.compare-header { margin-bottom: 20px; }
.economia-destaque { background: linear-gradient(135deg, #00b894, #00a381); color: #fff; padding: 20px; border-radius: 12px; text-align: center; }
.economia-label { display: block; font-size: 13px; opacity: 0.9; margin-bottom: 4px; }
.economia-valor { display: block; font-size: 2.2em; font-weight: 800; }
.economia-desc { display: block; font-size: 12px; opacity: 0.85; margin-top: 6px; }

.store-result { border: 2px solid #eee; border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s; }
.store-result.best { border-color: var(--green); }
.store-result .sr-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; cursor: pointer; }
.store-result .sr-header:hover { background: #fafafa; }
.sr-left { display: flex; align-items: center; gap: 10px; }
.sr-rank { font-size: 1.2em; font-weight: 800; color: var(--text-muted); min-width: 28px; }
.store-result.best .sr-rank { color: var(--green); }
.sr-name { font-size: 1em; font-weight: 700; display: block; }
.sr-badge { background: var(--green); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
.sr-coverage { font-size: 11px; color: var(--text-light); }
.sr-right { text-align: right; }
.sr-total { font-size: 1.3em; font-weight: 800; color: var(--text); display: block; }
.store-result.best .sr-total { color: var(--green-dark); }
.sr-diff-val { font-size: 11px; color: var(--orange); font-weight: 600; }

/* Detail items */
.sr-detail { border-top: 1px solid #eee; padding: 10px 16px; background: #fafafa; }
.sr-items-header { display: grid; grid-template-columns: 1fr 40px 70px 80px; gap: 8px; font-size: 10px; color: var(--text-muted); text-transform: uppercase; padding-bottom: 6px; border-bottom: 1px solid #eee; margin-bottom: 4px; }
.sr-item-row { display: grid; grid-template-columns: 1fr 40px 70px 80px; gap: 8px; font-size: 12px; padding: 4px 0; border-bottom: 1px solid #f5f5f5; }
.sr-item-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sr-item-qty { text-align: center; color: var(--text-light); }
.sr-item-price { text-align: right; }
.sr-item-sub { text-align: right; font-weight: 600; }

/* FOOTER */
.footer { text-align: center; padding: 30px 20px; margin-top: 40px; color: var(--text-muted); font-size: 13px; }
.footer-sub { font-size: 11px; margin-top: 4px; }

.loading { text-align: center; padding: 40px; color: var(--text-muted); }
.loading::after { content: ''; display: inline-block; width: 20px; height: 20px; border: 3px solid var(--green); border-top: 3px solid transparent; border-radius: 50%; animation: spin 0.8s linear infinite; margin-left: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

@media (max-width: 768px) {
    .header-inner { gap: 10px; }
    .logo-tag, .cart-label { display: none; }
    .search-box { max-width: none; }
    .hero h1 { font-size: 1.5em; }
    .cart-panel { width: 100%; }
    .product-card { min-width: 155px; max-width: 155px; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
    .economia-valor { font-size: 1.8em; }
    .sr-items-header, .sr-item-row { grid-template-columns: 1fr 30px 60px 70px; font-size: 11px; }
}

/* Product image */
.pc-img { width: 100%; height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; border-radius: 8px; overflow: hidden; background: #f8f9fa; }
.pc-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pc-img-placeholder { background: linear-gradient(135deg, #e8f8f5, #dfe6e9); }
.pc-img-placeholder span { font-size: 28px; font-weight: 700; color: var(--green); opacity: 0.4; }

/* Search result thumbnail */
.sr-thumb { width: 36px; height: 36px; object-fit: contain; border-radius: 4px; flex-shrink: 0; background: #f8f9fa; }
/* C2 — UX adicionado pela fase 1 */
.scan-btn { background:transparent; border:none; font-size:22px; padding:0 10px; cursor:pointer; opacity:.7 }
.scan-btn:hover { opacity:1 }
.promo-badge { background:#ff6b00; color:#fff; padding:2px 6px; border-radius:4px; font-size:10px; font-weight:700; margin-left:6px }
.sr-badge-promo { background:#ff6b00 !important }
.sr-faltantes { background:#fff3e0; color:#7a3b00; padding:8px 12px; border-radius:6px; margin-bottom:10px; font-size:13px }
.sr-subtitle { font-size:12px; color:#666; margin-top:2px }
.aviso-falta { background:#fff3e0; color:#7a3b00; padding:12px 16px; border-radius:6px; margin-bottom:12px; font-size:13px; border-left:3px solid #ff6b00 }
.compare-header { margin-bottom:16px }
.economia-destaque { background:linear-gradient(135deg,#0a7e35,#06a443); color:#fff; padding:18px 20px; border-radius:10px; display:flex; flex-direction:column; gap:4px }
.economia-label { font-size:13px; opacity:.85 }
.economia-valor { font-size:28px; font-weight:800 }
.economia-desc { font-size:13px; opacity:.9 }
/* mobile tweaks */
@media (max-width: 640px) {
    .header-inner { flex-wrap: wrap; gap: 8px }
    .search-box { flex: 1 1 100%; order: 3; position: relative }
    .scan-btn { position:absolute; right:6px; top:50%; transform:translateY(-50%) }
    .cart-btn { margin-left:auto }
    .economia-valor { font-size:24px }
    .sr-items-header, .sr-item-row { font-size:12px }
}

/* A3 — botao contribuir NFCe */
.hero-actions { margin-top: 24px; display:flex; flex-direction:column; align-items:center; gap:8px }
.hero-btn { background:#fff; color:#0a7e35; border:2px solid #0a7e35; padding:14px 24px; border-radius:30px; font-size:16px; font-weight:600; cursor:pointer; box-shadow: 0 4px 12px rgba(10,126,53,.2); transition: all .2s }
.hero-btn:hover { background:#0a7e35; color:#fff; transform: translateY(-2px) }
.nfce-btn::before { content:""; }
.hero-sub { font-size:13px; color:rgba(255,255,255,.85); margin-top:6px }
@media (max-width: 640px) { .hero-btn { padding:12px 20px; font-size:14px } }

/* F2.5 — dropdown cidade no header */
.cidade-select { background:transparent; color:inherit; border:1px dashed currentColor; padding:2px 6px; border-radius:4px; font-size:11px; cursor:pointer; max-width:160px }
.cidade-select:focus { outline: 2px solid #fff8 }

/* Scanner NFCe — overlay fullscreen (estilo do scanner.kullen.com.br portado) */
#nfceScanOverlay {
    position: fixed; inset: 0; z-index: 9999;
    background: #1a1a2e; color: #eee;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.nfce-header {
    padding: 20px; text-align: center; background: #16213e;
    position: sticky; top: 0; z-index: 2;
}
.nfce-header h2 { font-size: 1.3em; color: #4fc3f7; margin: 0 0 4px; }
.nfce-header p { font-size: 0.85em; color: #999; margin: 0; }
.nfce-close {
    position: absolute; top: 16px; right: 16px;
    background: transparent; color: #eee; border: none;
    font-size: 22px; cursor: pointer; padding: 4px 10px;
}
#nfceReader { width: 100%; max-width: 500px; margin: 20px auto; }
#nfceReader video { border-radius: 12px; }
.nfce-result {
    width: 90%; max-width: 500px; margin: 12px auto;
    padding: 16px; background: #16213e; border-radius: 10px;
}
.nfce-url {
    word-break: break-all; font-size: 0.78em; color: #81c784;
    margin: 8px 0; padding: 10px; background: #0d1b2a; border-radius: 6px;
}
.nfce-btn {
    display: block; width: 100%; padding: 14px; margin: 8px 0;
    border: none; border-radius: 8px; font-size: 1em; font-weight: 600; cursor: pointer;
}
.nfce-btn-send { background: #4fc3f7; color: #1a1a2e; }
.nfce-btn-send:disabled { background: #555; color: #999; cursor: not-allowed; }
.nfce-btn-retry { background: #333; color: #eee; }
.nfce-status { text-align: center; padding: 10px; font-size: 0.9em; }
.nfce-status.ok { color: #81c784; }
.nfce-status.err { color: #e57373; }
.nfce-history { width: 90%; max-width: 500px; margin: 20px auto 40px; padding: 0 12px; }
.nfce-history h3 { color: #4fc3f7; margin-bottom: 10px; font-size: 0.95em; }
.nfce-hist-item {
    padding: 8px 10px; margin: 4px 0;
    background: #16213e; border-radius: 6px;
    font-size: 0.78em; color: #aaa;
}
.nfce-hist-time { color: #666; }
.nfce-hist-empty { color: #666; font-size: 0.8em; text-align: center; padding: 12px; }

/* F38 — combo/bundle pricing badges + observacao */
.combo-badge {
    background:#1565c0; color:#fff; padding:2px 6px; border-radius:4px;
    font-size:10px; font-weight:700; margin-left:6px;
}
.sr-item-combo-info {
    font-size:11px; color:#1565c0; padding:4px 8px;
    background:#e3f2fd; border-radius:4px; margin:4px 0 8px 0;
    border-left:3px solid #1565c0;
}
.sr-item-combo-aviso {
    font-size:11px; color:#bf360c; padding:4px 8px;
    background:#fbe9e7; border-radius:4px; margin:4px 0 8px 0;
    border-left:3px solid #d84315;
    font-weight:600;
}

/* F38b — dropdown agrupado de busca */
.sr-group-header {
    padding: 8px 12px 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #0a7e35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #f5f9f5;
    border-top: 1px solid #e0e7e0;
}
.sr-group-header:first-child { border-top: none; }
.sr-name b { background: rgba(10,126,53,.15); color: inherit; padding: 0 1px; border-radius: 2px; font-weight: 700; }
.sr-lojas {
    background: #eef5ee;
    color: #2e7d32;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}
.sr-thumb-blank {
    width: 32px; height: 32px;
    background: #f0f0f0;
    border-radius: 4px;
    display: inline-block;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* F39 — Auth modal + user widget */
/* ═════════════════════════════════════════════════════════════════════ */
.user-widget {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(255,255,255,0.18); color: #fff;
    font-size: 14px;
}
.user-widget.hidden { display: none; }
.user-pontos { font-weight: 700; }
.user-nome { font-weight: 500; opacity: 0.95; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-logout {
    background: rgba(255,255,255,0.2); border: 0; color: #fff;
    width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 14px;
}
.user-logout:hover { background: rgba(255,255,255,0.35); }

.auth-modal {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(8, 16, 12, 0.92); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
.auth-card {
    background: #fff; border-radius: 16px;
    width: 100%; max-width: 440px; padding: 28px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    max-height: 92vh; overflow-y: auto;
}
.auth-logo {
    font-size: 26px; font-weight: 800; color: #0a7e35;
    text-align: center; margin-bottom: 4px;
}
.auth-tag { text-align: center; color: #555; margin: 0 0 24px; font-size: 13px; }
.auth-step h3 { margin: 0 0 6px; color: #0a3a18; font-size: 20px; }
.auth-step.hidden { display: none; }
.auth-help { color: #555; font-size: 14px; line-height: 1.45; margin: 0 0 16px; }
.auth-field { display: block; margin-bottom: 12px; }
.auth-field span { display: block; font-weight: 600; color: #2c3e2f; font-size: 13px; margin-bottom: 4px; }
.auth-field input {
    width: 100%; padding: 11px 12px; border: 1.5px solid #d8dcd6;
    border-radius: 8px; font-size: 15px; font-family: inherit; box-sizing: border-box;
}
.auth-field input:focus { outline: none; border-color: #0a7e35; box-shadow: 0 0 0 3px rgba(10,126,53,0.15); }
.auth-otp-input {
    width: 100%; padding: 14px; text-align: center;
    font-size: 24px; letter-spacing: 8px; font-weight: 700;
    border: 1.5px solid #d8dcd6; border-radius: 8px; margin-bottom: 12px; box-sizing: border-box;
}
.auth-otp-input:focus { outline: none; border-color: #0a7e35; box-shadow: 0 0 0 3px rgba(10,126,53,0.15); }
.auth-err { color: #c0392b; font-size: 13px; min-height: 18px; margin-bottom: 8px; }
.auth-btn {
    display: block; width: 100%; padding: 12px; margin-bottom: 8px;
    border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer;
    font-family: inherit; box-sizing: border-box; border: 0;
}
.auth-btn.primary { background: #0a7e35; color: #fff; }
.auth-btn.primary:hover { background: #096b2d; }
.auth-btn.ghost { background: #fff; color: #0a7e35; border: 1.5px solid #0a7e35; }
.auth-btn.ghost:hover { background: #f0f7f2; }
.auth-btn.link { background: transparent; color: #555; font-weight: 500; padding: 8px; }
.auth-btn.link:hover { color: #0a7e35; }
.auth-foot { font-size: 11px; color: #888; text-align: center; margin: 16px 0 0; line-height: 1.4; }

@media (max-width: 480px) {
    .auth-card { padding: 22px 18px; }
    .user-nome { display: none; }
}


/* ───── Feed: bloco de preço (promo destacado + até R$X riscado) ───── */
.pc-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 4px 0 8px;
    flex-wrap: wrap;
}
.pc-price-promo {
    font-size: 20px;
    font-weight: 700;
    color: #0a6b2a;
    letter-spacing: -0.5px;
}
.pc-price-ate {
    font-size: 13px;
    color: #888;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    font-weight: 500;
}
