@import url('https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --sticky-top: 72px;
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --brand: #d71920;
  --line: #e5e7eb;
  --chip: #f3f4f6;
  --card: #ffffff;
  --bg-elev: #ffffff;
  --bg-elev-2: #ffffff;
  --accent: #16a34a;
  --danger: #ef4444;
  --warning: #f59e0b;
  --diesel-color: #3b82f6;
  --jet-color: #10b981;
  --fueloil-color: #f59e0b;
  --font-heading: 'Cuprum', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

* { 
  box-sizing: border-box; 
  max-width: 100%;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.card h4,
.brandline .t1,
.nav button,
.sidebar .nav-dropdown-trigger,
.topnav .nav button,
.topnav .nav-dropdown-trigger,
.lp-toc h2,
.lp-section h2,
.lp-section h3,
.lp-faq-item h3,
.why-work-item strong,
.footerstrip,
.btn {
  font-family: var(--font-heading);
}

.app {
  display: grid;
  grid-template-columns: 1fr 280px;
  min-height: 100vh;
}

.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sidebar {
  background: var(--bg);
  border-left: 1px solid var(--line);
  padding: 18px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Header: topstrip + horizontal nav, sticky together */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--brand);
}

.topstrip {
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 72px;
  overflow: hidden;
}

.topnav {
  background: var(--brand);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 16px;
}

.nav-horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.topnav .nav button,
.topnav .nav-dropdown-trigger {
  width: auto;
  min-width: auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.topnav .nav button:hover,
.topnav .nav-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
}

.topnav .nav button.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.topnav .nav-dropdown-arrow {
  color: rgba(255, 255, 255, 0.9);
}

.topnav .nav-dropdown {
  position: relative;
}

.topnav .nav-dropdown-menu {
  list-style: none;
  margin: 4px 0 0;
  padding: 6px 0;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  min-width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
}

.topnav .nav-dropdown-open .nav-dropdown-menu,
.topnav .nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.topnav .nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.topnav .nav-dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--brand);
}

.brandline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.brandline img {
  max-height: 64px;
  width: auto;
  padding: 0;
  background: transparent;
  object-fit: cover;
  display: block;
  margin-top: -6px;
}

.brandline .t1 {
  font-weight: 800;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brandline .t2 {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.1;
}

.topbar-center {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.topbar-right {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.search {
  flex: 1;
  position: relative;
  max-width: 520px;
  width: 100%;
  min-width: 160px;
}

.search input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  outline: none;
}

.search input::placeholder { color: rgba(255, 255, 255, 0.85); }

.search .icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}

.btn {
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.btn:hover { filter: brightness(0.98); }

.btn.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn.brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.nav button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
}

.nav button.active {
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.10);
}

.nav button:hover { background: #fafafa; }

/* Sidebar: Products dropdown — same look as nav buttons, menu toggles on click */
.sidebar .nav-dropdown-trigger {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}
.sidebar .nav-dropdown-trigger:hover { background: #fafafa; }
.sidebar .nav-dropdown-menu {
  list-style: none;
  margin: 4px 0 0;
  padding: 6px 0;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: none;
  position: relative;
  z-index: 10;
}
.sidebar .nav-dropdown-open .nav-dropdown-menu { display: block; }
.sidebar .nav-dropdown-menu a,
.sidebar .nav-dropdown-menu a:visited {
  display: block;
  padding: 8px 12px 8px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.sidebar .nav-dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--brand);
}

.version {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  padding: 10px 10px 6px;
  border-top: 1px dashed var(--line);
  line-height: 1.4;
}

.page { padding: 16px; }

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
  min-width: 0;
}

.kpi {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.kpi h3 {
  margin: 0 0 6px 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.kpi .val {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.spec {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.badge {
  font-size: 12px;
  padding: 4px 9px;
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
  font-weight: 800;
}

.badge.ok,
.badge.up {
  color: #065f46;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.badge.down {
  color: #991b1b;
  background: #fecaca;
  border-color: #fca5a5;
}

.badge.warn {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

.section h4 {
  margin: 0 0 10px 0;
  font-weight: 900;
}

.table-wrapper {
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}

.table th,
.table td {
  border-top: 1px solid var(--line);
  padding: 12px 8px;
  vertical-align: middle;
}

.table tbody tr:hover { background: #fafafa; }

.tab { display: none; }
.tab.active { display: block; }

.news-item {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 14px;
  margin-bottom: 12px;
}

.news-item .date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.formgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.formgrid label {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.formgrid input,
.formgrid textarea {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px;
  margin-top: 6px;
  outline: none;
}

.formgrid input:focus,
.formgrid textarea:focus {
  border-color: rgba(215, 25, 32, 0.45);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.12);
}

.actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  background: #111827;
  color: #fff;
  border: 1px solid #111827;
  padding: 10px 14px;
  display: none;
  z-index: 100;
  font-weight: 800;
}

svg.icon { width: 18px; height: 18px; }

.footerstrip {
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  margin-top: auto;
}

.prices-mobile-cards {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px;
}

.price-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.price-card-title {
  font-weight: 900;
  font-size: 18px;
  color: var(--text);
}

.price-card-change {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.price-card-change.up {
  color: #065f46;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.price-card-change.down {
  color: #991b1b;
  background: #fecaca;
  border-color: #fca5a5;
}

.price-card-spec {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-card-value {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}

.price-card-date {
  font-size: 12px;
  color: var(--muted);
}


@media (max-width: 980px) {
  .app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .header-wrap {
    overflow-x: auto;
  }

  .topstrip {
    height: auto !important;
    min-height: 72px;
    padding: 8px 12px !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto;
    gap: 8px;
  }

  .topnav {
    padding: 0 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .topnav .nav {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .brandline {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
  }

  .brandline img {
    max-height: 48px;
    margin-top: 0;
  }

  .brandline .t1 {
    font-size: 14px;
    line-height: 1.3;
  }

  .brandline .t2 {
    font-size: 11px;
  }

  .topbar-center {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    margin-top: 4px;
  }

  .topbar-right {
    position: absolute;
    top: 8px;
    right: 12px;
    gap: 4px;
  }

  .topbar-right .btn {
    padding: 6px 10px;
    font-size: 13px;
    min-width: auto;
  }

  .search {
    max-width: 100%;
  }

  .search input {
    padding: 8px 14px 8px 34px;
    font-size: 14px;
  }

  .search .icon {
    left: 8px;
    width: 16px;
    height: 16px;
  }

  .page {
    padding: 12px !important;
    overflow-x: hidden;
  }

  .grid {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .grid .card {
    width: 100% !important;
    margin: 0 !important;
    grid-column: span 1 !important;
  }

  .kpi .val {
    font-size: 24px !important;
  }

  .spec {
    font-size: 11px;
  }

  .table-wrapper {
    overflow-x: auto;
    margin: 0 -12px;
    padding: 0 12px;
  }

  table.table {
    min-width: 500px;
    font-size: 13px;
  }

  .table td {
    padding: 10px 6px;
    white-space: nowrap;
  }

  .news-item {
    padding: 12px;
    margin-bottom: 10px;
  }

  .formgrid {
    gap: 12px;
  }

  .formgrid input,
  .formgrid textarea {
    padding: 8px;
    font-size: 16px;
  }

  .sidebar {
    position: relative !important;
    height: auto !important;
    padding: 12px !important;
    border-top: 1px solid var(--line);
    border-left: none;
    order: 2;
    overflow-x: auto;
  }

  .sidebar > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .topnav .nav button,
  .topnav .nav-dropdown-trigger {
    white-space: nowrap;
    min-width: max-content;
    padding: 10px 14px;
    font-size: 13px;
    justify-content: center;
    text-align: center;
  }

  .sidebar .btn.brand {
    align-self: flex-start;
    margin-top: 0;
  }

  .footerstrip {
    padding: 10px 12px;
    font-size: 12px;
    text-align: center;
  }

  .version {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 11px;
  }

  .card h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  p {
    font-size: 14px;
    line-height: 1.5;
  }

  .prices-mobile-cards {
    display: flex !important;
  }
  
  #prices .table-wrapper {
    display: none !important;
  }
  
  .price-card {
    padding: 14px;
  }
  
  .price-card-value {
    font-size: 28px;
  }
  
  .price-card-title {
    font-size: 16px;
  }

}

@media (max-width: 480px) {
  .topstrip {
    padding: 6px 10px !important;
  }

  .brandline img {
    max-height: 40px;
  }

  .brandline .t1 {
    font-size: 13px;
  }

  .topbar-right {
    top: 6px;
    right: 10px;
  }

  .topbar-right .btn {
    padding: 5px 8px;
    font-size: 12px;
  }

  .btn.ghost {
    min-width: 40px;
    padding: 5px;
  }

  #langToggle {
    min-width: 36px;
  }

  .page {
    padding: 10px !important;
  }

  .kpi .val {
    font-size: 22px !important;
  }

  .badge {
    font-size: 11px;
    padding: 3px 7px;
  }

  .sidebar {
    padding: 10px !important;
  }

  .nav button {
    padding: 8px 12px;
    font-size: 12px;
  }

  .footerstrip {
    padding: 8px 10px;
    font-size: 11px;
  }

  .price-card {
    padding: 12px;
  }
  
  .price-card-value {
    font-size: 24px;
  }
  
  .price-card-title {
    font-size: 15px;
  }

}

.card,
.news-item,
.nav button,
.btn,
.badge,
.search input,
.formgrid input,
.formgrid textarea,
.toast,
.brandline img,
.price-card,
.price-card-change {
  border-radius: 0 !important;
}

/* Why work with us — value strip */
.why-work-with-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 12px;
}
.why-work-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--chip);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.why-work-icon {
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.9;
}
.why-work-item strong {
  font-size: 15px;
  color: var(--text);
}
.why-work-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
@media (max-width: 768px) {
  .why-work-with-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-work-with-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Product catalog accordions & chips ── */
.cat-accordion {
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 8px;
}
.cat-accordion:last-of-type { margin-bottom: 0; }
.cat-accordion[open] { border-color: var(--brand); }

.cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  list-style: none;
  background: var(--chip);
  border-radius: 5px;
}
.cat-header::-webkit-details-marker { display: none; }
.cat-header::after {
  content: "▸";
  font-size: 12px;
  color: var(--muted);
  transition: transform .15s;
}
.cat-accordion[open] > .cat-header::after { transform: rotate(90deg); }
.cat-accordion[open] > .cat-header {
  border-radius: 5px 5px 0 0;
  color: var(--brand);
}

.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 14px;
}

.cat-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 4px;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 0;
  transition: opacity .15s, box-shadow .15s;
}
.cat-chip:hover {
  opacity: .85;
  box-shadow: 0 2px 8px rgba(215,25,32,.3);
}
.cat-chip strong {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.cat-chip span {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  line-height: 1.3;
}
@media (max-width: 480px) {
  .cat-chips { flex-direction: column; }
}

/* ── Promotions: nav link button (styled like sidebar nav buttons) ── */
a.nav-link-btn,
a.nav-link-btn:visited,
a.nav-link-btn:link {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-heading);
  text-decoration: none;
  font-size: 14px;
  box-sizing: border-box;
}
a.nav-link-btn:hover { background: #fafafa; text-decoration: none; }
a.nav-link-btn.active {
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.10);
}

a.nav-promo-link,
a.nav-promo-link:visited,
a.nav-promo-link:link {
  color: var(--brand);
  border-color: rgba(215, 25, 32, 0.25);
  background: #fff5f5;
}
a.nav-promo-link::after {
  content: "%";
  font-size: 10px;
  font-weight: 900;
  background: var(--brand);
  color: #fff;
  padding: 2px 5px;
  margin-left: auto;
  line-height: 1;
}

/* ── Promo banner (index page) ── */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
  color: #fff;
  font-family: var(--font-heading);
  flex-wrap: wrap;
}

.promo-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.promo-banner-badge {
  font-size: 11px;
  font-weight: 900;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 3px 8px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.promo-banner-text {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.promo-banner-text strong {
  font-weight: 900;
}

.promo-banner-timer {
  font-size: 14px;
  font-weight: 800;
  background: rgba(0,0,0,0.2);
  padding: 4px 10px;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.promo-banner-link {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 16px;
  transition: background 0.15s;
}
.promo-banner-link:hover {
  background: rgba(255,255,255,0.15);
}

/* ── Promo cards grid (promotions.html) ── */
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.promo-card {
  border: 1px solid var(--line);
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.promo-card:hover {
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.12);
}

.promo-card-expired {
  opacity: 0.5;
  pointer-events: none;
}

.promo-card-badge {
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 14px;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
}

.promo-card-body {
  padding: 16px;
}

.promo-card-product {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 900;
}
.promo-card-product a {
  color: var(--text);
  text-decoration: none;
}
.promo-card-product a:hover {
  color: var(--brand);
}

.promo-card-discount {
  font-size: 36px;
  font-weight: 900;
  color: var(--brand);
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 8px;
}

.promo-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 14px;
}

.promo-card-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  margin-bottom: 14px;
}

.promo-timer-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.promo-timer-value {
  font-size: 15px;
  font-weight: 900;
  color: #991b1b;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.promo-card-cta {
  width: 100%;
  text-align: center;
}

/* ── Promo responsive ── */
@media (max-width: 980px) {
  .promo-banner {
    padding: 10px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .promo-banner-content {
    gap: 8px;
  }
  .promo-banner-text {
    font-size: 14px;
  }
  .promo-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .promo-banner {
    padding: 8px 12px;
  }
  .promo-banner-text {
    font-size: 13px;
  }
  .promo-banner-link {
    font-size: 13px;
    padding: 6px 12px;
  }
  .promo-card-discount {
    font-size: 28px;
  }
}

/* ── Exchange launch modal (home page) ── */
body.exchange-modal-open {
  overflow: hidden;
}

.exchange-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.exchange-modal.is-open {
  display: block;
}

.exchange-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(88, 9, 17, 0.62);
  backdrop-filter: blur(2px);
}

.exchange-modal-dialog {
  position: relative;
  max-width: 640px;
  margin: 10vh auto 0;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 48%),
    linear-gradient(135deg, #9f1120 0%, #d71920 58%, #ef4444 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 26px;
  z-index: 1;
  color: #fff;
  box-shadow: 0 18px 48px rgba(68, 5, 12, 0.45);
}

.exchange-modal-dialog::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.75);
}

.exchange-modal-dialog h2 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.01em;
}

.exchange-modal-dialog p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.45;
}

.exchange-modal-dialog p strong {
  color: #fff;
  text-decoration: underline;
}

.exchange-modal-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.exchange-modal-actions .btn.primary {
  background: #fff !important;
  color: #9f1120 !important;
  border-color: #fff !important;
  font-weight: 800;
  font-size: 22px;
  padding: 12px 18px;
}

.exchange-modal-actions .btn.primary:hover {
  background: #fff4f4 !important;
}

.exchange-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

.exchange-modal-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

@media (max-width: 640px) {
  .exchange-modal-dialog {
    margin: 8vh 12px 0;
    padding: 20px;
  }

  .exchange-modal-dialog h2 {
    font-size: 24px;
    padding-right: 62px;
  }

  .exchange-modal-dialog p {
    font-size: 18px;
  }

  .exchange-modal-actions .btn.primary {
    font-size: 18px;
  }
}