/* ===== CSS Variables ===== */
:root {
  --color-primary: #f5a623;
  --color-primary-dark: #d98a0f;
  --color-primary-light: #fbe8c8;
  --color-primary-bg: #fdf7ec;
  --color-accent-orange: #f5a623;
  --color-accent-blue: #4a90d9;
  --color-accent-pink: #e87a90;
  --color-accent-purple: #9b7fd4;
  --color-accent-yellow: #f5d547;
  --color-text: #1a1a1a;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-white: #ffffff;
  --color-dark: #4f4f4f;
  --color-section-alt: #f5f6f8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1500px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6,
.logo__text strong,
.hero__content h1,
.section__header h2,
.product-card__title,
.promo__content h2,
.footer h4 {
  font-family: var(--font-heading);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  border: 1px solid transparent;
  line-height: 1.2;
}
.btn-primary {
  background: #f5a623;
  color: #141414;
  box-shadow: none;
}
.btn-primary:hover {
  background: #e09010;
  color: #141414;
  transform: translateY(-1px);
  box-shadow: none;
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 16px;
  transition: transform 0.2s;
}
.btn-primary:hover .btn__icon { transform: translateX(2px); }
.btn-primary > i:last-child {
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 16px;
}
.btn-outline {
  background: #fff;
  color: #141414;
  border-color: #d1d5db;
  padding: 13px 20px;
  font-weight: 600;
  gap: 8px;
  box-shadow: none;
}
.btn-outline:hover {
  background: #141414;
  border-color: #141414;
  color: #fff;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-sm .btn__icon,
.btn-sm.btn-primary > i:last-child { width: auto; height: auto; font-size: 14px; }

/* ===== Top Bar ===== */
.top-bar {
  background: #000;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar__items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.top-bar__items span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar__items i { color: var(--color-primary); font-size: 14px; }

/* ===== Header ===== */
.header {
  background: var(--color-white);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Mobile-only header elements (hidden on desktop) */
.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary);
  background: #f7e2bd;
  flex-shrink: 0;
}
.header__phone-ic { display: none; }
.header__search { display: none; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__paw {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__paw svg { width: 100%; height: 100%; fill: var(--color-primary); }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo__text strong { font-size: 22px; font-weight: 800; color: var(--color-text); letter-spacing: -0.5px; }
.logo__text small { font-size: 10px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.logo--light .logo__text strong { color: var(--color-white); }
.logo--light .logo__text small { color: rgba(255,255,255,0.6); }

/* Catalog Button + Mega Menu */
.header__catalog {
  position: relative;
  flex-shrink: 0;
}
.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5a623;
  color: #141414;
  padding: 11px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: none;
  cursor: pointer;
}
.btn-catalog:hover,
.header__catalog.is-open .btn-catalog {
  background: #e09010;
  transform: translateY(-1px);
}
.header__catalog.is-open .btn-catalog {
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.35);
}
.btn-catalog > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 16px;
  line-height: 1;
}
.btn-catalog__chevron {
  font-size: 12px !important;
  opacity: 0.85;
  transition: transform 0.25s ease;
}
.header__catalog.is-open .btn-catalog__chevron {
  transform: rotate(180deg);
}
.btn-catalog .btn__icon { display: none; }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 120;
  min-width: min(920px, calc(100vw - 40px));
  width: max-content;
  max-width: min(1100px, calc(100vw - 40px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}
.header__catalog.is-open .mega-menu,
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-menu[hidden] {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header__catalog.is-open .mega-menu[hidden],
.mega-menu.is-open[hidden] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu__panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.12);
  overflow: hidden;
}
.mega-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--color-primary-bg) 0%, #fff 70%);
  border-bottom: 1px solid var(--color-border);
}
.mega-menu__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
}
.mega-menu__label i {
  color: var(--color-primary);
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 0;
  max-height: min(70vh, 520px);
  overflow: auto;
  padding: 8px;
}
.mega-menu__col {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.mega-menu__col:hover {
  background: var(--color-primary-bg);
}
.mega-menu__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary-light);
  transition: color 0.2s;
}
.mega-menu__title:hover {
  color: var(--color-primary-dark);
}
.mega-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-menu__list a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 5px 8px;
  margin: 0 -8px;
  border-radius: 6px;
  line-height: 1.35;
  transition: color 0.15s, background 0.15s;
}
.mega-menu__list a:hover {
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.header__nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.header__nav a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Contact (phone + messengers) */
.header__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: right;
}
.header__phone-label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header__phone-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  transition: color 0.2s;
}
.header__phone:hover .header__phone-num { color: var(--color-primary); }

.header__messengers {
  display: flex;
  gap: 6px;
}
.msg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.msg:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.msg--viber { background: #7360f2; }
.msg--telegram { background: #29a9eb; }

/* Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-left: 12px;
  margin-left: 4px;
  border-left: 1px solid var(--color-border);
}
.header__action {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  background: #f7e2bd;
  color: var(--color-primary);
  transition: all 0.2s;
  position: relative;
}
.header__action:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(245,166,35,0.35);
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Hero — full-bleed, fits under header ===== */
.hero {
  --hero-offset: 118px;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
  height: calc(100svh - var(--hero-offset));
  max-height: calc(100svh - var(--hero-offset));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

/* Legacy hero text overrides (kept inert if markup absent) */
.hero__inner,
.hero__content,
.hero__pill,
.hero__badge,
.hero__mobile-img { display: none !important; }

.btn__badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #141414;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ===== Features ===== */
.features {
  margin-top: 24px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 26px 12px;
  box-shadow: 0 10px 30px rgba(28,58,28,0.10);
  border: 1px solid var(--color-border);
}
.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 24px;
  position: relative;
  transition: transform 0.25s;
}
.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
}
.feature:hover { transform: translateY(-3px); }
.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover .feature__icon {
  transform: rotate(-6deg) scale(1.08);
}
.feature__icon--green  { color: #f5a623; background: #fbe8c8; }
.feature__icon--blue   { color: #4a90d9; background: #e4f0fb; }
.feature__icon--orange { color: #f5a623; background: #fdf1dc; }
.feature__icon--purple { color: #9b7fd4; background: #efe9fa; }
.feature:hover .feature__icon--green  { box-shadow: 0 8px 18px rgba(245,166,35,0.30); }
.feature:hover .feature__icon--blue   { box-shadow: 0 8px 18px rgba(74,144,217,0.30); }
.feature:hover .feature__icon--orange { box-shadow: 0 8px 18px rgba(245,166,35,0.30); }
.feature:hover .feature__icon--purple { box-shadow: 0 8px 18px rgba(155,127,212,0.30); }
.feature__text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.feature__text span { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.4; }

/* ===== Section Common ===== */
.section { padding: 60px 0; }
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section__header h2 {
  font-size: 28px;
  font-weight: 800;
}
.section__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.section__link:hover { gap: 10px; }
.section__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Slider Nav */
.slider-nav { display: flex; gap: 8px; }
.slider-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-text);
  transition: all 0.2s;
}
.slider-nav__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ===== Categories ===== */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  border-radius: var(--radius-lg);
  padding: 0 0 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(28,58,28,0.14); }
.category-card__img {
  margin-bottom: 14px;
}
.category-card__img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s;
}
.category-card:hover .category-card__img img { transform: scale(1.05); }
.category-card__info { padding: 0 16px; }
.category-card__info strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.category-card__info span { font-size: 12.5px; color: var(--color-text-muted); }
.category-card__arrow {
  position: absolute;
  bottom: 16px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.25s;
}
.category-card:hover .category-card__arrow {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateX(3px);
}

.category-card--orange { background: #eeebde; } /* Собаки */
.category-card--blue   { background: #f7eee3; } /* Коти */
.category-card--yellow { background: #dfebf3; } /* Гризуни */
.category-card--pink   { background: #fdefd4; } /* Птахи */
.category-card--purple { background: #fce6e7; } /* Риби */
.category-card--green  { background: #e2d4ec; } /* Гігієна */

/* ===== Products ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  z-index: 2;
}
.product-card__badge--hit { background: var(--color-primary); }
.product-card__badge--sale { background: var(--color-accent-orange); }
.product-card__badge--new { background: var(--color-accent-blue); }

.product-card__wishlist-form {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  margin: 0;
  padding: 0;
}
.product-card__wishlist {
  width: 34px;
  height: 34px;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.product-card__wishlist:hover { color: #e74c3c; }

.product-card__image {
  padding: 0;
  display: block;
  position: relative;
  width: 100%;
  height: 200px;
  max-height: 200px;
  background: #f4f4f5;
  overflow: hidden;
}
.product-card__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
}

.product-card__body { padding: 18px; }
.product-card__title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.product-card__options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.product-card__option {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font);
  line-height: 1.2;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.product-card__option:hover {
  border-color: #f5a623;
  color: #111827;
}
.product-card__option.is-active {
  background: #fff;
  border-color: #f5a623;
  color: #111827;
  box-shadow: 0 0 0 1px #f5a623;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}
.stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; }
.reviews { color: var(--color-text-muted); font-size: 13px; }

.product-card__price {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}
.product-card__cart-form {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.product-card__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.product-card__price-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 20px;
}
.product-card__old {
  font-size: 12.5px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}
.product-card__discount {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 4px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}
.product-card__old.is-hidden,
.product-card__discount.is-hidden { display: none; }
.product-card__current {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-card__cart {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  background: #f5a623;
  color: #141414;
  border: none;
  box-shadow: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.product-card__cart i {
  filter: none;
  line-height: 1;
}
.product-card__cart:hover {
  background: #e09010;
  color: #141414;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: none;
}
.product-card__cart:hover i {
  filter: none;
}

/* ===== Brands ===== */
.brands { padding-top: 20px; }
.brands__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 18px 22px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}
.brands__item:nth-child(5n) { border-right: none; }
.brands__item:nth-child(n+6) { border-bottom: none; }
.brands__item:hover { background: #fafafa; }
.brands__item img {
  max-width: 140px;
  max-height: 48px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}
.brands__item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

/* ===== About + FAQ ===== */
.about {
  position: relative;
  background: #f5f6f8;
  padding: 70px 0;
}
.about::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to bottom, var(--color-white) 0%, #f5f6f8 100%);
  pointer-events: none;
}
.about > .container { position: relative; z-index: 1; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #6b7280;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 6px;
}
.about__eyebrow i { color: #374151; font-size: 13px; }
.about__faq > h2,
.about__card > h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111827;
  letter-spacing: -0.4px;
}

/* FAQ accordion */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item:hover { border-color: #cbd5e1; }
.faq__item.is-open {
  border-color: #1c3a1c;
  box-shadow: 0 8px 24px rgba(28, 58, 28, 0.08);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-align: left;
}
.faq__q i {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}
.faq__item.is-open .faq__q i {
  transform: rotate(45deg);
  background: #1c3a1c;
  color: #fff;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__a p {
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #6b7280;
  border-top: 1px solid #f1f5f9;
  margin-top: 0;
  padding-top: 14px;
}

/* About card */
.about__card {
  position: relative;
  background: #141414;
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.18);
  overflow: hidden;
  color: #e5e7eb;
}
.about__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../image/promo.png) no-repeat right center;
  background-size: cover;
  opacity: 0.22;
  pointer-events: none;
}
.about__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 20, 20, 0.97) 0%,
    rgba(20, 20, 20, 0.94) 48%,
    rgba(20, 20, 20, 0.72) 100%
  );
  pointer-events: none;
}
.about__card > * { position: relative; z-index: 1; }
.about__eyebrow--light {
  color: #9ca3af;
  background: transparent;
  border-bottom-color: #404040;
}
.about__eyebrow--light i { color: #f5a623; }
.about__card > h2 { color: #fff; }
.about__text {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 18px;
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #1f2937;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 28px), transparent 100%);
          mask-image: linear-gradient(to bottom, #000 calc(100% - 28px), transparent 100%);
}
.about__text::-webkit-scrollbar { width: 7px; }
.about__text::-webkit-scrollbar-track { background: #1f2937; border-radius: 999px; }
.about__text::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 999px;
}
.about__text::-webkit-scrollbar-thumb:hover { background: #6b7280; }

.about__text p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #9ca3af;
  margin-bottom: 12px;
}
.about__lead {
  font-size: 16px !important;
  font-weight: 600;
  color: #f3f4f6 !important;
  line-height: 1.6 !important;
}
.about__text h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  color: #f5a623;
  margin: 20px 0 10px;
}
.about__text h4 i { font-size: 15px; }
.about__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.about__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #9ca3af;
}
.about__list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
  color: #5a7a3a;
}
.about__list li strong { color: #e5e7eb; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #333;
}
.about__stat {
  padding: 0 18px;
  border-left: 1px solid #333;
}
.about__stat:first-child {
  padding-left: 0;
  border-left: none;
}
.about__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.about__stat span {
  font-size: 12.5px;
  color: #9ca3af;
  line-height: 1.3;
}

/* ===== Reviews ===== */
.section.reviews {
  --r-cream: #fcf9f5;
  --r-ink: #1a1a1a;
  --r-orange: #f5a623;
  --r-gold: #ffb432;
  position: relative;
  overflow: hidden;
  color: var(--r-ink);
  background: var(--r-cream);
  padding: 64px 0 52px;
}
.section.reviews .reviews__inner { position: relative; z-index: 1; }

.section.reviews .reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 22px;
  min-height: 0;
  position: relative;
  z-index: 3;
}
.section.reviews .reviews__title-block { max-width: 560px; padding-bottom: 8px; }
.section.reviews .reviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8a8176;
  margin-bottom: 12px;
  border: 0;
  padding: 0;
  background: none;
}
.section.reviews .reviews__eyebrow i { color: var(--r-orange); }
.section.reviews .reviews__title-block h2 {
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--r-ink);
  position: relative;
  z-index: 2;
}
.section.reviews .reviews__title-block h2 em {
  font-style: normal;
  color: var(--r-orange);
}
.section.reviews .reviews__heart { color: var(--r-orange); }

.section.reviews .reviews__script {
  font-family: 'Caveat', cursive;
  color: #2c2c2c;
  line-height: 1.15;
  margin: 0;
}
.section.reviews .reviews__script--top {
  position: static;
  font-size: clamp(24px, 2.1vw, 32px);
  transform: rotate(-4deg);
  max-width: 280px;
  margin: 0 0 10px auto;
  pointer-events: none;
}
.section.reviews .reviews__script--bottom {
  font-size: clamp(22px, 1.8vw, 30px);
  transform: rotate(-3deg);
  white-space: nowrap;
}

.section.reviews .reviews__layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.section.reviews .reviews__summary {
  background: #1a1a1a;
  border-radius: 28px;
  padding: 28px 24px 22px;
  color: #fff;
  box-shadow: 0 16px 36px rgba(26,26,26,0.2);
  display: flex;
  flex-direction: column;
}
.section.reviews .reviews__summary-head {
  text-align: center;
  margin-bottom: 18px;
}
.section.reviews .reviews__score {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.section.reviews .reviews__score small {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-left: 2px;
}
.section.reviews .reviews__stars-big {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--r-gold);
  font-size: 17px;
  margin: 10px 0 8px;
}
.section.reviews .reviews__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  width: 100%;
}
.section.reviews .reviews__bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section.reviews .reviews__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.section.reviews .reviews__bar-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 30px;
  font-weight: 700;
  color: #fff;
}
.section.reviews .reviews__bar-label i { color: var(--r-gold); font-size: 11px; }
.section.reviews .reviews__track {
  flex: 1;
  height: 8px;
  background: #333;
  border-radius: 999px;
  overflow: hidden;
}
.section.reviews .reviews__track span {
  display: block;
  height: 100%;
  background: var(--r-gold);
  border-radius: 999px;
}
.section.reviews .reviews__bar > b {
  width: 36px;
  text-align: right;
  font-weight: 700;
  color: #fff;
}
.section.reviews .reviews__recommend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 14px;
  background: #f6f0e7;
  border-radius: 16px;
}
.section.reviews .reviews__recommend-circle {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.section.reviews .reviews__recommend-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.section.reviews .reviews__recommend-circle path {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
}
.section.reviews .reviews__recommend-bg { stroke: rgba(245,166,35,0.25); }
.section.reviews .reviews__recommend-fg {
  stroke: var(--r-orange);
  stroke-dasharray: 100;
  stroke-dashoffset: 4;
}
.section.reviews .reviews__recommend-circle b {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--r-ink);
}
.section.reviews .reviews__recommend span {
  font-size: 12.5px;
  line-height: 1.4;
  color: #555;
}
.section.reviews .reviews__recommend span strong { color: var(--r-ink); }
.section.reviews .reviews__summary-btn {
  width: 100%;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  background: var(--r-orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(245,166,35,0.3);
  transition: background .2s, transform .2s;
}
.section.reviews .reviews__summary-btn:hover {
  background: #e99512;
  transform: translateY(-1px);
}

.section.reviews .reviews__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.section.reviews .reviews__swiper {
  overflow: hidden;
  width: 100%;
}
.section.reviews .reviews__swiper .swiper-slide {
  height: auto;
  display: flex;
}
.section.reviews .review {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 24px 22px 18px;
  box-shadow: 0 12px 30px rgba(26,26,26,0.08);
}
.section.reviews .review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section.reviews .review__quote {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff1d6;
  color: var(--r-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.section.reviews .review__quote i { transform: scaleX(-1); }
.section.reviews .review__rating {
  display: flex;
  gap: 2px;
  color: var(--r-gold);
  font-size: 13px;
}
.section.reviews .review__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #4b5563;
  flex: 1;
}
.section.reviews .review__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #efe8dc;
}
.section.reviews .review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #4a90d9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}
.section.reviews .review__avatar--orange { background: var(--r-orange); }
.section.reviews .review__avatar--green { background: #3d8b6e; }
.section.reviews .review__meta { display: flex; flex-direction: column; min-width: 0; }
.section.reviews .review__meta strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #1f1f1f;
}
.section.reviews .review__meta span {
  font-size: 12.5px;
  color: #6b7280;
}
.section.reviews .review__verified {
  margin-left: auto;
  color: var(--r-orange);
  font-size: 18px;
}

.section.reviews .reviews__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  gap: 16px;
}
.section.reviews .reviews__pagination { display: flex; align-items: center; gap: 7px; }
.section.reviews .reviews__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(245,166,35,0.3);
  opacity: 1;
  border-radius: 999px;
  transition: width .25s, background .25s;
}
.section.reviews .reviews__pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--r-orange);
}
.section.reviews .reviews__nav { display: flex; gap: 10px; }
.section.reviews .reviews__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #eadfce;
  background: #fff;
  color: var(--r-orange);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.section.reviews .reviews__nav-btn--next,
.section.reviews .reviews__nav-btn:hover {
  background: var(--r-orange);
  color: #fff;
  border-color: var(--r-orange);
}
.section.reviews .reviews__nav-btn.swiper-button-disabled {
  opacity: .35;
  pointer-events: none;
}

.section.reviews .reviews__features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,26,26,0.08);
}
.section.reviews .reviews__feature-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.section.reviews .reviews__feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  border-right: 1px solid rgba(26,26,26,0.12);
}
.section.reviews .reviews__feature-list li:first-child { padding-left: 0; }
.section.reviews .reviews__feature-list li:last-child { border-right: 0; padding-right: 0; }
.section.reviews .reviews__feature-list i {
  color: var(--r-orange);
  font-size: 20px;
}

/* Modal kept */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.review-modal[hidden] { display: none; }
.review-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,30,15,0.55);
  backdrop-filter: blur(2px);
}
.review-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  animation: modalPop 0.25s ease;
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.review-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fbe8c8;
  color: var(--r-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-modal__dialog h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.review-modal__sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}
.review-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.review-form__submit {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
}

.rating-input {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 30px;
  color: #d1d5db;
}
.rating-input i { cursor: pointer; transition: transform 0.1s, color 0.15s; }
.rating-input i:hover { transform: scale(1.15); }
.rating-input i.is-active { color: #f5a623; }
.review-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.review-form input:focus,
.review-form textarea:focus { border-color: var(--color-primary); }
.review-form textarea { margin-bottom: 12px; resize: vertical; }
.review-form__upload {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.review-form__upload:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-bg); }
.review-form__upload i { font-size: 18px; }
.review-form__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.review-form__previews img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ===== Promo Banners (только мобильная) ===== */
.promo-banners { display: none; padding-top: 0; }
.promo-banners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 230px;
  padding: 32px 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.promo-banner:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s;
}
.promo-banner:hover .promo-banner__bg { transform: scale(1.04); }
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(245,240,229,0.96) 0%, rgba(245,240,229,0.85) 32%, rgba(245,240,229,0.35) 52%, rgba(245,240,229,0) 68%);
}
.promo-banner__content {
  position: relative;
  z-index: 2;
  max-width: 56%;
}
.promo-banner__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 13px;
  border-radius: 6px;
  color: var(--color-white);
  margin-bottom: 14px;
}
.promo-banner--food .promo-banner__tag { background: var(--color-primary); }
.promo-banner--toys .promo-banner__tag { background: var(--color-accent-orange); }
.promo-banner__content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #7a4a12;
}
.promo-banner--toys .promo-banner__content h3 { color: #7a4a12; }
.promo-banner__content p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #55625a;
  margin-bottom: 18px;
}
.promo-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  padding: 12px 18px;
  border-radius: 8px;
  color: #141414;
  background: #f5a623;
  box-shadow: none;
  transition: background 0.2s, transform 0.2s;
}
.promo-banner__btn .btn__icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.promo-banner--food .promo-banner__btn,
.promo-banner--toys .promo-banner__btn { background: #f5a623; color: #141414; }
.promo-banner:hover .promo-banner__btn { transform: translateY(-1px); background: #e09010; }

/* ===== Blog ===== */
.blog {
  position: relative;
  background: var(--color-section-alt);
}
.blog__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.blog__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Головна стаття */
.blog-feature {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-feature__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-feature:hover .blog-feature__image img { transform: scale(1.06); }
.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.blog-feature__body { padding: 26px 28px 30px; }
.blog-feature__meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.blog-feature__meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-feature__body h3 {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-feature:hover .blog-feature__body h3 { color: var(--color-primary); }
.blog-feature__body p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.blog-feature__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--color-primary);
  transition: gap 0.2s;
}
.blog-feature:hover .blog-feature__more { gap: 12px; }

/* Список новин */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-item {
  display: flex;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.blog-item__image {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.blog-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-item:hover .blog-item__image img { transform: scale(1.08); }
.blog-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.blog-item__cat {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 3px 10px;
  border-radius: 999px;
}
.blog-item__cat--green  { color: var(--color-primary);       background: var(--color-primary-light); }
.blog-item__cat--blue   { color: var(--color-accent-blue);   background: rgba(74,144,217,0.12); }
.blog-item__cat--orange { color: var(--color-accent-orange); background: rgba(245,166,35,0.14); }
.blog-item__cat--purple { color: var(--color-accent-purple); background: rgba(155,127,212,0.14); }
.blog-item__body h4 {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s;
}
.blog-item:hover .blog-item__body h4 { color: var(--color-primary); }
.blog-item__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--color-text-muted);
}

/* ===== Footer ===== */
.footer {
  position: relative;
  background: #141414;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../image/promo.png) no-repeat center center;
  background-size: cover;
  opacity: 0.22;
  pointer-events: none;
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.94) 0%,
    rgba(20, 20, 20, 0.88) 55%,
    rgba(20, 20, 20, 0.96) 100%
  );
  pointer-events: none;
}
.footer > .container {
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand p {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer ul li a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer ul li a:hover { color: var(--color-white); }
.footer ul li i { margin-right: 8px; color: #f5a623; }
.footer .logo__paw svg { fill: #f5a623; }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer__social a:hover {
  background: #f5a623;
  border-color: #f5a623;
  color: #141414;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1400px) {
  .header__phone { display: none; }
}

@media (max-width: 1200px) {
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .header__nav { gap: 0; }
  .header__nav a { padding: 8px 8px; font-size: 13px; }
  .mega-menu {
    min-width: min(760px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }
  .mega-menu__grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

/* Планшет */
@media (max-width: 992px) {
  .section { padding: 48px 0; }
  .section__header h2 { font-size: 24px; }
  .header__nav { display: none; }
  .header__messengers { display: none; }
  .header__phone { display: flex; }
  .header__contact { margin-left: auto; }
  .hero {
    --hero-offset: 100px;
    background: #000;
    padding: 0;
    /* On tablets keep full-bleed but don't force cover crop */
    height: auto;
    max-height: none;
  }
  .hero__img {
    border-radius: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .features { margin-top: 20px; padding-top: 0; }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 10px 0; padding: 22px 12px; }
  .feature:nth-child(2n)::after { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__title { font-size: 24px; }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .brands__item:nth-child(5n) { border-right: 1px solid #e5e7eb; }
  .brands__item:nth-child(3n) { border-right: none; }
  .brands__item:nth-child(n+6) { border-bottom: 1px solid #e5e7eb; }
  .brands__item:nth-child(n+10) { border-bottom: none; }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .about__stat:nth-child(odd) { padding-left: 0; border-left: none; }
  .blog__grid { grid-template-columns: 1fr; }
  .reviews__layout { grid-template-columns: 1fr; gap: 22px; }
  .reviews__summary { position: static; }
}

/* ===== Телефон: кастомный макет ===== */
@media (max-width: 768px) {
  :root {
    --mob-radius: 4px;
    --mob-bg: #faf8f5;
    --mob-surface: #ffffff;
    --mob-border: #e8e2d9;
    --mob-accent-soft: #f5efe6;
    --mob-text: #2c2419;
    --mob-text-muted: #7a736a;
  }

  body { background: var(--mob-bg); }
  .container { padding: 0 16px; }
  .section { padding: 34px 0; }

  /* Порядок блоков на телефоне: баннер -> промо -> переваги -> категорії -> решта */
  main { display: flex; flex-direction: column; padding-top: 0; }
  .hero { order: 1; }
  .promo-banners { order: 2; }
  .features { order: 3; }
  .categories { order: 4; }
  .products { order: 5; }
  .brands { order: 6; }
  .about { order: 7; }
  .reviews { order: 8; }
  .blog { order: 9; }

  /* Top bar — скрываем на телефоне */
  .top-bar { display: none; }

  /* Шапка — чистий ряд: бургер | лого | телефон | кошик */
  .header {
    padding: 10px 0 0;
    background: #fff;
    border-bottom: none;
    box-shadow: none;
  }
  .header .container { padding: 0 10px; }
  .header__inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }
  .header__burger {
    display: flex;
    order: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 24px;
    border-radius: var(--mob-radius);
    background: transparent;
    color: var(--color-dark);
    border: none;
  }
  .logo {
    order: 1;
    flex: 1;
    min-width: 0;
    gap: 6px;
  }
  .logo__paw { width: 28px; height: 28px; flex-shrink: 0; }
  .logo__text strong { font-size: 15px; color: var(--mob-text); }
  .logo__text small { display: none; }
  .btn-catalog { display: none; }
  .header__catalog { display: none; }
  .header__nav { display: none; }
  .mega-menu { display: none !important; }

  .header__contact {
    order: 3;
    flex-shrink: 0;
    margin-left: auto;
    gap: 0;
  }
  .header__phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 4px 7px;
    background: var(--mob-accent-soft);
    border: 1px solid var(--mob-border);
    border-radius: var(--mob-radius);
    text-align: right;
    line-height: 1.2;
  }
  .header__phone-ic { display: none; }
  .header__phone-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #3d362f;
  }
  .header__phone-num {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }
  .header__messengers { display: none; }

  .header__actions {
    order: 4;
    flex-shrink: 0;
    padding-left: 0;
    margin-left: 8px;
    border-left: none;
    gap: 0;
  }
  .header__action:not(.header__action--cart) { display: none; }
  .header__action--cart {
    width: 40px;
    height: 40px;
    font-size: 24px;
    border-radius: var(--mob-radius);
    background: var(--color-primary-bg);
    color: var(--color-primary-dark);
    border: 1px solid rgba(217, 138, 15, 0.35);
  }
  .header__action--cart:hover {
    background: transparent;
    color: var(--color-primary);
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }
  .cart-badge {
    top: 1px;
    right: 1px;
    width: 17px;
    height: 17px;
    font-size: 10px;
    background: var(--color-primary);
  }

  /* Поиск — чорний фон, помаранчевий кружок, 2px відступи */
  .header__search {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 2px 2px;
    padding: 4px 4px 4px 10px;
    height: 44px;
    box-sizing: border-box;
    background: #000;
    border: none;
    border-radius: 6px;
    overflow: visible;
    box-shadow: none;
    width: auto;
    max-width: none;
  }
  .header__search > i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 100%;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
  }
  .header__search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
    font-size: 14px;
    font-family: var(--font);
    color: #fff;
    height: 100%;
  }
  .header__search input::placeholder { color: rgba(255, 255, 255, 0.45); }
  .header__search input::-webkit-search-decoration,
  .header__search input::-webkit-search-cancel-button { display: none; }
  .header__search button {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: #f5a623;
    color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background 0.15s;
  }
  .header__search button:active {
    background: #e09010;
  }

  /* Герой на телефоні: баннер цілком, без обрізки cover */
  .hero {
    position: relative;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    background: #000;
    border: none;
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    display: block;
  }
  .hero::before { display: none; }
  .hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 0;
    object-fit: contain;
    object-position: center top;
  }

  /* Промо-баннери: тільки на телефоні, тільки картинки, без білого фону і тексту */
  .promo-banners { display: block; }
  .promo-banners.section { padding: 0; margin-top: 0; }
  .promo-banners .container { padding: 0; max-width: none; }
  .promo-banners__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .promo-banner {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    aspect-ratio: 16 / 10;
  }
  .promo-banner:hover { transform: none; box-shadow: none; }
  .promo-banner:hover .promo-banner__bg { transform: none; }
  .promo-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .promo-banner__content { display: none; }
  .promo-banner::before { display: none; }

  /* Переваги — приховуємо на телефоні */
  .features { display: none; }

  /* Категорії / товари */
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__title { font-size: 22px; margin-bottom: 16px; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__item {
    min-height: 88px;
    padding: 14px 12px;
  }
  .brands__item:nth-child(5n),
  .brands__item:nth-child(3n) { border-right: 1px solid #e5e7eb; }
  .brands__item:nth-child(2n) { border-right: none; }
  .brands__item:nth-child(n+6),
  .brands__item:nth-child(n+10) { border-bottom: 1px solid #e5e7eb; }
  .brands__item:nth-last-child(-n+2) { border-bottom: none; }
  .brands__item img { max-width: 120px; max-height: 36px; }

  /* Решта секцій */
  .section__header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section__header h2 { font-size: 22px; }
  .about,
  .blog { background: #f5f6f8; }
  .section.reviews { background-color: #fcf9f5; }
  .about::before { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__card {
    padding: 24px;
    border-radius: 12px;
    border: none;
  }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .about__stat:nth-child(odd) { padding-left: 0; border-left: none; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog-feature__body h3 { font-size: 20px; }
  .reviews__layout { grid-template-columns: 1fr; }
  .reviews__summary { position: static; }
  .reviews__add-btn { display: none; }
  .review-form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Малий телефон */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .section { padding: 28px 0; }
  .header__inner { gap: 6px; }
  .header__burger,
  .header__action--cart { width: 36px; height: 36px; }
  .header__action--cart { font-size: 21px; }
  .header__phone-num { font-size: 12px; }
  .header__burger { font-size: 22px; }
  .logo__paw { width: 30px; height: 30px; }
  .logo__text strong { font-size: 16px; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .section__header h2 { font-size: 20px; }
  .reviews__controls { flex-direction: column-reverse; gap: 14px; }
  .reviews__nav { width: 100%; justify-content: center; }
  .review-modal__dialog { padding: 24px 20px; }
}

/* ===== OC + PetLove homepage ===== */
.logo__img { max-height: 42px; width: auto; display: block; }
.header__cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: inherit;
  text-decoration: none;
  font-size: 20px;
}
.header__action--cart { padding: 0; }

/* Hide OpenCart demo slideshow / brand carousels on PetLove home */
.page-petlove .petlove-home-modules .carousel,
.page-petlove .petlove-home-modules [id^="carousel-"],
.page-petlove .petlove-home-modules .swiper,
.page-petlove .petlove-home-modules .carousel-indicators {
  display: none !important;
}

/* Featured module → PetLove product grid */
.page-petlove .petlove-oc-products .section__header + .petlove-home-modules > h3,
.page-petlove .petlove-home-modules > h3 {
  display: none !important;
}
.page-petlove .petlove-home-modules .row.row-cols-1,
.page-petlove .petlove-home-modules .row[class*="row-cols"] {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 0 !important;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.page-petlove .petlove-home-modules .row[class*="row-cols"] > .col,
.page-petlove .petlove-home-modules .row[class*="row-cols"] > [class*="col"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.page-petlove .product-card {
  height: 100%;
}
.page-petlove .product-card__image {
  display: block;
  width: 100%;
  height: 200px;
  max-height: 200px;
  background: #f4f4f5;
  overflow: hidden;
}
.page-petlove .product-card__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1100px) {
  .page-petlove .petlove-home-modules .row[class*="row-cols"] {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .page-petlove .petlove-home-modules .row[class*="row-cols"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.page-petlove .header__nav {
  max-width: none;
  overflow-x: visible;
  white-space: nowrap;
  scrollbar-width: none;
}
.page-petlove .header__nav::-webkit-scrollbar { display: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
/* Products: 6 in a row like mockup */
.page-petlove .petlove-home-modules .row.row-cols-1,
.page-petlove .petlove-home-modules .row[class*="row-cols"] {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 16px !important;
}
@media (max-width: 1200px) {
  .page-petlove .petlove-home-modules .row[class*="row-cols"] {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 900px) {
  .page-petlove .petlove-home-modules .row[class*="row-cols"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .page-petlove .petlove-home-modules .row[class*="row-cols"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}
/* ===== Product card: price + cart on one row (force) ===== */
.page-petlove .product-card { position: relative; }
.page-petlove .product-card__wishlist-form {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 5 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  display: block !important;
}
.page-petlove .product-card__price {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 10px !important;
  width: 100% !important;
  margin-top: auto !important;
}
.page-petlove .product-card__prices {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: calc(100% - 52px) !important;
}
.page-petlove .product-card__price-top {
  min-height: 0 !important;
}
.page-petlove .product-card__cart-form {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 40px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
}
.page-petlove .product-card__cart {
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}
.page-petlove .product-card__body {
  display: flex;
  flex-direction: column;
}
.page-petlove .product-card__title { margin-top: 0; }

/* === FORCE CARD PRICE ROW v23 === */
.page-petlove .product-card .product-card__price {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 8px !important;
  width: 100% !important;
}
.page-petlove .product-card .product-card__prices {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: calc(100% - 52px) !important;
}
.page-petlove .product-card .product-card__price-top { min-height: 0 !important; }
.page-petlove .product-card form.product-card__cart-form {
  display: inline-flex !important;
  flex: 0 0 40px !important;
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.page-petlove .product-card .product-card__cart {
  width: 40px !important;
  height: 40px !important;
}

.page-petlove .product-card__attrs {
  list-style: none;
  margin: 8px 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-petlove .product-card__attrs li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
}
.page-petlove .product-card__attrs span {
  color: #9ca3af;
  flex: 0 1 auto;
  min-width: 0;
}
.page-petlove .product-card__attrs b {
  color: #374151;
  font-weight: 600;
  text-align: right;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== Header mega menu hard fix v40 ===== */
.header { position: relative; z-index: 100; }
.header__catalog { position: relative; flex-shrink: 0; }
.header__nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 2px;
  overflow: hidden;
}
.header__nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
}
.header__nav a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}
.mega-menu {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  z-index: 200 !important;
  display: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
  padding: 12px 0 20px;
  background: transparent;
}
.header.is-catalog-open .mega-menu,
.mega-menu.is-open {
  display: block !important;
}
.mega-menu[hidden] {
  display: none !important;
}
.header.is-catalog-open .mega-menu[hidden],
.mega-menu.is-open[hidden] {
  display: block !important;
}
.mega-menu__panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(26,26,26,.14);
  overflow: hidden;
}
.mega-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #fff7e8 0%, #fff 70%);
  border-bottom: 1px solid #e5e7eb;
}
.mega-menu__hint {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}
.mega-menu__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-height: min(70vh, 560px);
  overflow: auto;
  padding: 8px;
}
.mega-menu__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffe2a8;
}
@media (max-width: 1100px) {
  .mega-menu__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .header__nav { display: none !important; }
  .mega-menu { display: none !important; }
  .btn-catalog { display: none !important; }
}


/* ===== Header nav polish v41 ===== */
.header__nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 2px;
  padding: 0 6px;
}
.header__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  font-family: var(--font-heading), Manrope, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1f2937;
  white-space: nowrap;
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: #f5a623;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.header__nav a:hover,
.header__nav a:focus-visible {
  color: #111827;
  background: #fff6e5;
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.22);
  text-decoration: none;
}
.header__nav a:hover::after,
.header__nav a:focus-visible::after {
  transform: scaleX(1);
}
@media (max-width: 1200px) {
  .header__nav a {
    padding: 0 10px;
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .header__nav { display: none !important; }
}

/* hide card attrs v42 */
.page-petlove .product-card__attrs{display:none!important;}

/* product-card meta v43 */
.page-petlove .product-card__rating { display: none !important; }
.page-petlove .product-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 8px 0 10px;
  font-size: 12.5px;
  line-height: 1.3;
  color: #6b7280;
}
.page-petlove .product-card__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  padding: 0 7px;
  border-radius: 6px;
  background: #fff7e8;
  color: #b45309;
  font-weight: 800;
  font-size: 12.5px;
}
.page-petlove .product-card__reviews { color: #6b7280; font-weight: 600; }
.page-petlove .product-card__bought { color: #9ca3af; font-weight: 500; }
.page-petlove .product-card__bought::before {
  content: "·";
  margin-right: 10px;
  color: #d1d5db;
}

/* score star v45 */
.page-petlove .product-card__score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.page-petlove .product-card__score i {
  font-size: 11px;
  color: #f5a623;
  line-height: 1;
}


/* ===== site-footer v46 ===== */
.site-footer {
  position: relative;
  margin-top: 64px;
  color: #f3f4f6;
  overflow: hidden;
  background: #0b1018;
}
.site-footer__bg {
  position: absolute;
  inset: 0;
  background-color: #0b1018;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.site-footer__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,12,20,.96) 0%, rgba(8,12,20,.88) 42%, rgba(8,12,20,.55) 68%, rgba(8,12,20,.28) 100%),
    linear-gradient(0deg, rgba(8,12,20,.55) 0%, transparent 40%);
  pointer-events: none;
}
.site-footer__inner {
  position: relative;
  z-index: 2;
  padding: 56px 0 22px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 0.8fr;
  gap: 36px 28px;
  padding-bottom: 34px;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}
.site-footer__paw {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5a623;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-footer__paw svg {
  width: 22px;
  height: 22px;
  fill: #141414;
}
.site-footer__logo strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading), Manrope, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.site-footer__logo small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer__about {
  max-width: 340px;
  margin: 0 0 18px;
  color: rgba(243,244,246,.78);
  font-size: 14px;
  line-height: 1.55;
}
.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.site-footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.site-footer__pill i { color: #f5a623; font-size: 14px; }
.site-footer__pill:hover {
  background: rgba(245,166,35,.12);
  border-color: rgba(245,166,35,.35);
  color: #fff;
}
.site-footer__social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.site-footer__social {
  display: flex;
  gap: 8px;
}
.site-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 15px;
  transition: background .2s, color .2s, transform .2s;
}
.site-footer__social a:hover {
  background: #f5a623;
  color: #141414;
  transform: translateY(-1px);
}
.site-footer__script {
  color: #f5a623;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
.site-footer__col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-heading), Manrope, sans-serif;
  font-size: 16px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}
.site-footer__col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #f5a623;
}
.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__col a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(243,244,246,.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s, transform .2s;
}
.site-footer__col a i {
  color: #f5a623;
  font-size: 11px;
}
.site-footer__col a:hover {
  color: #fff;
  transform: translateX(2px);
}
.site-footer__bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.4fr auto;
  gap: 16px 18px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px;
  color: rgba(243,244,246,.7);
}
.site-footer__care {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer__care i { color: #f5a623; }
.site-footer__copy { text-align: center; color: rgba(243,244,246,.62); }
.site-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
}
.site-footer__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.site-footer__trust i { color: #f5a623; font-size: 13px; }
.site-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}
.pay-badge--mc { color: #ffb4a2; }
@media (max-width: 1100px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .site-footer__col:last-child { grid-column: 2 / 4; }
  .site-footer__bottom { grid-template-columns: 1fr 1fr; }
  .site-footer__copy { text-align: left; }
  .site-footer__pay { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .site-footer__bg { background-position: 70% center; }
  .site-footer__shade {
    background:
      linear-gradient(180deg, rgba(8,12,20,.92) 0%, rgba(8,12,20,.82) 55%, rgba(8,12,20,.72) 100%),
      linear-gradient(90deg, rgba(8,12,20,.75) 0%, rgba(8,12,20,.35) 100%);
  }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__col:last-child { grid-column: auto; }
  .site-footer__bottom { grid-template-columns: 1fr; gap: 12px; }
  .site-footer__trust { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__script { font-size: 16px; }
}






/* ===== Reviews redesign v51 ===== */
@media (max-width: 1100px) {
  .section.reviews .reviews__header { flex-direction: column; align-items: flex-start; }
  .section.reviews .reviews__script--top { margin: 8px 0 0; max-width: none; }
}
@media (max-width: 900px) {
  .section.reviews .reviews__layout { grid-template-columns: 1fr; }
  .section.reviews .reviews__features { flex-direction: column; align-items: flex-start; }
  .section.reviews .reviews__script--bottom { white-space: normal; }
  .section.reviews .reviews__feature-list li {
    width: 50%;
    border-right: 0;
    padding: 10px 10px 10px 0;
    box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .section.reviews { padding: 40px 0 32px; }
  .section.reviews .reviews__title-block h2 { font-size: 28px; }
  .section.reviews .reviews__feature-list li { width: 100%; padding: 8px 0; }
}
