/* ============================================================
   INDASTRA — Industrial Equipment B2B Marketplace
   Complete Design System — Full Overhaul
   Tesla / Zaha Hadid Aesthetic
   Primary: #0098db  |  Accent: #00BCD4  |  Glass Morphism
   ============================================================ */

/* ── FONT IMPORT ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* Brand Colors */
  --primary:        #0098db;
  --primary-dark:   #0078b0;
  --primary-light:  #33b5e5;
  --primary-xlight: rgba(0, 152, 219, 0.08);
  --primary-border: rgba(0, 152, 219, 0.18);

  /* Accent */
  --accent:         #00BCD4;
  --accent-dark:    #0097A7;
  --accent-light:   rgba(0, 188, 212, 0.10);

  /* Backgrounds */
  --bg:             #FFFFFF;
  --bg-secondary:   #F8FAFB;
  --bg-tertiary:    #EEF3F7;
  --bg-glass:       rgba(255, 255, 255, 0.85);
  --bg-glass-dark:  rgba(255, 255, 255, 0.94);
  --bg-overlay:     rgba(0, 152, 219, 0.04);

  /* Text */
  --text:           #1A2332;
  --text2:          #4D6070;
  --text3:          #8E9BAD;
  --text-inv:       #FFFFFF;

  /* Borders */
  --border:         #E2E8EF;
  --border-light:   #F0F4F8;
  --border-focus:   #0098db;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #0098db 0%, #006fa3 100%);
  --grad-accent:    linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
  --grad-dark:      linear-gradient(135deg, #1A2332 0%, #0d1724 100%);
  --grad-mesh:      radial-gradient(ellipse at 20% 50%, rgba(0,152,219,0.06) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 20%, rgba(0,188,212,0.05) 0%, transparent 55%),
                    radial-gradient(ellipse at 60% 90%, rgba(0,120,176,0.04) 0%, transparent 50%);

  /* Shadows */
  --shadow:         0 2px 12px rgba(26,35,50,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-hover:   0 12px 40px rgba(26,35,50,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-card:    0 4px 24px rgba(26,35,50,0.08);
  --shadow-deep:    0 20px 60px rgba(26,35,50,0.15);

  /* Glows */
  --glow:           0 0 24px rgba(0,152,219,0.20);
  --glow-strong:    0 0 40px rgba(0,152,219,0.30);
  --glow-accent:    0 0 24px rgba(0,188,212,0.25);
  --glow-subtle:    0 0 12px rgba(0,152,219,0.12);

  /* Radii */
  --radius:         18px;
  --radius-sm:      12px;
  --radius-xs:      8px;
  --radius-pill:    999px;

  /* Typography */
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --transition:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:0.14s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Status */
  --success:        #00C853;
  --success-bg:     rgba(0,200,83,0.08);
  --error:          #FF3D57;
  --error-bg:       rgba(255,61,87,0.08);
  --warning:        #FFB300;
  --warning-bg:     rgba(255,179,0,0.10);
}


/* ══════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 15px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
fieldset { border: none; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }


/* ══════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════ */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 16px; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}


/* ══════════════════════════════════════════════════════════
   BUTTONS — Global System
   ══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Primary — blue gradient + glow halo */
.btn--primary,
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 2px 14px rgba(0,152,219,0.24);
  z-index: 0;
}
.btn--primary::before,
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(0,152,219,0.65), rgba(0,188,212,0.45));
  filter: blur(20px);
  opacity: 0.55;
  z-index: -1;
  transition: opacity var(--transition);
}
.btn--primary:hover,
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0,152,219,0.42);
}
.btn--primary:hover::before,
.btn-primary:hover::before { opacity: 1; }

/* Outline */
.btn--outline,
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover,
.btn-outline:hover {
  background: var(--primary-xlight);
  border-color: var(--primary-dark);
}

/* Ghost */
.btn--ghost,
.btn-ghost {
  background: transparent;
  color: var(--primary);
}
.btn--ghost:hover,
.btn-ghost:hover { background: var(--primary-xlight); }

/* White (for dark backgrounds) */
.btn--white,
.btn-white {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.btn--white:hover,
.btn-white:hover {
  background: var(--bg-secondary);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

/* Sizes */
.btn--sm,  .btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn--lg,  .btn-lg  { padding: 14px 36px; font-size: 15px; }
.btn--xl,  .btn-xl  { padding: 18px 44px; font-size: 17px; font-weight: 700; }


/* ══════════════════════════════════════════════════════════
   HEADER — Glass Morphism
   ══════════════════════════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass-dark);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,152,219,0.07);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.03);
}


/* ── TRUST BAR (dark strip: email + phone) ───────────────── */

.trust-bar {
  background: var(--text);
  color: rgba(255,255,255,0.60);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 24px;
}
.trust-bar__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.60);
  font-size: 12px;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.trust-bar__link:hover { color: #fff; }
.trust-bar__link svg { flex-shrink: 0; width: 13px; height: 13px; }
.trust-bar__copy {
  background: none;
  border: none;
  padding: 4px 6px;
  margin-left: -4px;
  margin-right: 4px;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  transition: all 0.15s;
}
.trust-bar__copy:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.trust-bar__copy.copied {
  color: var(--accent, #00BCD4);
}
.trust-bar__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
}
.trust-bar__sep {
  color: rgba(255,255,255,0.20);
  user-select: none;
}


/* ── TOPBAR (tagline + language) ─────────────────────────── */

.topbar {
  background: rgba(248,250,251,0.70);
  border-bottom: 1px solid var(--border-light);
  height: 32px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--text2);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.topbar__tagline {
  font-size: 12px;
  color: var(--text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ── LANGUAGE SELECTOR ───────────────────────────────────── */

.lang-selector { position: relative; }

.lang-selector__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text2);
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.lang-selector__toggle:hover { color: var(--primary); }
.lang-selector__toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.lang-selector__code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lang-selector__toggle[aria-expanded="true"] { color: var(--primary); }

.lang-selector__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  min-width: 160px;
  z-index: 300;
  padding: 6px;
  list-style: none;
}
.lang-selector__dropdown--open,
.lang-selector__dropdown[aria-hidden="false"] { display: block; animation: fadeDown 0.18s ease; }

.lang-selector__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.lang-selector__item:hover {
  background: var(--bg-secondary);
  color: var(--text);
}
.lang-selector__item--active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-xlight);
}
.lang-selector__native {
  font-size: 11px;
  color: var(--text3);
  margin-left: 6px;
}


/* ── MAINBAR (logo + catalog + search + actions) ─────────── */

.mainbar {
  height: 64px;
  border-bottom: 1px solid rgba(0,152,219,0.06);
}
.mainbar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  height: 34px;
  width: auto;
}

/* Catalog button */
.catalog-btn {
  background: var(--grad-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 2px 16px rgba(0,152,219,0.28);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  z-index: 0;
}
.catalog-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(0,152,219,0.60), rgba(0,188,212,0.42));
  filter: blur(20px);
  opacity: 0.55;
  z-index: -1;
  transition: opacity var(--transition);
}
.catalog-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 28px rgba(0,152,219,0.42);
}
.catalog-btn:hover::before { opacity: 1; }
.catalog-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Search */
.search-wrap {
  flex: 1;
  position: relative;
}
.search-wrap form {
  display: flex;
  height: 44px;
}
.search-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  background: var(--bg-secondary);
  color: var(--text);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.search-input:focus {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(0,152,219,0.10);
}
.search-input::placeholder { color: var(--text3); }
.search-btn {
  background: var(--grad-primary);
  color: #fff;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 10px rgba(0,152,219,0.20);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.search-btn:hover { box-shadow: 0 4px 20px rgba(0,152,219,0.35); }
.search-btn svg { width: 18px; height: 18px; }

/* Search autocomplete */
.search-autocomplete {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  z-index: 200;
  max-height: 320px;
  overflow-y: auto;
  animation: fadeDown 0.18s ease;
}
.search-autocomplete[hidden] { display: none; }
.search-autocomplete__item {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition-fast);
  border-bottom: 1px solid var(--border-light);
}
.search-autocomplete__item:last-child { border-bottom: none; }
.search-autocomplete__item:hover { background: var(--bg-secondary); color: var(--primary); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 2px;
}
.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  color: var(--text2);
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
  flex-shrink: 0;
}
.header-action-btn:hover {
  color: var(--primary);
  background: var(--primary-xlight);
}
.header-action-btn svg { width: 20px; height: 20px; }

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  color: var(--text2);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
  flex-shrink: 0;
}
.mobile-menu-btn:hover {
  color: var(--primary);
  background: var(--primary-xlight);
}
.mobile-menu-btn svg { width: 22px; height: 22px; }


/* ── CATALOG MEGA-DROPDOWN ───────────────────────────────── */

.catalog-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-glass-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,152,219,0.08);
  box-shadow: 0 12px 40px rgba(26,35,50,0.12);
  z-index: 99;
  animation: fadeDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog-dropdown[hidden] { display: none; }
.catalog-dropdown__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.catalog-dropdown__col {
  padding: 16px 24px 16px 0;
  border-right: 1px solid var(--border-light);
}
.catalog-dropdown__col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 24px;
}
.catalog-dropdown__col:first-child { padding-left: 0; }
.catalog-dropdown__heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.catalog-dropdown__col ul { list-style: none; }
.catalog-dropdown__col ul li { padding: 1px 0; }
.catalog-dropdown__col ul a {
  display: block;
  font-size: 14px;
  color: var(--text2);
  padding: 7px 0;
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.catalog-dropdown__col ul a:hover {
  color: var(--primary);
  padding-left: 4px;
}


/* ── NAVBAR ──────────────────────────────────────────────── */

.navbar {
  height: 42px;
  background: rgba(255,255,255,0.60);
  border-bottom: 1px solid rgba(0,152,219,0.05);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.navbar__inner::-webkit-scrollbar { display: none; }

.navbar__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  padding: 0 14px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
.navbar__link:hover { color: var(--primary); }
.navbar__link:hover::after { transform: scaleX(1); }
.navbar__link--active {
  color: var(--primary);
  font-weight: 600;
}
.navbar__link--active::after { transform: scaleX(1); }


/* ══════════════════════════════════════════════════════════
   HERO CAROUSEL
   ══════════════════════════════════════════════════════════ */

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}
.hero-carousel__track {
  position: relative;
}

.hero-slide {
  width: 100%;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: stretch;
}
.hero-slide[hidden] { display: none; }

.hero-slide--1 {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0,152,219,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0,188,212,0.08) 0%, transparent 55%),
    linear-gradient(135deg, #f0f8ff 0%, #e8f4ff 50%, #f5faff 100%);
}
.hero-slide--2 {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,152,219,0.10) 0%, transparent 60%),
    linear-gradient(135deg, #e8f7ff 0%, #f0f9ff 100%);
}
.hero-slide--3 {
  background:
    radial-gradient(ellipse at 65% 40%, rgba(0,188,212,0.10) 0%, transparent 60%),
    linear-gradient(135deg, #f5faff 0%, #e8f4ff 100%);
}

.hero-slide__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 28px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-slide__content {
  flex: 1;
  max-width: 580px;
  animation: heroFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  border: 1px solid var(--primary-border);
}
.hero-slide__heading {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero-slide__heading br { display: block; }
.hero-slide__sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-slide__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-slide__visual {
  flex-shrink: 0;
  width: 440px;
  max-width: 42%;
  animation: heroFadeInRight 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide__visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0,152,219,0.15));
}

/* Carousel controls */
.hero-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 18px;
  background: var(--bg-secondary);
}
.hero-carousel__prev,
.hero-carousel__next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text2);
  flex-shrink: 0;
}
.hero-carousel__prev:hover,
.hero-carousel__next:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--glow-subtle);
}
.hero-carousel__prev svg,
.hero-carousel__next svg { width: 16px; height: 16px; }
.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}
.hero-carousel__dot--active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--glow-subtle);
}


/* ══════════════════════════════════════════════════════════
   TRUST STRIP (4 items: horizontal row)
   ══════════════════════════════════════════════════════════ */

.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
}
.trust-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid var(--border-light);
  transition: background var(--transition-fast);
  position: relative;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--bg-secondary); }
.trust-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,152,219,0.22);
  stroke: #fff;
  fill: none;
}
.trust-item__icon path,
.trust-item__icon circle,
.trust-item__icon rect { stroke: #fff; fill: none; }
.trust-item__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.trust-item__sub {
  display: block;
  font-size: 12px;
  color: var(--text2);
  line-height: 1.4;
  margin-top: 2px;
}


/* ══════════════════════════════════════════════════════════
   HOME SECTIONS — General Structure
   ══════════════════════════════════════════════════════════ */

.home-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}
.home-section:last-of-type { border-bottom: none; }

/* Section header row (heading + "View all" link) */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}

/* Section heading — standalone or inside .section-header */
.section-heading,
.section-header h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.2;
}

/* "View all" link */
.section-link {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.section-link:hover { color: var(--primary-dark); gap: 8px; }


/* ══════════════════════════════════════════════════════════
   BRAND PILLS (filter tabs above product grids)
   ══════════════════════════════════════════════════════════ */

.brand-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 24px;
}
.brand-pill {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: all var(--transition);
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.brand-pill:hover {
  background: var(--bg);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0,152,219,0.10);
}
.brand-pill.active,
.brand-pill--active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(0,152,219,0.30);
  transform: translateY(-1px);
}


/* ══════════════════════════════════════════════════════════
   PRODUCT GRID & CARDS
   ══════════════════════════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.product-grid--4col { grid-template-columns: repeat(4, 1fr); }
.product-grid--3col { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--primary-border);
}
.product-card__img {
  aspect-ratio: 1 / 1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.product-card__img img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  transition: transform var(--transition);
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__brand {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__specs {
  font-size: 11px;
  color: var(--text2);
  margin-bottom: 10px;
  line-height: 1.5;
}
.product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: auto;
}
.product-card__price.on-request {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}

/* Placeholder grid (empty state) */
.placeholder-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 1.5px dashed var(--border);
  min-height: 120px;
  color: var(--text3);
  font-size: 14px;
  margin-bottom: 16px;
}


/* ══════════════════════════════════════════════════════════
   CATEGORY VISUALS GRID (subcategory tiles)
   ══════════════════════════════════════════════════════════ */

.cat-visuals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.cat-visual {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 120px;
  position: relative;
}
.cat-visual:hover {
  box-shadow: 0 8px 28px rgba(0,152,219,0.12);
  border-color: var(--primary-border);
  transform: translateY(-3px);
}

.cat-visual__img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.cat-visual:hover .cat-visual__img { transform: scale(1.04); }

.cat-visual__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  padding: 10px 10px 12px;
  line-height: 1.35;
  display: block;
}

/* "All" tile — blue gradient fill */
.cat-visual--all {
  background: var(--grad-primary);
  border-color: transparent;
  justify-content: center;
}
.cat-visual--all:hover {
  box-shadow: 0 8px 28px rgba(0,152,219,0.28);
  border-color: transparent;
}
.cat-visual__all-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  padding: 12px;
}


/* ══════════════════════════════════════════════════════════
   ANALOG PROMO (dark banner section)
   ══════════════════════════════════════════════════════════ */

.analog-promo {
  background:
    radial-gradient(ellipse at 10% 60%, rgba(0,152,219,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 30%, rgba(0,188,212,0.08) 0%, transparent 50%),
    #1A2332;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.analog-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.analog-promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}
.analog-promo__text {
  flex: 1;
  max-width: 560px;
}
.analog-promo__heading {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.analog-promo__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}
.analog-promo__visual {
  flex-shrink: 0;
  width: 380px;
  max-width: 38%;
}
.analog-promo__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(0,0,0,0.28);
  filter: drop-shadow(0 8px 24px rgba(0,152,219,0.20));
}
.analog-promo .btn--primary {
  box-shadow: 0 4px 24px rgba(0,152,219,0.40);
}


/* ══════════════════════════════════════════════════════════
   FEATURED BRAND (split layout: logo + text)
   ══════════════════════════════════════════════════════════ */

.featured-brand {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(0,152,219,0.05) 0%, transparent 60%),
    var(--bg-secondary);
  padding: 52px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.featured-brand--alt {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,188,212,0.06) 0%, transparent 60%),
    var(--bg-secondary);
}
.featured-brand__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.featured-brand__logo-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow);
}
.featured-brand__logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.featured-brand__text { flex: 1; max-width: 640px; }
.featured-brand__eyebrow {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  background: var(--primary-xlight);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary-border);
}
.featured-brand__heading {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.featured-brand__desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.72;
  margin-bottom: 24px;
  max-width: 560px;
}


/* ══════════════════════════════════════════════════════════
   POPULAR BRANDS LOGO GRID
   ══════════════════════════════════════════════════════════ */

.popular-brands {
  background: var(--bg-secondary);
}
.popular-brands > .container > .section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 4px 0 24px;
}
.brand-logo-item {
  background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 72px;
}
.brand-logo-item:hover {
  border-color: var(--primary-border);
  box-shadow: 0 4px 20px rgba(0,152,219,0.10);
  transform: translateY(-3px);
}
.brand-logo-item img {
  height: 36px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.brand-logo-item__fallback {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  text-align: center;
  line-height: 1.3;
}


/* ══════════════════════════════════════════════════════════
   NEWS & ARTICLES (tabs + panels)
   ══════════════════════════════════════════════════════════ */

.news-section { background: var(--bg); }
.news-section > .container > .section-heading { margin-bottom: 20px; }

.news-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-light);
}
.news-tab {
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.news-tab--active,
.news-tab.active {
  color: var(--text);
  border-bottom: 2px solid var(--primary);
  background: var(--primary-xlight);
}
.news-tab:hover:not(.news-tab--active):not(.active) {
  color: var(--text2);
  background: var(--bg-secondary);
}

.news-panel { display: none; }
.news-panel--active { display: block; animation: fadeInTab 0.28s cubic-bezier(0.4, 0, 0.2, 1); }
.news-panel[hidden] { display: none !important; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--primary-border);
}
.news-card__img {
  height: 152px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.news-card:nth-child(4n+1) .news-card__img { background: linear-gradient(135deg, #0078b0, #005580); }
.news-card:nth-child(4n+2) .news-card__img { background: linear-gradient(135deg, #0097A7, #006870); }
.news-card:nth-child(4n+3) .news-card__img { background: linear-gradient(135deg, #1565C0, #0d47a1); }
.news-card:nth-child(4n+4) .news-card__img { background: linear-gradient(135deg, #00838F, #005662); }
.news-card__body { padding: 16px; flex: 1; }
.news-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.news-card__date { font-size: 12px; color: var(--text3); }
.news-card__cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}
.news-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.news-card__title a { color: inherit; text-decoration: none; }
.news-card__title a:hover { color: var(--primary); }

.news-empty {
  padding: 40px 0;
  font-size: 15px;
  color: var(--text3);
  text-align: center;
}
.news-empty a { color: var(--primary); }


/* ══════════════════════════════════════════════════════════
   ABOUT SEO (text section)
   ══════════════════════════════════════════════════════════ */

.about-seo { background: var(--bg); }
.about-seo .section-heading { margin-bottom: 18px; }
.about-seo p,
.about-seo .seo-intro p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.78;
  margin-bottom: 14px;
  max-width: 860px;
}
.about-seo p:last-child { margin-bottom: 0; }

/* ── About Premium: 2-column layout ─────────────────────── */
.about-seo--premium {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

/* Text column */
.about-layout__text .section-heading { margin-bottom: 20px; }

.about-layout__text p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.80;
  margin-bottom: 16px;
}

.about-subheading {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
  letter-spacing: -0.01em;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.about-list li {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.about-list strong { color: var(--text); font-weight: 600; }

.about-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  transition: all var(--transition-fast);
}
.about-badge svg { stroke: var(--primary); flex-shrink: 0; }
.about-badge:hover {
  border-color: var(--primary-border);
  background: var(--primary-xlight);
  color: var(--primary-dark);
}

/* Stats card (right column) */
.about-layout__stats { position: sticky; top: 80px; }

.about-stats-card {
  background: var(--bg-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card), var(--glow-subtle);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-stats-accent {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,152,219,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 0;
}

.about-stat__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stat__plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.about-stat__label {
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
}

.about-stats-divider {
  height: 1px;
  background: var(--border-light);
}

.about-stats-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* News card excerpt */
.news-card__excerpt {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.60;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive: stack on tablet */
@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-layout__stats { position: static; }
  .about-stats-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: center;
  }
  .about-stat { padding: 16px 20px; }
  .about-stats-divider { display: none; }
  .about-stats-cta { grid-column: 1 / -1; margin-top: 16px; }
}

@media (max-width: 640px) {
  .about-stats-card {
    grid-template-columns: 1fr 1fr;
  }
  .about-stat__num { font-size: 28px; }
}


/* ══════════════════════════════════════════════════════════
   WHY INDASTRA (4 cards with 01–04 numbers)
   ══════════════════════════════════════════════════════════ */

.why-section { background: var(--bg-secondary); }
.why-section .section-heading { margin-bottom: 28px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1.5px solid var(--border-light);
  border-left: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(0,152,219,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-card:hover {
  border-color: var(--primary-border);
  border-left-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0,152,219,0.10);
  transform: translateY(-3px);
}
.why-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 3px 12px rgba(0,152,219,0.28);
}
.why-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card__text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.68;
}


/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item.open {
  border-color: var(--primary-border);
  box-shadow: 0 4px 16px rgba(0,152,219,0.07);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition-fast);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-chevron svg {
  width: 12px;
  height: 12px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { background: var(--primary); }
.faq-item.open .faq-chevron svg { stroke: #fff; transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.72;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}


/* ══════════════════════════════════════════════════════════
   LEAD FORM SECTION
   ══════════════════════════════════════════════════════════ */

/* Outer gradient wrapper */
.contact-form-bg {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0,152,219,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(0,188,212,0.06) 0%, transparent 50%),
    var(--bg-secondary);
  padding: 0;
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.contact-form-bg::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,152,219,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Section inner */
.lead-form-section {
  padding: 56px 0;
  position: relative;
}

/* Heading block */
.lead-form__heading {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.lead-form__sub {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Status message (success/error) */
.lead-form__status {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--primary);
}
.lead-form__status:empty { display: none; }

/* Form grid */
.lead-form {
  position: relative;
}
.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Individual field */
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-form__field--full {
  grid-column: 1 / -1;
}

/* Label */
.lead-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
}
.lead-form__required { color: var(--primary); margin-left: 2px; }

/* Inputs */
.lead-form__input,
.lead-form__textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.lead-form__input:focus,
.lead-form__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,152,219,0.10);
  background: var(--bg);
}
.lead-form__input::placeholder,
.lead-form__textarea::placeholder { color: var(--text3); }
.lead-form__textarea { min-height: 110px; resize: vertical; }

/* Inline error */
.lead-form__error {
  font-size: 12px;
  color: var(--error);
  display: none;
}
.lead-form__field.has-error .lead-form__error { display: block; }
.lead-form__field.has-error .lead-form__input,
.lead-form__field.has-error .lead-form__textarea {
  border-color: var(--error);
}

/* Consent checkboxes fieldset */
.lead-form__consent {
  border: none;
  padding: 0;
  margin-top: 4px;
}

/* Checkbox row */
.lead-form__check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.lead-form__check-wrap:last-child { margin-bottom: 0; }

.lead-form__check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}
.lead-form__check:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.lead-form__check:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.lead-form__check:focus { box-shadow: 0 0 0 3px rgba(0,152,219,0.15); outline: none; }

.lead-form__check-label {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  cursor: pointer;
}
.lead-form__check-label a { color: var(--primary); text-decoration: underline; }

/* Submit button row */
.lead-form__submit-wrap {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.lead-form__submit-wrap .btn {
  width: 100%;
  padding: 15px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lead-form__privacy-note {
  font-size: 12px;
  color: var(--text3);
  text-align: center;
  line-height: 1.5;
}
.lead-form__privacy-note a { color: var(--primary); }


/* ══════════════════════════════════════════════════════════
   SEO FOOTER LINKS (Airbnb-style catalog nav)
   ══════════════════════════════════════════════════════════ */

.seo-footer-links {
  padding: 48px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.seo-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.seo-footer-col { display: flex; flex-direction: column; }
.seo-footer-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.seo-footer-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.seo-footer-list a,
.seo-footer-list li a {
  display: block;
  font-size: 13px;
  color: var(--text2);
  padding: 4px 0;
  transition: color var(--transition-fast);
  text-decoration: none;
  line-height: 1.5;
}
.seo-footer-list a:hover,
.seo-footer-list li a:hover { color: var(--primary); }


/* ══════════════════════════════════════════════════════════
   FOOTER — Dark Navy
   ══════════════════════════════════════════════════════════ */

.footer {
  background: #F4F6F9;
  color: var(--text2);
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
}
.footer .container { }

/* Main footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
}

/* Brand/about column */
.footer-brand { }
.footer-brand p {
  font-size: 14px;
  line-height: 1.70;
  margin-top: 14px;
  color: var(--text3);
  max-width: 280px;
}

/* Column heading */
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col__heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

/* Column link list */
.footer-col__list { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.footer-col__list a,
.footer-col__list li a {
  display: block;
  font-size: 13px;
  color: var(--text2);
  padding: 5px 0;
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-col__list a:hover,
.footer-col__list li a:hover { color: var(--primary); }

/* Social icons */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,152,219,0.06);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.footer-social__link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--glow-subtle);
}
.footer-social__link svg { width: 16px; height: 16px; }

/* Legal / copyright row */
.footer-legal {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand-legal { }
.footer-address {
  font-size: 12px;
  color: var(--text3);
  margin-top: 8px;
  line-height: 1.65;
  font-style: normal;
}
.footer-copyright {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  max-width: 520px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}


/* ══════════════════════════════════════════════════════════
   COOKIE BANNER — Glass Morphism
   ══════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0,152,219,0.12);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow-deep);
  max-width: 680px;
  width: calc(100% - 48px);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.hidden,
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}
.cookie-banner__text a { color: var(--primary); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}


/* ══════════════════════════════════════════════════════════
   FLOATING CONTACT BUTTONS (WhatsApp + Email)
   ══════════════════════════════════════════════════════════ */

.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  text-decoration: none;
  border: none;
}
.floating-btn:hover { transform: scale(1.10); }
.floating-btn--whatsapp {
  background: #25D366;
}
.floating-btn--whatsapp:hover {
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}
.floating-btn--email {
  background: var(--primary);
}
.floating-btn--email:hover {
  box-shadow: 0 6px 28px rgba(0,152,219,0.45);
}
.floating-btn svg { width: 24px; height: 24px; fill: #fff; }


/* ══════════════════════════════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════════════════════════════ */

.breadcrumbs {
  font-size: 13px;
  color: var(--text3);
  padding: 12px 0 8px;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs a,
.breadcrumbs__link { color: var(--text3); transition: color var(--transition-fast); text-decoration: none; }
.breadcrumbs a:hover,
.breadcrumbs__link:hover { color: var(--primary); }
.breadcrumbs__sep { color: var(--border); font-size: 11px; }
.breadcrumbs span { color: var(--text2); }
.breadcrumbs__current { color: var(--text); font-weight: 500; }


/* ══════════════════════════════════════════════════════════
   CATALOG PAGE
   ══════════════════════════════════════════════════════════ */

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.filter-sidebar {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 150px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}
.filter-sidebar__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.filter-group:first-child { padding-top: 0; }
.filter-group:last-child { border-bottom: none; }
.filter-group__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 12px;
}
.filter-group__title svg { width: 14px; height: 14px; stroke: var(--text3); transition: transform var(--transition-fast); }
.filter-group.collapsed .filter-group__title svg { transform: rotate(-90deg); }
.filter-group__list {
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: thin;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text2);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.filter-checkbox:hover { color: var(--text); }
.filter-checkbox input { accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }
.filter-count { font-size: 11px; color: var(--text3); margin-left: auto; }
.filter-range { display: flex; align-items: center; gap: 8px; }
.filter-range input {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast);
}
.filter-range input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,152,219,0.08);
}

/* Sort bar */
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}
.sort-bar__count { font-size: 13px; color: var(--text2); }
.sort-bar__right { display: flex; align-items: center; gap: 12px; }
.sort-bar select {
  padding: 6px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 13px;
  outline: none;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}
.sort-bar select:focus { border-color: var(--primary); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 28px;
  padding: 16px 0;
}
.page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active {
  background: var(--grad-primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0,152,219,0.22);
}

/* Active filters */
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.active-filter {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-xlight);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
}
.active-filter button { color: var(--primary); font-size: 14px; line-height: 1; background: none; border: none; cursor: pointer; }


/* ══════════════════════════════════════════════════════════
   BRAND PAGE
   ══════════════════════════════════════════════════════════ */

.brand-header { display: flex; align-items: center; gap: 28px; padding: 36px 0; }
.brand-logo-large {
  width: 84px;
  height: 84px;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}
.brand-logo-large img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-stats { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.brand-stat {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: border-color var(--transition-fast);
}
.brand-stat:hover { border-color: var(--primary); }
.brand-stat__num { font-size: 24px; font-weight: 800; color: var(--primary); }
.brand-stat__label { font-size: 12px; color: var(--text2); margin-top: 3px; }

/* Brand grid (brands listing page) */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-border);
}
.brand-card__logo-wrap {
  width: 100px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.brand-card__logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-card__info { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.brand-card__name { font-size: 14px; font-weight: 600; color: var(--text); }
.brand-card__country { font-size: 12px; color: var(--text2); display: inline-flex; align-items: center; gap: 4px; }
.brand-card__count { font-size: 11px; color: var(--text3); }


/* ══════════════════════════════════════════════════════════
   PROMO BANNERS
   ══════════════════════════════════════════════════════════ */

.promo-banner {
  border-radius: var(--radius);
  padding: 52px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  z-index: 0;
}
.promo-banner > * { position: relative; z-index: 1; }
.promo-banner h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  max-width: 580px;
  letter-spacing: -0.03em;
}
.promo-banner p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 500px;
  line-height: 1.65;
}
.promo-glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  max-width: 400px;
}


/* ══════════════════════════════════════════════════════════
   PRODUCT TABS (product page)
   ══════════════════════════════════════════════════════════ */

.product-tabs { margin-top: 32px; }
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-light);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text3);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn.active { color: var(--text); border-bottom-color: var(--primary); }
.tab-btn:hover:not(.active) { color: var(--text2); }
.tab-panel { display: none; padding: 26px 0; }
.tab-panel.active { display: block; }


/* ══════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ══════════════════════════════════════════════════════════ */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-hover);
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  max-width: 320px;
}
.toast-success { background: var(--success-bg); color: #007831; border: 1px solid rgba(0,200,83,0.15); }
.toast-error   { background: var(--error-bg);   color: #c40028; border: 1px solid rgba(255,61,87,0.15); }
.toast-info    { background: var(--primary-xlight); color: var(--primary-dark); border: 1px solid var(--primary-border); }


/* ══════════════════════════════════════════════════════════
   STATUS BADGES
   ══════════════════════════════════════════════════════════ */

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
}
.badge-tag--success { background: var(--success-bg); color: #007831; }
.badge-tag--warning { background: var(--warning-bg); color: #8a5f00; }
.badge-tag--error   { background: var(--error-bg);   color: #c40028; }
.badge-tag--primary { background: var(--primary-xlight); color: var(--primary-dark); }
.badge-tag--neutral { background: var(--bg-tertiary); color: var(--text2); }


/* ══════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   ══════════════════════════════════════════════════════════ */

.mobile-nav { position: fixed; inset: 0; z-index: 200; display: none; }
.mobile-nav.open { display: flex; }
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,50,0.45);
  backdrop-filter: blur(4px);
}
.mobile-nav__panel {
  background: var(--bg);
  width: 300px;
  height: 100%;
  padding: 28px 24px;
  z-index: 1;
  overflow-y: auto;
  position: relative;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 8px 0 40px rgba(0,0,0,0.14);
}
.mobile-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.mobile-nav__item:hover { color: var(--primary); }
.mobile-nav__item svg { width: 18px; height: 18px; stroke: var(--text3); fill: none; stroke-width: 2; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--bg-secondary); }
.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition-fast); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ══════════════════════════════════════════════════════════
   SEARCH PAGE
   ══════════════════════════════════════════════════════════ */

.search-hero {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 28px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}
.search-hero h1 { font-size: 24px; font-weight: 700; margin-bottom: 18px; letter-spacing: -0.025em; }
.search-hero form { display: flex; max-width: 600px; margin: 0 auto; height: 50px; }
.search-results-count { font-size: 14px; color: var(--text3); margin-bottom: 14px; }
.empty-state { text-align: center; padding: 56px; color: var(--text3); }
.empty-state h3 { font-size: 20px; color: var(--text); margin-bottom: 8px; }


/* ══════════════════════════════════════════════════════════
   DOCUMENTS LIST
   ══════════════════════════════════════════════════════════ */

.doc-list { display: flex; flex-direction: column; }
.doc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.doc-item:last-child { border-bottom: none; }
.doc-item__info { display: flex; align-items: center; gap: 14px; }
.doc-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-item__icon svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2; }
.doc-item__name { font-size: 14px; font-weight: 600; color: var(--text); }
.doc-item__size { font-size: 12px; color: var(--text3); }


/* ══════════════════════════════════════════════════════════
   COUNTRY FLAG
   ══════════════════════════════════════════════════════════ */

.country-flag {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  width: 20px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.10);
  object-fit: cover;
}


/* ══════════════════════════════════════════════════════════
   ANALOG MATCHING SECTION
   ══════════════════════════════════════════════════════════ */

.analog-section {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 32px;
  margin: 10px 0;
  border: 1px solid var(--border-light);
}
.analog-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }

.analog-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 700px;
}
.analog-table-wrap { overflow-x: auto; }
.analog-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}
.analog-table th {
  background: var(--bg);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text2);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.analog-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  vertical-align: middle;
}
.analog-table tr:last-child td { border-bottom: none; }
.analog-table tr:hover td { background: var(--primary-xlight); }
.analog-table .match-high {
  color: var(--success);
  font-weight: 600;
  background: var(--success-bg);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
}
.analog-table .match-med {
  color: var(--warning);
  font-weight: 600;
  background: var(--warning-bg);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
}


/* ══════════════════════════════════════════════════════════
   BANNER CAROUSEL (interior page banners)
   ══════════════════════════════════════════════════════════ */

.banner-section { padding: 16px 0 6px; }
.banner-strip { position: relative; overflow: hidden; border-radius: var(--radius); }
.banner-track {
  display: flex;
  gap: 14px;
  transition: transform var(--transition-slow);
  will-change: transform;
}
.banner-card {
  min-width: calc(33.333% - 10px);
  height: 188px;
  border-radius: var(--radius);
  padding: 26px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.48) 0%, transparent 60%);
  z-index: 1;
}
.banner-card > * { position: relative; z-index: 2; }
.banner-card:hover { transform: scale(1.018); box-shadow: 0 12px 40px rgba(0,0,0,0.16); }
.banner-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.22);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.banner-card p {
  font-size: 12px;
  opacity: 0.88;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.banner-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.banner-dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: 99px;
  box-shadow: var(--glow-subtle);
}
.banner-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  pointer-events: none;
  z-index: 10;
}
.banner-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all var(--transition);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.banner-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,152,219,0.18);
  transform: scale(1.08);
}
.banner-arrow svg { width: 16px; height: 16px; stroke: var(--text); fill: none; stroke-width: 2.5; }


/* ══════════════════════════════════════════════════════════
   PRODUCT SCROLL (horizontal scroll row)
   ══════════════════════════════════════════════════════════ */

.product-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.product-scroll::-webkit-scrollbar { display: none; }
.product-scroll .product-card { min-width: 212px; scroll-snap-align: start; }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

/* ─── 1200px ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .brands-logo-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ─── 1024px Tablet Landscape ────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  /* Header */
  .catalog-btn { padding: 8px 16px; font-size: 13px; }
  .trust-bar__meta { display: none; }

  /* Hero */
  .hero-slide__inner { padding: 40px 20px; gap: 28px; }
  .hero-slide__visual { width: 340px; }
  .hero-slide__heading { font-size: 34px; }

  /* Sections */
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid--4col { grid-template-columns: repeat(3, 1fr); }
  .cat-visuals-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .seo-footer-grid { grid-template-columns: repeat(2, 1fr); }

  /* Analog promo */
  .analog-promo__inner { gap: 32px; }
  .analog-promo__visual { width: 300px; max-width: 36%; }

  /* Featured brand */
  .featured-brand__inner { gap: 40px; }

  /* Catalog dropdown */
  .catalog-dropdown__inner { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .footer-copyright { align-items: flex-start; text-align: left; }

  /* Banner */
  .banner-card { min-width: calc(50% - 7px); }
}

/* ─── 768px Tablet Portrait ─────────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .trust-bar { display: none; }
  .topbar { display: none; }
  .mobile-menu-btn { display: flex; }
  .mainbar { height: 60px; }
  .catalog-btn { display: none; }

  /* Navbar */
  .navbar {
    display: none;
    flex-direction: column;
    height: auto;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }
  .navbar.navbar--open { display: flex; }
  .navbar__inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 8px 0;
    overflow: visible;
  }
  .navbar__link {
    height: 44px;
    padding: 0 20px;
    border-radius: var(--radius-xs);
    margin: 2px 8px;
  }
  .navbar__link::after { display: none; }

  /* Hero */
  .hero-slide { min-height: 360px; }
  .hero-slide__inner { flex-direction: column; padding: 28px 16px 20px; align-items: flex-start; gap: 20px; }
  .hero-slide__visual {
    width: 100%;
    max-width: 100%;
    order: -1;
    max-height: 200px;
    overflow: hidden;
    border-radius: var(--radius);
  }
  .hero-slide__visual img { width: 100%; height: 200px; object-fit: cover; }
  .hero-slide__content { max-width: 100%; }
  .hero-slide__heading { font-size: 26px; }
  .hero-slide__sub { font-size: 14px; margin-bottom: 20px; }

  /* Trust strip — stack vertically */
  .trust-strip__inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .trust-item:last-child { border-bottom: none; }

  /* Grid adjustments */
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .cat-visuals-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .brands-logo-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-footer-grid { grid-template-columns: 1fr 1fr; }

  /* Analog promo */
  .analog-promo { padding: 40px 0; }
  .analog-promo__inner { flex-direction: column; gap: 24px; }
  .analog-promo__visual { display: none; }
  .analog-promo__text { max-width: 100%; }

  /* Featured brand */
  .featured-brand__inner { flex-direction: column !important; gap: 20px; }
  .featured-brand__logo-wrap { width: 160px; height: 80px; }
  .featured-brand__text { max-width: 100%; }

  /* Home sections */
  .home-section { padding: 32px 0; }

  /* Lead form */
  .lead-form__grid { grid-template-columns: 1fr; }
  .lead-form__field--full,
  .lead-form__submit-wrap { grid-column: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; gap: 20px; }
  .footer-copyright { align-items: flex-start; text-align: left; }

  /* Catalog dropdown */
  .catalog-dropdown__inner { grid-template-columns: 1fr; }
  .catalog-dropdown__col { border-right: none; border-bottom: 1px solid var(--border-light); padding: 12px 0; }
  .catalog-dropdown__col:last-child { border-bottom: none; }

  /* Floating */
  .floating-contact { bottom: 20px; right: 14px; }
  .floating-btn { width: 46px; height: 46px; }

  /* Cookie */
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
}

/* ─── 480px Mobile ───────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Mainbar */
  .mainbar { height: auto; padding: 10px 0; }
  .mainbar__inner { flex-wrap: wrap; gap: 10px; }
  .search-wrap { order: 3; flex-basis: 100%; }
  .header-action-btn { width: 36px; height: 36px; }

  /* Hero */
  .hero-slide { min-height: auto; }
  .hero-slide__heading { font-size: 22px; }
  .hero-slide__sub { font-size: 13px; margin-bottom: 16px; }
  .hero-slide__actions .btn--lg { padding: 11px 20px; font-size: 14px; }

  /* Grids */
  .cat-visuals-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .brands-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .seo-footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr !important; }

  /* Sections */
  .home-section { padding: 24px 0; }
  .section-heading,
  .section-header h2 { font-size: 19px; }

  /* Featured brand */
  .featured-brand { padding: 32px 0; }
  .featured-brand__logo-wrap { width: 120px; height: 60px; }

  /* Analog promo */
  .analog-promo { padding: 36px 0; }
  .analog-promo__heading { font-size: 26px; }
  .analog-promo__sub { font-size: 14px; }

  /* Lead form */
  .lead-form-section { padding: 36px 0; }
  .lead-form__heading { font-size: 22px; }

  /* Brand logo items */
  .brand-logo-item { padding: 14px 10px; min-height: 60px; }
  .brand-logo-item img { height: 28px; }

  /* SEO footer */
  .seo-footer-links { padding: 32px 0; }

  /* Footer */
  .footer { padding-top: 40px; }
  .footer-col__heading { margin-bottom: 12px; }

  /* Cookie */
  .cookie-banner { bottom: 16px; width: calc(100% - 28px); padding: 16px 18px; }

  /* Floating */
  .floating-contact { bottom: 20px; right: 12px; }
  .floating-btn { width: 44px; height: 44px; }

  /* Lang selector */
  .lang-selector__dropdown { right: -10px; }
}

/* ─── 360px Very Small ───────────────────────────────────── */
@media (max-width: 360px) {
  .hero-slide__actions { flex-direction: column; align-items: flex-start; }
  .hero-slide__actions .btn { width: 100%; justify-content: center; }
  .brands-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============================================================
   CATEGORY FILTER SIDEBAR
   ============================================================ */

/* 2-column grid: sidebar + products */
.category-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}

/* Sticky sidebar */
.category-sidebar {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 16px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.category-sidebar::-webkit-scrollbar { width: 4px; }
.category-sidebar::-webkit-scrollbar-track { background: transparent; }
.category-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Active filters bar */
.filter-active-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-xlight);
  border: 1px solid var(--primary-border);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
  gap: 8px;
}
.filter-active-bar__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}
.filter-active-bar__clear {
  font-size: 12px;
  color: var(--primary);
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-active-bar__clear:hover { color: var(--primary-dark); }

/* Filter group */
.filter-group {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.filter-group:last-of-type { border-bottom: none; }

/* Group heading / toggle button */
.filter-group__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.filter-group__heading:hover { color: var(--primary); }

.filter-group__arrow {
  flex-shrink: 0;
  color: var(--text3);
  transition: transform 0.2s ease;
}
.filter-group__toggle[aria-expanded="false"] .filter-group__arrow {
  transform: rotate(-90deg);
}

/* Options list */
.filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 210px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.filter-group__options::-webkit-scrollbar { width: 3px; }
.filter-group__options::-webkit-scrollbar-thumb { background: var(--border); }

/* Collapsed state (toggled by JS) */
.filter-group__options--collapsed {
  max-height: 0 !important;
  overflow: hidden;
  opacity: 0;
}

/* Pill row variant (for poles, efficiency) */
.filter-group__options--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  max-height: none;
  overflow: visible;
}

/* Individual filter option */
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 4px;
  font-size: 13px;
  color: var(--text2);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.3;
}
.filter-option:hover {
  background: var(--bg-secondary);
  color: var(--text);
}

/* Pill variant */
.filter-option--pill {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  gap: 0;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.filter-option--pill input { display: none; }
.filter-option--pill .filter-option__label { color: var(--text2); }
.filter-option--pill:has(input:checked) {
  background: var(--primary-xlight);
  border-color: var(--primary);
  color: var(--primary);
}
.filter-option--pill:has(input:checked) .filter-option__label { color: var(--primary); }
.filter-option--pill:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
}

/* Checkbox */
.filter-option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  accent-color: var(--primary);
  cursor: pointer;
  border-radius: 3px;
}

.filter-option__label {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.filter-option__count {
  color: var(--text3);
  font-size: 11px;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Checked state highlight */
.filter-option:has(input:checked) {
  color: var(--primary);
  background: var(--primary-xlight);
}
.filter-option:has(input:checked) .filter-option__label { color: var(--primary); }
.filter-option:has(input:checked) .filter-option__count { color: var(--primary); opacity: 0.7; }

/* Apply and clear buttons */
.filter-form__apply {
  width: 100%;
  margin-top: 16px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
}
.filter-form__clear {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text3);
  text-decoration: underline;
  cursor: pointer;
}
.filter-form__clear:hover { color: var(--text2); }

/* Category main area */
.category-main { min-width: 0; }

/* Empty state */
.category-empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--text2);
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px dashed var(--border);
}
.category-empty a { color: var(--primary); text-decoration: underline; }

/* Mobile filter toggle button (injected by JS) */
.filter-mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
}

/* ─── Responsive: filter sidebar ───────────────────────── */
@media (max-width: 900px) {
  .category-page-layout {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .category-page-layout {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    display: none; /* hidden until toggled */
    border-radius: 10px;
  }

  .category-sidebar--open {
    display: block;
  }

  .filter-mobile-toggle {
    display: inline-flex;
  }
}
