/* ===== JSS MAQUINARIA — BLACK & YELLOW INDUSTRIAL THEME ===== */

/* ── Anti-spam honeypot: invisible para humanos, visible para bots ── */
.hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --yellow: #FFD100;
  --yellow-dark: #e6bc00;
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --dark3: #2d2d2d;
  --gray: #888;
  --light-gray: #ccc;
  --white: #ffffff;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 0;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--black); }
.topbar a:hover { text-decoration: underline; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  position: sticky; top: 0; z-index: 1000;
}
.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  height: 72px;
  overflow: visible;
}
.nav-logo img { height: 46px; width: auto; flex-shrink: 0; background: #3a3a3a; border-radius: 50%; padding: 2px; }
.nav-logo span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

.nav-links { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; flex-shrink: 0; }
/* -- removed duplicate, flex-wrap: nowrap is now in nav-inner main rule -- */
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 13px;
  height: 72px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item > button:hover,
.nav-item:hover > a, .nav-item:hover > button {
  color: var(--yellow);
  background: rgba(255,209,0,0.07);
}
.nav-cta {
  margin-left: 12px;
  padding: 10px 20px !important;
  height: auto !important;
  background: var(--yellow) !important;
  color: var(--black) !important;
  border-radius: 3px;
  font-weight: 900 !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; }

.dropdown-arrow { font-size: 0.65rem; opacity: .7; }

/* dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--dark2);
  border-top: 3px solid var(--yellow);
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--yellow); color: var(--black); }
.dropdown a.cat-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,209,0,.05);
  pointer-events: none;
}

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none;
  background: var(--dark);
  border-top: 2px solid var(--yellow);
  padding: 1rem 0 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .mob-cat {
  font-size: 0.75rem;
  letter-spacing: .12em;
  color: var(--yellow);
  padding: 14px 1.5rem 6px;
  font-weight: 900;
}
.mobile-menu .mob-sub {
  padding-left: 2.5rem;
  font-size: 0.92rem;
  color: var(--light-gray);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--black);
  padding: 100px 1.5rem 80px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,209,0,0.025) 30px,
    rgba(255,209,0,0.025) 31px
  );
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}
.hero h1 em {
  color: var(--yellow);
  font-style: normal;
  display: block;
}
.hero p {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 640px;
  margin: 0 auto 2rem;
  position: relative;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none; cursor: pointer;
  transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 30px;
  cursor: pointer;
  transition: .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  flex-wrap: wrap;
  position: relative;
}
.stat {
  text-align: center;
  padding: 20px 32px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ===== FEATURES STRIP ===== */
.features {
  background: var(--yellow);
  padding: 28px 1.5rem;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border-left: 1px solid rgba(0,0,0,.12);
}
.feature-item:first-child { border-left: none; }
.feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.feature-item strong {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--black);
  display: block;
  letter-spacing: .03em;
}
.feature-item span { font-size: 0.78rem; color: #333; }

/* ===== SECTION HEADINGS ===== */
.section { padding: 80px 1.5rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--light-gray);
  max-width: 600px;
  margin-bottom: 3rem;
}
.title-bar {
  width: 56px; height: 4px;
  background: var(--yellow);
  margin-bottom: 1.5rem;
}

/* ===== CATEGORY GRID ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.cat-card {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  transition: transform .3s;
  text-decoration: none;
  color: var(--white);
}
.cat-card:hover { transform: scale(1.02); z-index: 1; }
.cat-card-bg {
  position: absolute; inset: 0;
  background: var(--dark3);
  overflow: hidden;
}
.cat-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  display: block;
  transition: transform .4s ease, opacity .3s;
}
.cat-card:hover .cat-card-bg img { transform: scale(1.05); opacity: 0.6; }
.cat-icon-big { font-size: 5rem; opacity: .15; }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.1) 100%);
}
.cat-card-content {
  position: relative;
  padding: 1.5rem;
  width: 100%;
}
.cat-card-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.cat-card-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}
.cat-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: gap .2s;
}
.cat-card:hover .cat-card-arrow { gap: 10px; }
.cat-card-border {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--yellow);
  transition: width .3s;
}
.cat-card:hover .cat-card-border { width: 100%; }

/* ===== PRODUCT GRID ===== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.prod-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.prod-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.prod-card-img {
  background: var(--dark3);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,209,0,.2);
  overflow: hidden;
}
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-card-body { padding: 1.5rem; }
.prod-card-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: .8rem;
}
.prod-card-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .6rem;
  line-height: 1.2;
}
.prod-card-desc {
  font-size: 0.88rem;
  color: var(--light-gray);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.prod-card-footer {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-sm {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 18px;
  display: inline-block;
  transition: .2s;
  cursor: pointer;
  border: none;
}
.btn-sm-yellow { background: var(--yellow); color: var(--black); }
.btn-sm-yellow:hover { background: var(--yellow-dark); }
.btn-sm-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.2); color: var(--white); }
.btn-sm-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-sm-wa { background: #25D366; color: white; display: flex; align-items: center; gap: 5px; }
.btn-sm-wa:hover { background: #1da854; }

/* ===== PRODUCT PAGE ===== */
.product-hero {
  background: var(--dark);
  padding: 60px 1.5rem;
  border-bottom: 3px solid var(--yellow);
}
.product-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-hero-img {
  background: var(--dark2);
  max-height: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(255,209,0,.2);
  border: 2px solid rgba(255,209,0,.15);
  overflow: hidden;
  border-radius: 4px;
}
.product-hero-img img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.product-breadcrumb {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.product-breadcrumb a { color: var(--yellow); }
.product-breadcrumb a:hover { text-decoration: underline; }
.product-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.product-hero h1 span { color: var(--yellow); }
.product-hero-desc {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.product-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.product-tag {
  display: inline-block;
  border: 1px solid rgba(255,209,0,.4);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.product-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* specs table */
.specs-section { background: var(--dark); }
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.specs-group-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,209,0,.3);
}
.specs-list { list-style: none; }
.specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 0.9rem;
  gap: 1rem;
}
.specs-list li:last-child { border-bottom: none; }
.spec-label { color: var(--gray); font-weight: 500; flex-shrink: 0; }
.spec-value { color: var(--white); font-weight: 600; text-align: right; }

/* notes box */
.notes-box {
  background: var(--dark3);
  border-left: 4px solid var(--yellow);
  padding: 1.5rem;
  margin-top: 2rem;
}
.notes-box h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--yellow);
  margin-bottom: .8rem;
}
.notes-box ul { list-style: none; }
.notes-box li {
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--light-gray);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.notes-box li::before { content: '—'; color: var(--yellow); flex-shrink: 0; margin-top: 1px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--yellow);
  padding: 60px 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.cta-band p { color: #333; margin-bottom: 1.5rem; font-size: 1rem; }
.cta-band .btn-primary { background: var(--black); color: var(--yellow); }
.cta-band .btn-primary:hover { background: #333; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 2px;
}
.contact-info-item a, .contact-info-item p { font-size: 0.95rem; color: var(--light-gray); }
.contact-info-item a:hover { color: var(--yellow); }
.social-row { display: flex; gap: 10px; margin-top: .5rem; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--dark3);
  color: var(--light-gray);
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.08);
  transition: .2s;
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); }

/* form */
.contact-form { background: var(--dark2); padding: 2rem; border-top: 4px solid var(--yellow); }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.captcha-wrap { margin-bottom: 1rem; }
.btn-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  display: inline-block;
  line-height: 1.4;
}
.btn-submit:hover { background: var(--yellow-dark); }

.other-sites {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--dark3);
  border: 1px solid rgba(255,209,0,.15);
}
.other-sites h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.other-sites-links { display: flex; gap: 10px; flex-wrap: wrap; }
.other-site-link {
  display: inline-block;
  padding: 8px 16px;
  background: var(--dark2);
  border: 1px solid rgba(255,209,0,.25);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  transition: .2s;
}
.other-site-link:hover { background: var(--yellow); color: var(--black); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 58px; height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  border-top: 3px solid var(--yellow);
  padding: 60px 1.5rem 30px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,209,0,.2);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { font-size: 0.88rem; color: var(--gray); transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); }
.footer-bottom a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray);
  transition: .2s;
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-item { background: var(--dark2); padding: 1.2rem; border-left: 3px solid var(--yellow); }
.value-item strong { font-family: var(--font-head); font-size: 1rem; font-weight: 800; display: block; color: var(--yellow); margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; color: var(--light-gray); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--dark);
  padding: 60px 1.5rem;
  border-bottom: 3px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255,209,0,.03) 60px,
    rgba(255,209,0,.03) 61px
  );
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1rem;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-hero .breadcrumb a { color: var(--yellow); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: .5rem;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p { color: var(--light-gray); max-width: 600px; font-size: 1rem; }

/* ===== SCHEMA/SEO markup (visually hidden) ===== */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== SEARCH BUTTON (navbar) ===== */
.search-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0 14px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s, background .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.search-btn:hover { color: var(--yellow); background: rgba(255,209,0,.07); }
.search-btn svg { flex-shrink: 0; }
@media (max-width: 480px) { .search-btn span { display: none; } }

/* Mobile search button (inside mobile menu) */
.mob-search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--dark3);
  border: none;
  border-bottom: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 1.5rem;
  cursor: pointer;
  transition: background .2s;
}
.mob-search-btn:hover { background: rgba(255,209,0,.12); }
.mob-search-btn svg { flex-shrink: 0; }

/* ===== SEARCH OVERLAY ===== */
#searchOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 10001;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
  overflow-y: auto;
}
#searchOverlay.active { display: flex; animation: srFadeIn .18s ease; }
@keyframes srFadeIn { from { opacity: 0; } to { opacity: 1; } }

.search-modal {
  width: 100%;
  max-width: 720px;
  padding: 0 1.2rem 3rem;
}

.search-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 3px solid var(--yellow);
  padding: 10px 0 4px;
  margin-bottom: 6px;
}
.search-icon-big { color: var(--yellow); flex-shrink: 0; }

#searchInput {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 700;
  padding: 14px 0;
  caret-color: var(--yellow);
  min-width: 0;
}
#searchInput::placeholder { color: rgba(255,255,255,.28); }
#searchInput::-webkit-search-cancel-button { display: none; }

#searchClose {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
  transition: color .2s;
}
#searchClose:hover { color: var(--yellow); }

.search-hint {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  padding: 8px 2px 0;
  font-family: var(--font-body);
}
.search-hint strong { color: rgba(255,255,255,.55); font-weight: 600; }

.search-results { margin-top: 6px; }

.sr-group-label {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 16px 14px 6px;
  opacity: .85;
}

.sr-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 3px;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s;
  cursor: pointer;
}
.sr-item:hover, .sr-item.focused {
  background: var(--yellow);
  color: var(--black);
}
.sr-item:hover .sr-arrow, .sr-item.focused .sr-arrow {
  color: var(--black);
  transform: translateX(4px);
}
.sr-item:hover mark, .sr-item.focused mark { color: var(--black); }

.sr-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.sr-name mark {
  background: none;
  color: var(--yellow);
  font-style: normal;
}

.sr-arrow {
  font-size: 1.1rem;
  color: var(--yellow);
  transition: transform .15s, color .15s;
  flex-shrink: 0;
  margin-left: 12px;
}

.sr-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.8;
}
.sr-empty strong { color: rgba(255,255,255,.65); }
.sr-empty a { color: var(--yellow); }

/* ===== LIGHTBOX / IMAGE ZOOM ===== */
.zoomable { cursor: zoom-in; transition: opacity .2s, transform .2s; }
.zoomable:hover { opacity: .88; transform: scale(1.02); }

#imgLightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lbFadeIn .2s ease;
}
#imgLightbox.active { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lb-inner {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lbImg {
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border: 2px solid rgba(255,209,0,.35);
  box-shadow: 0 24px 80px rgba(0,0,0,.9);
  animation: lbScaleIn .22s ease;
}
@keyframes lbScaleIn { from { transform: scale(.93); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#lbClose {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  border-radius: 50%;
  line-height: 1;
  z-index: 1;
  transition: background .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lbClose:hover { background: var(--yellow-dark); transform: scale(1.12); }
#lbCaption {
  margin-top: 10px;
  font-size: .8rem;
  color: var(--light-gray);
  font-family: var(--font-head);
  letter-spacing: .06em;
  text-align: center;
  max-width: 80vw;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1380px) {
  .nav-item > a, .nav-item > button { padding: 0 9px; font-size: 0.82rem; letter-spacing: 0.01em; }
  .nav-cta { padding: 8px 12px !important; }
}
@media (max-width: 1200px) {
  .nav-item > a, .nav-item > button { padding: 0 7px; font-size: 0.78rem; letter-spacing: 0; }
  .nav-cta { padding: 7px 10px !important; }
}
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1440px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .hero { padding: 60px 1.5rem 50px; }
  .hero-stats { gap: 0; }
  .stat { padding: 15px 20px; }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; }
  .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.1); width: 100%; }
  .stat:first-child { border-top: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .features-inner { grid-template-columns: 1fr; }
  .feature-item { border-left: none; border-top: 1px solid rgba(0,0,0,.12); }
}
