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

:root {
  --primary: #1a1a2e;
  --accent: #e8531a;
  --accent-hover: #c94415;
  --accent-light: #fff3ee;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --success: #16a34a;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =====================
   CONTAINER
   ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================
   TOPBAR
   ===================== */
.topbar {
  background: var(--primary);
  color: #c9cdd4;
  font-size: 13px;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar a { color: #c9cdd4; transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.topbar__social {
  background: rgba(255,255,255,.1);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.topbar__social:hover { background: var(--accent) !important; color: #fff !important; }

/* =====================
   HEADER
   ===================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__img { height: 46px; width: auto; }
.logo__fallback { display: flex; align-items: center; gap: 10px; }
.logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: bold;
}
.logo__name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.logo__sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.logo--white .logo__name { color: white; }
.logo--white .logo__sub { color: rgba(255,255,255,.6); }

/* SEARCH */
.header__search {
  flex: 1;
  max-width: 480px;
  display: flex;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.header__search:focus-within { border-color: var(--accent); }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 9px 16px;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
}
.search-btn {
  background: var(--accent);
  border: none;
  color: white;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--accent-hover); }

/* CONTACTS IN HEADER */
.header__contacts { text-align: center; }
.phone-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.3px;
}
.phone-sub {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* ACTIONS */
.header__actions { display: flex; align-items: center; gap: 8px; }
.action-btn {
  position: relative;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  transition: all var(--transition);
}
.action-btn:hover { border-color: var(--accent); color: var(--accent); }
.action-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-count:empty, .action-count[data-count="0"] { display: none; }
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =====================
   NAV
   ===================== */
.nav {
  background: var(--primary);
  position: relative;
  z-index: 99;
}
.nav__inner { padding: 0 20px; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav__list::-webkit-scrollbar { display: none; }
.nav__item--dropdown { position: relative; }
.nav__link {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,.8);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.nav__link:hover, .nav__link:focus { color: white; border-bottom-color: var(--accent); }
.nav__link--sale { color: #fbbf24; font-weight: 600; }
.nav__link--sale:hover { color: #f59e0b; border-bottom-color: #f59e0b; }

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 220px;
  z-index: 200;
}
.nav__item--dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--accent-light); color: var(--accent); padding-left: 24px; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,83,26,.3); }
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: white; }
.btn--white { background: white; color: var(--accent); border-color: white; }
.btn--white:hover { background: var(--accent-light); }
.btn--outline-white { background: transparent; color: white; border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--lg { padding: 13px 30px; font-size: 15px; }
.btn--full { width: 100%; }

.btn-fav {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-fav:hover, .btn-fav.active { border-color: #ef4444; color: #ef4444; background: #fff5f5; }

/* =====================
   SECTION HEADERS
   ===================== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 60%, #0f3460 100%);
  color: white;
  padding: 70px 0 60px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: rgba(232,83,26,.25);
  border: 1px solid rgba(232,83,26,.5);
  color: #fca97e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hero__desc {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero__stat span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image-placeholder {
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 14px;
}
.hero__image-icon { font-size: 80px; margin-bottom: 16px; }
.hero__brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
}
.hero__brand-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .2s;
  cursor: default;
}
.hero__brand-badge:hover {
  background: rgba(232,83,26,.25);
  border-color: rgba(232,83,26,.5);
  color: #fca97e;
}

/* =====================
   SOLUTIONS
   ===================== */
.solutions {
  padding: 70px 0;
  background: white;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: block;
  text-decoration: none;
  color: var(--text);
}
.solution-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.solution-card--accent { background: var(--accent-light); border-color: rgba(232,83,26,.2); }
.solution-card__icon { font-size: 38px; margin-bottom: 14px; }
.solution-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.solution-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.solution-card__link { font-size: 13px; font-weight: 600; color: var(--accent); }

/* =====================
   PROMO BANNER
   ===================== */
.promo-banner {
  padding: 60px 0;
  background: white;
}
.promo-banner__inner {
  background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
  border-radius: 20px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
}
.promo-banner__badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.promo-banner__text h2 { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.promo-banner__text h2 span { opacity: .85; }
.promo-banner__text p { font-size: 15px; opacity: .85; margin-bottom: 24px; }
.promo-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 3px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

/* =====================
   CATALOG / PRODUCTS
   ===================== */
.catalog {
  padding: 70px 0;
  background: var(--bg);
}
.catalog__filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.filter-btn {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card.hidden { display: none; }

.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.badge {
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.badge--sale { background: var(--accent); color: white; }
.badge--new { background: #3b82f6; color: white; }
.badge--hit { background: #16a34a; color: white; }

.product-card__img {
  height: 200px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
}
.product-card__img-placeholder { font-size: 64px; opacity: .6; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

/* Product stub images */
.prod-img-stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  width: 100%;
}
.prod-img-stub span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
}
.bottle-icon, .bottle-group { display: flex; justify-content: center; }

.product-card__body { padding: 16px; }
.product-card__brand { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.product-card__category { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 500; margin-bottom: 6px; }
.product-card__title { font-size: 14px; font-weight: 600; color: var(--primary); line-height: 1.45; margin-bottom: 12px; }

.product-card__prices { margin-bottom: 14px; }
.price-new { font-size: 20px; font-weight: 800; color: var(--accent); }
.price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }

.product-card__actions { display: flex; gap: 8px; align-items: center; }
.product-card__actions .btn { flex: 1; }

.catalog__more { text-align: center; margin-top: 44px; }

/* =====================
   ADVANTAGES
   ===================== */
.advantages {
  padding: 70px 0;
  background: white;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}
.adv-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.adv-card__icon { font-size: 36px; margin-bottom: 16px; }
.adv-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.adv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  padding: 70px 0;
  background: var(--primary);
  color: white;
  text-align: center;
}
.cta-section__inner h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.cta-section__inner p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 30px; }
.cta-section__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================
   CONTACTS
   ===================== */
.contacts { padding: 70px 0; background: var(--bg); }
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contacts__info { display: flex; flex-direction: column; gap: 22px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item__icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.contact-item a, .contact-item span { color: var(--text); font-size: 15px; font-weight: 500; }
.contact-item a:hover { color: var(--accent); }
.messenger-links { display: flex; gap: 10px; margin-top: 6px; }
.messenger-btn {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}
.messenger-btn--tg { background: #0088cc; color: white; }
.messenger-btn--tg:hover { background: #0077b3; }
.messenger-btn--wa { background: #25d366; color: white; }
.messenger-btn--wa:hover { background: #1dbe5a; }

.contacts__form {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
}
.contacts__form h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.contacts__form p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.feedback-form { display: flex; flex-direction: column; gap: 14px; }
.form-input, .form-textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  background: white;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; }
.form-note { font-size: 11px; color: var(--text-muted); text-align: center; }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--primary); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.55); margin: 16px 0 20px; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--accent); }
.footer__nav h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__nav a:hover { color: white; }

.footer__requisites {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__requisites h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.requisites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
}
.requisites-grid div { font-size: 12px; color: rgba(255,255,255,.5); }
.requisites-grid strong { color: rgba(255,255,255,.75); margin-right: 4px; }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__legal-links a:hover { color: rgba(255,255,255,.7); }

/* =====================
   SIDEBAR (CART)
   ===================== */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 300;
}
.sidebar-overlay.active { display: block; }
.sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 400;
  display: flex;
  flex-direction: column;
  transition: right .3s ease;
  box-shadow: -4px 0 30px rgba(0,0,0,.15);
}
.sidebar.active { right: 0; }
.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.sidebar__header h3 { font-size: 18px; font-weight: 700; }
.sidebar__close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  transition: color var(--transition);
}
.sidebar__close:hover { color: var(--accent); }
.sidebar__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.sidebar__empty { text-align: center; color: var(--text-muted); padding: 40px 0; font-size: 15px; }
.sidebar__footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.cart-total { font-size: 16px; margin-bottom: 12px; }
.cart-total strong { color: var(--accent); font-size: 20px; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 10px;
}
.cart-item__name { font-size: 14px; font-weight: 500; }
.cart-item__price { font-size: 14px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  margin-left: 4px;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: #ef4444; }

/* =====================
   TOAST
   ===================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  transition: transform .3s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1200px) {
  .solutions__grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero__title { font-size: 30px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .requisites-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .topbar__inner { flex-direction: column; text-align: center; gap: 4px; }
  .header__inner { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
  .header__search { order: 3; max-width: 100%; flex: 0 0 100%; }
  .header__contacts { display: none; }
  .burger-btn { display: flex; }
  .nav { display: none; }
  .nav.open { display: block; top: auto; position: relative; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link { padding: 12px 16px; }
  .dropdown { display: none !important; }
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__image { display: none; }
  .hero__title { font-size: 26px; }
  .hero { padding: 50px 0 40px; }
  .solutions__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .advantages__grid { grid-template-columns: 1fr; }
  .contacts__grid { grid-template-columns: 1fr; gap: 30px; }
  .promo-banner__inner { flex-direction: column; gap: 20px; padding: 36px 28px; }
  .promo-banner__text h2 { font-size: 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 22px; }
  .cta-section__btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
  .promo-circle { width: 100px; height: 100px; font-size: 26px; }
  .contacts__form { padding: 24px 18px; }
}
