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

:root {
  --green: #00A85A;
  --green-light: #e6f7ee;
  --green-dark: #007d43;
  --navy: #152169;
  --navy-light: #eef0f9;
  --text: #1a1a2e;
  --text-2: #52526e;
  --text-3: #8888a8;
  --border: #e8e8f0;
  --bg: #fafafa;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 16px; scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-2);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 16px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-2);
  font-weight: 500;
  transition: color var(--transition);
}

.topbar a:hover { color: var(--green); }
.topbar .sep { color: var(--border); }

/* Language switcher with flag icons */
.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-link .flag {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  flex-shrink: 0;
  display: block;
}
.lang-link.lang-active {
  color: var(--text);
  font-weight: 700;
}
.lang-link:not(.lang-active) { opacity: 0.6; }
.lang-link:not(.lang-active):hover { opacity: 1; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-logo {
  margin-bottom: 16px;
}

/* NAV */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav > ul > li > a svg {
  transition: transform var(--transition);
  opacity: 0.5;
}

.main-nav > ul > li:hover > a {
  color: var(--green);
  background: var(--green-light);
}

.main-nav > ul > li:hover > a svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* MEGA MENU */
/* Invisible bridge — fills gap between nav-item bottom and menu top */
.has-mega::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -40px;
  right: -40px;
  height: 10px;
  background: transparent;
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 2px);  /* near-flush — bridge covers the tiny gap */
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 640px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 20px 0;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 20px;
}

.mega-col {
  padding: 8px 12px;
  border-right: 1px solid var(--border);
}

.mega-col:last-child { border-right: none; }

.mega-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 10px;
}

.mega-title-link {
  color: var(--navy);
  transition: color var(--transition);
}

.mega-title-link:hover {
  color: var(--green);
}

.mega-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--text-2);
  padding: 4px 0;
  font-weight: 450;
  transition: color var(--transition);
}

.mega-col a:hover { color: var(--green); }

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-search:hover { background: var(--green-light); color: var(--green); }

.btn-menu-mobile {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.btn-menu-mobile span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* SEARCH BAR */
.search-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
  display: none;
}

.search-bar.open { display: block; }

.search-form {
  display: flex;
  gap: 8px;
}

.search-form input {
  flex: 1;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.search-form input:focus { border-color: var(--green); }

.search-form button {
  height: 42px;
  padding: 0 20px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.search-form button:hover { background: var(--green-dark); }

/* ===== HERO — FULLSCREEN CINEMATIC ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: #0a0e1a;
}

.hero-slider {
  position: relative;
  height: calc(100vh - 36px - 64px);
  min-height: 480px;
  max-height: 640px;
}

/* Slide base */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* BG image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-slide.active .hero-bg { transform: scale(1); }

/* Branded gradient backgrounds (replace text-baked banner images) */
.hero-bg-grad { transform: none; }
.hero-slide.active .hero-bg-grad { transform: none; }

.grad-navy {
  background:
    radial-gradient(circle at 78% 30%, rgba(0,168,90,0.18) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(46,72,200,0.22) 0%, transparent 50%),
    linear-gradient(125deg, #0b1437 0%, #111a45 55%, #0a0e1a 100%);
}
.grad-green {
  background:
    radial-gradient(circle at 80% 35%, rgba(0,168,90,0.28) 0%, transparent 48%),
    radial-gradient(circle at 20% 75%, rgba(0,120,70,0.20) 0%, transparent 52%),
    linear-gradient(125deg, #06231a 0%, #0a3a2a 55%, #07140f 100%);
}
.grad-dark {
  background:
    radial-gradient(circle at 75% 28%, rgba(0,168,90,0.16) 0%, transparent 44%),
    radial-gradient(circle at 22% 82%, rgba(255,255,255,0.05) 0%, transparent 50%),
    linear-gradient(125deg, #14141f 0%, #1d1d2b 55%, #0c0c14 100%);
}

/* BG video layer */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* Gradient overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,14,26,0.90) 0%,
    rgba(10,14,26,0.62) 55%,
    rgba(10,14,26,0.18) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(10,14,26,0.7), transparent);
}

/* Content */
.hero-slide .container {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 0 0 40px;
}

/* Vertical accent line */
.hero-text {
  position: relative;
  padding-left: 24px;
}
.hero-text::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green), rgba(0,168,90,0));
  border-radius: 2px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(0,168,90,0.18);
  color: #4eff9f;
  border: 1px solid rgba(0,168,90,0.35);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--green);
  display: block;
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slide product image panel (right side) */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-product-frame {
  width: 300px;
  height: 300px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}
.hero-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 26px;
  background: var(--green);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600;
  transition: all var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,168,90,0.4);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500;
  transition: all var(--transition);
  background: transparent;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Hero Controls — bottom, contained */
.hero-controls {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  padding: 0 max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-prev, .hero-next {
  width: 42px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.hero-prev:hover, .hero-next:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* Progress dots — active fills over the slide duration */
.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  height: 3px;
  width: 28px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: width 0.4s ease, background 0.4s ease;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.dot:hover { background: rgba(255,255,255,0.45); }
.dot.active {
  width: 56px;
  background: rgba(255,255,255,0.25);
}
.dot.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  animation: dot-fill var(--dot-duration, 6500ms) linear forwards;
}
@keyframes dot-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.stat-item strong {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 48px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 10px;
}

.section-label.light { color: rgba(255,255,255,0.6); }

h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

.link-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
  padding-bottom: 2px;
}

.link-all:hover { gap: 10px; }

/* ===== CATEGORIES ===== */
.categories-section { background: var(--white); }

/* ===== CATEGORIES — PRO (2x2 rich cards) ===== */
.categories-grid-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cat-pro {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 30px 30px 24px;
  overflow: hidden;
  transition: border-color 0.28s, transform 0.28s, box-shadow 0.28s;
}

.cat-pro:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(21,33,105,0.1), 0 4px 12px rgba(0,0,0,0.04);
}

.cat-pro-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background 0.28s, transform 0.28s;
}

.cat-pro:hover .cat-pro-icon {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  transform: scale(1.06);
}

.cat-pro-body { flex: 1; }

.cat-pro-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.cat-pro-body p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 92%;
}

.cat-pro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cat-pro-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
  transition: all 0.25s;
}

.cat-pro:hover .cat-pro-tag {
  border-color: color-mix(in srgb, var(--accent) 28%, transparent);
  color: var(--text);
}

.cat-pro-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.cat-pro-explore {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.25s;
}

.cat-pro:hover .cat-pro-explore { color: var(--accent); }

.cat-pro-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.cat-pro:hover .cat-pro-arrow {
  background: var(--accent);
  color: #fff;
  transform: translateX(3px);
}

.cat-pro-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cat-pro:hover .cat-pro-accent { width: 100%; }

@media (max-width: 720px) {
  .categories-grid-pro { grid-template-columns: 1fr; }
}

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

.cat-card {
  display: block;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.cat-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.cat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 14px;
}

.cat-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.5;
}

.cat-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 100px;
}

.cat-card-lg {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
}

.cat-card-lg .cat-info {
  flex: 1;
}

.cat-card-lg h3 {
  font-size: 1.2rem;
  margin-top: 0;
}

.cat-card-lg p {
  margin-bottom: 14px;
}

.cat-arrow {
  font-size: 1.4rem;
  color: var(--text-3);
  transition: all var(--transition);
}

.cat-card-lg:hover .cat-arrow {
  color: var(--green);
  transform: translateX(4px);
}

.cat-card-see-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  min-height: 120px;
}

.cat-card-see-all:hover {
  background: #0e1a50;
  border-color: #0e1a50;
  transform: translateY(-2px);
}

.cat-card-see-all svg { color: rgba(255,255,255,0.6); }

/* ===== PRODUCTS ===== */
.featured-section { background: var(--bg); }

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

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(0,168,90,0.2);
}

.product-img {
  position: relative;
  background: var(--bg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-img-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--border);
  color: var(--text-2);
}

.product-badge.new {
  background: var(--green);
  color: white;
}

.product-info {
  padding: 18px;
}

.product-cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 6px;
}

.product-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-info p {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
}

.btn-product:hover { gap: 8px; }
.btn-product::after { content: "→"; }

/* ===== HIGHLIGHT STRIP ===== */
.highlight-strip {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.highlight-content h2 {
  margin-bottom: 18px;
}

.highlight-content p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.highlight-list {
  margin-bottom: 32px;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-2);
  padding: 6px 0;
}

.highlight-visual { position: relative; }

.highlight-img-wrap {
  position: relative;
  height: 380px;
}

.highlight-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--navy-light) 100%);
  border-radius: 24px;
  overflow: hidden;
}

.highlight-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,168,90,0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(21,33,105,0.1) 0%, transparent 60%);
}

.highlight-machine-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 36px;
  border-radius: 24px;
  animation: float 6s ease-in-out infinite;
}

.highlight-img-card {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.highlight-img-card.card-2 {
  bottom: auto;
  top: 32px;
  left: auto;
  right: 32px;
}

.hcard-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hcard-icon-2 {
  background: var(--navy-light);
}

.highlight-img-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.highlight-img-card span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* ===== BRANDS ===== */
.brands-section { background: var(--bg); padding: 60px 0; }

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-item {
  opacity: 0.65;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  border: 1px solid var(--border);
}

.brand-item img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.brand-item:hover { opacity: 1; }

/* ===== FAIRS CTA ===== */
.fairs-cta {
  background: linear-gradient(135deg, #0f1c52 0%, #152169 50%, #0d3f2a 100%);
  padding: 80px 0;
  color: white;
}

.fairs-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 64px;
  align-items: center;
}

.fairs-text .section-label { color: rgba(255,255,255,0.5); }

.fairs-text h2 {
  color: white;
  margin-bottom: 14px;
}

.fairs-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

.fairs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fair-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  transition: all var(--transition);
}

.fair-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.fair-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  text-align: center;
}

.fair-date strong {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

.fair-date span {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin: 2px 0;
}

.fair-date em {
  font-size: 0.65rem;
  font-style: normal;
  color: rgba(255,255,255,0.4);
}

.fair-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.fair-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  align-self: flex-start;
}

.btn-primary-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111120;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-brand { color: white; }
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--green);
  color: white;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

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

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: white; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }

.footer-newsletter { margin-top: 20px; }

.footer-newsletter p {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.newsletter-mini {
  display: flex;
  gap: 0;
}

.newsletter-mini input {
  flex: 1;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 0 12px;
  font-size: 0.8rem;
  color: white;
  font-family: inherit;
  outline: none;
}

.newsletter-mini input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-mini input:focus { border-color: var(--green); }

.newsletter-mini button {
  width: 38px;
  height: 38px;
  background: var(--green);
  border: none;
  border-radius: 0 6px 6px 0;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-mini button:hover { background: var(--green-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-bottom nav a:hover { color: rgba(255,255,255,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .fairs-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .btn-primary-outline { grid-column: span 2; }
  .highlight-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }

  .main-nav { display: none; }
  .btn-menu-mobile { display: flex; }

  /* Hero mobile */
  .hero-slider { height: calc(100svh - 64px); min-height: 440px; max-height: 560px; }
  .hero-content { grid-template-columns: 1fr; gap: 0; padding: 0 0 56px; }
  .hero-visual { display: none; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 0.95rem; }
  .hero-controls { padding: 0 20px; bottom: 18px; }
  .hero-product-frame { width: 220px; height: 220px; }

  .stats-grid { flex-wrap: wrap; gap: 0; }
  .stat-item { padding: 14px 20px; }
  .stat-divider { display: none; }

  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cat-card-lg { grid-column: span 2; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-img-wrap { height: 260px; }

  .fairs-inner { grid-template-columns: 1fr; gap: 36px; }
  .btn-primary-outline { align-self: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }

  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card-lg { grid-column: span 1; flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide.active .hero-text > * {
  animation: fadeInUp 0.5s ease forwards;
}

.hero-slide.active .hero-badge { animation-delay: 0.05s; }
.hero-slide.active h1 { animation-delay: 0.12s; }
.hero-slide.active p { animation-delay: 0.18s; }
.hero-slide.active .hero-actions { animation-delay: 0.24s; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.8rem;
}
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-2); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.bc-sep { color: var(--text-3); }
.bc-current { color: var(--text); font-weight: 500; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #f0faf4 0%, #e8edf5 100%);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 600px; }
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.page-hero p { color: var(--text-2); font-size: 1.05rem; }

/* ===== CATEGORY PAGE ===== */
.category-hero { background: linear-gradient(135deg, #f0faf4 0%, #e8edf5 100%); padding: 48px 0 36px; }
.category-hero-inner h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }
.category-hero-inner p { color: var(--text-2); margin-top: 8px; }

.sub-cats-section { padding: 28px 0 0; }
.sub-cats-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.sub-cat-card {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  transition: all var(--transition);
}
.sub-cat-card:hover, .sub-cat-card.active {
  border-color: var(--green); color: var(--green);
  background: var(--green-light);
}

.products-list-section { padding-top: 32px; }
.products-grid-wide { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.product-img-link { display: block; }
.product-subtitle { color: var(--text-2); font-size: 0.875rem; margin-bottom: 6px; }
.product-actions { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.product-brand { font-size: 0.78rem; color: var(--text-3); font-weight: 500; }
.product-img-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; }

.empty-state { text-align: center; padding: 60px 0; }
.empty-state p { color: var(--text-2); margin-bottom: 20px; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-section { padding: 48px 0 80px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 60px;
}
@media (max-width: 768px) { .product-detail-grid { grid-template-columns: 1fr; gap: 32px; } }

.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  min-height: 340px;
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 320px; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.thumb {
  width: 72px; height: 72px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; padding: 4px;
  background: white; transition: border-color var(--transition);
}
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb.active, .thumb:hover { border-color: var(--green); }

.product-brand-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.product-detail-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.product-sub { font-size: 1rem; color: var(--text-2); margin-bottom: 12px; }
.product-summary { color: var(--text-2); line-height: 1.7; margin-bottom: 24px; border-left: 3px solid var(--green); padding-left: 16px; }

.product-specs { margin-bottom: 28px; }
.product-specs h3 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); margin-bottom: 12px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.spec-key { padding: 9px 0; font-size: 0.875rem; color: var(--text-2); width: 45%; }
.spec-val { padding: 9px 0; font-size: 0.875rem; color: var(--text); font-weight: 500; }

.product-detail-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  background: #25D366; color: white; font-weight: 600;
  font-size: 0.875rem; transition: all var(--transition);
}
.btn-whatsapp:hover { background: #20bd5a; }

.product-content { padding: 48px 0; border-top: 1px solid var(--border); }
.product-content h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 20px; }
.content-body { line-height: 1.8; color: var(--text-2); max-width: 800px; }
.content-body p { margin-bottom: 16px; }
.content-body ul { padding-left: 20px; margin-bottom: 16px; }
.content-body li { margin-bottom: 8px; }

.related-products { padding: 48px 0; border-top: 1px solid var(--border); }
.related-products h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-content h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.about-content p { color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-stat { background: var(--green-light); border-radius: var(--radius-sm); padding: 20px; text-align: center; }
.about-stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--green); }
.about-stat span { font-size: 0.8rem; color: var(--text-2); }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 400px; object-fit: contain; background: white; padding: 24px; }

.about-offices { padding-top: 40px; border-top: 1px solid var(--border); }
.about-offices h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .offices-grid { grid-template-columns: 1fr; } }
.office-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.office-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--green); }
.office-card p { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.office-card a { color: var(--navy); font-weight: 500; font-size: 0.9rem; }

/* ===== CONTACT PAGE ===== */
.contact-section {}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-wrap h2, .contact-info h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.825rem; font-weight: 600; color: var(--text-2); }
.form-group input, .form-group textarea {
  padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.9rem; font-family: inherit;
  background: white; color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; padding: 16px; background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.ci-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
.contact-info-card a { color: var(--navy); font-weight: 500; font-size: 0.9rem; }

/* ===== FAIRS PAGE ===== */
.fairs-list-full { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.fair-card {
  display: flex; gap: 28px; align-items: center;
  padding: 24px; background: white; border: 1px solid var(--border);
  border-radius: var(--radius); transition: box-shadow var(--transition);
}
.fair-card:hover { box-shadow: var(--shadow); }
.fair-card-date {
  display: flex; flex-direction: column; align-items: center;
  background: var(--navy-light); border-radius: var(--radius-sm);
  padding: 14px 20px; min-width: 80px; text-align: center;
}
.fair-card-date strong { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); font-weight: 700; }
.fair-card-date span { font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1; margin: 4px 0; }
.fair-card-date em { font-style: normal; font-size: 0.75rem; color: var(--text-2); }
.fair-card-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.fair-card-info p { color: var(--text-2); font-size: 0.875rem; }
.fair-tag { display: inline-block; margin-top: 8px; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; background: var(--green-light); color: var(--green-dark); }
.fair-tag.past { background: #eef0f4; color: var(--text-3); }
.fairs-past .fair-card { opacity: 0.82; }
.fairs-past .fair-card:hover { opacity: 1; }
.fairs-past .fair-card-date { background: #f0f1f5; }
.fairs-past .fair-card-date strong,
.fairs-past .fair-card-date span { color: var(--text-2); }

/* ===== DISTRIBUTORS PAGE ===== */
.distributors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.distributor-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.dist-logo { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.dist-logo img { max-height: 70px; max-width: 180px; object-fit: contain; }
.distributor-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.distributor-card p { color: var(--text-2); font-size: 0.875rem; margin-bottom: 16px; }
.dist-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }

/* ===== BRANDS — improved ===== */
.brands-section {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.brand-item {
  opacity: 1;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid var(--border);
  min-height: 100px;
}

.brand-item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all var(--transition);
}

.brand-item:hover {
  border-color: var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-name-only {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: var(--text-2);
  letter-spacing: -0.01em;
  opacity: 0.65;
  transition: all var(--transition);
}

.brand-item:hover .brand-name-only {
  color: var(--navy);
  opacity: 1;
}

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

/* ===== HIGHLIGHT ICON GRID ===== */
.highlight-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-icon-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.highlight-icon-card:hover {
  border-color: var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hic-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.hic-icon.green { background: var(--green-light); color: var(--green); }
.hic-icon.navy  { background: var(--navy-light);  color: var(--navy);  }

.highlight-icon-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}

.highlight-icon-card span {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.fab {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.fab-wa {
  background: #25D366;
  color: #fff;
}
.fab-wa::after {
  content: '';
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fab-wa:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37,211,102,0.45); }

.fab-top {
  background: var(--navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.fab-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab-top:hover { background: #0e1a50; transform: translateY(-2px); }

/* ── Dark mode pill FAB ── */
.fab-theme-pill {
  width: auto;
  height: 46px;
  border-radius: 23px;
  padding: 0 18px 0 13px;
  background: linear-gradient(135deg, #0d1117 0%, #1a2540 100%);
  border: 1px solid rgba(110,160,255,0.28);
  box-shadow: 0 4px 22px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  color: #9bbdf5;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  gap: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  animation: pillGlow 3.5s ease-in-out infinite;
}
@keyframes pillGlow {
  0%, 100% { box-shadow: 0 4px 22px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06); }
  50%       { box-shadow: 0 4px 28px rgba(60,110,255,0.22), inset 0 1px 0 rgba(255,255,255,0.08); }
}
.fab-theme-pill:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(60,110,255,0.32), inset 0 1px 0 rgba(255,255,255,0.1);
  border-color: rgba(110,160,255,0.55);
  color: #cce0ff;
  animation: none;
}
.fab-theme-pill svg { flex-shrink: 0; }
.fab-theme-pill .pill-moon { display: block; }
.fab-theme-pill .pill-sun  { display: none; }

/* On dark theme: show sun + light label */
html.theme-dark .fab-theme-pill {
  background: linear-gradient(135deg, #e8efff 0%, #ccd8f8 100%);
  border-color: rgba(50,80,200,0.18);
  box-shadow: 0 4px 22px rgba(80,120,220,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
  color: #2244aa;
  animation: none;
}
html.theme-dark .fab-theme-pill:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(80,120,220,0.28);
  border-color: rgba(50,80,200,0.35);
  color: #1a3388;
}
html.theme-dark .fab-theme-pill .pill-moon { display: none; }
html.theme-dark .fab-theme-pill .pill-sun  { display: block; }

@media (max-width: 768px) {
  .float-actions { right: 16px; bottom: 16px; }
  .fab { width: 50px; height: 50px; }
  .fab-theme-pill { font-size: 0.75rem; padding: 0 14px 0 10px; height: 42px; }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  animation: slideUpBanner 0.35s ease;
}

@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-2);
  min-width: 200px;
}

.cookie-text svg { flex-shrink: 0; color: var(--navy); }
.cookie-text a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

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

.btn-cookie-decline {
  height: 38px;
  padding: 0 18px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-cookie-decline:hover {
  border-color: var(--text-2);
  color: var(--text);
}

.btn-cookie-accept {
  height: 38px;
  padding: 0 20px;
  background: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}

.btn-cookie-accept:hover { background: var(--green-dark); }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-decline, .btn-cookie-accept { flex: 1; }
}

/* ===== PRODUCTS HOME HORIZONTAL SCROLL ===== */
.products-hscroll {
  position: relative;
  margin: 0 -8px;
  padding: 4px 8px 0;
}

.products-hscroll::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  width: 80px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.products-grid-scroll {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.products-grid-scroll::-webkit-scrollbar { height: 4px; }
.products-grid-scroll::-webkit-scrollbar-track { background: transparent; }
.products-grid-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.products-grid-scroll .product-card {
  flex: 0 0 270px;
  scroll-snap-align: start;
}

/* ===== BRANDS MARQUEE ===== */
.brands-marquee-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: brandScroll 28s linear infinite;
  padding: 4px 0 12px;
}

.brands-marquee-track:hover { animation-play-state: paused; }

@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 32px;
  min-width: 150px;
  height: 88px;
  transition: all var(--transition);
}

.brand-pill img {
  height: 42px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all var(--transition);
}

.brand-pill:hover {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(0,168,90,0.12);
  transform: translateY(-3px);
}

.brand-pill:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-pill .brand-name-only {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: var(--text-3);
  white-space: nowrap;
  transition: color var(--transition);
}

.brand-pill:hover .brand-name-only { color: var(--navy); }
