/*
Theme Name: Alco Shop
Theme URI: https://example.com/alco-shop
Author: Codex
Author URI: https://example.com
Description: Mobile-first WooCommerce alcohol shop theme.
Version: 1.0.0
Text Domain: alco-shop
*/

:root {
  --bg: #f7f7fb;
  --card: #ffffff;
  --text: #1f1f2a;
  --muted: #6b6b7a;
  --accent: #ff4f9a;
  --accent-strong: #e83b86;
  --border: #ececf3;
  --shadow: 0 8px 24px rgba(26, 26, 46, 0.08);
  --radius: 14px;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", "Jost", "Nunito", sans-serif;
  background-color: var(--bg);
  background-image: url("assets/images/bg-bar.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
}

nav.breadcrumb {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 6px 0 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(10, 10, 18, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.8);
}
nav.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
nav.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}
nav.breadcrumb .breadcrumb_last {
  color: #fff;
  font-weight: 700;
}

.page-title {
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 16px;
  color: #f5f6fb;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.catalog-categories {
  margin-top: 12px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-btn {
  position: relative;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  background: #fff;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(16, 16, 26, 0.06);
}

.category-btn.is-active {
  border-color: var(--accent);
  color: #111;
}

.category-btn.is-wide {
  grid-column: span 2;
}

.category-btn .indicator {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--accent);
  opacity: 0;
}

.category-btn.is-active .indicator {
  opacity: 1;
}

.catalog-products {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 84px;
}

.catalog-seo {
  margin: 18px 0 96px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #ececf3;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
}

.catalog-seo h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  color: #1f1f2a;
}

.catalog-seo p {
  margin: 0 0 12px;
  color: #313141;
  line-height: 1.65;
}

.catalog-seo-subtitle {
  margin: 18px 0 8px;
  font-size: 19px;
  color: #1f1f2a;
}

.catalog-seo-list {
  margin: 0 0 10px;
  padding-left: 20px;
  columns: 2;
  column-gap: 24px;
}

.catalog-seo-list li {
  margin-bottom: 6px;
  color: #313141;
  break-inside: avoid;
}

.catalog-seo-cta {
  margin-bottom: 0;
  font-weight: 700;
}

@media (max-width: 520px) {
  .catalog-seo-list {
    columns: 1;
  }
}

.catalog-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f6;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.catalog-card.is-hidden {
  display: none;
}

.card-link {
  display: block;
  padding: 14px;
  color: inherit;
}

.image-box {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box img {
  max-height: 160px;
  object-fit: contain;
}

.card-meta h2 {
  font-size: 16px;
  font-weight: 800;
  margin: 10px 0 6px;
  min-height: 44px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 0 14px 14px;
}

.btn-icon {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.25px;
  padding: 10px 12px;
  cursor: pointer;
}

.card-actions .btn-icon {
  align-self: stretch;
}

.home-hero {
  text-align: center;
  padding: 24px 10px 10px;
}

.home-title {
  font-size: 28px;
  font-weight: 800;
  color: #f7f8fc;
  margin: 10px 0 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-blur {
  display: inline-block;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 10, 18, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 8px 0 16px;
}

.home-subtitle {
  color: #e6e7ee;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.home-subtitle span {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
}

.home-section-title {
  font-size: 20px;
  font-weight: 800;
  color: #f5f6fb;
  margin: 22px 0 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.home-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 22px;
  max-width: 520px;
  display: grid;
  gap: 14px;
}

.home-features li {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.home-features h3 {
  margin: 0;
  font-size: 18px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffe2f0;
  color: #cc2d78;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.home-steps {
  margin: 0 auto 24px;
  padding-left: 20px;
  max-width: 520px;
  color: #e6e7ee;
  text-align: left;
  display: grid;
  gap: 12px;
}

.home-steps p { margin: 6px 0 0; }

.home-seo {
  margin: 16px auto 96px;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #ececf3;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
  color: #20202b;
}

.home-seo h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
}

.home-seo p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: #313141;
}

.home-seo-subtitle {
  margin: 18px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.home-seo-list,
.home-seo-steps {
  margin: 0 0 8px;
  padding-left: 20px;
  display: grid;
  gap: 7px;
  color: #313141;
}

.home-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 10px;
}

.home-seo-cta {
  margin-bottom: 0;
  font-weight: 700;
}

.btn-inline {
  display: inline-block;
  background: var(--accent-strong);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

.header-stack {
  position: sticky;
  top: 0;
  z-index: 15;
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 16, 26, 0.08);
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  min-width: 0;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-logo-fallback {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-logo-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.brand-logo-subtitle {
  font-size: 10px;
  color: #8d4a4f;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .brand-logo-title { font-size: 14px; }
  .brand-logo-subtitle { font-size: 8.5px; }
  .brand-logo-subtitle--hours { display: none; }
}

.header-center {
  display: none;
}

.header-nav {
  display: none;
  gap: 16px;
  font-weight: 700;
  font-size: 14px;
  color: #333;
}

.header-nav a {
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}

.header-nav a:hover {
  border-bottom-color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  margin-left: 12px;
}

.header-telegram {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 12px;
  color: #fff;
}

.header-cart {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  border-radius: 12px;
}

.cart-badge {
  position: absolute;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ff2d55;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}

.cart-badge.is-visible {
  display: inline-flex;
}

.cart-badge--header {
  top: -6px;
  right: -8px;
}

.mobile-title {
  display: none;
}

.mobile-title .mobile-page-title {
  flex: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f4f4f8;
  color: #111;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
  display: block;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  transform: rotate(90deg);
}

.mobile-nav {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 16px 12px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  font-weight: 700;
  font-size: 13px;
  color: #555;
  padding: 10px 8px;
  border-radius: 12px;
  background: #f4f4f8;
  text-align: center;
}

.call-btn {
  margin: 8px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  background: #17a000;
  color: #fff;
  font-weight: 900;
  border-radius: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.call-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 16px;
}

.category-cell {
  padding: 12px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.category-cell.is-active {
  border-color: var(--accent);
  color: #111;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 84px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card .title {
  font-size: 14px;
  font-weight: 700;
  min-height: 38px;
}

.product-card .price {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-strong);
}

.product-card .volume {
  font-size: 12px;
  color: var(--muted);
}

.product-card .btn {
  margin-top: auto;
}

.card-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.active-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.active-controls.is-hidden {
  display: none;
}

.active-controls-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding-right: 52px;
}

.active-controls-top .qty-inline,
.active-controls-top .qty-control {
  margin-right: auto;
  max-width: 100%;
}

.qty-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f3f8;
  border-radius: 999px;
  padding: 6px 8px;
}

.qty-inline.is-hidden { display: none; }

.qty-inline button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: #fff;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.qty-inline span {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
}

.go-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12121a;
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.card-actions .btn-icon.is-hidden { display: none; }

.product-hero {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.product-page {
  padding-bottom: 120px;
}

.product-image-box {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-height: 360px;
  object-fit: contain;
}

.product-seo {
  margin: 12px 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-meta h1 {
  font-size: 22px;
  margin: 12px 0 8px;
}

.product-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-strong);
}

.product-specs {
  margin-top: 16px;
  padding: 12px;
  background: #fafafe;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.product-specs h2 {
  font-size: 16px;
  margin: 0 0 8px;
}

.product-specs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.product-specs span { color: var(--muted); }
.product-specs strong { font-weight: 700; }

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 8px;
}

.qty-control.is-hidden { display: none; }

.qty-control button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: #f2f2f8;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.qty-control input {
  width: 28px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn.is-hidden { display: none; }

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.night-cta, .brand-cta, .geo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}
.night-cta .btn, .brand-cta .btn, .geo-cta .btn {
  width: auto;
  min-width: 200px;
}

.product-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.active-controls-top--product .qty-control {
  flex-shrink: 0;
}

.product-actions .go-cart-btn {
  min-height: 46px;
  font-size: 13px;
}

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

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-title {
  text-align: center;
  font-size: 28px;
  margin-top: 18px;
  color: #f7f8fc;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cart-empty {
  display: none;
  text-align: center;
  color: #e6e7ee;
  margin: 24px 0 16px;
}

.cart-empty.is-visible {
  display: block;
}

.cart-empty-face {
  font-size: 26px;
  margin: 0 0 6px;
  color: #f0f1f6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.cart-filled {
  display: block;
}

.cart-filled.is-hidden {
  display: none;
}

.cart-row {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-meta .title {
  font-weight: 700;
}

.cart-meta .price {
  color: var(--accent-strong);
  font-weight: 700;
}

.cart-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.remove-icon {
  border: none;
  background: transparent;
  color: #e24a4a;
  cursor: pointer;
}

.remove-icon--far {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.active-controls-top .remove-icon--far {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
}

.cart-right .remove-icon {
  order: -1;
  margin-left: 0;
  margin-right: 8px;
}

@media (max-width: 420px) {
  .active-controls-top {
    padding-right: 48px;
  }

  .remove-icon--far {
    width: 40px;
    height: 40px;
  }

  .go-cart-btn {
    font-size: 11px;
    padding: 9px 10px;
  }
}

.remove-icon svg {
  width: 22px;
  height: 22px;
}

.remove-icon.is-hidden {
  display: none;
}

.cart-form {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin: 18px 0 84px;
}

.order-form {
  display: grid;
  gap: 14px;
}

.order-form label {
  font-size: 16px;
  font-weight: 700;
  color: #3b3b47;
  display: block;
  margin-bottom: 6px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 2px solid #f1b7d2;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  background: #fff;
  color: #111;
}

.order-form textarea {
  resize: none;
}

.order-form .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-top: 8px;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.order-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 24, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
}

.order-modal.is-open {
  display: flex;
}

.order-modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 15, 25, 0.2);
}

.order-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e7f7ee;
  color: #1f8b4c;
  font-size: 34px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.order-modal-card h2 {
  margin: 0 0 8px;
}

.order-modal-card p {
  margin: 0 0 6px;
  color: var(--muted);
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(16, 16, 26, 0.12);
}

.bottom-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.bottom-link.is-active {
  color: #111;
}

.nav-icon-wrap {
  position: relative;
  display: inline-flex;
}

.cart-badge--nav {
  top: -7px;
  right: -12px;
}

.nav-icon {
  width: 22px;
  height: 22px;
}

.notice {
  padding: 10px 12px;
  background: #fff7fb;
  border: 1px solid #ffd4e6;
  border-radius: 12px;
  color: #c5246f;
  font-size: 14px;
}

.page-seo {
  margin: 16px 0 96px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #ececf3;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
}

.page-seo h1,
.page-seo h2 {
  color: #1f1f2a;
  line-height: 1.32;
}

.page-seo h1 {
  margin: 0 0 14px;
  font-size: 28px;
}

.page-seo h2 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.page-seo p,
.page-seo li {
  color: #313141;
  line-height: 1.65;
}

.page-seo p {
  margin: 0 0 12px;
}

.page-seo ul,
.page-seo ol {
  margin: 0 0 10px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bottom-nav { max-width: 480px; margin: 0 auto; border-radius: 16px 16px 0 0; }
  .home-title { font-size: 34px; }
  .catalog-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-image-box { height: 420px; }
  .product-image { max-height: 420px; }
  .header-center {
    position: static;
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 16px;
    justify-content: center;
  }
  .header-nav { display: flex; justify-content: center; width: auto; }
  .brand-logo img, .brand-logo-fallback { width: 52px; height: 52px; border-radius: 12px; }
  .brand-logo-title { font-size: 38px; }
  .brand-logo-subtitle { font-size: 14px; }
  .header-left { min-width: 360px; }
  .header-right { min-width: 112px; justify-content: flex-end; }
  .mobile-title { display: none; }
  .mobile-nav { display: none; }
  .nav-toggle { display: none; }
  .call-btn { display: flex; max-width: 520px; margin: 12px auto 22px; }
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0 20px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  margin-bottom: 24px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Бренды в категориях ──────────────────────────────────────────────────── */
.cat-brands-block {
  margin: 10px 0 18px;
}
.cat-brands-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cat-brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-brand-chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.cat-brand-chip:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
