/* =============================================================
   NitroPure DEF — shared design system
   Brand palette extracted from Kalada NitroPure DEF data sheet
   ============================================================= */

:root {
  /* Brand colors */
  --teal: #047EAC;
  --teal-dark: #035f82;
  --green: #82BC41;
  --green-dark: #6ba233;
  --gray: #6D6E71;
  --ink: #221F20;
  --light-blue: #D9ECF6;
  --light-blue-soft: #EEF7FC;
  --cream: #F7E9DD;
  --white: #FFFFFF;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--light-blue-soft);
  --text: var(--ink);
  --text-muted: var(--gray);
  --border: #E1E8ED;

  /* Type */
  --font-latin: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
  --font-latin-body: 'Inter', 'Segoe UI', sans-serif;
  --font-arabic: 'Cairo', 'Tahoma', sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(4, 126, 172, 0.10);
  --shadow-sm: 0 2px 10px rgba(34, 31, 32, 0.06);
}

/* =============================================================
   Reset & base
   ============================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-latin-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body {
  font-family: var(--font-arabic);
  line-height: 1.9;
}

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

a { color: var(--teal); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-latin);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 {
  font-family: var(--font-arabic);
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

p { color: var(--text-muted); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

@media (max-width: 720px) {
  section { padding: 48px 0; }
}

/* =============================================================
   RTL handling
   ============================================================= */
[dir="rtl"] .ltr-only { display: none; }
[dir="ltr"] .rtl-only { display: none; }

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-latin);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}

html[lang="ar"] .btn { font-family: var(--font-arabic); font-weight: 700; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-accent {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(130, 188, 65, 0.25);
}
.btn-accent:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-block { width: 100%; }

/* =============================================================
   Header / Nav
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gray);
}
html[lang="ar"] .brand { font-family: var(--font-arabic); }

.brand img { height: 38px; width: auto; }

.brand .product-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 2px 10px;
  letter-spacing: 0.04em;
  margin-inline-start: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
}
.lang-switch:hover { border-color: var(--teal); color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    gap: 16px;
  }
  .nav { position: relative; }
  .nav-cta .btn span.btn-text-long { display: none; }
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-soft) 55%, var(--white) 100%);
  overflow: hidden;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
  .hero-visual { order: -1; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(4,126,172,0.08);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
}
html[lang="ar"] .eyebrow { font-family: var(--font-arabic); letter-spacing: 0; text-transform: none; }

.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--teal); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray);
  box-shadow: var(--shadow-sm);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================================
   SCR diagram (hero illustration)
   ============================================================= */
.scr-diagram { width: 100%; max-width: 460px; }
.scr-diagram .label {
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 13px;
  fill: var(--ink);
}
html[lang="ar"] .scr-diagram .label { font-family: var(--font-arabic); }

/* =============================================================
   Explainer (two-column content + diagram)
   ============================================================= */
.explainer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}
@media (max-width: 900px) {
  .explainer { grid-template-columns: 1fr; }
  .explainer .hero-visual { order: -1; margin-bottom: 8px; }
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.check-list li {
  position: relative;
  padding-inline-start: 32px;
  color: var(--text-muted);
  font-size: 1.02rem;
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================================
   Section headers
   ============================================================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .eyebrow { display: inline-flex; }
.section-head p { font-size: 1.05rem; }

/* =============================================================
   Value prop / feature cards
   ============================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue-soft);
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card p { font-size: 0.95rem; margin: 0; }

/* alt background section */
.alt { background: var(--bg-alt); }

/* =============================================================
   Applications grid (icon list)
   ============================================================= */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .app-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .app-grid { grid-template-columns: 1fr; } }

.app-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.app-item .icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--light-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-item h4 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-latin); }
html[lang="ar"] .app-item h4 { font-family: var(--font-arabic); }
.app-item p { font-size: 0.88rem; margin: 0; }

/* =============================================================
   Specs table
   ============================================================= */
.specs-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
table.specs { width: 100%; border-collapse: collapse; }
table.specs th, table.specs td {
  text-align: start;
  padding: 14px 22px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
table.specs th {
  background: var(--cream);
  font-family: var(--font-latin);
  font-weight: 700;
  color: var(--ink);
  width: 45%;
}
html[lang="ar"] table.specs th { font-family: var(--font-arabic); }
table.specs tr:last-child td, table.specs tr:last-child th { border-bottom: none; }
table.specs td { color: var(--text-muted); font-weight: 500; }

/* =============================================================
   Stats / market band
   ============================================================= */
.stats-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
}
.stats-band h2 { color: var(--white); }
.stats-band p.lead { color: rgba(255,255,255,0.85); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr; } }
.stat .num {
  font-family: var(--font-latin);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  display: block;
}
html[lang="ar"] .stat .num { font-family: var(--font-arabic); }
.stat .desc { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-top: 4px; }

/* =============================================================
   Steps (how it works)
   ============================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-latin);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
html[lang="ar"] .step .step-num { font-family: var(--font-arabic); }
.step h3 { margin-bottom: 6px; }
.step p { font-size: 0.95rem; }

/* =============================================================
   Forms
   ============================================================= */
.form-section { background: var(--bg-alt); }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 640px) { .form-card { padding: 24px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field .required { color: var(--teal); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-foot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-disclaimer { font-size: 0.82rem; color: var(--text-muted); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success .icon-big {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 16px;
}
.form-card.submitted form { display: none; }

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--green); }
.site-footer .brand { color: var(--white); margin-bottom: 12px; }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* =============================================================
   Utilities
   ============================================================= */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.cta-band {
  background: var(--green);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 24px; }

/* =============================================================
   Trust signals & verified badges
   ============================================================= */
.badge-highlight {
  background: rgba(130,188,65,0.15);
  font-weight: 700;
  border: 1.5px solid rgba(130,188,65,0.35);
}
.badge-highlight .dot { background: var(--green); }

/* =============================================================
   DEF Calculator — interactive slider
   ============================================================= */
.calc-widget {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-top: 2.5rem;
}
.calc-widget h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}
.calc-val-input {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.calc-val-input input {
  font-family: var(--font-latin);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal);
  border: none;
  border-bottom: 2px solid var(--border);
  background: transparent;
  width: 7ch;
  text-align: end;
  padding: 2px 0;
  -moz-appearance: textfield;
}
.calc-val-input input::-webkit-inner-spin-button,
.calc-val-input input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.calc-val-input input:focus { outline: none; border-bottom-color: var(--teal); }
.calc-val-input span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}
html[lang="ar"] .calc-val-input input { font-family: var(--font-arabic); text-align: start; }
.calc-hint {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--teal);
  margin-top: 2px;
  white-space: nowrap;
  opacity: 0.7;
}

/* Range slider track + thumb */
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--teal) var(--fill, 0%), var(--border) var(--fill, 0%));
  outline: none;
  cursor: pointer;
  margin: 0;
}
html[dir="rtl"] .calc-range {
  background: linear-gradient(to left, var(--teal) var(--fill, 0%), var(--border) var(--fill, 0%));
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(4,126,172,0.35);
  cursor: grab;
}
.calc-range::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(4,126,172,0.35);
  cursor: grab;
}
.calc-range:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.15); }
.calc-range:active::-moz-range-thumb { cursor: grabbing; transform: scale(1.15); }

.calc-slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Result cards */
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.calc-result-card {
  background: #e8f5fb;
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.calc-result-card .calc-num {
  font-family: var(--font-latin);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--teal);
  display: block;
  line-height: 1.2;
}
html[lang="ar"] .calc-result-card .calc-num { font-family: var(--font-arabic); }
.calc-result-card .calc-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Pack recommendation */
.calc-pack {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(130,188,65,0.1);
  border: 1.5px solid rgba(130,188,65,0.3);
  border-radius: var(--radius-sm);
}
.calc-pack-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.calc-pack-text {
  font-size: 0.95rem;
  line-height: 1.5;
}
.calc-pack-text strong { color: var(--green-dark); }

/* CTA button inside calculator */
.calc-cta {
  margin-top: 20px;
  text-align: center;
}
.calc-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.calc-cta .btn::after {
  content: '\2192';
  font-size: 1.1em;
}
html[dir="rtl"] .calc-cta .btn::after {
  content: '\2190';
}

/* Low-volume warning */
.calc-low-warn {
  margin-top: 16px;
  padding: 14px 18px;
  background: #fff3cd;
  border-inline-start: 4px solid #e6a817;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .calc-results { grid-template-columns: 1fr; }
  .calc-widget { padding: 24px 18px; }
  .calc-range::-webkit-slider-thumb { width: 34px; height: 34px; }
  .calc-range::-moz-range-thumb { width: 30px; height: 30px; }
}

/* =============================================================
   Floating WhatsApp button
   ============================================================= */
.wa-float {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
@media (max-width: 560px) {
  .wa-float { width: 54px; height: 54px; inset-block-end: 18px; inset-inline-end: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
}

.btn-verified::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  margin-inline-end: 8px;
  flex-shrink: 0;
}
