.main-nav {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  justify-content: center;
}
.main-nav-btn {
  background: #111;
  color: #fff;
  border-radius: 25px;
  padding: 12px 32px;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.18s;
}
.main-nav-btn:hover {
  background: #ffb800;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(255,215,0,0.13);
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-color: #f4f4f4;
}

/* Улучшение мобильного рендеринга текста на iOS/Android */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Эффекты логотипа: shimmer + pulse-on-hover */
.logo {
  position: relative;
  display: inline-block;
}
/* Диагональный блик, пробегающий раз в 6с */
.logo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  width: 50%;
  transform: skewX(-20deg);
  left: -150%;
  animation: logo-shimmer 6s ease-in-out infinite;
}
@keyframes logo-shimmer {
  0% { left: -150%; }
  18% { left: 150%; }
  100% { left: 150%; }
}
/* Пульсирующее свечение при наведении */
.logo:hover .logo-img {
  animation: logo-pulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,184,0,0.6));
}
@keyframes logo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .logo::after { animation: none; }
  .logo:hover .logo-img { animation: none; }
}

.main-nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-color, #ffb800);
}

.header-actions {
  position: relative;
}

.cart-icon-link {
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.cart-icon {
  font-size: 2rem;
}

.cart-counter {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: var(--primary-color, #ffb800);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid white;
}

/* --- Мобильные адаптации шапки и элементов --- */
@media (max-width: 768px) {
  .site-header { padding: 12px 14px; }
  .header-container { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .logo img { width: 34px; height: 34px; }
  .cart-icon { font-size: 1.6rem; }
  .cart-counter { width: 20px; height: 20px; font-size: 0.75rem; top: -6px; right: -8px; }
  .main-nav { gap: 12px; flex-wrap: wrap; }
  .main-nav-btn { padding: 10px 18px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .site-header { padding: 10px 10px; }
  .header-container { gap: 8px; }
  .logo span { font-size: 1.2rem; }
}

.site-top-bar {
  width: 100vw;
  height: 32px;
  background: #111;
  margin-bottom: 0;
}

.main-logo-section {
  background: #ffb800;
  border-radius: 24px;
  max-width: 700px;
  margin: 40px auto 32px auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  padding: 48px 24px 36px 24px;
  text-align: center;
}
.main-logo-section img {
  width: 180px;
  height: auto;
  margin-bottom: 18px;
}
.main-logo-section .main-title {
  font-size: 2.3rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-shadow: none;
}
.main-logo-section .company-small {
  font-size: 1.1rem;
  font-weight: normal;
}
.main-logo-section .main-slogan {
  font-size: 1.15em;
  color: #222;
  margin-bottom: 18px;
  border: none;
  padding: 0;
}
.hero-cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.main-logo {
  width: 220px;
  max-width: 80vw;
  margin-bottom: 10px;
  margin-top: 10px;
}
.main-title {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 2px;
  color: #111;
  margin: 0;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 #111;
}
.company-small {
  font-size: 0.5em;
  font-weight: normal;
  vertical-align: super;
}
.main-slogan {
  font-size: 0.95em;
  color: #111;
  margin-bottom: 18px;
  letter-spacing: 1px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 6px 0 4px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.catalog {
  margin-top: 30px;
}
.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 32px;
  padding: 0 10px;
}
.category-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 18px 22px 18px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  min-height: 180px;
}
.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
}
.category-card span {
  font-size: 1.18em;
  font-weight: bold;
  color: #222;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.5px;
}
.subcategory-list {
  margin: 0;
  padding-left: 18px;
  font-size: 1em;
  color: #444;
}
.cart-section {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  max-width: 600px;
  margin: 32px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
footer {
  background: #ffb800;
  color: #111;
  text-align: center;
  padding: 15px 0;
  border-top: 2px solid #111;
}
.home-hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.hero-block {
  background: #fffbe6;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  max-width: 600px;
  margin: 40px auto 0 auto;
  padding: 40px 30px;
  text-align: center;
}
.hero-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #111;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 1.15em;
  color: #333;
  margin-bottom: 28px;
}
.btn-main {
  display: inline-block;
  padding: 12px 32px;
  background: #ffb800;
  color: #111;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.btn-main:hover {
  background: #111;
  color: #fff;
}
.contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  max-width: 500px;
  margin: 32px auto;
  padding: 28px 22px;
  text-align: left;
}
.contacts-block div {
  margin-bottom: 14px;
  font-size: 1.08em;
}
.contacts-block a {
  color: #ffb800;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.contacts-block a:hover {
  color: #111;
  text-decoration: underline;
}
.manager-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  max-width: 400px;
  margin: 32px auto;
  padding: 22px 18px;
  text-align: left;
}
.manager-block h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #111;
}
.manager-block div {
  margin-bottom: 10px;
  font-size: 1.08em;
}
.manager-block a {
  color: #ffb800;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.manager-block a:hover {
  color: #111;
  text-decoration: underline;
}
.manager-mini {
  background: #fffbe6;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 10px 12px;
  margin: 12px 0;
  font-size: 0.98em;
  text-align: left;
}
.manager-mini a {
  color: #ffb800;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.manager-mini a:hover {
  color: #111;
  text-decoration: underline;
}

/* Стили, соответствующие React Home.jsx */
.hero-section {
  background: linear-gradient(180deg, #fffbe6 0%, #ffffff 100%);
  padding: 56px 14px;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.05;
  color: #111;
  margin-bottom: 12px;
}
.hero-content p {
  font-size: 1.05rem;
  color: #333;
  max-width: 640px;
}
.cta-button,
.btn-main {
  display: inline-block;
  padding: 12px 28px;
  background: #ffb800;
  color: #111;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .14s ease, background .14s ease;
}
.cta-button:hover,
.btn-main:hover {
  transform: translateY(-4px);
  background: #111;
  color: #fff;
}
.promo-construction {
  padding: 36px 14px 56px 14px;
}
.promo-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.promo-text {
  flex: 1 1 420px;
}
.promo-text h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #111;
}
.promo-text ul {
  margin-top: 10px;
  margin-left: 18px;
  color: #444;
  list-style: none;
}
.promo-text ul li::before {
  content: '•';
  margin-right: 8px;
  color: #ffb800;
}
.promo-image {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
}
.promo-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
/* Модальное окно */
.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #fff;
  padding: 26px;
  border-radius: 12px;
  width: 92%;
  max-width: 520px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  position: relative;
  text-align: left;
}
.modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}
.advantages {
  padding: 36px 14px 60px 14px;
}
.advantages h2 { text-align: center; margin-bottom: 18px; color: #111; }
.advantages-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.advantage-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.advantage-card h3 { margin-top: 10px; color: #111; }
.advantage-card p { color: #555; margin-top: 8px; }
.icon { display: inline-block; width: 56px; height: 56px; border-radius: 10px; background: #fffbe6; margin: 0 auto; }
.icon.quality { background-image: url('/images/icons/quality.svg'); background-repeat: no-repeat; background-position: center; }
.icon.delivery { background-image: url('/images/icons/delivery.svg'); background-repeat: no-repeat; background-position: center; }
.icon.price { background-image: url('/images/icons/price.svg'); background-repeat: no-repeat; background-position: center; }

/* Адаптив */
@media (max-width: 768px) {
  .hero-content { padding: 0 8px; }
  .hero-content h1 { font-size: 1.8rem; }
  .promo-image { margin-top: 18px; }
}

/* Стили для главной страницы */
.home-hero {
  background: #ffb800;
  border-radius: 24px;
  max-width: 700px;
  margin: 40px auto 32px auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  padding: 48px 24px 36px 24px;
  text-align: center;
}
.home-hero-logo { width: 180px; height: auto; margin-bottom: 18px; }
.home-hero-title { font-size: 2.3rem; font-weight: 700; color: #111; margin-bottom: 8px; letter-spacing: 2px; }
.home-hero-title span { font-size: 1.1rem; font-weight: 400; }
.home-hero-slogan { font-size: 1.15em; color: #222; margin-bottom: 18px; }
.home-hero-nav { margin-top: 24px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.home-hero-btn {
  background: #fff;
  color: #333;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.home-hero-btn:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.home-section { max-width: 1100px; margin: 56px auto 0 auto; padding: 0 15px; }
.home-section-title { text-align: center; font-size: 2rem; color: #333; margin-bottom: 30px; }

/* Отзывы */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 32px; }
.review-card { background: #fff; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.07); padding: 24px; display: flex; flex-direction: column; }
.review-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-author span { font-weight: 700; color: #111; }
.review-card p { color: #444; font-size: 1.08em; flex-grow: 1; }
.review-rating { margin-top: 10px; color: #ffd700; font-size: 1.2em; }

/* Категории */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.category-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.07); text-decoration: none; color: #333; padding: 18px 0; display: flex; flex-direction: column; align-items: center; transition: all .3s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.category-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; margin-bottom: 12px; }
.category-card h3 { margin: 0; font-size: 1.15rem; }

/* Адаптив для главной */
@media (max-width: 768px) {
  .home-hero { margin: 24px 12px; padding: 32px 16px; }
  .home-hero-title { font-size: 1.8rem; }
}

/* Конец добавленных стилей для Home.jsx */

/* --- Главная: промо-лента --- */
.promo-ribbon {
  position: relative;
  margin: 24px auto 0 auto;
  max-width: 1100px;
  padding: 0 14px;
}
.promo-ribbon-inner {
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.promo-ribbon-text { font-size: 1.02rem; }
.promo-ribbon-text strong { color: #ffb800; }
.promo-ribbon-btn {
  background: #ffb800;
  color: #111;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform .14s ease, background .14s ease;
}
.promo-ribbon-btn:hover { transform: translateY(-2px); background: #ffd24d; }
.promo-ribbon-glow {
  position: absolute; inset: -20px; pointer-events: none;
  background: radial-gradient(600px 80px at 20% 50%, rgba(255,184,0,0.25), transparent 60%);
}
.promo-ribbon-glow.second {
  background: radial-gradient(600px 80px at 80% 50%, rgba(255,184,0,0.18), transparent 60%);
}
.promo-ribbon-stripe {
  position: absolute; left: -30%; top: 0; width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: ribbon-sheen 6s ease-in-out infinite;
}
.promo-ribbon-stripe.second { left: -50%; animation-delay: 2.2s; }
@keyframes ribbon-sheen { 0% { left: -60%; } 25% { left: 120%; } 100% { left: 120%; } }

/* --- Главная: избранный товар --- */
.featured-product { padding-top: 10px; }
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 16px;
  max-width: 1100px;
  margin: 0 auto 8px auto;
}
.featured-media { position: relative; }
.featured-media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 12px;
}
.featured-media .badge {
  position: absolute; left: 12px; top: 12px;
  background: #ffb800; color: #111;
  padding: 6px 10px; border-radius: 999px; font-weight: 800; font-size: .9rem;
  box-shadow: 0 6px 14px rgba(255,184,0,0.35);
}
.featured-info { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.featured-info h3 { margin: 0; font-size: 1.5rem; color: #111; }
.featured-info p { margin: 0; color: #444; }
.featured-actions { margin-top: 6px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-outline {
  display: inline-block; padding: 11px 18px; border-radius: 10px;
  text-decoration: none; font-weight: 700; color: #111; border: 2px solid #e6e6e6;
  transition: all .14s ease; background: #fff;
}
.btn-outline:hover { transform: translateY(-2px); border-color: #ccc; }

@media (max-width: 860px) {
  .featured-card { grid-template-columns: 1fr; }
}

/* --- Главная: по одному товару из каждой категории --- */
.category-highlights { padding: 8px 0 0 0; }
.category-highlights .highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 8px auto 0 auto;
  padding: 0 14px;
}
.highlight-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}
.highlight-card .card-media { aspect-ratio: 3 / 2; background: #fafafa; }
.highlight-card .card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.highlight-card .card-info { padding: 12px 14px; display: grid; gap: 6px; }
.highlight-card .card-cat { color: #888; font-size: .92rem; }
.highlight-card .card-name { font-weight: 700; color: #111; }
.category-highlights .section-cta { text-align: center; margin: 14px 0 0 0; }
.category-highlights .section-cta .cta-button { padding: 11px 18px; border-radius: 10px; }

@media (max-width: 980px) {
  .category-highlights .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .category-highlights .highlight-grid { grid-template-columns: 1fr; }
}

/* --- Главная: популярные товары --- */
.popular-products { padding-top: 6px; }
.popular-products .popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 6px auto 0 auto;
  padding: 0 14px;
}
.popular-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .16s ease, box-shadow .16s ease;
}
.popular-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,0.1); }
.popular-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.popular-card .title { font-weight: 700; padding: 10px 12px 4px 12px; color: #111; }
.popular-card .price { padding: 0 12px 12px 12px; color: #0c7a0c; font-weight: 700; }
@media (max-width: 980px) {
  .popular-products .popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .popular-products .popular-grid { grid-template-columns: 1fr; }
}

/* --- Главная: обновлённые преимущества --- */
.advantages.modern { padding: 4px 14px 24px 14px; max-width: 1100px; margin: 0 auto; }
.advantages.modern .advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.advantages.modern .advantage-card {
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid #f0f0f0;
}
.advantages.modern .advantage-card.big { grid-column: span 2; background: linear-gradient(180deg, #fff7dd, #fff2c4); }
.advantages.modern .adv-ico { font-size: 28px; }
.advantages.modern h3 { margin: 0; color: #111; }
.advantages.modern p { margin: 0; color: #505050; }
@media (max-width: 980px) {
  .advantages.modern .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages.modern .advantage-card.big { grid-column: span 2; }
}
@media (max-width: 620px) {
  .advantages.modern .advantages-grid { grid-template-columns: 1fr; }
}

/* ---- Расширенный футер ---- */
.site-footer { background: #111; color: #ddd; margin-top: 40px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .footer-top { max-width: 1200px; margin: 0 auto; padding: 32px 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.site-footer .footer-title { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.site-footer .footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer .footer-list li { color: #ccc; }
.site-footer .footer-text { color: #ccc; line-height: 1.6; }
.site-footer .footer-socials { display: grid; gap: 8px; }
.site-footer .social-btn { display: inline-block; background: #222; color: #fff; padding: 10px 12px; border-radius: 10px; transition: background .2s ease; }
.site-footer .social-btn:hover { background: #333; }
.site-footer .partner-btn { display: inline-block; background: #ffb800; color: #111; font-weight: 800; padding: 10px 14px; border-radius: 10px; }
.site-footer .footer-bottom { border-top: 1px solid #222; padding: 14px 20px; }
.site-footer .footer-bottom .footer-note, .site-footer .footer-bottom .footer-copy { max-width: 1200px; margin: 0 auto; color: #bbb; }
.site-footer .footer-bottom .footer-note { margin-bottom: 6px; }

@media (max-width: 992px) {
  .site-footer .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .site-footer .footer-top { grid-template-columns: 1fr; }
}
