/* ================================================================
   СТАНЭКСПЕРТ — Главный CSS шаблон v2
   Шрифты: Magistral Extra Bold (заголовки), Futura PT Demi (подзаголовки), Futura PT Book (текст)
   Цвета: #004D76 (синий), #FF2D2D (красный), #001F45 (текст), #F8FAFC (фон)
   ================================================================ */

/* Magistral Extra Bold — заголовки */
@font-face {
  font-family: 'Magistral';
  src: url('fonts/Magistral-ExtraBoldItalic.woff2') format('woff2'),
       url('fonts/Magistral-ExtraBoldItalic.woff') format('woff'),
       url('fonts/Magistral-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Futura PT Book — основной текст */
@font-face {
  font-family: 'Futura PT';
  src: url('fonts/FuturaPT-Book.woff2') format('woff2'),
       url('fonts/FuturaPT-Book.woff') format('woff'),
       url('fonts/FuturaPT-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Futura PT Demi — подзаголовки */
@font-face {
  font-family: 'Futura PT';
  src: url('fonts/FuturaPT-Demi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── CSS переменные ─────────────────────────────────────────── */
:root {
  --clr-btn-select:   #004D76;
  --clr-btn-offer:    #FF2D2D;
  --clr-dark:         #001F45;
  --clr-dark2:        #16213E;
  --clr-dark3:        #1A3352;
  --clr-accent:       #FF2D2D;
  --clr-accent-hover: #E02525;
  --clr-text:         #001F45;
  --clr-text-muted:   #5A6B7F;
  --clr-bg:           #F8FAFC;
  --clr-bg-grey:      #F0F4F8;
  --clr-border:       #DCE3EB;
  --clr-heading:      #004D76;
  --clr-topbar:       #EFF5FB;
  --font-head:        'Magistral', 'Arial Black', sans-serif;
  --font-sub:         'Futura PT', 'Inter', 'Arial', sans-serif;
  --font-body:        'Futura PT', 'Inter', 'Arial', sans-serif;
  --radius:           9999px;
  --radius-sm:        8px;
  --radius-card:      12px;
  --shadow:           0 4px 20px rgba(0,31,69,.06);
  --shadow-hover:     0 8px 32px rgba(0,31,69,.12);
  --transition:       .25s ease;
  --header-topbar-h:  40px;
  --header-main-h:    64px;
  --header-h:         64px;  /* для mobile-nav offset — высота sticky main bar */
  --container:        1360px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--clr-heading);
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad { padding: 56px 0; }
.section-pad-sm { padding: 36px 0; }

/* ── Анимация появления ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Разделитель секций ──────────────────────────────────────── */
.section-divider {
  height: 4px;
  background: linear-gradient(to right, var(--clr-accent) 0%, var(--clr-accent) 30%, var(--clr-border) 30%);
}

/* ── Заголовки секций ────────────────────────────────────────── */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--clr-heading);
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--clr-accent);
  margin-bottom: 12px;
}
.section-title p {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================================
   КНОПКИ — полностью скруглённые (pill)
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
/* Синий — основной */
.btn-select {
  background: var(--clr-btn-select);
  color: #fff;
  border-color: var(--clr-btn-select);
}
.btn-select:hover {
  background: #003A5A;
  border-color: #003A5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,77,118,.35);
}
/* Красный — акцент */
.btn-offer {
  background: var(--clr-btn-offer);
  color: #fff;
  border-color: var(--clr-btn-offer);
}
.btn-offer:hover {
  background: var(--clr-accent-hover);
  border-color: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,45,45,.35);
}
/* Outline на тёмном фоне */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
/* Outline на светлом фоне */
.btn-outline-dark {
  background: transparent;
  color: var(--clr-dark);
  border-color: var(--clr-dark);
}
.btn-outline-dark:hover {
  background: var(--clr-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ================================================================
   HEADER — два состояния: полный и компактный при скролле
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,31,69,.08);
}
.site-header.scrolled .header-topbar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

/* ── Topbar: навигация + телефон ─────────────────────────── */
.header-topbar {
  max-height: 44px;
  opacity: 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,31,69,.06);
  transition: max-height .4s cubic-bezier(.4,0,.2,1),
              opacity .3s ease,
              border-bottom-color .3s ease;
  will-change: max-height, opacity;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 44px;
  gap: 32px;
}
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}
.topbar-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--clr-text-muted);
  letter-spacing: .2px;
  transition: color var(--transition);
  position: relative;
}
.topbar-nav a:hover { color: var(--clr-btn-select); }
.topbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-btn-select);
  transition: width .25s ease;
}
.topbar-nav a:hover::after { width: 100%; }
.topbar-phone {
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-dark);
  white-space: nowrap;
  letter-spacing: .3px;
}
.topbar-phone:hover { color: var(--clr-btn-select); }

/* ── Main header bar ─────────────────────────────────────── */
.header-main {
  height: var(--header-main-h);
}
.header-main > .container {
  height: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

/* Лого */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img { height: 34px; width: auto; display: block; }

/* ── Кнопка Каталог ──────────────────────────────────────── */
.header-catalog-wrap {
  position: relative;
  flex-shrink: 0;
}
.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  background: var(--clr-btn-offer);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-catalog:hover {
  background: var(--clr-accent-hover);
  box-shadow: 0 4px 14px rgba(255,45,45,.25);
}
.btn-catalog svg { flex-shrink: 0; }

/* ── Кнопка Каталог: активное состояние ─────────────────── */
.btn-catalog.active {
  background: var(--clr-btn-select);
}
.btn-catalog.active svg path {
  d: path("M1 1l8 6-8 6");
  transition: d .2s ease;
}

/* ── Мегаменю каталога (на всю ширину) ──────────────────── */
.catalog-mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,31,69,.18);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.catalog-mega-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.catalog-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 16px 48px rgba(0,31,69,.12);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1),
              opacity .25s ease;
}
.catalog-mega.open {
  max-height: 500px;
  opacity: 1;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px 0 20px;
}

.mega-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  border-radius: 12px;
  background: var(--clr-bg);
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--clr-text);
}
.mega-card:hover {
  border-color: var(--clr-btn-select);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,77,118,.1);
  transform: translateY(-2px);
}

.mega-card-img {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: var(--clr-bg-grey);
  transition: all var(--transition);
}
.mega-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}
.mega-card:hover .mega-card-img img {
  transform: scale(1.08);
}
.mega-card-placeholder {
  width: 40px;
  height: 40px;
  color: var(--clr-text-muted);
  opacity: .5;
}

.mega-card-title {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--clr-dark);
}
.mega-card:hover .mega-card-title {
  color: var(--clr-btn-select);
}

.mega-footer {
  padding: 0 0 24px;
  text-align: center;
}
.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 15px;
  color: var(--clr-btn-select);
  padding: 10px 28px;
  border: 2px solid var(--clr-btn-select);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mega-all-link:hover {
  background: var(--clr-btn-select);
  color: #fff;
}

/* ── Навигация в основной шапке (центральная) ────────────── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 12px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-muted);
  letter-spacing: .2px;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--clr-btn-select); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-btn-select);
  transition: width .25s ease;
}
.header-nav a:hover::after { width: 100%; }

/* Телефон в основной шапке */
.header-phone {
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-dark);
  white-space: nowrap;
  letter-spacing: .3px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--clr-btn-select); }

/* ── Правая часть: поиск + корзина ───────────────────────── */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Поиск */
.header-search { flex-shrink: 0; }
.search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color var(--transition);
}
.search-form:focus-within { border-color: var(--clr-btn-select); }
.search-input {
  border: none;
  outline: none;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--clr-text);
  background: transparent;
  width: 180px;
}
.search-input::placeholder { color: #9AABB8; }
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  border-left: 1px solid var(--clr-border);
  cursor: pointer;
  color: var(--clr-text-muted);
  transition: color var(--transition), background var(--transition);
}
.search-btn:hover { color: var(--clr-btn-select); background: var(--clr-bg-grey); }

/* Корзина — тележка */
.header-cart {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-dark);
  transition: color var(--transition);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.header-cart:hover { color: var(--clr-btn-select); }
.header-cart svg { width: 26px; height: 26px; }
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--clr-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.show { display: flex; }

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-dark); transition: .3s; border-radius: 2px; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Мобильное меню */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--clr-btn-select); }
.mobile-nav .mobile-nav-sub { padding-left: 28px; font-size: 14px; text-transform: none; letter-spacing: 0; color: var(--clr-text-muted); }
.mobile-nav-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.mobile-nav-btns .btn { width: 100%; justify-content: center; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--clr-accent); color: #fff; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-accent);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }

/* Реквизиты */
.footer-requisites {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-requisites-text {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}
.footer-requisites-text strong { color: rgba(255,255,255,.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* ================================================================
   МОДАЛЬНОЕ ОКНО ОБРАТНОЙ СВЯЗИ
   ================================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,31,69,.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,31,69,.25);
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--clr-text-muted);
  line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--clr-dark); }
.modal-title {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--clr-heading);
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--clr-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--clr-text);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--clr-btn-select); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--clr-text-muted);
  cursor: pointer;
  line-height: 1.4;
}
.form-checkbox input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--clr-btn-select); cursor: pointer; }
.form-checkbox a { color: var(--clr-btn-select); text-decoration: underline; }
.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ================================================================
   COOKIES ПОПАП
   ================================================================ */
.cookies-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-dark);
  color: rgba(255,255,255,.85);
  padding: 16px 20px;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookies-bar.show { display: flex; }
.cookies-bar-text { font-size: 13px; line-height: 1.5; }
.cookies-bar-text a { color: var(--clr-accent); text-decoration: underline; }
.cookies-bar-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookies-bar .btn { padding: 10px 24px; font-size: 13px; }

/* ================================================================
   АДАПТИВНОСТЬ
   ================================================================ */
@media (max-width: 1200px) {
  .header-nav { gap: 16px; }
  .header-nav a { font-size: 13px; }
  .header-phone { font-size: 13px; }
}
@media (max-width: 1100px) {
  .header-nav { display: none; }  /* прячем nav в шапке — есть мобильное меню */
  .header-phone { display: none; }
  .search-input { width: 140px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mega-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }
  .header-right .header-search { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-requisites { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-pad { padding: 48px 0; }
  .modal-box { padding: 28px 20px; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 20px 0 16px; }
  .mega-card { padding: 14px 8px; }
  .mega-card-img { width: 60px; height: 60px; }
  .mega-card-title { font-size: 12px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .logo-img { height: 28px; }
  .btn-catalog { padding: 8px 16px; font-size: 13px; }
}
