/* =================================================================
   TELESHOP — design system
   Эстетика: тёмный премиум, электрический лайм + горячий розовый,
   шрифты Unbounded (display) + Manrope (body), grain overlay, glass cards.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg-0: #08080c;
  --bg-1: #0f1015;
  --bg-2: #16171f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hi: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.16);

  --text-0: #f5f6fa;
  --text-1: #b8bac3;
  --text-2: #6f7280;

  --accent: #c8ff00;
  --accent-glow: rgba(200, 255, 0, 0.35);
  --accent-soft: rgba(200, 255, 0, 0.12);

  --pink: #ff2d6f;
  --pink-glow: rgba(255, 45, 111, 0.35);

  --success: #00d68f;
  --warning: #ffb700;
  --danger: #ff3b3b;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--text-0);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  overscroll-behavior-y: none;
}

body {
  background:
    radial-gradient(ellipse 800px 600px at 80% -10%, rgba(200, 255, 0, 0.08), transparent 60%),
    radial-gradient(ellipse 600px 400px at -10% 30%, rgba(255, 45, 111, 0.06), transparent 60%),
    var(--bg-0);
  background-attachment: fixed;
  position: relative;
}

/* зерно поверх фона */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.04;
  z-index: 1;
  mix-blend-mode: overlay;
}

#app, .page {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
  padding-bottom: 100px;
  max-width: 720px;
  margin: 0 auto;
}

/* =================================================================
   ТИПОГРАФИКА
   ================================================================= */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-0);
}

h1 { font-size: 32px; line-height: 1.05; }
h2 { font-size: 22px; }
h3 { font-size: 17px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.muted { color: var(--text-1); }
.dim { color: var(--text-2); }

/* =================================================================
   HEADER
   ================================================================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0 var(--space-lg);
  gap: var(--space-md);
}

.header h1 {
  font-size: 24px;
}

.header .balance {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
}

/* =================================================================
   КАРТОЧКИ
   ================================================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.2s ease;
}

.card:hover, .card:active {
  background: var(--surface-hi);
  border-color: var(--border-hi);
}

/* =================================================================
   КАТАЛОГ ТОВАРОВ
   ================================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.product:active {
  transform: scale(0.98);
  border-color: var(--accent);
}

.product__image {
  aspect-ratio: 1;
  background: var(--bg-2);
  background-size: cover;
  background-position: center;
  position: relative;
}

.product__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.product__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 48px;
  opacity: 0.3;
}

.product__body {
  padding: 12px;
}

.product__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--text-0);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.product__stock {
  font-size: 11px;
  color: var(--text-2);
  margin-top: 4px;
}

.product__low-stock {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 183, 0, 0.15);
  color: var(--warning);
  border: 1px solid rgba(255, 183, 0, 0.3);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =================================================================
   КНОПКИ
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn--primary:hover { box-shadow: 0 8px 32px var(--accent-glow); }

.btn--secondary {
  background: var(--surface);
  color: var(--text-0);
  border: 1px solid var(--border-hi);
}

.btn--ghost {
  background: transparent;
  color: var(--text-1);
}

.btn--block { width: 100%; }

.btn--lg { padding: 18px 28px; font-size: 16px; }

.btn--pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 24px var(--pink-glow);
}

/* =================================================================
   МОДАЛКА (товар)
   ================================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  animation: slideUp 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
}

.modal__image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-2);
  background-size: cover;
  background-position: center;
  position: relative;
}

.modal__body {
  padding: var(--space-lg);
}

.modal__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.modal__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--accent);
  margin: 12px 0;
}

.modal__description {
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text-0);
  font-size: 20px;
  cursor: pointer;
}
.qty-control button:active { background: var(--surface-hi); }

.qty-control span {
  min-width: 40px;
  text-align: center;
  font-weight: 700;
}

/* =================================================================
   КОРЗИНА (плавающая кнопка)
   ================================================================= */
.cart-fab {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: var(--accent);
  color: #000;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px var(--accent-glow);
  cursor: pointer;
  border: none;
  font-size: 15px;
  transform-origin: center;
  animation: cartIn 0.3s ease;
}

@keyframes cartIn {
  from { transform: translateX(-50%) translateY(100%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.cart-fab__count {
  background: #000;
  color: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}

/* =================================================================
   РУЛЕТКА
   ================================================================= */
.wheel-page {
  text-align: center;
  padding-top: var(--space-lg);
}

.wheel-stage {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 32px auto;
}

.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 28px solid var(--accent);
  z-index: 3;
  filter: drop-shadow(0 4px 12px var(--accent-glow));
}

.wheel-disk {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transition: transform 5s cubic-bezier(0.17, 0.67, 0.21, 1);
  border: 8px solid #000;
  box-shadow:
    0 0 0 4px var(--accent),
    0 0 80px var(--accent-glow),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--bg-0);
  border: 4px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--accent);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spins-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}

.prize-banner {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--accent-soft), rgba(255, 45, 111, 0.1));
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  display: none;
  animation: prizePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.prize-banner.show { display: block; }

@keyframes prizePop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.prize-banner h2 {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 8px;
}

.prize-banner__code {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--bg-0);
  border: 1px dashed var(--accent);
  border-radius: 12px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* =================================================================
   ПРОФИЛЬ
   ================================================================= */
.profile-hero {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  margin-bottom: var(--space-lg);
}

.profile-hero__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  margin: 0 auto var(--space-md);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: #000;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin: var(--space-lg) 0 var(--space-sm);
  padding-left: 4px;
}

.coupon {
  background: linear-gradient(135deg, var(--surface), var(--accent-soft));
  border: 1px dashed rgba(200, 255, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.coupon__info { flex: 1; min-width: 0; }
.coupon__title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.coupon__code {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.coupon__date { font-size: 11px; color: var(--text-2); margin-top: 4px; }

.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.order-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.order-card__id { font-weight: 700; font-family: var(--font-display); }
.order-card__status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.status-new { background: rgba(255, 183, 0, 0.15); color: var(--warning); }
.status-confirmed { background: rgba(0, 214, 143, 0.15); color: var(--success); }
.status-done { background: rgba(255, 255, 255, 0.1); color: var(--text-1); }
.status-cancelled { background: rgba(255, 59, 59, 0.15); color: var(--danger); }

.order-card__items {
  font-size: 13px;
  color: var(--text-1);
  margin-top: 8px;
}

/* =================================================================
   КОРЗИНА (модалка)
   ================================================================= */
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: 0; }

.cart-item__image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--bg-2);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item__price { font-size: 13px; color: var(--text-1); }

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  font-size: 18px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-0);
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 12px;
}

.input:focus {
  outline: none;
  border-color: var(--accent);
}

/* =================================================================
   EMPTY STATE
   ================================================================= */
.empty {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  color: var(--text-2);
}

.empty__icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }

/* =================================================================
   ЛОАДЕР
   ================================================================= */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 24px auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* =================================================================
   ТОСТ
   ================================================================= */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  padding: 14px 20px;
  border-radius: 999px;
  z-index: 200;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.success { border-color: var(--success); color: var(--success); }
.toast.error { border-color: var(--danger); color: var(--danger); }

/* =================================================================
   ТЕГИ И CHIPS
   ================================================================= */
.tag-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 calc(-1 * var(--space-md)) var(--space-md);
  padding: 4px var(--space-md) 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tag-chips::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.chip:active { transform: scale(0.96); }
.chip--active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.tag-mini {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  margin-right: 4px;
  margin-bottom: 6px;
}

.product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(200, 255, 0, 0.3);
  border-radius: 999px;
}

.modal__story {
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 45, 111, 0.06), rgba(200, 255, 0, 0.04));
  border: 1px solid rgba(255, 45, 111, 0.18);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-0);
  font-style: italic;
  white-space: pre-wrap;
  position: relative;
}
.modal__story::before {
  content: '«';
  position: absolute;
  top: -12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--pink);
  line-height: 1;
  opacity: 0.6;
}

/* Маленький баннер «открыто в браузере» */
.tg-only-banner {
  background: rgba(255, 183, 0, 0.12);
  border: 1px solid rgba(255, 183, 0, 0.3);
  color: var(--warning);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}

/* =================================================================
   AUTH FALLBACK (открыто не из Telegram)
   ================================================================= */
.auth-fallback {
  text-align: center;
  padding: 60px 24px;
  max-width: 420px;
  margin: 0 auto;
}
.auth-fallback__icon {
  font-size: 56px;
  margin-bottom: 18px;
  opacity: 0.7;
}
.auth-fallback h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 12px;
}
.auth-fallback p {
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.6;
}

/* =================================================================
   АДМИН
   ================================================================= */
.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 14px;
}
.admin-card .admin-row {
  background: transparent;
  border: none;
  margin-bottom: 8px;
  padding: 4px 0;
}
.admin-section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 12px 0 8px;
}
.tag-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0;
}
.tag-picker .chip {
  font-size: 12px;
  padding: 6px 12px;
}
.admin-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.admin-row__img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-2);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.admin-row__info { flex: 1; min-width: 0; }
.admin-row__name { font-weight: 600; }
.admin-row__meta { font-size: 12px; color: var(--text-2); }

.stock-input {
  width: 60px;
  text-align: center;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  color: var(--text-0);
  font-weight: 700;
}
