/* ===========================
   BASE — inspirado en Mustad Fishing
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0c1b35;
  --navy2:   #16294e;
  --gold:    #c9920a;
  --gold2:   #e5aa18;
  --gold-lt: #f5d060;
  --white:   #ffffff;
  --off:     #f6f4ef;
  --gray1:   #eeece7;
  --gray2:   #d8d5cc;
  --gray4:   #8c8880;
  --gray6:   #48453e;
  --gray8:   #242018;
  --green:   #25d366;
  --r:       4px;
  --sh:      0 2px 12px rgba(0,0,0,.08);
  --shm:     0 8px 32px rgba(0,0,0,.14);
  --t:       .2s ease;
  --font:    'Barlow', system-ui, sans-serif;
  --cond:    'Barlow Condensed', 'Barlow', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray6);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }

h2 { color: var(--navy); line-height: 1.1; }

.section-pre {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--cond);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ===========================
   BOTONES
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), opacity var(--t);
  border: 2px solid transparent;
  border-radius: var(--r);
  white-space: nowrap;
  letter-spacing: .3px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,146,10,.35);
}
.btn--gold:hover { background: var(--gold2); box-shadow: 0 6px 24px rgba(201,146,10,.5); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy2); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--lg { padding: 17px 42px; font-size: 17px; }

/* Header CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* ===========================
   TOPBAR
   =========================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 9px 24px;
  letter-spacing: .3px;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.header__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.logo__badge {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cond);
  font-size: 16px; font-weight: 900; color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 1px;
}

.logo__name {
  font-family: var(--cond);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}
.logo__loc {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray4);
  display: block;
  letter-spacing: .5px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray6);
  transition: color var(--t);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.header__nav a:hover { color: var(--navy); border-bottom-color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.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); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero__img {
  position: absolute;
  inset: 0;
  bottom: 80px;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,16,34,.82) 0%,
    rgba(8,16,34,.60) 50%,
    rgba(8,16,34,.25) 100%
  );
}

.hero__body {
  position: relative;
  z-index: 2;
  padding: 130px 0 80px;
  max-width: 680px;
}

.hero__pre {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
}

.hero__h1 {
  font-family: var(--cond);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  line-height: .95;
  margin-bottom: 24px;
}

.hero__accent { color: var(--gold-lt); }

.hero__copy {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats bar at bottom of hero */
.hero__stats {
  position: relative;
  z-index: 2;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  margin-top: 0;
}

.hero__stats-inner {
  display: flex;
  align-items: stretch;
}

.hstat {
  flex: 1;
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hstat:last-child { border-right: none; }

.hstat strong {
  font-family: var(--cond);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-lt);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.hstat span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .5px;
}

.hstat__sep { display: none; }

/* ===========================
   CATEGORÍAS
   =========================== */
.categorias {
  background: var(--off);
  padding: 60px 0;
}

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

.catcard {
  position: relative;
  display: block;
  height: 360px;
  overflow: hidden;
  border-radius: var(--r);
}
.catcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.catcard:hover img { transform: scale(1.05); }

.catcard__over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,16,34,.85) 0%, rgba(8,16,34,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background var(--t);
}
.catcard:hover .catcard__over {
  background: linear-gradient(to top, rgba(8,16,34,.92) 0%, rgba(8,16,34,.4) 60%, transparent 100%);
}

.catcard__over--gold {
  background: linear-gradient(to top, rgba(150,90,0,.85) 0%, rgba(8,16,34,.2) 60%, transparent 100%);
}

.catcard__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.catcard__tag--gold { color: #ffd54f; }

.catcard__name {
  font-family: var(--cond);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.catcard__detail {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}

.catcard__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-lt);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t), transform var(--t);
}
.catcard:hover .catcard__cta { opacity: 1; transform: translateY(0); }

/* ===========================
   CATÁLOGO
   =========================== */
.catalogo {
  padding: 80px 0;
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head .section-h2 { margin-bottom: 0; }

.cat-row { margin-bottom: 48px; }

.cat-row__label {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray2);
}
.cat-row__label span {
  font-family: var(--cond);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray2);
  border: 1px solid var(--gray2);
}

.prod {
  background: var(--white);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--t);
  position: relative;
}
.prod:hover { background: var(--off); }

.prod__img {
  width: calc(100% + 44px);
  margin: -28px -22px 18px;
  height: 200px;
  overflow: hidden;
  display: flex;
  background: var(--gray1);
}
.prod__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .4s ease;
  padding: 8px;
}
.prod__img--2 img { width: 50%; }
.prod__img--empty {
  width: calc(100% + 44px);
  margin: -28px -22px 18px;
  height: 180px;
  background: var(--gray1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray4);
  font-size: 13px;
  font-weight: 600;
}
.prod__img--empty::after { content: 'Foto próximamente'; }
.prod:hover .prod__img img { transform: scale(1.04); }

.prod__badge-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 5px;
  letter-spacing: .5px;
  text-transform: uppercase;
  z-index: 1;
}

.prod--destacado {
  border-color: var(--gold);
  background: #fffcf0;
}

.prod__top { margin-bottom: 4px; }

.prod__cat {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,146,10,.1);
  padding: 2px 8px;
  border-radius: 2px;
}
.prod__cat--navy {
  color: var(--navy);
  background: rgba(12,27,53,.08);
}
.prod__cat--amber {
  color: #8a4500;
  background: rgba(200,100,0,.1);
}

.prod h3 {
  font-family: var(--cond);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--navy);
  line-height: 1.15;
}

.prod p {
  font-size: 13px;
  color: var(--gray4);
  line-height: 1.6;
  flex: 1;
}
.prod p strong { color: var(--navy); font-weight: 700; }

.prod__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  margin-top: 6px;
  transition: color var(--t), letter-spacing var(--t);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.prod__link:hover { color: var(--navy); letter-spacing: 1px; }

.catalogo__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: var(--navy);
  border-radius: var(--r);
  margin-top: 8px;
}
.catalogo__bottom p {
  font-size: 16px;
  color: rgba(255,255,255,.72);
}

/* ===========================
   FULL BANNER
   =========================== */
.fullbanner {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.fullbanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.fullbanner__over {
  position: absolute;
  inset: 0;
  background: rgba(8,16,34,.62);
  display: flex;
  align-items: center;
}
.fullbanner__over .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.fullbanner__quote {
  font-family: var(--cond);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  font-style: normal;
  line-height: 1;
}
.fullbanner__sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
}

/* ===========================
   NOSOTROS
   =========================== */
.nosotros {
  padding: 88px 0;
  background: var(--off);
}

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

.nosotros__foto img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r);
}

.nosotros__text .section-h2 { margin-bottom: 20px; }

.nosotros__p {
  font-size: 16px;
  color: var(--gray6);
  line-height: 1.75;
  margin-bottom: 36px;
}
.nosotros__p strong { color: var(--navy); font-weight: 700; }

.valores { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.valor {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray2);
}
.valor:last-child { border-bottom: none; padding-bottom: 0; }

.valor__num {
  font-family: var(--cond);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  opacity: .3;
  flex-shrink: 0;
  line-height: 1;
  min-width: 36px;
}

.valor strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.valor p { font-size: 14px; color: var(--gray4); line-height: 1.6; }

.nosotros__ceo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray2);
  border-left: 4px solid var(--gold);
  border-radius: var(--r);
}

.ceo__avatar {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cond);
  font-size: 16px; font-weight: 900; color: var(--gold);
  flex-shrink: 0;
}

.nosotros__ceo strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.nosotros__ceo span {
  font-size: 12px;
  color: var(--gray4);
  font-weight: 600;
  letter-spacing: .5px;
}

/* ===========================
   PROCESO
   =========================== */
.proceso {
  padding: 88px 0;
  background: var(--navy);
}

.proceso .section-pre { color: var(--gold-lt); }
.proceso .section-h2 { color: var(--white); }

.pasos {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 52px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  overflow: hidden;
}

.paso {
  flex: 1;
  padding: 44px 32px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background var(--t);
}
.paso:last-child { border-right: none; }
.paso:hover { background: rgba(255,255,255,.04); }

.paso__n {
  font-family: var(--cond);
  font-size: 60px;
  font-weight: 900;
  color: var(--gold);
  opacity: .18;
  line-height: 1;
  margin-bottom: 16px;
}

.paso h3 {
  font-family: var(--cond);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--white);
  margin-bottom: 10px;
}

.paso p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }

.paso__arr {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.18);
  padding: 0;
  align-self: center;
  margin: 0 -24px;
  z-index: 1;
}

.proceso__cta { text-align: center; margin-top: 52px; }

/* ===========================
   CONTACTO
   =========================== */
.contacto {
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--gray1);
}

.contacto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto__left h2 { margin-bottom: 14px; }
.contacto__left p {
  font-size: 16px;
  color: var(--gray4);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contacto__right { display: flex; flex-direction: column; gap: 0; }

.cinfo {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray1);
}
.cinfo:first-child { padding-top: 0; }
.cinfo:last-child { border-bottom: none; }

.cinfo__ico {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.cinfo__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray4);
  margin-bottom: 3px;
}
.cinfo strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--gray8);
  padding: 52px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  align-items: start;
}

.footer__brand { display: flex; align-items: center; gap: 14px; }

.footer__badge {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cond);
  font-size: 16px; font-weight: 900; color: var(--navy);
  flex-shrink: 0;
  letter-spacing: 1px;
}

.footer__name {
  font-family: var(--cond);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 3px;
}
.footer__slogan { font-size: 11px; color: var(--gold-lt); letter-spacing: 1px; }

.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.35);
  transition: color var(--t);
}
.footer__nav a:hover { color: rgba(255,255,255,.8); }

.footer__data { display: flex; flex-direction: column; gap: 8px; }
.footer__data p { font-size: 13px; color: rgba(255,255,255,.3); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,.2);
}

/* ===========================
   WA FLOTANTE
   =========================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.6); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .nosotros__inner { grid-template-columns: 1fr; gap: 48px; }
  .nosotros__foto img { height: 360px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .categorias__inner { grid-template-columns: 1fr 1fr; }
  .catcard:nth-child(3) { grid-column: span 2; height: 260px; }
}

@media (max-width: 860px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto__inner { grid-template-columns: 1fr; gap: 48px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .catalogo__bottom { flex-direction: column; text-align: center; }
  .hero__stats-inner { flex-wrap: wrap; }
  .hstat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hstat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray2);
    border-bottom: 2px solid var(--navy);
    padding: 12px 0;
    flex-direction: column;
    gap: 0;
  }
  .header__nav.open { display: flex; }
  .header__nav a {
    padding: 12px 24px;
    border-bottom: 1px solid var(--gray1);
    font-size: 14px;
  }
  .header__nav a:last-child { border-bottom: none; }
  .header { position: sticky; top: 0; }

  .hamburger { display: flex; }

  .pasos { flex-direction: column; border-radius: 0; }
  .paso { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .paso:last-child { border-bottom: none; }
  .paso__arr { display: none; }

  .categorias__inner { grid-template-columns: 1fr; }
  .catcard:nth-child(3) { grid-column: auto; height: 300px; }
  .catcard { height: 280px; }

  .footer__inner { grid-template-columns: 1fr; }
  .fullbanner { height: 300px; }
}

@media (max-width: 540px) {
  .prod-grid { grid-template-columns: 1fr; }
  .hero__h1 { font-size: 52px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn--lg { padding: 14px 28px; font-size: 16px; }
  .hstat { flex: 0 0 100%; border-right: none; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
