/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #2B7DE9;
  --blue-dark: #1A6AD4;
  --blue-light: #E8F1FC;
  --orange: #E8792B;
  --orange-dark: #D06820;
  --concrete: #3C3C3C;
  --concrete-dark: #2A2A2A;
  --concrete-light: #4D4D4D;
  --white: #FFFFFF;
  --gray-bg: #F4F4F2;
  --gray-light: #D9D9D6;
  --gray: #8C8C8C;
  --text: #2A2A2A;
  --text-light: #5A5A5A;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --radius: 4px;
  --container: 1200px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  color: var(--blue-dark);
}

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 50px 0;
}

/* ===== PLACEHOLDER IMAGE ===== */
.placeholder-img {
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  text-align: center;
  overflow: hidden;
  border-radius: var(--radius);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--concrete);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
}

.top-bar__item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.top-bar__item a {
  color: var(--white);
}

.top-bar__item a:hover {
  opacity: 0.8;
}

.top-bar__cart {
  background: var(--concrete-dark);
  color: var(--white) !important;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  text-decoration: none;
}

.top-bar__cart:hover {
  opacity: 0.9;
  color: var(--white);
}

.top-bar__cart.has-items {
  background: var(--blue);
  color: var(--white);
}

.top-bar__cart.has-items:hover {
  background: var(--blue-dark);
  opacity: 1;
}

/* Cart dropdown wrapper */
.top-bar__cart-wrap {
  position: relative;
}

/* Cart dropdown */
.cart-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.16);
  z-index: 300;
  display: none;
}

.cart-dropdown.active {
  display: block;
}

.cart-dropdown__header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.cart-dropdown__empty {
  padding: 30px 16px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

.cart-dropdown__items {
  max-height: 260px;
  overflow-y: auto;
}

.cart-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-light);
}

.cart-dropdown__item-img {
  width: 50px;
  height: 50px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray);
}

.cart-dropdown__item-info {
  flex: 1;
  min-width: 0;
}

.cart-dropdown__item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-dropdown__item-meta {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

.cart-dropdown__item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.cart-dropdown__footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-light);
}

.cart-dropdown__total {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.cart-dropdown__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
}

.cart-dropdown__link:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* Utility classes */
.text-left { text-align: left; }
.section--compact { padding-top: 15px; }
.mt-10 { margin-top: 10px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.footer__legal { margin-top: 15px; }
.footer__legal a { font-size: 13px; color: inherit; }
.footer__legal + .footer__legal { margin-top: 5px; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header__logo {
  flex-shrink: 0;
  margin-right: 20px;
}

.header__logo img,
.header__logo svg {
  height: 90px;
  width: auto;
}

/* Callback button in header */
.header__callback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  text-decoration: none;
}

.header__callback:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.header__callback svg {
  width: 16px;
  height: 16px;
}

/* Search in header */
.header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  transition: color var(--transition);
  flex-shrink: 0;
}

.header__search:hover {
  color: var(--blue);
}

.header__search svg {
  width: 18px;
  height: 18px;
}

.header__search-bar {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  position: relative;
  z-index: 150;
}

.header__search-bar.active {
  max-height: 80px;
  padding: 12px 20px;
  overflow: visible;
}

.header__search-bar form {
  display: flex;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto;
}

.header__search-bar input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 14px;
}

.header__search-bar input:focus {
  border-color: var(--blue);
  outline: none;
}

.header__search-bar button {
  padding: 12px 24px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.header__search-bar button:hover {
  background: var(--blue-dark);
}

.header__catalog-wrap {
  position: relative;
  flex-shrink: 0;
  margin-right: 15px;
}

.header__shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--concrete);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
  text-decoration: none;
}

.header__shop-btn:hover {
  background: var(--concrete-dark);
  color: var(--white);
}

.header__shop-btn svg {
  width: 18px;
  height: 18px;
}

/* Navigation */
.header__nav {
  flex: 1;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  color: var(--text);
  font-size: 13px;
  padding: 8px 10px;
  display: block;
  white-space: nowrap;
  transition: color var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--blue);
}

/* Burger menu */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
  cursor: pointer;
}

.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 0 0 12px 12px;
  display: none;
  z-index: 200;
  width: 820px;
}

.mega-menu.active {
  display: block;
}

.mega-menu__inner {
  display: flex;
  min-height: 380px;
}

.mega-menu__roots {
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid var(--gray-light);
  padding: 12px 0;
  list-style: none;
}

.mega-menu__root-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 20px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}

.mega-menu__root-item a svg {
  width: 14px;
  height: 14px;
  color: var(--gray);
  flex-shrink: 0;
}

.mega-menu__root-item:hover a,
.mega-menu__root-item.active a {
  background: var(--blue-light);
  color: var(--blue);
}

.mega-menu__root-item:hover a svg,
.mega-menu__root-item.active a svg {
  color: var(--blue);
}

.mega-menu__panels {
  flex: 1;
  padding: 16px 24px;
  overflow-y: auto;
  max-height: 440px;
}

.mega-menu__panel {
  display: none;
}

.mega-menu__panel.active {
  display: block;
}

.mega-menu__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mega-menu__sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s;
}

.mega-menu__sub-item:hover {
  background: var(--gray-bg);
  color: var(--blue);
}

.mega-menu__sub-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.mega-menu__panel-all {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.mega-menu__panel-all:hover {
  text-decoration: underline;
}

.mega-menu__footer {
  padding: 12px 20px;
  border-top: 1px solid var(--gray-light);
}

.mega-menu__all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.mega-menu__all-link:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* Hide mobile-only nav extras on desktop */
.header__nav-mobile-extra { display: none; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 15px 0;
  font-size: 13px;
  color: var(--gray);
}

.breadcrumbs a {
  color: var(--gray);
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.breadcrumbs span {
  margin: 0 5px;
}

/* ===== HERO BANNER ===== */
.hero {
  background: var(--gray-bg);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero__slide {
  display: flex;
  align-items: center;
  min-height: 350px;
}

.hero__content {
  max-width: 450px;
  padding: 40px 0;
}

.hero__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero__list {
  margin-bottom: 25px;
}

.hero__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 16px;
}

.hero__list li::before {
  content: '—';
  position: absolute;
  left: 0;
}

.hero__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__image img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.hero__image .placeholder-img {
  width: 100%;
  max-width: 500px;
  height: 300px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text);
}

.section-title span {
  color: var(--blue);
}

.section-title--underline {
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 5px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card__img {
  height: 150px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  overflow: hidden;
  position: relative;
}

.service-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.3;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.service-card__title {
  padding: 15px;
  font-size: 15px;
  text-align: center;
  color: var(--text);
}

.service-card--accent {
  background: var(--concrete);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card--accent .service-card__title {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.advantage-item {
  text-align: center;
  padding: 20px 10px;
}

.advantage-item__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-item__icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.advantage-item__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}

.advantage-item__text {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== LICENSES ===== */
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.license-card {
  text-align: center;
}

.license-card .placeholder-img {
  height: 300px;
  margin-bottom: 15px;
}

.license-card__title {
  font-size: 13px;
  color: var(--blue);
  text-decoration: underline;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
}

.product-card__img {
  height: 180px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__img .placeholder-img {
  width: 120px;
  height: 140px;
  background: transparent;
}

.product-card__body {
  padding: 15px;
  text-align: center;
}

.product-card__title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.product-card__prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.product-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--concrete);
}

.product-card__price-old {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
}

.product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  width: 100%;
  max-width: 180px;
  transition: background var(--transition);
}

.product-card__btn:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.product-card__btn svg {
  width: 16px;
  height: 16px;
}

/* ===== PRODUCT CAROUSEL SECTION ===== */
.products-section {
  padding: 30px 0;
}

/* Inline search on results page */
.search-inline {
  display: flex;
  gap: 0;
  margin-bottom: 25px;
  position: relative;
}

.search-inline input {
  flex: 1;
  border: 2px solid var(--blue);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.search-inline input:focus { border-color: var(--blue); }

.search-inline button {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-inline button:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

/* Search autocomplete */
.search-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 300;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}

.search-suggest__item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.15s;
}

.search-suggest__item:last-child { border-bottom: none; }

.search-suggest__item:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.search-suggest__item mark {
  background: transparent;
  color: var(--blue);
  font-weight: 600;
}

/* 404 & Search not found */
.error-page {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-page__code {
  font-size: 120px;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 10px;
}

.error-page__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
}

.error-page__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 12px;
}

.error-page__search {
  display: flex;
  gap: 0;
  margin: 25px 0;
  border: 2px solid var(--blue);
  border-radius: 8px;
  overflow: hidden;
}

.error-page__search input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
}

.error-page__search button {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.error-page__search button:hover {
  background: var(--blue-dark);
}

.error-page__form {
  max-width: 400px;
  margin: 20px auto;
  text-align: left;
}

.error-page__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-light);
}

.error-page__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.error-page__phone:hover { color: var(--blue); }

.error-page__messengers {
  display: flex;
  gap: 12px;
}

.error-page__messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.error-page__messenger:hover { transform: scale(1.1); }
.error-page__messenger[title="Telegram"] { background: #26A5E4; color: #fff; }
.error-page__messenger[title="MAX"] { background: #2B7DE9; color: #fff; }

/* CF7 forms styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  font-family: inherit;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--blue);
  outline: none;
}

.wpcf7-form textarea { min-height: 80px; resize: vertical; }

.wpcf7-form input[type="submit"] {
  display: inline-block;
  padding: 12px 28px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 5px;
}

.wpcf7-form input[type="submit"]:hover { background: var(--blue-dark); }

.wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 10px 0;
}

.wpcf7-form .wpcf7-acceptance a { color: var(--blue); }

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

.wpcf7-form .wpcf7-response-output {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 6px;
  margin: 10px 0 0;
}

.wpcf7-form .wpcf7-not-valid-tip { font-size: 12px; color: #e74c3c; }

/* Consultation section CF7 */
.consultation .wpcf7-form input[type="text"],
.consultation .wpcf7-form input[type="tel"] {
  background: var(--white);
}

.consultation .wpcf7-form input[type="submit"] {
  margin-top: 10px;
}

/* About page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-intro__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 5px;
}

.about-intro__list {
  list-style: none;
  padding: 0;
}

.about-intro__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 15px;
  color: var(--text);
}

.about-intro__box {
  background: var(--concrete);
  color: var(--white);
  padding: 30px;
  border-radius: 12px;
}

.about-intro__box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.about-intro__box h3 span { color: var(--blue); }

.about-intro__box p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow);
}

.step-card__number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
}

.step-card__icon { margin-bottom: 15px; }

.step-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* About advantages */
.about-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.about-advantage {
  padding: 25px;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  transition: box-shadow 0.2s;
}

.about-advantage:hover { box-shadow: var(--shadow); }

.about-advantage__icon { margin-bottom: 12px; }

.about-advantage__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.about-advantage__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Requisites */
.requisites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.requisites-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 15px;
  font-size: 14px;
}

.requisites-list dt {
  color: var(--text-light);
  font-weight: 500;
}

.requisites-list dd {
  color: var(--text);
}

.requisites-list a { color: var(--blue); }

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-advantages { grid-template-columns: 1fr; }
  .requisites-grid { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 9000;
  padding: 16px 20px;
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-banner__inner p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-light);
  flex: 1;
}

.cookie-banner__inner a { color: var(--blue); text-decoration: underline; }

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: var(--blue);
  color: var(--white);
}

.cookie-banner__btn--accept:hover { background: var(--blue-dark); }

.cookie-banner__btn--decline {
  background: var(--concrete);
  color: var(--white);
}

.cookie-banner__btn--decline:hover { background: var(--concrete-dark); }

@media (max-width: 768px) {
  .cookie-banner__inner { flex-direction: column; text-align: center; }
}

/* Delivery & Payment */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.delivery-card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 30px;
}

.delivery-card__icon { margin-bottom: 15px; }

.delivery-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.delivery-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 12px;
}

.delivery-card__detail {
  font-size: 13px;
  color: var(--text);
  padding-top: 10px;
  border-top: 1px solid var(--gray-light);
}

.delivery-info {
  max-width: 700px;
}

.delivery-info__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
}

.delivery-info__list {
  list-style: none;
  padding: 0;
}

.delivery-info__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

.delivery-info__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.delivery-info__list a { color: var(--blue); }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.payment-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.payment-card__icon { margin-bottom: 15px; }

.payment-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.payment-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .delivery-grid, .payment-grid { grid-template-columns: 1fr; }
}

/* Cart notification */
.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--text);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}
.cart-notification.show { transform: translateX(0); }
.cart-notification svg { color: #22c55e; flex-shrink: 0; }

/* Cart button variant */
.product-card__btn--cart {
  background: transparent !important;
  color: var(--blue) !important;
  border: 1px solid var(--blue) !important;
}
.product-card__btn--cart:hover {
  background: var(--blue-light) !important;
}

/* Cart page */
.cart-section { padding: 30px 0 50px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--gray); font-size: 18px; }
.cart-empty .btn { margin-top: 20px; }

/* Desktop: show table, hide mobile cards */
.cart-mobile { display: none; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: flex-start;
}

.cart-item__img { flex-shrink: 0; }
.cart-item__img img { width: 90px; height: 90px; object-fit: contain; border-radius: 8px; border: 1px solid var(--gray-light); }

.cart-item__body { flex: 1; min-width: 0; }

.cart-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-item__title { color: var(--text); font-weight: 600; font-size: 15px; text-decoration: none; line-height: 1.3; }
.cart-item__title:hover { color: var(--blue); }

.cart-item__delete { background: none; border: none; font-size: 22px; color: var(--gray); cursor: pointer; padding: 0; line-height: 1; flex-shrink: 0; }
.cart-item__delete:hover { color: #e74c3c; }

.cart-item__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item__qty input { width: 60px; padding: 6px 8px; border: 1px solid var(--gray-light); border-radius: 6px; text-align: center; font-size: 14px; }

/* Quantity stepper (mobile) */
.cart-item__qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.cart-item__qty-stepper input {
  width: 44px;
  padding: 8px 0;
  border: none;
  border-left: 1px solid var(--gray-light);
  border-right: 1px solid var(--gray-light);
  border-radius: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.cart-item__qty-stepper input::-webkit-outer-spin-button,
.cart-item__qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.qty-btn {
  width: 36px;
  height: 36px;
  background: var(--gray-bg);
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:active { background: var(--gray-light); }
.cart-item__price { font-size: 14px; color: var(--text-light); }
.cart-item__subtotal { font-size: 16px; font-weight: 700; color: var(--text); margin-left: auto; }
.cart-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.cart-summary { text-align: right; }
.cart-summary__total { font-size: 22px; font-weight: 700; margin-bottom: 15px; }
.cart-summary__total span { color: var(--blue); }

/* Checkout */
.checkout-section { padding: 30px 0 50px; }
.checkout-form { max-width: 600px; }
.checkout-form .form-group { margin-bottom: 18px; }
.checkout-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form input[type="email"],
.checkout-form select,
.checkout-form textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--gray-light); border-radius: 6px; font-size: 14px; }
.checkout-form textarea { min-height: 80px; resize: vertical; }
.checkout-agree { margin: 20px 0; font-size: 13px; }
.checkout-agree label { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; cursor: pointer; margin-bottom: 8px; }
.checkout-agree input[type="checkbox"] { margin-top: 2px; }

.products-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.products-section__link {
  color: var(--blue);
  font-size: 13px;
  text-decoration: underline;
}

/* ===== SWIPER OVERRIDES ===== */
.products-swiper {
  position: relative;
  padding: 0 40px;
}

.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
  color: var(--gray);
  width: 30px;
  height: 30px;
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
  font-size: 18px;
}

/* ===== CONSULTATION SECTION ===== */
.consultation {
  background: var(--white);
  padding: 50px 0;
}

.consultation .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.consultation__image {
  flex-shrink: 0;
  max-width: 300px;
}

.consultation__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.consultation__image .placeholder-img {
  width: 280px;
  height: 300px;
  border-radius: 50% 50% 0 50%;
}

.consultation__content {
  flex: 1;
  max-width: 500px;
}

.consultation__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.consultation__title span {
  color: var(--blue);
}

.consultation__text {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
}

.consultation__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.consultation__input {
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
}

.consultation__input:focus {
  border-color: var(--blue);
}

.consultation__submit {
  padding: 14px 30px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  align-self: center;
  transition: background var(--transition);
}

.consultation__submit:hover {
  background: var(--blue-dark);
}

.consultation__agree {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

.consultation__agree a {
  color: var(--blue);
  text-decoration: underline;
}

/* ===== MAP (click to activate) ===== */
.map-section {
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(100%);
  pointer-events: none;
  transition: filter 0.4s ease;
}

.map-section.active iframe {
  pointer-events: auto;
  filter: none;
}

.map-section__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.map-section__overlay:hover { background: rgba(0,0,0,0.1); }

.map-section__overlay span {
  background: var(--white);
  color: var(--text);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.map-section.active .map-section__overlay { display: none; }

.map-section .placeholder-img {
  height: 400px;
  background: var(--gray-light);
}

/* Contacts page */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contacts-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contacts-info__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--blue);
}

.contacts-info__item a {
  color: var(--text);
}

.contacts-info__item a:hover {
  color: var(--blue);
}

.contacts-messengers {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.contacts-messengers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  transition: background var(--transition);
}

.contacts-messengers a:hover {
  background: var(--blue-dark);
}

.contacts-messengers a svg {
  width: 22px;
  height: 22px;
}

.contacts-form {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 30px;
}

.contacts-form h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text);
}

.contacts-form .form-group {
  margin-bottom: 15px;
}

.contacts-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.contacts-form .form-group input,
.contacts-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--white);
  font-family: inherit;
}

.contacts-form .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.contacts-form .form-group input:focus,
.contacts-form .form-group textarea:focus {
  border-color: var(--blue);
  outline: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 40px 0 20px;
}

.footer__top {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr) 200px;
  gap: 30px;
  margin-bottom: 30px;
}

.footer__logo img,
.footer__logo svg {
  height: 90px;
  width: auto;
  margin-bottom: 10px;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul li a {
  color: var(--text-light);
  font-size: 13px;
}

.footer__col ul li a:hover {
  color: var(--blue);
}

.footer__contacts p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: opacity var(--transition);
}

.footer__social a:hover {
  opacity: 0.8;
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}

.footer__social-link:hover {
  background: var(--blue-dark);
}


.footer__social-link svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* ===== FIXED FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 150;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* Messenger buttons (Telegram, MAX) */
.floating-btn--messenger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  border: none;
  align-self: flex-end;
}

.floating-btn--tg {
  background: #2AABEE;
}

.floating-btn--tg:hover {
  background: #1E96D1;
  color: var(--white);
}

.floating-btn--tg svg {
  width: 24px;
  height: 24px;
}

.floating-btn--max {
  background: var(--blue);
}

.floating-btn--max:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.floating-btn--max svg {
  width: 26px;
  height: 26px;
}

/* Floating cart button */
.floating-btn--cart {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  text-decoration: none;
}

.floating-btn--cart:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.floating-btn--cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
}

/* Call button */
.floating-btn--call {
  width: 48px;
  height: 48px;
  background: #34C759;
  color: var(--white);
  border-radius: 50%;
  border: none;
  align-self: flex-end;
}

.floating-btn--call:hover {
  background: #2DB84E;
  color: var(--white);
}

.floating-btn--call svg {
  width: 22px;
  height: 22px;
}

/* Scroll to top */
.floating-btn--top {
  width: 48px;
  height: 48px;
  background: var(--concrete);
  color: var(--white);
  border: none;
  border-radius: 50%;
  align-self: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.floating-btn--top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn--top:hover {
  background: var(--concrete-dark);
}

.floating-btn--top svg {
  width: 22px;
  height: 22px;
}

/* Floating tooltip */
.floating-tooltip {
  position: absolute;
  right: 58px;
  bottom: 60px;
  width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 16px 36px 16px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.4s ease;
}

.floating-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.floating-tooltip__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  padding: 2px;
}

.floating-tooltip__close:hover {
  color: var(--text);
}

.footer__col:last-child {
  text-align: center;
}

.footer__callback {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
}

.footer__callback:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.footer__bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid var(--gray-light);
  font-size: 12px;
  color: var(--gray);
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  padding: 40px 0;
}

.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.client-logo {
  width: 160px;
  height: 80px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.client-logo .placeholder-img {
  width: 100%;
  height: 100%;
  background: transparent;
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 40px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 25px;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-light);
}

.review-card__name {
  font-weight: 600;
  font-size: 14px;
}

.review-card__city {
  font-size: 12px;
  color: var(--gray);
}

.review-card__text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Video reviews */
.video-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card .placeholder-img {
  height: 220px;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  padding: 15px;
  font-size: 12px;
}

/* ===== ARTICLES ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.article-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-card__img {
  height: 180px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  position: relative;
}

.article-card__date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
}

.article-card__body {
  padding: 15px;
}

.article-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.article-card__text {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.btn-center {
  text-align: center;
}

/* ===== SOCIAL BAR ===== */
.social-bar {
  background: var(--white);
  padding: 20px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.social-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-bar__group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-bar__text {
  font-size: 14px;
  font-weight: 500;
}

.social-bar__icons {
  display: flex;
  gap: 8px;
}

.social-bar__icons a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-bar__icons a.yt { background: #FF0000; }
.social-bar__icons a.ok { background: #EE8208; }
.social-bar__icons a.vk { background: #4A76A8; }
.social-bar__icons a.wa { background: #25D366; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.about-intro__content {
  flex: 1;
}

.about-intro__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;
}

.about-intro__list li {
  margin-bottom: 8px;
  font-size: 14px;
  list-style: disc;
  color: var(--concrete);
}

.about-intro__list li span {
  color: var(--text);
}

.about-intro__box {
  flex-shrink: 0;
  width: 350px;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--blue);
}

.about-intro__box h3 {
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 12px;
}

.about-intro__box h3 span {
  color: var(--blue);
}

.about-intro__box p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__number {
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 72px;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.15;
  line-height: 1;
}

.step-card__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gray-bg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-card__icon .placeholder-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.step-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card__text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* About advantages */
.about-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-advantage {
  text-align: center;
  padding: 20px;
}

.about-advantage__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
}

.about-advantage__icon .placeholder-img {
  width: 50px;
  height: 50px;
  background: transparent;
}

.about-advantage__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-advantage__text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Requisites */
.requisites {
  padding: 40px 0;
}

.requisites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
}

.requisites-grid dt {
  font-size: 13px;
  color: var(--concrete-light);
  font-weight: 500;
  padding: 6px 0;
}

.requisites-grid dd {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-light);
}

/* ===== SHOP CATEGORY ===== */
.shop-banner {
  background: var(--gray-bg);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  min-height: 200px;
  margin-bottom: 30px;
}

.shop-banner__img {
  flex: 1;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-banner__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.shop-banner__content h2 {
  font-size: 28px;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
}

.filter-tab {
  padding: 12px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-bg);
  color: var(--text);
  border: 1px solid var(--gray-light);
}

.filter-tab.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.filter-tab:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue);
}

/* ===== SHOP SUBCATEGORY (LISTING) ===== */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: flex-start;
}

/* Sidebar filters */
.sidebar-filters {
  background: var(--white);
  position: sticky;
  top: 80px;
  border-top: 3px solid var(--blue);
  padding-top: 15px;
}

.filter-group__heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.filter-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-range input {
  width: 80px;
  flex: 1;
  min-width: 0;
  padding: 6px 8px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}

.filter-range span {
  font-size: 12px;
  color: var(--gray);
}

.range-slider {
  width: 100%;
  height: 4px;
  background: var(--gray-light);
  border-radius: 2px;
  margin: 10px 0;
  position: relative;
}

.range-slider__fill {
  position: absolute;
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
}

.range-slider__handle {
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  cursor: pointer;
}

.filter-checkboxes {
  max-height: 130px;
  overflow-y: auto;
  padding-right: 5px;
}

.filter-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.filter-checkbox span { line-height: 1.3; }

.filter-checkboxes::-webkit-scrollbar { width: 4px; }
.filter-checkboxes::-webkit-scrollbar-thumb { background: var(--gray-light); border-radius: 2px; }

.filter-select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  appearance: auto;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.filter-buttons .btn {
  padding: 10px 20px;
  font-size: 13px;
}

/* Sorting bar */
.sorting-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 20px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.sorting-bar__left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sorting-bar__right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sorting-bar__label {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}

.sorting-bar select {
  padding: 8px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 13px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  appearance: auto;
}

.sorting-bar select:focus {
  border-color: var(--blue);
  outline: none;
}

/* Product list item */
.product-list-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--gray-light);
  align-items: center;
}

.product-list-item__img {
  position: relative;
}

.product-list-item__img .placeholder-img {
  width: 130px;
  height: 130px;
}

.product-list-item__img .product-card__badge {
  top: 5px;
  left: 5px;
  font-size: 11px;
  padding: 3px 10px;
}

.product-list-item__info {
  font-size: 13px;
}

.product-list-item__article {
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 6px;
}

.product-list-item__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

/* Info icon + tooltip on product image */
.product-list-item__img-info {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s;
}

.product-list-item__img-info:hover,
.product-list-item__img-info:focus {
  background: var(--blue);
  outline: none;
}

.product-list-item__img-info svg {
  display: none;
}

.product-list-item__img-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 200px;
  background: var(--concrete);
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 6px;
  z-index: 10;
  pointer-events: none;
}

.product-list-item__img-info:hover .product-list-item__img-tooltip,
.product-list-item__img-info:focus .product-list-item__img-tooltip {
  display: block;
}

/* Specs with dotted leaders */
.product-list-item__specs {
  font-size: 13px;
}

.spec-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1.8;
}

.spec-row__label {
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.spec-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--gray-light);
  min-width: 20px;
  margin-bottom: 4px;
}

.spec-row__value {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-list-item__specs dd {
  color: var(--text);
}

.product-list-item__action {
  text-align: center;
}

.product-list-item__prices {
  margin-bottom: 12px;
}

.product-list-item__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--concrete);
}

.product-list-item__price-old {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 8px;
}

.show-more {
  text-align: center;
  padding: 25px 0;
}

.show-more .btn {
  min-width: 200px;
}

/* ===== PRODUCT PAGE ===== */
.product-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.product-gallery__main {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.product-gallery__main .placeholder-img {
  height: 350px;
}

.product-gallery__main .product-card__badge {
  top: 15px;
  left: 15px;
}

.product-gallery__disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  margin-top: 10px;
  background: var(--gray-bg);
  border-radius: 8px;
  border-left: 3px solid var(--blue);
}

.product-gallery__disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.product-gallery__disclaimer > span {
  flex: 1;
}

.product-gallery__disclaimer a {
  color: var(--blue);
  font-weight: 500;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
}

.product-gallery__thumb {
  width: 70px;
  height: 70px;
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--blue);
}

.product-gallery__thumb .placeholder-img {
  width: 100%;
  height: 100%;
}

.product-info__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-info__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 12px;
}

.product-info__desc a {
  color: var(--blue);
  text-decoration: underline;
  white-space: nowrap;
}

.product-info__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.product-info__links a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
}

.product-info__features {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.product-info__features li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 14px;
}

.product-info__features-list {
  margin-bottom: 20px;
}

.product-info__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 0;
}

.product-info__feature-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--blue);
}

.product-info__prices {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.product-info__price {
  font-size: 26px;
  font-weight: 700;
  color: var(--concrete);
}

.product-info__price-old {
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
}

.product-info__buttons {
  display: flex;
  gap: 12px;
}

.product-info__buy-link {
  color: var(--blue);
  font-size: 14px;
  text-decoration: underline;
  padding: 12px 0;
}

/* Product description */
.product-description {
  padding: 40px 0;
  border-top: 1px solid var(--gray-light);
  scroll-margin-top: 120px;
}

#specs {
  scroll-margin-top: 120px;
}

.product-description p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 15px;
}

.product-description h2,
.description-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 30px 0 12px;
}

.product-description h3,
.description-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 25px 0 10px;
}

.product-description h2:first-child,
.description-wrap h2:first-child,
.product-description h3:first-child,
.description-wrap h3:first-child {
  margin-top: 0;
}

.description-wrap {
  position: relative;
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.description-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.description-wrap.expanded {
  max-height: 2000px;
}

.description-wrap.expanded::after {
  opacity: 0;
}

.description-toggle,
.seo-toggle {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition);
}

.description-toggle:hover,
.seo-toggle:hover {
  background: var(--blue-dark);
}

/* SEO text block */
.seo-block {
  background: var(--gray-bg);
  padding: 40px 0;
}

.seo-block .container {
  max-width: var(--container);
}

.seo-block h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.seo-block__content {
  position: relative;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.seo-block__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, var(--gray-bg));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.seo-block__content.expanded {
  max-height: 3000px;
}

.seo-block__content.expanded::after {
  opacity: 0;
}

.seo-block__content p {
  margin-bottom: 15px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--gray-light);
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}

.pagination__link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pagination__link.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.pagination__link--prev,
.pagination__link--next {
  font-size: 12px;
  font-weight: 500;
  gap: 4px;
}

.pagination__link--prev svg,
.pagination__link--next svg {
  width: 14px;
  height: 14px;
}

.pagination__dots {
  font-size: 14px;
  color: var(--gray);
  padding: 0 4px;
}

/* Specs table */
.specs-table {
  width: 100%;
  margin-top: 20px;
}

.specs-table tr:nth-child(even) {
  background: var(--gray-bg);
}

.specs-table td {
  padding: 10px 15px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-light);
}

.specs-table td:first-child {
  color: var(--text-light);
  width: 40%;
}

/* Review & Question forms */
.forms-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px 0;
}

.form-block {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 30px;
}

.form-block__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-block__title span {
  color: var(--blue);
}

.form-block__title svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--white);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-block__agree {
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
  text-align: center;
}

.form-block__agree a {
  color: var(--blue);
  text-decoration: underline;
}

/* ===== CART PAGE ===== */
.cart-section {
  padding: 30px 0;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.cart-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  padding: 12px 10px;
  border-bottom: 2px solid var(--gray-light);
}

.cart-table td {
  padding: 15px 10px;
  vertical-align: middle;
  border-bottom: 1px solid var(--gray-light);
  font-size: 14px;
}

.cart-item__img {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
}

.cart-item__img .placeholder-img {
  width: 100%;
  height: 100%;
}

.cart-item__title {
  font-weight: 600;
}

.cart-item__article {
  font-size: 12px;
  color: var(--gray);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-item__qty input {
  width: 50px;
  text-align: center;
  padding: 6px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-size: 14px;
}

.cart-item__qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
}

.cart-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.cart-coupon {
  flex: 1;
  max-width: 400px;
}

.cart-coupon p {
  font-size: 14px;
  margin-bottom: 10px;
}

.cart-coupon__form {
  display: flex;
  gap: 0;
}

.cart-coupon__form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
}

.cart-coupon__form button {
  padding: 12px 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px;
}

.cart-summary {
  text-align: right;
}

.cart-summary__total {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-summary__total span {
  color: var(--text);
}

.cart-summary__detail {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.cart-summary .btn {
  margin-top: 20px;
  min-width: 200px;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
  padding: 30px 0;
}

.checkout-form {
  max-width: 600px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 30px;
}

.checkout-form .form-group {
  margin-bottom: 18px;
}

.checkout-form .form-group label {
  font-size: 14px;
  font-weight: 600;
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 14px;
}

.checkout-form .form-group select {
  appearance: auto;
  background: var(--white);
  cursor: pointer;
}

.checkout-form .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkout-agree {
  margin-bottom: 20px;
}

.checkout-agree label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 8px;
}

.checkout-agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.checkout-agree a {
  color: var(--blue);
  text-decoration: underline;
}

/* ===== MODAL FORMS ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

/* City selector in top bar */
.top-bar__city-link {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border-bottom: 1px dashed rgba(255,255,255,0.5);
}

.top-bar__city-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* City modal */
.modal--city { max-width: 420px; }

.city-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 15px;
}

.city-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s;
}

.city-list__item:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.city-list__item.active {
  background: var(--blue);
  color: var(--white);
}

.city-list__item.active svg {
  color: var(--white);
}

.city-list__item svg {
  color: var(--gray);
  flex-shrink: 0;
}

.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
}

.modal__close:hover {
  color: var(--text);
}

.modal__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 10px;
}

.modal__subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 25px;
}

.modal__form .form-group {
  margin-bottom: 18px;
}

.modal__form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.modal__form .form-group input,
.modal__form .form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-size: 14px;
  background: var(--white);
}

.modal__form .form-group select {
  appearance: auto;
  cursor: pointer;
}

.modal__form .form-group input:focus,
.modal__form .form-group select:focus {
  border-color: var(--blue);
}

.modal__form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-size: 14px;
  background: var(--white);
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.modal__form .form-group textarea:focus {
  border-color: var(--blue);
}

.modal__form .modal__submit {
  display: block;
  width: 70%;
  margin: 25px auto 0;
  padding: 16px;
  background: #4A6ABF;
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}

.modal__form .modal__submit:hover {
  background: #3B5AA8;
}

.modal__agree {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 18px;
}

.modal__agree a {
  color: var(--orange);
}

/* ===== FOOTER CONTACT ICONS ===== */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer__contact-item a {
  color: var(--text-light);
  font-size: 13px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
  stroke: var(--blue);
}

/* ===== REVIEWS PAGE ===== */
.review-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 25px 0;
}

.review-item:last-child {
  border-bottom: none;
}

.review-item__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.review-item__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.review-item__company {
  font-size: 13px;
  color: var(--blue);
}

.review-item__date {
  font-size: 12px;
  color: var(--gray);
  margin-left: auto;
}

.review-item__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 15px;
}

.review-item__reply {
  background: var(--gray-bg);
  border-left: 3px solid var(--blue);
  padding: 15px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.review-item__reply-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.review-item__reply-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Review form */
.review-form-section {
  background: var(--gray-bg);
  padding: 50px 0;
}

.review-form {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-list {
  margin-top: 20px;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 25px;
  align-items: stretch;
  padding: 25px 0;
  border-bottom: 1px solid var(--gray-light);
}

.portfolio-item:last-child {
  border-bottom: none;
}

.portfolio-item__img {
  height: 160px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  overflow: hidden;
}

.portfolio-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-item__product {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.portfolio-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.portfolio-item__date {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
}

.portfolio-item__client {
  font-size: 13px;
  color: var(--text-light);
}

.portfolio-item__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
}

.portfolio-item__side-client {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.portfolio-item__side-date {
  font-size: 13px;
  color: var(--gray);
}

.portfolio-item__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.portfolio-item__btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* Advantages buttons */
.advantages-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* Honeypot */
.ohnohoney {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
