/* Solar B2B — main stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1a6fc4;
  --blue-d:  #145fa8;
  --blue-l:  #e8f0fe;
  --gold:    #ffd700;
  --gold-d:  #f0bf00;
  --green:   #28a745;
  --red:     #dc3545;
  --orange:  #fd7e14;
  --bg:      #f4f6f9;
  --card:    #ffffff;
  --border:  #dee2e6;
  --text:    #212529;
  --muted:   #6c757d;
  --radius:  8px;
  --shadow:  0 2px 8px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 28px rgba(26,111,196,.18);
}

body { font-family: 'Onest', 'Segoe UI', Arial, sans-serif; background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.navbar {
  background: #fff;
  color: var(--text);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 28px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
  border-bottom: 1px solid var(--border);
}
.navbar .brand { display: inline-flex; align-items: center; line-height: 0; }
.brand-img { height: 72px; width: auto; display: block; }
.footer-brand img { height: 72px; width: auto; display: block; }
.footer-brand { display: inline-block; line-height: 0; margin-bottom: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--text); border-radius: 2px; transition: .2s; }
.navbar.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar.open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.navbar nav { display: flex; gap: 4px; flex: 1; }
.navbar nav a {
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.navbar nav a:hover, .navbar nav a.active { background: var(--blue-l, #e8f0fe); color: var(--blue); text-decoration: none; }
.navbar .nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.navbar .nav-right a { color: var(--text); font-size: 14px; font-weight: 500; }
.navbar .nav-right .btn-login {
  background: var(--blue); border: none;
  color: #fff; padding: 8px 18px; border-radius: 22px; font-size: 13px; font-weight: 600;
}
.navbar .nav-right .btn-login:hover { background: var(--blue-d); color:#fff; text-decoration: none; }
.rates-bar { font-size: 13px; color: var(--muted); }

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 24px 16px; }
.page-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.two-col { display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: start; }

/* ── SIDEBAR (cabinet) ───────────────────────────────────────────────────── */
.sidebar { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 0; }
.sidebar .company { padding: 12px 16px 16px; border-bottom: 1px solid var(--border); }
.sidebar .company .cname { font-weight: 700; font-size: 15px; }
.sidebar .company .cemail { font-size: 12px; color: var(--muted); }
.sidebar nav a {
  display: block; padding: 10px 18px; color: var(--text); font-size: 14px;
  border-left: 3px solid transparent;
  transition: background .15s, border-color .15s;
}
.sidebar nav a:hover { background: #f0f4ff; text-decoration: none; }
.sidebar nav a.active { border-left-color: var(--blue); color: var(--blue); background: #f0f4ff; font-weight: 600; }

/* ── CARDS ───────────────────────────────────────────────────────────────── */
.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }
.card-title { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 20px; }
.stat-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 18px; }
.stat-card .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.stat-card .value { font-size: 26px; font-weight: 700; color: var(--blue); margin-top: 4px; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 5px; border: none; cursor: pointer; font-size: 13px; font-weight: 500; transition: .15s; text-decoration: none; }
.btn-primary   { background: var(--blue);  color: #fff; }
.btn-primary:hover { background: var(--blue-d); color:#fff; text-decoration:none; }
.btn-success   { background: var(--green); color: #fff; }
.btn-danger    { background: var(--red);   color: #fff; }
.btn-outline   { background: transparent; border: 1px solid var(--blue); color: var(--blue); }
.btn-accent    { background: var(--gold); color: #2a1f00; font-weight: 700; }
.btn-accent:hover { background: var(--gold-d); color: #2a1f00; text-decoration: none; }
.btn-sm        { padding: 4px 10px; font-size: 12px; }
.btn-lg        { padding: 11px 24px; font-size: 15px; border-radius: 8px; }
.btn-icon      { padding: 4px 8px; font-size: 16px; background: none; border: none; cursor: pointer; }

/* ── FORMS ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.form-control {
  width: 100%; padding: 8px 12px; border: 1px solid var(--border);
  border-radius: 5px; font-size: 14px; outline: none; transition: border .15s;
}
.form-control:focus { border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.form-check input[type=checkbox] { width: 16px; height: 16px; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── ALERTS ──────────────────────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ── TABLES ──────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { background: #f8f9fa; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight: 600; padding: 10px 12px; text-align: left; border-bottom: 2px solid var(--border); }
td { padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f8f9fa; }

/* ── PRODUCT TABLE ───────────────────────────────────────────────────────── */
.prod-table th, .prod-table td { font-size: 13px; }
.prod-table .price { font-weight: 700; color: var(--blue); white-space: nowrap; }
.prod-table .stock { color: var(--green); }
.prod-table .stock.low { color: var(--orange); }
.prod-table .stock.out { color: var(--red); }
.expand-btn { background: none; border: none; cursor: pointer; font-size: 18px; color: var(--blue); padding: 0 6px; transition: transform .2s; }
.expand-btn.open { transform: rotate(180deg); }
.supplier-rows { display: none; background: #f8fbff; }
.supplier-rows.open { display: table-row-group; }
.supplier-rows td { padding: 8px 12px 8px 36px; border-bottom: 1px solid #e8eef8; }
.supplier-rows tr:last-child td { border-bottom: 2px solid var(--border); }
.action-icons { display: flex; gap: 4px; }
.icon-btn { background: none; border: 1px solid var(--border); border-radius: 4px; padding: 3px 7px; cursor: pointer; font-size: 14px; transition: .15s; }
.icon-btn:hover { background: #e8eef8; }
.icon-btn.warn  { border-color: var(--orange); color: var(--orange); }
.icon-btn.buy   { border-color: var(--blue);   color: var(--blue); }
.icon-btn.res   { border-color: var(--green);  color: var(--green); }
.icon-btn.sup   { border-color: #6f42c1;       color: #6f42c1; }
.icon-btn.inv   { border-color: #6c757d;       color: #6c757d; }

/* ── FILTERS ─────────────────────────────────────────────────────────────── */
.filters { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; margin-bottom: 18px; display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.filters .fg { display: flex; flex-direction: column; gap: 4px; }
.filters label { font-size: 12px; font-weight: 600; color: var(--muted); }
.filters select, .filters input { padding: 6px 10px; border: 1px solid var(--border); border-radius: 5px; font-size: 13px; }

/* ── MODAL ───────────────────────────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000; justify-content: center; align-items: center; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius); padding: 24px; min-width: 340px; max-width: 480px; width: 90%; box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.modal h3 { margin-bottom: 16px; font-size: 16px; }
.modal .close-btn { float: right; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); }

/* ── SECTION TITLES (homepage v1) ────────────────────────────────────────── */
.section-title { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 8px; color: var(--text); }
.section-sub   { text-align: center; color: var(--muted); margin-bottom: 32px; font-size: 15px; }

/* ── HERO V1 ─────────────────────────────────────────────────────────────── */
.hero-v1 {
  background: linear-gradient(135deg, #1a6fc4 0%, #0d4a8a 60%, #082f5a 100%);
  color: #fff;
  padding: 60px 16px 80px;
  position: relative;
  overflow: hidden;
}
.hero-v1::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-v1-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-h1 {
  font-size: 42px; line-height: 1.15; font-weight: 800;
  margin-bottom: 18px;
}
.hero-accent { color: var(--gold); }
.hero-lede { font-size: 17px; opacity: .92; margin-bottom: 22px; max-width: 540px; }
.hero-bullets { list-style: none; margin-bottom: 28px; }
.hero-bullets li { font-size: 15px; padding: 7px 0; opacity: .95; }
.hero-cta-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-stats { font-size: 13px; opacity: .85; }
.hero-stats b { color: var(--gold); font-size: 15px; }

.hero-auth-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.30);
  color: var(--text);
  max-width: 440px;
  margin-left: auto;
}
.hero-welcome { text-align: center; }
.hero-welcome h3 { margin-bottom: 8px; }
.auth-tabs { display: flex; gap: 4px; margin-bottom: 18px; border-bottom: 2px solid var(--border); }
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.auth-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.captcha-box { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }

/* ── AUDIENCE SECTION ────────────────────────────────────────────────────── */
.audience-section { background: #fff; padding: 60px 16px; }
.audience-inner { max-width: 1280px; margin: 0 auto; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.audience-icon { font-size: 44px; margin-bottom: 12px; }
.audience-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--blue); }
.audience-card p  { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ── WHY SECTION ─────────────────────────────────────────────────────────── */
.why-section { background: var(--bg); padding: 60px 16px; }
.why-inner   { max-width: 1280px; margin: 0 auto; }
.why-grid    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.why-icon  { font-size: 32px; flex-shrink: 0; }
.why-card h4 { font-size: 17px; margin-bottom: 6px; }
.why-card p  { font-size: 14px; color: var(--muted); }

/* ── REVIEWS SECTION ─────────────────────────────────────────────────────── */
.reviews-section { background: #fff; padding: 60px 16px; }
.reviews-inner   { max-width: 1280px; margin: 0 auto; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 22px;
  position: relative;
  border: 1px solid var(--border);
}
.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.review-body  { font-size: 14px; line-height: 1.6; color: var(--text); margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.review-name { font-weight: 700; font-size: 14px; }
.review-role { font-size: 12px; color: var(--muted); }

/* ── CATEGORIES (homepage) ───────────────────────────────────────────────── */
.categories-section { background: var(--bg); padding: 60px 16px; }
.categories-inner   { max-width: 1280px; margin: 0 auto; }
.group-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.group-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; text-align: center; transition: .2s; }
.group-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.14); text-decoration: none; }
.group-card .icon { font-size: 36px; margin-bottom: 8px; }
.group-card h3 { font-size: 14px; font-weight: 600; color: var(--text); }

/* ── SUPPLIER CTA ────────────────────────────────────────────────────────── */
.supplier-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: #fff;
  padding: 40px 16px;
}
.supplier-cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
}
.supplier-cta h2 { font-size: 24px; margin-bottom: 6px; }
.supplier-cta p  { opacity: .9; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section { background: #fff; padding: 60px 16px; }
.faq-inner   { max-width: 820px; margin: 0 auto; }
.faq-list    { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-item summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--blue); transition: transform .15s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 4px 20px 18px; font-size: 14px; color: var(--text); line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer { background: #1a1d23; color: #aaa; margin-top: 0; padding: 40px 16px 0; font-size: 13px; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
}
.footer-col h5 { color: #fff; margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a  { display: block; color: #aaa; margin-bottom: 6px; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-brand { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand span { color: var(--gold); }
.footer-socials { display: flex; gap: 10px; margin-top: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: #2a2e36; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.footer-socials a:hover { background: var(--blue); }
.footer-copy { text-align: center; padding: 22px 0; margin-top: 32px; border-top: 1px solid #2a2e36; color: #777; }

/* ── FAB (Viber/Telegram/Phone) ──────────────────────────────────────────── */
.fab-wrap { position: fixed; right: 20px; bottom: 20px; z-index: 9998; }
.fab-trigger {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: #fff;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(26,111,196,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: transform .2s;
}
.fab-trigger:hover { transform: scale(1.08); }
.fab-wrap.open .fab-trigger { transform: rotate(45deg); }
.fab-list {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex; flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  transform: translateY(8px);
}
.fab-wrap.open .fab-list { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-item {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  font-size: 13px;
  white-space: nowrap;
}
.fab-item:hover { text-decoration: none; background: var(--blue-l); }
.fab-item span { font-size: 18px; }
.fab-viber:hover { color: #7360f2; }
.fab-tg:hover    { color: #0088cc; }
.fab-phone:hover { color: var(--green); }

/* ── AUTH (separate /login & /register pages) ────────────────────────────── */
.auth-wrap { max-width: 500px; margin: 48px auto; padding: 0 16px; }
.auth-box { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.auth-box h2 { text-align: center; margin-bottom: 24px; font-size: 22px; }
.auth-box .divider { text-align: center; color: var(--muted); margin: 16px 0; font-size: 13px; }

/* ── PRODUCT DETAILS MODAL ───────────────────────────────────────────────── */
.modal-lg { max-width: 640px; }
.det-body { display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: start; }
.det-photo img {
  width: 100%; height: 200px; object-fit: contain;
  background: #f8f9fa; border: 1px solid var(--border); border-radius: 6px;
}
.det-specs { font-size: 14px; }
.det-specs > div { padding: 6px 0; border-bottom: 1px solid #eee; }
.det-specs > div:last-child { border-bottom: none; }
.prod-row.clickable { cursor: pointer; transition: background .12s; }
.prod-row.clickable:hover { background: #f0f7ff; }

/* ── BADGE ───────────────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-new      { background: #cce5ff; color: #004085; }
.badge-done     { background: #d4edda; color: #155724; }
.badge-cancelled{ background: #f8d7da; color: #721c24; }
.badge-pending  { background: #fff3cd; color: #856404; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-v1-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-auth-card { margin-left: 0; margin-right: auto; }
  .audience-grid, .why-grid, .reviews-track { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .navbar { padding: 10px 16px; min-height: 64px; gap: 12px; flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .navbar nav { display: none; flex-basis: 100%; flex-direction: column; gap: 4px; order: 3; padding: 10px 0 4px; border-top: 1px solid rgba(255,255,255,.18); margin-top: 8px; }
  .navbar.open nav { display: flex; }
  .navbar nav a { padding: 10px 12px; font-size: 15px; border-radius: 6px; }
  .navbar .nav-right { gap: 10px; margin-left: auto; }
  .navbar .nav-right .btn-login { padding: 6px 14px; font-size: 13px; }
  .rates-bar { display: none; }
  .det-body { grid-template-columns: 1fr; }
  .det-photo img { height: 220px; }
  .brand-img { height: 56px; }
  .footer-brand img { height: 60px; }
  .navbar { min-height: 70px; }

  .hero-v1 { padding: 36px 14px 48px; }
  .hero-h1 { font-size: 28px; }
  .hero-lede { font-size: 15px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-auth-card { padding: 18px; }
  .section-title { font-size: 22px; }
  .audience-grid, .why-grid, .reviews-track { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .supplier-cta-inner { flex-direction: column; text-align: center; }

  .two-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .hero-h1 { font-size: 24px; }
  .hero-bullets li { font-size: 14px; }
  .fab-item b { display: none; }
  .fab-item { padding: 10px; border-radius: 50%; width: 44px; height: 44px; justify-content: center; }
}
