/* ═══════════════════════════════════════════════════════
   Five Solutions — Shared Styles v4
   Checkout Modal + Cart Widget + Common Components
   ═══════════════════════════════════════════════════════ */

:root {
  --navy-900: #0A1628; --navy-800: #0F1D32; --navy-700: #162340; --navy-600: #1E3055;
  --accent: #0EA5B0; --accent-light: #2DD4BF; --accent-glow: rgba(14,165,176,0.12);
  --accent-gradient: linear-gradient(135deg,#1B6B8A,#0EA5B0,#2DD4BF);
  --green: #10B981; --green-hover: #059669; --orange: #F59E0B;
  --white: #FFFFFF; --text: #F0F6FC; --text2: #94A3B8; --text3: #5E7290;
  --font-h: 'Plus Jakarta Sans', sans-serif; --font: 'DM Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.3); --border: 1px solid rgba(255,255,255,0.06);
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px;
  --ease: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); background: var(--navy-900); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.ctn { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── CURRENCY TOGGLE ─────────────────────────────── */
body.soles .price-d { display: none; }
body.soles .price-s { display: block; }
.price-s { display: none; }

/* ── NAV ────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,22,40,0.92); backdrop-filter: blur(20px); border-bottom: var(--border); transition: var(--ease); }
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
nav .ctn { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 46px; height: 28px; object-fit: contain; border-radius: 0; filter: drop-shadow(0 0 10px rgba(14,165,176,0.16)); opacity: .98; }
.logo span { font-family: var(--font-h); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; }
.logo small { display:block; font-size: .62rem; color: var(--text3); margin-top: -4px; }
.nav-l { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-l a { font-size: 0.88rem; font-weight: 500; color: var(--text2); transition: var(--ease); }
.nav-l a:hover { color: var(--white); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 9px 22px; border-radius: var(--r-sm); font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent-light) !important; }
.mob-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mob-btn span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* ── SECTIONS ───────────────────────────────────── */
.sec { padding: 80px 0; }
.sec-dark { background: var(--navy-800); }
.sec-hdr { text-align: center; margin-bottom: 48px; }
.sec-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px; }
.sec-tag::before, .sec-tag::after { content: ''; width: 20px; height: 1px; background: var(--accent); opacity: 0.4; }
.sec-title { font-family: var(--font-h); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.sec-sub { font-size: 0.95rem; color: var(--text2); max-width: 550px; margin: 0 auto; }

/* ── CURRENCY TOGGLE WIDGET ─────────────────────── */
.cur-tog { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 40px; }
.cur-tog span { font-size: 0.88rem; color: var(--text3); font-weight: 500; transition: var(--ease); }
.cur-tog span.on { color: var(--white); font-weight: 700; }
.tog-sw { width: 48px; height: 26px; background: var(--navy-600); border-radius: 100px; cursor: pointer; position: relative; border: none; }
.tog-sw::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: var(--accent); border-radius: 50%; transition: var(--ease); }
.tog-sw.on::after { left: 25px; }

/* ── TRUST BAR ──────────────────────────────────── */
.tbar { border-top: var(--border); border-bottom: var(--border); padding: 24px 0; background: rgba(15,29,50,0.5); }
.tbar .ctn { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.tbar-i { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text3); font-weight: 500; }

/* ── STEPS ──────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 14%; right: 14%; height: 2px; background: linear-gradient(90deg,var(--accent),var(--accent-light),var(--accent)); opacity: 0.2; }
.step { text-align: center; position: relative; z-index: 1; }
.step-n { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-h); font-weight: 700; font-size: 1.1rem; background: var(--navy-900); border: 2px solid var(--accent); color: var(--accent-light); }
.step-t { font-family: var(--font-h); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.step-d { font-size: 0.82rem; color: var(--text3); line-height: 1.5; }

/* ── TESTIMONIALS ───────────────────────────────── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.test-card { background: var(--navy-700); border: var(--border); border-radius: var(--r-lg); padding: 28px 24px; transition: var(--ease); }
.test-card:hover { border-color: rgba(14,165,176,0.15); }
.test-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.test-txt { font-size: 0.88rem; color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.test-auth { display: flex; align-items: center; gap: 10px; }
.test-av { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-gradient); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-weight: 700; font-size: 0.8rem; color: var(--white); flex-shrink: 0; }
.test-name { font-weight: 600; font-size: 0.85rem; }
.test-src { font-size: 0.72rem; color: var(--text3); }
.test-src::before { content: '✓ '; color: var(--green); }
.fb-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 28px; background: #1877F2; color: var(--white); border-radius: var(--r-md); font-weight: 600; font-size: 0.9rem; transition: var(--ease); }
.fb-btn:hover { background: #1565D8; transform: translateY(-2px); }

/* ── FAQ ────────────────────────────────────────── */
.faq-grid { max-width: 750px; margin: 0 auto; }
.faq-i { background: var(--navy-800); border: var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 8px; transition: var(--ease); }
.faq-i:hover { border-color: rgba(14,165,176,0.12); }
.faq-q { width: 100%; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; background: none; border: none; color: var(--text); font-family: var(--font); font-size: 0.9rem; font-weight: 600; cursor: pointer; text-align: left; gap: 12px; }
.faq-t { width: 24px; height: 24px; border-radius: 50%; background: var(--navy-600); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: var(--ease); color: var(--accent-light); }
.faq-i.open .faq-t { background: var(--accent); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-i.open .faq-a { max-height: 300px; }
.faq-a-in { padding: 0 20px 16px; font-size: 0.85rem; color: var(--text2); line-height: 1.7; }

/* ── CTA FINAL ──────────────────────────────────── */
.cta-final { padding: 60px 0; background: linear-gradient(170deg,var(--navy-700),var(--navy-900)); text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 500px; height: 250px; background: radial-gradient(ellipse,rgba(14,165,176,0.06) 0%,transparent 70%); pointer-events: none; }
.cta-final h2 { font-family: var(--font-h); font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; margin-bottom: 12px; position: relative; }
.cta-final p { font-size: 0.95rem; color: var(--text2); margin-bottom: 24px; position: relative; }
.cta-big { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: var(--green); color: var(--white); border-radius: var(--r-md); font-weight: 700; font-size: 1.05rem; transition: var(--ease); box-shadow: 0 4px 18px rgba(16,185,129,0.3); position: relative; }
.cta-big:hover { background: var(--green-hover); transform: translateY(-2px); }
.cta-sub { margin-top: 16px; font-size: 0.82rem; color: var(--text3); position: relative; }
.cta-sub a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 2px; }
.trust-block { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; max-width: 900px; margin-left: auto; margin-right: auto; }
.trust-item { text-align: center; padding: 16px; }
.trust-item .ti-icon { font-size: 1.6rem; margin-bottom: 8px; }
.trust-item .ti-title { font-family: var(--font-h); font-weight: 700; font-size: 0.88rem; margin-bottom: 4px; }
.trust-item .ti-desc { font-size: 0.78rem; color: var(--text3); line-height: 1.4; }

/* ── SOCIAL ─────────────────────────────────────── */
.social-row { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.soc-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: rgba(255,255,255,0.04); border: var(--border); border-radius: var(--r-sm); font-size: 0.82rem; font-weight: 500; color: var(--text3); transition: var(--ease); }
.soc-link:hover { color: var(--white); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.07); }

/* ── FOOTER ─────────────────────────────────────── */
footer { border-top: var(--border); padding: 24px 0; }
footer .ctn { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.copy { font-size: 0.78rem; color: var(--text3); }
.f-links { list-style: none; display: flex; gap: 20px; }
.f-links a { font-size: 0.78rem; color: var(--text3); transition: var(--ease); }
.f-links a:hover { color: var(--white); }

/* ── WA FLOAT ───────────────────────────────────── */
.wa-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-tip { background: var(--navy-700); border: var(--border); padding: 8px 14px; border-radius: var(--r-md); font-size: 0.78rem; color: var(--text2); white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--ease); pointer-events: none; }
.wa-wrap:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-btn { width: 54px; height: 54px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: var(--ease); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,0.5); }

/* ── ANIMATIONS ─────────────────────────────────── */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.vis { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.5); } }

/* ══════════════════════════════════════════════════
   CHECKOUT MODAL
   ══════════════════════════════════════════════════ */
.ck-overlay { position: fixed; inset: 0; background: rgba(5,12,25,0.85); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.ck-overlay.open { opacity: 1; pointer-events: all; }
.ck-modal { background: var(--navy-800); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.ck-x { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.06); border: none; color: var(--text2); width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.ck-x:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.ck-hdr { padding: 28px 28px 0; }
.ck-hdr h2 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.ck-pi { font-size: 0.82rem; color: var(--accent-light); font-weight: 600; background: var(--accent-glow); display: inline-block; padding: 4px 10px; border-radius: 100px; margin-top: 4px; }
.ck-body { padding: 20px 28px 28px; }
.ck-sbar { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.ck-sb { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--text3); }
.ck-sb .n { width: 22px; height: 22px; border-radius: 50%; background: var(--navy-600); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; }
.ck-sb.on { color: var(--accent-light); }
.ck-sb.on .n { background: var(--accent); color: white; }
.ck-sbl { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.ck-step { display: none; }
.ck-step.active { display: block; }
.ck-thanks { display: none; }
.ck-thanks.active { display: block; }
.ck-form { display: flex; flex-direction: column; gap: 14px; }
.ck-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ck-g { display: flex; flex-direction: column; gap: 5px; }
.ck-g label { font-size: 0.78rem; font-weight: 600; color: var(--text3); }
.rq { color: var(--accent); }
.ck-in { background: var(--navy-700); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-sm); padding: 10px 12px; color: var(--text); font-family: var(--font); font-size: 0.88rem; transition: var(--ease); width: 100%; }
.ck-in:focus { outline: none; border-color: var(--accent); background: rgba(14,165,176,0.05); }
.qty-box { display:flex; align-items:center; gap:8px; }
.qty-btn { width:42px; height:42px; border:none; border-radius: var(--r-sm); background: var(--navy-600); color: var(--white); font-size: 1.1rem; font-weight: 800; cursor:pointer; transition: var(--ease); flex-shrink:0; }
.qty-btn:hover { background: var(--accent); }
.qty-input { text-align:center; font-weight:700; }
@media (max-width: 720px) { .qty-box { gap:6px; } .qty-btn { width:40px; height:40px; } }
.ck-btn { display: block; width: 100%; padding: 13px; text-align: center; border-radius: var(--r-md); font-family: var(--font); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: var(--ease); border: none; }
.ck-btn-g { background: var(--green); color: var(--white); box-shadow: 0 4px 12px rgba(16,185,129,0.3); }
.ck-btn-g:hover { background: var(--green-hover); transform: translateY(-1px); }
.pp-summary { background: var(--navy-700); border-radius: var(--r-md); padding: 16px; margin-bottom: 16px; }
.pp-amount { font-family: var(--font-h); font-size: 1.8rem; font-weight: 800; color: var(--accent-light); }
.pp-plan { font-size: 0.8rem; color: var(--text3); margin-top: 2px; }
.pp-desc { font-size: 0.78rem; color: var(--text3); margin-top: 8px; }
.pp-loading { text-align: center; padding: 20px; color: var(--text3); font-size: 0.85rem; }
.ck-note { font-size: 0.75rem; color: var(--text3); text-align: center; margin-top: 12px; }
.bank-box { background: var(--navy-700); border-radius: var(--r-md); padding: 16px; margin-bottom: 14px; }
.bank-box h4 { font-family: var(--font-h); font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.bank-sub { font-size: .77rem; color: var(--text3); margin-bottom: 12px; line-height: 1.5; }
.bank-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.bank-row:last-child { border: none; }
.bank-row .lbl { font-size: 0.75rem; color: var(--text3); }
.bank-row .val { font-size: 0.88rem; font-weight: 700; display: flex; align-items: center; gap: 8px; text-align: right; }
.bank-logos { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.bank-logos img { height: 28px; border-radius: 8px; background: rgba(255,255,255,0.04); padding: 4px 8px; border: 1px solid rgba(255,255,255,0.06); }
.pp-fallback-actions { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:12px; }
.pp-fallback-actions a, .pp-fallback-actions button { background: var(--navy-700); color: var(--white); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-sm); padding: 10px 12px; font-weight: 700; cursor:pointer; font-family: var(--font); font-size:.82rem; }
.pp-fallback-actions a { text-decoration:none; }
.pp-fallback-actions button:hover, .pp-fallback-actions a:hover { border-color: var(--accent); background: var(--accent-glow); }
.copy-btn { background: var(--navy-600); border: none; color: var(--text2); padding: 3px 8px; border-radius: 4px; font-size: 0.7rem; cursor: pointer; transition: var(--ease); }
.copy-btn:hover, .copy-btn.ok { background: var(--green); color: white; }
.file-zone { border: 1px dashed rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 16px; text-align: center; cursor: pointer; transition: var(--ease); margin-bottom: 12px; }
.file-zone:hover { border-color: var(--accent); background: var(--accent-glow); }
.file-zone input { display: none; }
.file-name { font-size: 0.78rem; color: var(--accent-light); margin-top: 4px; display: none; }
.tax-row { display: flex; gap: 8px; margin-bottom: 12px; }
.tax-opt { flex: 1; padding: 8px; text-align: center; background: var(--navy-700); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-sm); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--ease); }
.tax-opt.sel { border-color: var(--accent); color: var(--accent-light); background: var(--accent-glow); }
.tx-fields { display: none; }
.tx-fields.show { display: block; }
.thanks-ico { font-size: 2.5rem; margin-bottom: 12px; }
.thanks-title { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.thanks-txt { font-size: 0.85rem; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.wa-link { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; background: #25D366; color: white; border-radius: var(--r-md); font-weight: 700; font-size: 0.9rem; transition: var(--ease); }
.wa-link:hover { background: #20bc5a; transform: translateY(-1px); }
.order-details { background: var(--navy-700); border-radius: var(--r-md); padding: 14px; margin-bottom: 16px; font-size: 0.83rem; color: var(--text2); line-height: 1.8; }
.bank-logos { display: flex; gap: 8px; margin-bottom: 12px; }
.bank-logos img { height: 28px; border-radius: 4px; }

/* ══════════════════════════════════════════════════
   CART WIDGET
   ══════════════════════════════════════════════════ */
#cartWidget { position: fixed; bottom: 90px; right: 24px; z-index: 998; background: var(--navy-800); border: 1px solid rgba(14,165,176,0.25); border-radius: var(--r-lg); padding: 16px; width: 320px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); display: none; }
.cart-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.cart-row { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; }
.cart-name { flex: 1; color: var(--text2); }
.cart-qty { display: flex; align-items: center; gap: 4px; }
.cart-qty button { background: var(--navy-600); border: none; color: var(--text); width: 20px; height: 20px; border-radius: 4px; cursor: pointer; font-size: 0.9rem; line-height: 1; }
.cart-qty span { font-weight: 700; min-width: 16px; text-align: center; font-size: 0.85rem; }
.cart-price { color: var(--accent-light); font-weight: 600; white-space: nowrap; }
.cart-del { background: none; border: none; color: var(--text3); cursor: pointer; font-size: 0.75rem; padding: 2px 4px; }
.cart-del:hover { color: #ef4444; }
.cart-total { font-family: var(--font-h); font-size: 1rem; font-weight: 700; text-align: right; margin-bottom: 10px; color: var(--white); }
.cart-cta { display: block; width: 100%; padding: 11px; background: var(--green); color: white; border: none; border-radius: var(--r-md); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: var(--ease); }
.cart-cta:hover { background: var(--green-hover); }

/* ══════════════════════════════════════════════════
   MODALS (Terms/Privacy)
   ══════════════════════════════════════════════════ */
.m-overlay { display: none; position: fixed; inset: 0; background: rgba(5,12,25,0.85); z-index: 3000; align-items: center; justify-content: center; padding: 16px; }
.m-overlay[style*="flex"] { display: flex; }
.m-box { background: var(--navy-800); border: var(--border); border-radius: var(--r-xl); max-width: 500px; width: 100%; padding: 32px; position: relative; max-height: 80vh; overflow-y: auto; }
.m-box h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.m-box p { font-size: 0.85rem; color: var(--text2); line-height: 1.7; margin-bottom: 10px; }
.m-cls { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--text3); font-size: 1.2rem; cursor: pointer; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-l { display: none; }
  .mob-btn { display: block; }
  .nav-l.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy-900); padding: 24px; gap: 20px; border-bottom: var(--border); }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .trust-block { grid-template-columns: 1fr 1fr; }
  .ck-row { grid-template-columns: 1fr; }
  #cartWidget { width: calc(100vw - 48px); right: 24px; }
}
@media (max-width: 480px) {
  .trust-block { grid-template-columns: 1fr; }
}
