@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter.ttf') format('truetype-variations');
  font-weight: 100 900; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/static/fonts/Montserrat.ttf') format('truetype-variations');
  font-weight: 100 900; font-display: swap;
}
/* BRINGEAR — фирменный стиль v3 (палитра B: природный / приглушённый) */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --ink: #33403A;        /* хвоя — основной текст */
  --muted: #7C8A82;      /* приглушённый серо-зелёный */
  --line: #DCE5E0;       /* туман — линии */
  --bg: #FDFCFA;         /* тёплый белый */
  --sand: #F0EBE3;       /* песок — секции */
  --accent: #6B9080;     /* шалфей — основной акцент */
  --terra: #C98B5E;      /* терракота */
  --brick: #B5563C;      /* кирпич — активный акцент */
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink); background: var(--bg);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ================= ШАПКА ================= */
header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(253,252,250,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { max-width: 1760px; margin: 0 auto; padding: 10px 35mm; display: flex; align-items: center; }
@media (max-width: 1200px) { .nav { padding-left: 22px; padding-right: 22px; } }

.logo-block { flex: 1 1 0; display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.logo-inner { position: relative; display: inline-block; line-height: 0; }
/* подпись ровно под надписью BRINGEAR в логотипе (надпись: 37.6%..99.2% ширины, низ 71.8% высоты) */
.logo-sub {
  position: absolute; right: 0.8%; top: calc(71.8% + 3px);
  font-size: 7px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; line-height: 1;
}

/* --- центральное меню (по центру шапки) --- */
.nav-links { flex: 0 0 auto; display: flex; gap: 38px; font-size: 19px; letter-spacing: .02em; }
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; padding: 24px 0;
  color: var(--ink); border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s; white-space: nowrap;
}
.nav-item:hover > a, .nav-item > a.active { color: var(--accent); border-bottom-color: var(--accent); }

/* --- инструменты справа --- */
.nav-tools { flex: 1 1 0; display: flex; justify-content: flex-end; gap: 4px; }
.tool-btn {
  position: relative; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: none; border: 0; border-radius: 8px; color: var(--ink); cursor: pointer; transition: .18s;
}
.tool-btn:hover { background: var(--sand); color: var(--accent); }
.cart-badge {
  position: absolute; top: 4px; right: 4px; background: var(--brick); color: #fff; font-size: 11px;
  min-width: 19px; height: 19px; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 0 5px;
}

/* --- выпадающие панели --- */
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 20px 50px rgba(40,55,48,.18);
  opacity: 0; visibility: hidden; transition: opacity .15s ease, visibility .15s;
  z-index: 90; padding: 10px;
}
.nav-item:hover .mega { opacity: 1; visibility: visible; }
.mega::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }

/* каталог: слева группы, справа товары */
.mega-catalog { display: flex; gap: 12px; }
.mega-nav { flex: 0 0 258px; width: 258px; border-right: 1px solid var(--line); padding-right: 12px; }
.mega-tab {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 14px; border-radius: 8px; font-size: 15px; font-weight: 600; color: var(--ink);
  white-space: nowrap; transition: background .15s, color .15s;
}
.mega-tab .cnt { font-size: 12px; font-weight: 400; color: var(--muted); }
.mega-tab:hover, .mega-tab.active { background: var(--sand); color: var(--accent); }
.mega-tab.active .cnt { color: var(--accent); }

/* кнопка «Скидки» в списке групп каталога */
.mega-sale {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 10px; padding: 12px 14px; border-radius: 8px;
  background: var(--brick); color: #fff; font-size: 15px; font-weight: 700;
  letter-spacing: .02em; transition: background .16s, transform .16s;
}
.mega-sale:hover { background: #9d4630; color: #fff; }
.mega-sale .tag {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px;
  background: rgba(255,255,255,.22); font-size: 13px; font-weight: 700;
}
.mega-panes { position: relative; flex: 1 1 auto; min-width: 540px; min-height: 250px; padding: 4px 6px 0 4px; }
.mega-pane { display: none; }
.mega-pane.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; align-content: start; }
.mega-pane a { padding: 9px 10px; border-radius: 6px; font-size: 14px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mega-pane a:hover { background: var(--sand); color: var(--accent); }
.mega-pane .all { grid-column: 1 / -1; margin-top: 8px; border-top: 1px solid var(--line); padding-top: 12px; font-weight: 600; }

/* простые списки для «Оптовикам» / «О производстве» */
.mega-simple { padding: 8px; min-width: 250px; }
.mega-simple a { display: block; padding: 11px 16px; border-radius: 8px; font-size: 14px; color: var(--ink); white-space: nowrap; }
.mega-simple a:hover { background: var(--sand); color: var(--accent); }

.logo-sub.inverse { color: #8FAE9E; }
.search-drop { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: var(--sand); border-bottom: 1px solid var(--line); }
.search-drop.open { max-height: 100px; }
.search-drop form { max-width: 1600px; margin: 0 auto; padding: 16px 28px; display: flex; gap: 10px; }
.search-drop input { flex: 1; padding: 12px 16px; border: 1px solid var(--line); border-radius: 6px; font-size: 15px; font-family: inherit; }
.search-drop button { background: var(--accent); color: #fff; border: 0; padding: 12px 26px; border-radius: 6px; cursor: pointer; font-size: 14px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background: #2b3a33 center/cover no-repeat; color: #fff; overflow: hidden;
}
.hero::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(28,38,33,.62), rgba(28,38,33,.15)); }
.hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.hero h1 { font-size: clamp(34px, 5vw, 62px); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; max-width: 15ch; }
.hero p { margin-top: 20px; font-size: 18px; max-width: 52ch; color: #e7e3dc; }
.hero .btns { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 30px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; border: 1px solid #fff; color: #fff; transition: .25s; }
.btn:hover { background: #fff; color: var(--ink); }
.btn.solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.solid:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- Sections ---------- */
section { padding: 84px 28px; }
.wrap { max-width: 1280px; margin: 0 auto; }
.eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
h2.title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; margin: 14px 0 8px; letter-spacing: -.01em; }
.lead { color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 34px; }
.cat-card { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card .cap { position: absolute; left: 18px; bottom: 18px; z-index: 2; color: #fff; font-weight: 600; font-size: 18px; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.cat-card::after { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(51,64,58,.55), transparent 55%); }

/* ---------- Галерея в карточке каталога ---------- */
.prod-card .ph { position: relative; }
.prod-card .ph img.gal-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s ease, transform .6s ease; }
.prod-card .ph img.gal-img.on { opacity: 1; }
.gal-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(253,252,250,.9); color: var(--ink); cursor: pointer; opacity: 0; transition: opacity .22s ease, background .22s ease, color .22s ease; z-index: 4; box-shadow: 0 2px 10px rgba(51,64,58,.18); }
.gal-arrow svg { width: 17px; height: 17px; }
.gal-prev { left: 9px; }
.gal-next { right: 9px; }
.prod-card:hover .gal-arrow { opacity: 1; }
.gal-arrow:hover { background: var(--accent); color: #fff; }
.gal-dots { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); display: flex; gap: 5px; z-index: 4; }
.gal-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(51,64,58,.32); box-shadow: 0 0 0 1.5px rgba(253,252,250,.75); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.gal-dot.on { background: var(--accent); transform: scale(1.18); }
@media (hover: none) {
  /* на телефоне листаем свайпом — кнопки не нужны */
  .gal-arrow { display: none; }
  .gal-dot { width: 7px; height: 7px; background: rgba(51,64,58,.38); }
  .gal-dot.on { transform: scale(1.25); }
}

/* ---------- Блог ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; margin-top: 30px; }
.post-card { display: block; }
.post-card .ph { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--sand); border: 1px solid var(--line); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: box-shadow .3s cubic-bezier(.2,.7,.3,1), border-color .3s ease, transform .3s cubic-bezier(.2,.7,.3,1); }
.post-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .ph img { transform: scale(1.04); }
.post-card:hover .ph { box-shadow: 0 22px 44px rgba(51,64,58,.22); border-color: var(--accent); transform: translateY(-6px); }
.post-card .ph-empty { color: var(--accent); opacity: .5; }
.post-card .ph-empty svg { width: 46px; height: 46px; }
.post-card .post-tag { position: absolute; top: 12px; left: 12px; background: rgba(253,252,250,.94); color: var(--accent); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; padding: 5px 10px; border-radius: 4px; }
.post-card .nm { margin-top: 14px; font-weight: 600; font-size: 17px; transition: color .2s ease; }
.post-card:hover .nm { color: var(--accent); }
.post-card .pr { color: var(--muted); font-size: 14px; margin-top: 6px; line-height: 1.5; }
.post-body { font-size: 16.5px; line-height: 1.75; }
.post-body h3 { font-size: 21px; font-weight: 700; margin: 34px 0 12px; letter-spacing: -.01em; }
.post-body h4 { font-size: 18px; font-weight: 700; margin: 26px 0 10px; }
.post-body p { margin: 0 0 16px; }
.post-body ul { margin: 0 0 18px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--accent); font-weight: 600; border-bottom: 1px solid rgba(107,144,128,.35); }
@media (max-width: 700px) { .post-grid { grid-template-columns: 1fr; gap: 20px; } .post-body { font-size: 16px; } }

/* ---------- Фирменные иконки карточек ---------- */
.card-ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 12px; border-radius: 10px; background: var(--sand); color: var(--accent); }
.card-ic svg { width: 24px; height: 24px; }
.prod-card:hover .card-ic { background: var(--accent); color: #fff; transition: .25s; }

/* ---------- Catalog tools (sort + view) ---------- */
.cat-tools { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.sort-bar, .view-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tools-lbl { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-right: 2px; }
.chip { padding: 8px 15px; font-size: 13px; line-height: 1; border: 1px solid var(--line); background: #fff; border-radius: 999px; cursor: pointer; font-family: inherit; color: var(--ink); transition: .2s; }
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.act { background: var(--accent); border-color: var(--accent); color: #fff; }
.vbtn { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); background: #fff; border-radius: 8px; cursor: pointer; color: var(--muted); transition: .2s; padding: 0; }
.vbtn:hover { border-color: var(--accent); color: var(--accent); }
.vbtn.act { background: var(--accent); border-color: var(--accent); color: #fff; }

/* режимы вида */
.prod-grid.view-small { grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 16px; }
.prod-grid.view-small .prod-card .nm { margin-top: 10px; font-size: 14px; }
.prod-grid.view-small .prod-card .pr { font-size: 13px; }
.prod-grid.view-list { grid-template-columns: 1fr; gap: 12px; }
.prod-grid.view-list .prod-card { display: grid; grid-template-columns: 118px 1fr; grid-auto-rows: min-content; gap: 3px 18px; align-items: center; border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: var(--bg); }
.prod-grid.view-list .prod-card .ph { grid-row: 1 / span 3; width: 118px; aspect-ratio: 1/1; }
.prod-grid.view-list .prod-card:hover .ph { transform: none; }
.prod-grid.view-list .prod-card .nm { margin-top: 0; }
@media (max-width: 700px) {
  .cat-tools { gap: 10px; margin-top: 22px; }
  .sort-bar { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .sort-bar .tools-lbl { display: none; }
  .chip { flex: 0 0 auto; padding: 7px 13px; font-size: 12.5px; }
  .prod-grid.view-large { grid-template-columns: 1fr; gap: 20px; }
  .prod-grid.view-small { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-grid.view-small .prod-card .nm { font-size: 13.5px; margin-top: 8px; }
  .prod-grid.view-small .prod-card .pr { font-size: 13px; }
  .prod-grid.view-list .prod-card { grid-template-columns: 92px 1fr; gap: 2px 14px; padding: 10px; }
  .prod-grid.view-list .prod-card .ph { width: 92px; }
}

/* ---------- Products ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; margin-top: 34px; }
.prod-card { display: block; }
.prod-card .ph { aspect-ratio: 4/5; overflow: hidden; background: var(--bg);
  border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 2px 8px rgba(51,64,58,.09);
  transition: box-shadow .3s cubic-bezier(.2,.7,.3,1), border-color .3s ease, transform .3s cubic-bezier(.2,.7,.3,1); }
.prod-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.prod-card:hover .ph img { transform: scale(1.04); }
.prod-card:hover .ph { box-shadow: 0 22px 44px rgba(51,64,58,.30); border-color: var(--accent); transform: translateY(-7px); }
.prod-card .nm { transition: color .2s ease; }
.prod-card:hover .nm { color: var(--accent); }
.prod-card .nm { margin-top: 14px; font-weight: 600; font-size: 15px; }
.prod-card .pr { color: var(--muted); font-size: 14px; margin-top: 3px; }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 26px; } }
/* галерея в карточке товара */
.pic-col { min-width: 0; }
/* лупа в карточке товара */
.pic { position: relative; cursor: zoom-in; }
.pic img { transition: transform .25s ease; will-change: transform; }
.pic.zooming { overflow: hidden; }
.pic.zooming img { transition: none; cursor: zoom-out; }
.zoom-hint { position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background: rgba(51,64,58,.72); color: #fff; font-size: 15px; opacity: 0; transition: opacity .2s; pointer-events: none; }
.pic:hover .zoom-hint { opacity: 1; }
@media (hover: none) { .zoom-hint { opacity: .8; } }

/* лайтбокс */
.lightbox { position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center;
  background: rgba(20,26,23,.92); padding: 30px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 96vw; max-height: 92vh; object-fit: contain; border-radius: 10px; background: #fff; }

.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumb { padding: 0; border: 2px solid transparent; border-radius: 8px; background: var(--bg);
  cursor: pointer; overflow: hidden; width: 84px; height: 104px; transition: border-color .2s, transform .2s; }
.thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.thumb:hover { border-color: var(--line); transform: translateY(-2px); }
.thumb.active { border-color: var(--accent); }

.pdp .pic { background: var(--bg); overflow: hidden; border: 1px solid var(--line);
  border-radius: 8px; box-shadow: 0 2px 12px rgba(51,64,58,.06); }
.pdp h1 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: -.01em; }
.pdp .price { font-size: 26px; margin: 18px 0; color: var(--brick); }
.pdp .short { color: var(--muted); margin-bottom: 22px; }
.specs { margin: 26px 0; border-top: 1px solid var(--line); }
.specs div { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; display: flex; justify-content: space-between; gap: 20px; }
.specs span { color: var(--muted); }
.qty { display: flex; align-items: center; gap: 10px; margin: 22px 0; }
.qty input { width: 74px; padding: 12px; border: 1px solid var(--line); font-size: 15px; text-align: center; }
form.order .field { margin-bottom: 12px; }
form.order input, form.order textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); font-size: 15px; font-family: inherit; background: #fff; }
form.order button { width: 100%; background: var(--accent); color: #fff; border: 0; padding: 16px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: .2s; }
form.order button:hover { background: var(--ink); }
.panel { display: flex; gap: 10px; flex-wrap: wrap; }
.panel input, .panel textarea { flex: 1 1 240px; padding: 12px 14px; border: 1px solid var(--line); font-size: 15px; font-family: inherit; background: #fff; }
.panel button { background: var(--accent); color: #fff; border: 0; padding: 12px 26px; font-size: 14px; cursor: pointer; border-radius: 6px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.card h2 { font-size: 20px; margin-bottom: 16px; }

/* ---------- Wholesale table ---------- */
table.ws { width: 100%; border-collapse: collapse; margin-top: 26px; }
table.ws th, table.ws td { padding: 13px 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
table.ws th { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
table.ws tr:hover td { background: #F7F4EF; }

/* ---------- Корзина ---------- */
.cart-table { width: 100%; border-collapse: collapse; background:#fff; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.cart-table th, .cart-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 15px; vertical-align: middle; }
.cart-table th { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--sand); }
.cart-total { display:flex; justify-content: space-between; font-size: 20px; font-weight: 700; padding: 18px 4px; }
.cart-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; background: var(--bg); }
.btn-mini { padding: 7px 14px; font-size: 12px; border: 1px solid var(--line); background:#fff; border-radius: 6px; cursor: pointer; font-family: inherit; }
.btn-mini:hover { border-color: var(--brick); color: var(--brick); }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #cfd5d1; padding: 56px 28px 28px; }
footer .wrap { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1.2fr; gap: 30px; }
@media (max-width: 1100px) { footer .wrap.foot-cols { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { footer .wrap.foot-cols { grid-template-columns: 1fr 1fr; } }
footer a svg { display:block; }
footer h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
footer a { color: #cfd5d1; font-size: 14px; display: block; padding: 4px 0; }
footer a:hover { color: #fff; }
footer .copy { margin-top: 40px; border-top: 1px solid #44514A; padding-top: 18px; font-size: 12px; color: #98a29c;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
footer .credits { text-align: right; font-size: 11px; line-height: 1.5; color: #7d8880;
  border: 1px solid #44514A; border-radius: 6px; padding: 7px 12px; }
@media (max-width: 700px) { footer .credits { text-align: left; } }
@media (max-width: 700px) { footer .wrap { grid-template-columns: 1fr; } }

/* ---------- Thanks / sync ---------- */
.center-box { max-width: 560px; margin: 90px auto; text-align: center; padding: 0 24px; }
.center-box h1 { font-size: 30px; margin-bottom: 12px; }
.badge { font-size: 46px; margin-bottom: 18px; }
