:root {
  --primary-color: #97C235;
  --accent-color: #97C235;
  --background-color: #FFFFFF;
  --card-background: #FFFFFF;
  --text-color: #1D1D1B;
  --muted-text: #7A7A7A;
  --border-radius-lg: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.14);
  --font-main: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.5;
}

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

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }

a { color: inherit; }

/* ===== HEADER ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 36px; width: auto; object-fit: contain; }
.logo span { font-weight: 600; font-size: 18px; color: var(--text-color); }

nav.main-nav { display: flex; gap: 18px; font-size: 14px; flex-wrap: wrap; }
.nav-link {
  text-decoration: none;
  color: var(--muted-text);
  padding: 4px 0;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-color); }
.nav-link.is-current { color: var(--text-color); font-weight: 600; }

.lang-switcher { display: flex; gap: 6px; align-items: center; }
.lang-btn {
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.08s;
}
.lang-btn.is-active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(1px);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  margin-left: 12px;
}
.wa-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 600px) {
  .wa-btn span { display: none; }
  .wa-btn { padding: 7px; margin-left: 8px; }
}

main { padding-bottom: 24px; min-height: 50vh; }

/* hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  border-radius: 8px;
  padding: 0 8px;
  cursor: pointer;
  margin-right: 4px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-color);
  border-radius: 2px;
  transition: transform 0.18s, opacity 0.18s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-drawer {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.98);
}
.mobile-nav-drawer.is-open { display: block; }
.mobile-nav-drawer .container {
  display: flex;
  flex-direction: column;
  padding: 8px 16px 14px;
}
.mobile-nav-link {
  text-decoration: none;
  color: var(--text-color);
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link.is-current { color: var(--primary-color); }

/* ===== HERO ===== */
.hero { padding: 36px 0 40px; position: relative; overflow: hidden; background: #ffffff; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 { font-size: 32px; line-height: 1.15; margin-bottom: 14px; }
.hero-offer { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.hero-subtitle { font-size: 14px; color: var(--muted-text); max-width: 460px; margin-bottom: 20px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(151, 194, 53, 0.08);
  color: #113311;
  border: 1px solid rgba(151, 194, 53, 0.4);
}
.hero-image-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #113311, #000000);
  box-shadow: var(--shadow-soft);
  padding: 0;
  margin-top: 26px;
}
.hero-image-wrapper img {
  border-radius: 0;
  object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 220px;
}

.hero-form-card {
  background: var(--card-background);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px 18px 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.hero-form-card h2 { font-size: 18px; margin-bottom: 12px; }

/* ===== SECTIONS ===== */
section { padding: 32px 0 6px; }
section + section { padding-top: 24px; }
.section-header { margin-bottom: 18px; }
.section-title { font-size: 22px; margin-bottom: 6px; }
.section-subtitle { font-size: 13px; color: var(--muted-text); max-width: 720px; }
.page-title { font-size: 30px; margin-bottom: 8px; }
.page-lead { font-size: 14px; color: var(--muted-text); max-width: 720px; margin-bottom: 22px; }

/* ===== BUTTONS ===== */
.btn-primary {
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent-color);
  color: #111827;
  margin-top: 6px;
  font-family: inherit;
  transition: filter 0.12s, transform 0.06s;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.btn-primary:hover { filter: brightness(1.05); transform: translateY(1px); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.12s, transform 0.06s;
  box-shadow: 0 10px 24px rgba(151, 194, 53, 0.35);
}
.btn-cta:hover { filter: brightness(1.05); transform: translateY(1px); }

.btn-cta-row {
  text-align: center;
  margin: 20px 0 8px;
}

/* Группа CTA-кнопок для договоров: на десктопе в ряд с переносом,
   на мобилке (≤640px) — колонкой, каждая кнопка во всю ширину. */
.contract-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.contract-btn-row .btn-cta {
  padding: 14px 22px;
}
@media (max-width: 640px) {
  .contract-btn-row { flex-direction: column; align-items: stretch; }
  .contract-btn-row .btn-cta { width: 100%; }
}

/* ===== BENEFITS ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.benefit-card {
  background: var(--card-background);
  border-radius: var(--border-radius-lg);
  padding: 14px 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 13px;
}
.benefit-card h3 { font-size: 14px; margin-bottom: 6px; }

/* ===== CATALOG ===== */
.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #f3f4f6;
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 22px;
  width: fit-content;
  max-width: 100%;
}
.catalog-tab {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.catalog-tab:hover { color: var(--text-color); }
.catalog-tab.is-active {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(151, 194, 53, 0.32);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}
.catalog-grid[data-active-tab="bicycles"] .model-card[data-category="scooters"],
.catalog-grid[data-active-tab="scooters"] .model-card[data-category="bicycles"] {
  display: none;
}
.model-card {
  position: relative;
  background: var(--card-background);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.model-badge,
.model-tag-right {
  position: absolute;
  top: 22px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  z-index: 1;
}
.model-badge {
  left: 22px;
  background: #FF7A45;
  box-shadow: 0 4px 10px rgba(255, 122, 69, 0.35);
}
.model-tag-right {
  right: 22px;
  background: #E11D48;
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.35);
}
.model-image {
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.model-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.model-title { font-size: 17px; font-weight: 700; line-height: 1.25; }
.model-section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.model-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.model-table tr + tr td { border-top: 1px solid rgba(148, 163, 184, 0.22); }
.model-table td { padding: 7px 0; vertical-align: top; }
.model-table td:first-child { color: var(--muted-text); padding-right: 10px; }
.model-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-color);
}
.model-table .speed-limit-note {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted-text);
  margin-top: 2px;
}
.model-card .btn-primary { margin-top: auto; width: 100%; }

/* ===== Блок «Продажа за раз» (сравнение розница ↔ скидка) ===== */
.sale-block {
  border: 1.5px solid var(--primary-color);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(151, 194, 53, 0.10), rgba(151, 194, 53, 0.04));
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sale-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.sale-retail-label { font-size: 13px; color: var(--muted-text); }
.sale-retail-val {
  font-size: 14px;
  color: var(--muted-text);
  text-decoration: line-through;
  font-weight: 600;
  white-space: nowrap;
}
.sale-retail-val.no-disc {
  font-size: 18px;
  color: var(--text-color);
  text-decoration: none;
}
.sale-disc-label { font-size: 13px; font-weight: 600; color: var(--text-color); line-height: 1.2; }
.sale-disc-val { font-size: 22px; font-weight: 800; color: var(--primary-color); white-space: nowrap; }
.sale-badge {
  align-self: flex-start;
  background: #FF7A45;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

/* ===== CATALOG SLIDER ===== */
#catalog { scroll-margin-top: 80px; }
.catalog-slider {
  position: relative;
  margin-top: 6px;
}
.catalog-slider-viewport {
  overflow: hidden;
  width: 100%;
  /* вертикальный паддинг — чтобы тень карточек не обрезалась */
  padding: 22px 0 44px;
}
.catalog-slider-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.4s ease;
  will-change: transform;
  touch-action: pan-y;
}
.catalog-slider-track .model-card {
  min-width: 0;
  margin: 0;
}
.catalog-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(151, 194, 53, 0.45);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  padding: 0 0 4px;
  transition: filter 0.15s, transform 0.08s;
}
.catalog-slider-arrow:hover { filter: brightness(1.08); }
.catalog-slider-arrow:active { transform: translateY(calc(-50% + 1px)); }
.catalog-slider-prev { left: -14px; }
.catalog-slider-next { right: -14px; }

.catalog-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.catalog-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(148, 163, 184, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.12s;
}
.catalog-slider-dot:hover { background: rgba(148, 163, 184, 0.85); }
.catalog-slider-dot.is-active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .catalog-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  .catalog-slider-prev { left: -6px; }
  .catalog-slider-next { right: -6px; }
  .catalog-slider-viewport { padding: 18px 0 38px; }
}

/* ===== TARIFFS PAGE ===== */
.tariff-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}
.tariff-item {
  background: var(--card-background);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tariff-item .tariff-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(151, 194, 53, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tariff-item h3 { font-size: 16px; }
.tariff-item .tariff-from {
  margin-top: auto;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
.tariff-item .tariff-desc { font-size: 13px; color: var(--muted-text); }

.payment-block {
  background: rgba(151, 194, 53, 0.06);
  border: 1px solid rgba(151, 194, 53, 0.32);
  border-radius: var(--border-radius-lg);
  padding: 18px 20px;
  margin-top: 12px;
}
.payment-block h3 { font-size: 15px; margin-bottom: 8px; }
.payment-block p { font-size: 14px; margin-bottom: 8px; line-height: 1.6; }
.payment-block ul { padding-left: 22px; margin-bottom: 8px; font-size: 14px; }
.payment-block li { margin-bottom: 4px; }

.contract-block {
  background: var(--card-background);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
  margin-top: 16px;
}
.contract-block h3 { font-size: 18px; margin-bottom: 10px; }
.contract-block ul { padding-left: 22px; margin-bottom: 14px; font-size: 14px; }
.contract-block li { margin-bottom: 6px; }

/* ===== SERVICE PAGE ===== */
.service-section {
  background: var(--card-background);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 22px 22px;
  margin-bottom: 16px;
}
.service-section h2 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text-color);
}
.service-section p { font-size: 14px; line-height: 1.65; margin-bottom: 8px; }
.service-section ul { padding-left: 22px; margin-top: 8px; margin-bottom: 4px; }
.service-section li { font-size: 14px; margin-bottom: 4px; }

.service-tagline {
  text-align: center;
  color: var(--muted-text);
  font-size: 13px;
  padding: 16px 0 4px;
  letter-spacing: 0.04em;
}
.service-tagline strong { display: block; font-size: 18px; color: var(--text-color); margin-bottom: 4px; letter-spacing: 0.08em; }

/* ===== CONTACTS PAGE ===== */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card-background);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft);
  border-radius: var(--border-radius-lg);
  padding: 22px 22px;
}
.contact-row {
  display: grid;
  grid-template-columns: 28px 130px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.contact-row .contact-icon {
  font-size: 20px;
  text-align: center;
}
.contact-row .contact-label { color: var(--muted-text); }
.contact-row a { color: var(--text-color); text-decoration: none; }
.contact-row a:hover { color: var(--primary-color); }

.map-frame {
  margin-top: 16px;
  margin-bottom: 8px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft);
  background: #f5f5f5;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ===== FOOTER ===== */
footer.site-footer {
  padding: 10px 0 12px;
  font-size: 11px;
  color: var(--muted-text);
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  margin-top: 8px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  padding: 24px 16px;
  overflow-y: auto;
}
.modal-overlay.is-open { display: flex; }
.modal-window {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 22px 22px 18px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  margin: auto;
  animation: modal-in 0.18s ease-out;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted-text);
  padding: 4px 10px;
  border-radius: 8px;
  font-family: inherit;
}
.modal-close:hover { background: #f3f4f6; color: var(--text-color); }
.modal-title { font-size: 20px; margin-bottom: 14px; padding-right: 36px; }
body.modal-open { overflow: hidden; }

.form-row { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.form-row label { font-size: 12px; color: var(--muted-text); }
.input, .select {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
  width: 100%;
  font-family: inherit;
}
.input:focus, .select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(151, 194, 53, 0.25);
}
.form-note { margin-top: 8px; font-size: 11px; color: var(--muted-text); }
.modal-selected-model {
  display: none;
  font-size: 12px;
  color: var(--muted-text);
  margin-bottom: 10px;
  padding: 6px 10px;
  background: rgba(151, 194, 53, 0.08);
  border-radius: 8px;
}
.modal-selected-model.is-shown { display: block; }
.modal-selected-model strong { color: var(--text-color); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: #111827;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  max-width: 90vw;
  text-align: center;
}
.toast.is-shown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tariff-blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Брейкпоинт гамбургера: до 900px меню «прячется» в drawer */
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { gap: 10px; }
  .logo span { display: none; }
  .lang-switcher { gap: 4px; }
  .lang-btn { padding: 5px 8px; font-size: 11px; }
}

@media (max-width: 767px) {
  .catalog-grid { grid-template-columns: minmax(0, 1fr); }
  .tariff-blocks { grid-template-columns: minmax(0, 1fr); }
  .catalog-tab { padding: 9px 14px; font-size: 13px; }
  .map-frame iframe { height: 300px; }
  .contact-row { grid-template-columns: 24px 1fr; row-gap: 2px; }
  .contact-row .contact-label { grid-column: 2; }
  .contact-row > *:nth-child(3) { grid-column: 2; }
  section { padding: 28px 0 6px; }
}

@media (max-width: 640px) {
  .hero { padding: 24px 0 30px; }
  .hero-text h1 { font-size: 24px; }
  .hero-offer { font-size: 18px; }
  .benefit-grid { grid-template-columns: minmax(0, 1fr); }
  .header-inner { padding: 10px 0; }
  .page-title { font-size: 24px; }
  .model-tag-right { font-size: 10px; padding: 4px 8px; }
}
