/* PromoPlus — Pure CSS Design System */
:root {
  --green: #7CA449;
  --green-dark: #5A7A32;
  --green-light: #9BC066;
  --green-pale: #DDEACF;
  --green-glow: rgba(124, 164, 73, 0.22);
  --grey: #4D5053;
  --grey-dark: #2B2D30;
  --grey-mid: #5C6066;
  --grey-light: #8A8E94;
  --grey-pale: #ECEEF1;
  --grey-border: #D4D8DC;
  --white: #FFFFFF;
  --black: #141618;
  --surface: #F5F6F8;
  --shadow-sm: 0 1px 4px rgba(20, 22, 24, 0.08);
  --shadow-md: 0 6px 20px rgba(20, 22, 24, 0.12);
  --shadow-lg: 0 14px 40px rgba(20, 22, 24, 0.16);
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 999px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 56px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1140px;
  --slant: -3deg;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font);
  color: var(--grey);
  background: var(--surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 { color: var(--grey-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
h3 { font-size: 1.1rem; }
p { color: var(--grey-mid); }
.text-green { color: var(--green); }
.text-muted { color: var(--grey-light); font-size: 0.875rem; }

.section { padding: 2.25rem 0; }
.section--compact { padding: 1.75rem 0; }
.section--grey { background: var(--grey-pale); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.section-header p { max-width: 42ch; margin-top: 0.35rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.section-tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--green);
  transform: skewX(-12deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(124, 164, 73, 0.35);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(124, 164, 73, 0.4);
}
.btn--outline {
  border: 1.5px solid var(--grey-border);
  color: var(--grey);
  background: var(--white);
}
.btn--outline:hover { border-color: var(--green); color: var(--green); }
.btn--ghost { color: var(--green); padding-inline: 0.5rem; }
.btn--ghost:hover { color: var(--green-dark); }
.btn--dark { background: var(--grey); color: var(--white); }
.btn--dark:hover { background: var(--grey-dark); }
.btn--sm { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.btn--lg { padding: 0.7rem 1.5rem; font-size: 0.95rem; }
.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.btn-icon:hover { border-color: var(--green); color: var(--green); }
.btn-icon svg { width: 18px; height: 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--grey-dark);
  border-bottom: 2px solid var(--green);
  height: var(--header-h);
  box-shadow: var(--shadow-md);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: 0.05rem; }
.main-nav a {
  padding: 0.35rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: rgba(255, 255, 255, 0.82);
}
.main-nav a:hover,
.main-nav a.is-active { color: var(--white); background: rgba(124, 164, 73, 0.28); }
.header-actions { display: flex; align-items: center; gap: 0.4rem; }
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.15rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.lang-switcher__btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
}
.lang-switcher__btn:hover { color: var(--white); }
.lang-switcher__btn.is-active {
  background: var(--green);
  color: var(--white);
}
.search-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition);
  min-width: 140px;
}
.search-toggle:hover { border-color: var(--green-light); color: var(--white); }
.search-toggle kbd {
  margin-left: auto;
  font-size: 0.62rem;
  padding: 0.1rem 0.3rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
}
.menu-toggle span { background: var(--white); }
.mobile-nav__langs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-border);
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--grey);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--grey-border);
}
.mobile-nav a.is-active { color: var(--green); }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 28, 30, 0.5);
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  width: min(90%, 520px);
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  transition: transform var(--transition);
}
.search-overlay.is-open .search-box { transform: translateY(0); }
.search-box input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--grey-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  outline: none;
}
.search-box input:focus { border-color: var(--green); }

/* Hero Slider */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grey-dark);
  min-height: 380px;
}
.hero__container { position: relative; z-index: 2; }
.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--grey-dark);
}
.hero__slides { position: relative; height: 100%; min-height: inherit; }
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; position: relative; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(58, 61, 64, 0.92) 0%, rgba(58, 61, 64, 0.6) 50%, transparent 100%);
}
.hero__slant {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 2.75rem 0 3.5rem;
  max-width: 540px;
}
.hero__content h1 { color: var(--white); margin-bottom: 0.75rem; }
.hero__content h1 em {
  font-style: normal;
  color: var(--green-light);
}
.hero__content p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; font-size: 1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hero__controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.5rem;
  background: rgba(20, 22, 24, 0.45);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.hero__dot.is-active { background: var(--green-light); width: 22px; border-radius: var(--radius-full); }

/* Hero — image-only mode (no text overlay) */
.hero--images-only { min-height: 0; background: var(--surface); padding: 1.25rem 0 0; }
.hero--images-only .hero__frame { aspect-ratio: 16 / 5.5; min-height: 200px; }
.hero--images-only .hero__slides,
.hero--images-only .hero__slide.is-active { min-height: 100%; height: 100%; }
.hero--images-only .hero__slide {
  display: block;
}
.hero--images-only .hero__slide.is-active {
  position: absolute;
  inset: 0;
}
.hero__slide-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}
.hero--images-only .hero__bg,
.hero--images-only .hero__content,
.hero--images-only .hero__actions,
.hero--images-only .hero__slant { display: none !important; }
.hero--home .hero__container { padding-top: 0; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 0.85rem 0;
}
.trust-bar--home {
  margin-top: -0.5rem;
  border-top: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-mid);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--grey-border);
}
.trust-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
}
.trust-item__icon svg { width: 16px; height: 16px; }
.trust-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.category-card {
  position: relative;
  padding: 1.15rem 1rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.category-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.category-card:hover::before { transform: scaleX(1); }
.category-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: background var(--transition);
}
.category-card:hover .category-card__icon { background: var(--green); }
.category-card h3 { font-size: 0.85rem; margin-bottom: 0.2rem; }
.category-card span { font-size: 0.7rem; color: var(--grey-light); }

/* Home page */
.home-shortcuts {
  padding: 1rem 0 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
}
.home-shortcuts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.home-shortcut {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-dark);
  transition: all var(--transition);
}
.home-shortcut:hover {
  border-color: var(--green);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--green-dark);
}
.home-shortcut--accent {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--white) 100%);
  border-color: rgba(124, 164, 73, 0.35);
}
.home-shortcut--accent:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.home-shortcut--accent:hover .home-shortcut__icon { background: rgba(255,255,255,0.2); color: var(--white); }
.home-shortcut__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.home-shortcut__icon svg { width: 18px; height: 18px; }
.home-shortcut__label { line-height: 1.2; }

.section--home { padding: 2.5rem 0; }
.section-header--stack { align-items: flex-end; }
.section-header--stack > div { flex: 1; min-width: 200px; }
.section-header--center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.section-header--center > div { display: flex; flex-direction: column; align-items: center; }

.category-grid--visual {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.category-card--visual {
  padding: 0;
  text-align: left;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.category-card--visual::before { display: none; }
.category-card--visual:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.category-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--grey-pale), var(--green-pale));
  overflow: hidden;
}
.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.category-card--visual:hover .category-card__img { transform: scale(1.06); }
.category-card__emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 22, 24, 0.55) 0%, transparent 55%);
  pointer-events: none;
}
.category-card__body {
  padding: 0.85rem 1rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--grey-border);
}
.category-card--visual h3 { font-size: 0.9rem; margin-bottom: 0.15rem; color: var(--grey-dark); }
.category-card__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
}
.category-grid__empty {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  color: var(--grey-mid);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px dashed var(--grey-border);
}

.product-grid--home {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.15rem;
}
.blog-grid--home { gap: 1.15rem; }
.home-empty-card {
  grid-column: 1 / -1;
  padding: 2.5rem;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--grey-border);
}
.home-empty-card p { margin-bottom: 1rem; }

.cta-banner--home {
  padding: 2.25rem 2.5rem;
  align-items: center;
}
.cta-banner__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}
.cta-banner__content { flex: 1; min-width: 220px; position: relative; z-index: 1; }
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}
.cta-banner--home .btn--outline {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.cta-banner--home .btn--outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}
.btn--on-green {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.btn--on-green:hover {
  background: var(--green-pale);
  transform: translateY(-1px);
}

.partners-strip--home {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-strip--home .partners-strip__item {
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--grey-mid);
}

.product-card__view {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--grey-dark);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.product-card__view svg { width: 16px; height: 16px; }
.product-card:hover .product-card__view {
  background: var(--green);
  color: var(--white);
}

/* Products (shop) page */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shop-hero {
  background: linear-gradient(135deg, var(--grey-dark) 0%, #3d4a35 55%, var(--green-dark) 100%);
  padding: 1.75rem 0 2rem;
  color: var(--white);
  border-bottom: 3px solid var(--green);
}
.shop-hero__inner { display: flex; flex-direction: column; gap: 1rem; }
.shop-hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.shop-hero__copy { flex: 1; min-width: 200px; }
.shop-hero h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin-bottom: 0.35rem;
  line-height: 1.15;
}
.shop-hero__meta {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.breadcrumb--light { color: rgba(255, 255, 255, 0.55); font-size: 0.78rem; }
.breadcrumb--light a { color: rgba(255, 255, 255, 0.75); }
.breadcrumb--light a:hover { color: var(--green-light); }
.breadcrumb--light span[aria-current] { color: var(--green-light); font-weight: 600; }

.shop-hero__search {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex: 0 1 380px;
  min-width: min(100%, 280px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.35rem;
  backdrop-filter: blur(8px);
}
.shop-hero__search input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border: none;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  outline: none;
}
.shop-hero__search input:focus { box-shadow: 0 0 0 2px var(--green-glow); }
.shop-hero__search .btn { flex-shrink: 0; align-self: stretch; }
.shop-hero__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.shop-hero__clear {
  border-color: rgba(255,255,255,0.4) !important;
  color: var(--white) !important;
  background: transparent !important;
}
.shop-hero__clear:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--white) !important;
}

.category-pills-bar--shop {
  top: var(--header-h);
  padding: 0.65rem 0;
  background: var(--white);
}
.category-pill__icon { font-size: 0.95rem; line-height: 1; }
.category-pill__count {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
  background: var(--grey-pale);
  color: var(--grey-mid);
  margin-left: 0.15rem;
}
.category-pill.is-active .category-pill__count {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.filters--shop {
  border-radius: var(--radius-lg);
  padding: 1rem;
  top: calc(var(--header-h) + 56px);
}
.products-toolbar--shop {
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.product-grid--shop {
  gap: 1.1rem;
}
.products-empty--shop {
  background: var(--white);
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
}
.products-empty--shop .products-empty__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: var(--radius-full);
  color: var(--green-dark);
}
.products-empty--shop .products-empty__icon svg { width: 28px; height: 28px; }

.products-bottom-cta--shop {
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  margin-top: 2rem;
  background: linear-gradient(120deg, var(--grey-dark) 0%, #3A4A32 50%, var(--green-dark) 100%);
  box-shadow: var(--shadow-md);
}
.products-bottom-cta__copy { flex: 1; min-width: 200px; }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
  transform: translateY(-2px);
}
.product-card__img {
  position: relative;
  aspect-ratio: 1;
  background: var(--grey-pale);
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
}
.product-card__badge--sale { background: #C45C4A; }
.product-card__stock {
  position: absolute;
  bottom: 0.55rem;
  left: 0.55rem;
  padding: 0.18rem 0.45rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  color: var(--white);
}
.product-card__stock--in  { background: #2E7D32; }
.product-card__stock--out { background: #9E9E9E; }
.product-card__actions {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateX(0); }
.product-card__body { padding: 0.85rem; flex: 1; display: flex; flex-direction: column; }
.product-card__cat { font-size: 0.7rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.product-card h3 { font-size: 0.9rem; margin-bottom: 0.35rem; line-height: 1.35; }
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}
.product-card__price { font-weight: 700; color: var(--grey-dark); font-size: 0.95rem; }
.product-card__price small { font-size: 0.75rem; color: var(--grey-light); font-weight: 400; }
.product-card__moq { font-size: 0.7rem; color: var(--grey-light); }
.product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  height: 100%;
}
.product-card__link:hover { color: inherit; }
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--grey-pale) 0%, var(--green-pale) 100%);
}
.product-card__desc {
  font-size: 0.78rem;
  color: var(--grey-light);
  line-height: 1.4;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__cta {
  display: block;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--grey-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  transition: color var(--transition);
}
.product-card:hover .product-card__cta { color: var(--green-dark); }

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); font-size: 1.35rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 0.35rem; }
.cta-banner .btn--outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cta-banner .btn--outline:hover { background: var(--white); color: var(--green-dark); }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.blog-card {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card__img { aspect-ratio: 16/10; background: var(--grey-pale); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.7rem;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; flex: 1; }
.blog-card__link {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Partners strip */
.partners-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.partners-strip__track {
  display: flex;
  gap: 2.5rem;
  animation: scroll-partners 25s linear infinite;
}
.partners-strip__item {
  flex-shrink: 0;
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-light);
  letter-spacing: 0.02em;
}
@keyframes scroll-partners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer */
.site-footer {
  background: var(--grey-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 3rem;
}
.site-footer a:hover { color: var(--green-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.85rem; margin: 1rem 0; max-width: 28ch; }
.footer-brand .logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.85rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.8rem;
}
.social-links { display: flex; gap: 0.5rem; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--grey-dark) 0%, #3A4A32 100%);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--green);
  color: var(--white);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255, 255, 255, 0.78); margin-top: 0.35rem; }
.page-hero--compact {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  color: inherit;
  padding: 1rem 0;
}
.page-hero--compact h1 { color: var(--grey-dark); }
.page-hero--dark { padding: 2rem 0; }
.page-hero--products { padding: 1.1rem 0; background: var(--white); border-bottom: 1px solid var(--grey-border); color: inherit; }
.page-hero--products .container { display: block; }
.page-hero--products h1 { color: var(--grey-dark); font-size: 1.45rem; margin-bottom: 0.15rem; }
.page-hero--products .breadcrumb { margin-bottom: 0.45rem; color: var(--grey-light); }
.page-hero--products .breadcrumb a { color: var(--grey-mid); }
.page-hero--products .breadcrumb span:last-child { color: var(--green-dark); font-weight: 600; }
.page-hero__meta { font-size: 0.82rem; color: var(--grey-mid); margin: 0; }
.page-hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}
.page-hero .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.page-hero.page-hero--products .container,
.page-hero.page-hero--compact .container { display: block; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--grey-light);
  margin-bottom: 0;
}
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--grey-mid); }

/* Product detail */
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.product-detail__gallery { position: relative; }
.product-detail__image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-md);
}
.product-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--grey-pale), var(--green-pale));
}
.product-detail__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
}
.product-detail__badge--sale { background: #C45C4A; }
.product-detail__info h1 { font-size: 1.65rem; margin: 0.35rem 0 0.35rem; }
.product-detail__sku { font-size: 0.8rem; color: var(--grey-mid); margin: 0 0 0.75rem; }
.product-detail__sku strong { color: var(--grey-dark); }
.product-detail__desc { font-size: 0.92rem; margin-bottom: 1.25rem; max-width: 52ch; }
.product-detail__desc ul { padding-left: 1.25rem; margin: 0; }
.product-detail__desc li { margin-bottom: 0.3rem; }
.product-detail__thumb-btn {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.product-detail__thumb-btn .product-detail__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  display: block;
  transition: border-color 0.15s;
}
.product-detail__thumb-btn:hover .product-detail__thumb,
.product-detail__thumb-btn.is-active .product-detail__thumb { border-color: var(--green); }
.product-gallery__main {
  position: relative;
}
.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--grey-dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s, color 0.15s;
}
.product-gallery__nav:hover {
  background: var(--green);
  color: var(--white);
}
.product-gallery__nav--prev { left: 0.65rem; }
.product-gallery__nav--next { right: 0.65rem; }
.product-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
}
.product-gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--grey-border);
  cursor: pointer;
  transition: all 0.2s;
}
.product-gallery__dot.is-active {
  background: var(--green);
  width: 22px;
  border-radius: var(--radius-full);
}
.product-gallery__img { transition: opacity 0.2s; }
.product-detail__attrs { display: flex; gap: 1.25rem; margin-bottom: 1.15rem; }
.product-detail__attr { display: flex; flex-direction: column; gap: 0.15rem; }
.product-detail__attr-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-mid); }
.product-detail__attr-value { font-size: 0.92rem; font-weight: 600; color: var(--grey-dark); }
.product-detail__price--quote { font-size: 1.1rem; color: var(--grey-mid); font-style: italic; }
.product-detail__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.product-detail__price { font-size: 1.75rem; font-weight: 800; color: var(--green-dark); }
.product-detail__unit { font-size: 0.85rem; color: var(--grey-light); }
.product-detail__moq { font-size: 0.82rem; font-weight: 600; color: var(--grey-mid); }
.product-detail__materials,
.product-detail__specs { margin-bottom: 1.15rem; }
.product-detail__materials h4,
.product-detail__specs h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-mid);
  margin-bottom: 0.55rem;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: var(--radius-full);
  border: 1px solid rgba(124, 164, 73, 0.25);
}
.product-detail__specs ul {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--grey-mid);
}
.product-detail__stock { margin-bottom: 1rem; }
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}
.stock-badge--in  { background: #E8F5E9; color: #2E7D32; }
.stock-badge--out { background: #F5F5F5; color: #757575; }
.product-detail__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.5rem; }

/* Catalogs */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.catalog-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.catalog-card__cover {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--grey-pale);
  overflow: hidden;
}
.catalog-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.catalog-card:hover .catalog-card__cover img { transform: scale(1.04); }
.catalog-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--grey-dark), #3A4A32);
}
.catalog-card__external {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.catalog-card__external svg { width: 16px; height: 16px; }
.catalog-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.catalog-card__year { font-size: 0.72rem; color: var(--grey-light); font-weight: 600; }
.catalog-card h3 { font-size: 0.95rem; margin: 0.35rem 0; line-height: 1.35; }
.catalog-card p { font-size: 0.82rem; flex: 1; margin-bottom: 0.65rem; }
.catalog-card__cta { font-size: 0.78rem; font-weight: 700; color: var(--green); }

.category-pills-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 0.55rem 0;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.category-pills {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.category-pills::-webkit-scrollbar { display: none; }
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-full);
  background: var(--white);
  transition: all var(--transition);
}
.category-pill span { font-size: 0.9rem; }
.category-pill:hover { border-color: var(--green); color: var(--green); }
.category-pill.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Products page layout */
.filters-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}
.filters-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.products-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem 0 2.5rem;
  align-items: start;
}
.products-main {
  min-width: 0;
}
.filters {
  position: sticky;
  top: calc(var(--header-h) + 48px);
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - var(--header-h) - 64px);
  overflow-y: auto;
}
.filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-border);
}
.filters__header h3 { font-size: 0.9rem; font-weight: 700; }
.filters__close { display: none; }
.filters__clear { width: 100%; margin-top: 0.5rem; }
.filter-group { margin-bottom: 1.15rem; }
.filter-group h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-mid);
  margin-bottom: 0.55rem;
  font-weight: 700;
}
.filter-list { display: flex; flex-direction: column; gap: 0.15rem; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  font-size: 0.8rem;
}
.filter-option:hover { background: var(--grey-pale); }
.filter-option.is-checked { background: var(--green-pale); }
.filter-option input[type="checkbox"] {
  accent-color: var(--green);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.filter-option__label { flex: 1; }
.filter-option__count {
  font-size: 0.7rem;
  color: var(--grey-light);
  background: var(--grey-pale);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  cursor: pointer;
}
.filter-group input[type="checkbox"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
}
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.products-toolbar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.products-toolbar__count { font-size: 0.85rem; font-weight: 600; color: var(--grey-dark); }
.products-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.products-toolbar select {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  outline: none;
  font-size: 0.85rem;
  cursor: pointer;
}
.products-toolbar select:focus { border-color: var(--green); }
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  min-height: 0;
}
.filter-tags:not(:empty) { min-height: 28px; }
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid rgba(124, 164, 73, 0.25);
}
.filter-tag button {
  font-size: 1rem;
  line-height: 1;
  color: var(--green);
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-mobile-toggle { display: none; }

.products-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--grey-pale);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--grey-border);
}
.products-empty__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.products-empty h2 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.products-empty p { margin-bottom: 1.25rem; }

.products-bottom-cta {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, var(--grey-dark) 0%, #3A4A32 100%);
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--white);
}
.products-bottom-cta h3 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--white); }
.products-bottom-cta p { font-size: 0.82rem; margin: 0; color: rgba(255, 255, 255, 0.78); }
.products-bottom-cta .btn--primary { background: var(--white); color: var(--green-dark); box-shadow: none; }
.products-bottom-cta .btn--primary:hover { background: var(--green-pale); }

.products-layout .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.85rem;
}
@media (min-width: 1100px) {
  .products-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .products-layout .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .products-layout .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.price-range { display: flex; gap: 0.5rem; align-items: center; }
.price-range input {
  width: 100%;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 2rem;
}
.pagination a, .pagination span {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--grey-border);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .is-active { background: var(--green); color: var(--white); border-color: var(--green); }
.pagination__disabled,
.pagination__ellipsis {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--grey-light);
  border: 1px solid transparent;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 2.5rem 0 3.5rem;
}
.contact-info-card {
  padding: 1.25rem;
  background: var(--grey-pale);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-card__icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-info-card p { font-size: 0.85rem; }
.form-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--grey-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.map-placeholder {
  height: 220px;
  background: var(--grey-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  font-size: 0.85rem;
  border: 1px dashed var(--grey-border);
  margin-top: 1rem;
}

/* About */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
}
.about-intro__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grey-pale);
}
.about-intro__visual img { width: 100%; height: 100%; object-fit: cover; }
.about-intro__accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: var(--green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  transform: skewX(-6deg);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}
.stat-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
}
.stat-card strong {
  display: block;
  font-size: 1.75rem;
  color: var(--green);
  font-weight: 800;
  line-height: 1;
}
.stat-card span { font-size: 0.8rem; color: var(--grey-mid); margin-top: 0.35rem; display: block; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.value-card {
  padding: 1.25rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.value-card__icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.value-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.value-card p { font-size: 0.85rem; }

/* Partners page */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}
.partner-card {
  aspect-ratio: 3/2;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--grey-light);
  transition: all var(--transition);
}
.partner-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  color: var(--grey-mid);
}
.become-partner {
  background: var(--grey-pale);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0 3.5rem;
}
.become-partner h2 { margin-bottom: 0.5rem; }
.become-partner p { max-width: 48ch; margin: 0 auto 1.25rem; }

/* Blog detail */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem 0 3.5rem;
}
.article__img {
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-pale);
  margin-bottom: 1.5rem;
}
.article__img img { width: 100%; height: 100%; object-fit: cover; }
.article__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--grey-light);
  margin-bottom: 1rem;
}
.article__content h2 { margin: 1.5rem 0 0.75rem; font-size: 1.25rem; }
.article__content p { margin-bottom: 1rem; }
.sidebar-widget {
  background: var(--grey-pale);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1rem;
}
.sidebar-widget h4 { font-size: 0.85rem; margin-bottom: 0.75rem; }
.sidebar-widget li { margin-bottom: 0.45rem; }
.sidebar-widget a { font-size: 0.85rem; }
.sidebar-widget a:hover { color: var(--green); }

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }

/* Responsive */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .category-pills-bar { top: var(--header-h); }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .home-shortcuts__grid { grid-template-columns: repeat(2, 1fr); }
  .shop-hero__row { flex-direction: column; align-items: stretch; }
  .shop-hero__search { flex: 1 1 auto; max-width: none; }
  .product-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filters {
    position: fixed;
    inset: 0;
    z-index: 1050;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform var(--transition);
    overflow-y: auto;
    max-width: 320px;
    top: 0;
  }
  .filters.is-open { transform: translateX(0); }
  .filters__close { display: inline-flex; }
  .filter-mobile-toggle { display: inline-flex; align-items: center; gap: 0.35rem; }
  .filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .filters-overlay.is-open { opacity: 1; visibility: visible; }
  .about-intro { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .product-detail__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .search-toggle kbd, .header-actions .btn--outline { display: none; }
  .menu-toggle { display: flex; }
  .search-toggle { min-width: auto; padding: 0.5rem; }
  .search-toggle span { display: none; }
  .hero { min-height: 0; }
  .hero--images-only { padding: 0.75rem 0 0; }
  .hero--images-only .hero__container { width: 100%; padding-inline: 0; max-width: 100%; }
  .hero__frame { border-radius: 0; aspect-ratio: 16 / 7; }
  .hero__content { padding: 2.5rem 0 3.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner,
  .cta-banner--home { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { width: 100%; }
  .cta-banner__actions .btn { flex: 1; min-width: 140px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header--stack { flex-direction: column; align-items: flex-start; }
  .section--home { padding: 1.75rem 0; }
  .shop-hero { padding: 1.25rem 0 1.5rem; }
  .category-grid--visual { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .product-card__body { padding: 0.65rem; }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .home-shortcuts__grid { grid-template-columns: 1fr; }
  .home-shortcut { padding: 0.65rem 0.85rem; }
  .shop-hero__search { flex-direction: column; padding: 0.5rem; }
  .shop-hero__search .btn { width: 100%; }
  .products-bottom-cta--shop { flex-direction: column; align-items: flex-start; }
}

/* ── Side advertisement columns (billboard.az pattern) ── */
.side-ad-col {
  position: fixed;
  top: 68px;
  height: calc(100vh - 68px);
  z-index: 90;
  overflow: hidden;
  display: none;
  width: 0;
  transition: top 0.2s ease, height 0.2s ease, width 0.25s ease;
}
.side-ad-col--left {
  left: 0;
  box-shadow: 3px 0 16px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 8px 0;
}
.side-ad-col--right {
  right: 0;
  box-shadow: -3px 0 16px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 0 8px;
}
@media (max-width: 991px) {
  .side-ad-col { display: none !important; }
}
.side-ad-col::before,
.side-ad-col::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 2;
  pointer-events: none;
}
.side-ad-col::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(249, 249, 249, 0.55), transparent);
}
.side-ad-col::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(249, 249, 249, 0.55), transparent);
}
.side-ad-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.side-ad-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.side-ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.side-ad-link {
  display: block;
  width: 100%;
  height: 100%;
}
.side-ad-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
