/* ============================================================
   LAYOUT.CSS — Header, navegación y footer
   YEYSON INOX PERU S.A.C.
   ============================================================ */

/* ── TOPBAR ──────────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, #080f24 0%, #0d1b3e 40%, #0d1b3e 60%, #080f24 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0 40px;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(245,130,31,0.25);
  position: relative;
}
.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,130,31,0.6) 30%, rgba(245,130,31,0.6) 70%, transparent 100%);
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 0; }
.topbar__left span, .topbar__right > span {
  display: flex; align-items: center; gap: 6px;
  padding: 0 18px; height: 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.70); letter-spacing: 0.2px;
  transition: color 0.2s;
}
.topbar__left span:first-child { padding-left: 0; }
.topbar__left span:hover, .topbar__right > span:hover { color: #fff; }
.topbar__left span i, .topbar__right > span i { color: var(--orange); font-size: 0.78rem; }
.topbar__socials { display: flex; gap: 6px; padding-left: 14px; align-items: center; border-left: 1px solid rgba(255,255,255,0.12); margin-left: 6px; }
.topbar__socials a {
  color: rgba(255,255,255,0.65);
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.70rem; line-height: 1;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.topbar__socials a:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  background: linear-gradient(90deg, #080f24 0%, #0d1b3e 25%, #0d1b3e 75%, #080f24 100%);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,130,31,0.5) 20%, rgba(245,130,31,0.8) 50%, rgba(245,130,31,0.5) 80%, transparent 100%);
}
.navbar__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  height: 78px; display: flex; align-items: center; gap: 28px;
}
.navbar__logo { flex-shrink: 0; }
.navbar__logo img {
  height: 58px; width: auto; display: block;
  filter: drop-shadow(0 0 8px rgba(245,130,31,0.2));
  transition: filter 0.3s;
}
.navbar__logo:hover img { filter: drop-shadow(0 0 12px rgba(245,130,31,0.45)); }
.navbar__nav { flex: 1; }
.navbar__nav ul { display: flex; gap: 4px; }
.navbar__nav ul li a {
  color: rgba(255,255,255,0.78);
  font-family: 'Barlow', sans-serif; font-size: 0.98rem; font-weight: 600;
  padding: 10px 16px; border-radius: 6px;
  display: flex; align-items: center; gap: 7px;
  position: relative; transition: color 0.25s, background 0.25s; letter-spacing: 0.2px;
}
.navbar__nav ul li a i { font-size: 0.82rem; opacity: 0.75; transition: opacity 0.25s, color 0.25s; }
.navbar__nav ul li a::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform 0.28s ease;
}
.navbar__nav ul li a:hover::after, .navbar__nav ul li a.active::after { transform: scaleX(1); }
.navbar__nav ul li a:hover, .navbar__nav ul li a.active {
  color: #fff; background: rgba(255,255,255,0.06);
}
.navbar__nav ul li a:hover i, .navbar__nav ul li a.active i { opacity: 1; color: var(--orange); }
.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__search {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px; padding: 8px 18px; gap: 8px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.navbar__search:focus-within {
  border-color: rgba(245,130,31,0.5); background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(245,130,31,0.08);
}
.navbar__search i { color: rgba(255,255,255,0.40); font-size: 0.85rem; transition: color 0.25s; }
.navbar__search:focus-within i { color: var(--orange); }
.navbar__search input {
  background: transparent; border: none; outline: none;
  color: #fff; font-size: 0.9rem; width: 165px; font-family: 'Barlow', sans-serif;
}
.navbar__search input::placeholder { color: rgba(255,255,255,0.35); }

/* Botón Cotizar — verde WhatsApp, alta especificidad para no ser pisado por components.css */
.navbar__actions .btn-cotizar,
a.btn-cotizar[href] {
  background: linear-gradient(135deg, #25d366 0%, #1aab52 100%) !important;
  color: #fff !important; font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  padding: 10px 24px; border-radius: 24px;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.3px; box-shadow: 0 4px 16px rgba(37,211,102,0.30);
  transition: box-shadow 0.25s, transform 0.2s, filter 0.2s; white-space: nowrap;
  border: none;
}
.navbar__actions .btn-cotizar i,
a.btn-cotizar[href] i { font-size: 1.05rem; }
.navbar__actions .btn-cotizar:hover,
a.btn-cotizar[href]:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); filter: brightness(1.08); }
/* ── CATEGORY NAV LINKS ──────────────────────────────────────── */
.nav__list { display: flex; gap: 2px; align-items: center; }
.nav__home {
  color: rgba(255,255,255,0.85); font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  padding: 10px 13px; border-radius: 6px;
  display: flex; align-items: center; gap: 7px;
  position: relative; transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav__cat-link {
  color: rgba(255,255,255,0.72); font-family: 'Barlow', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 11px; border-radius: 6px;
  display: flex; align-items: center; gap: 5px;
  position: relative; transition: color 0.25s, background 0.25s;
  white-space: nowrap; letter-spacing: 0.15px;
}
.nav__home::after, .nav__cat-link::after {
  content: ''; position: absolute; bottom: 2px; left: 9px; right: 9px;
  height: 2px; background: #f5821f; border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform 0.28s ease;
}
.nav__home:hover, .nav__home.active,
.nav__cat-link:hover, .nav__cat-link.active {
  color: #fff; background: rgba(255,255,255,0.06);
}
.nav__home:hover::after, .nav__home.active::after,
.nav__cat-link:hover::after, .nav__cat-link.active::after { transform: scaleX(1); }
.nav__cat-link i { font-size: 0.74rem; color: #f5821f; flex-shrink: 0; }
.nav__home i     { font-size: 0.84rem; color: #f5821f; }

/* ── SECONDARY NAV "Más" DROPDOWN ───────────────────────────── */
.navbar__nav { display: flex; align-items: center; flex: 1; justify-content: center; gap: 2px; }
.nav__more { position: relative; margin-left: 6px; }
.nav__more-btn {
  height: 36px; padding: 0 13px; border-radius: 6px; border: none;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.68);
  display: flex; align-items: center; gap: 6px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.2px; white-space: nowrap;
  transition: background 0.25s, color 0.25s;
  border: 1px solid rgba(255,255,255,0.09);
}
.nav__more-btn i { font-size: 0.62rem; transition: transform 0.25s ease; }
.nav__more-btn:hover,
.nav__more:hover .nav__more-btn {
  background: rgba(245,130,31,0.12); color: #fff;
  border-color: rgba(245,130,31,0.30);
}
.nav__more:hover .nav__more-btn i { transform: rotate(180deg); }

.nav__more-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #0a1530; border: 1px solid rgba(255,255,255,0.10);
  border-top: 2px solid #f5821f;
  border-radius: 10px; padding: 8px 0;
  min-width: 190px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.55);
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 1100;
}
.nav__more:hover .nav__more-panel,
.nav__more:focus-within .nav__more-panel {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nav__more-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; color: rgba(255,255,255,0.75);
  font-family: 'Barlow', sans-serif; font-size: 0.90rem; font-weight: 600;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.nav__more-link i { font-size: 0.82rem; color: #f5821f; width: 16px; flex-shrink: 0; }
.nav__more-link:hover, .nav__more-link.active {
  background: rgba(245,130,31,0.10); color: #fff; padding-left: 26px;
}

/* ── HAMBURGER ───────────────────────────────────────────────── */
.navbar__hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
  width: 40px; height: 40px;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2.5px; background: #fff;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
/* Animación X cuando está abierto */
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE FULL-SCREEN OVERLAY ──────────────────────────────── */
body.menu-open { overflow: hidden; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1999;
  background: linear-gradient(160deg, #060e1c 0%, #0d1b3e 60%, #091424 100%);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mm__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mm__logo { height: 48px; width: auto; }
.mm__close {
  width: 44px; height: 44px; border-radius: 10px; border: none;
  background: rgba(255,255,255,0.08); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mm__close:hover { background: rgba(245,130,31,0.25); color: #f5821f; }

.mm__nav {
  flex: 1; padding: 12px 0; overflow-y: auto;
  display: flex; flex-direction: column;
}
.mm__divider {
  padding: 18px 28px 8px;
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 800;
  color: rgba(245,130,31,0.70); text-transform: uppercase; letter-spacing: 1.5px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
}
.mm__item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 28px; color: rgba(255,255,255,0.78);
  font-family: 'Barlow', sans-serif; font-size: 1.05rem; font-weight: 600;
  border-left: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mm__icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: rgba(245,130,31,0.10); border: 1px solid rgba(245,130,31,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #f5821f;
  transition: background 0.2s;
}
.mm__item:hover, .mm__item.active {
  background: rgba(245,130,31,0.07); color: #fff;
  border-left-color: #f5821f;
}
.mm__item:hover .mm__icon, .mm__item.active .mm__icon {
  background: rgba(245,130,31,0.22);
}

.mm__foot {
  padding: 20px 28px 32px; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 14px;
}
.mm__wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #25d366, #1aab52); color: #fff;
  border-radius: 50px; padding: 14px 24px;
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 800;
  box-shadow: 0 6px 20px rgba(37,211,102,0.30);
}
.mm__wa-btn i { font-size: 1.2rem; }
.mm__contact {
  text-align: center; font-family: 'Barlow', sans-serif;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mm__contact i { color: #f5821f; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .navbar__inner { gap: 16px; }
  .nav__cat-link { font-size: 0.76rem; padding: 7px 8px; }
  .nav__home { font-size: 0.88rem; padding: 10px 10px; }
}
@media (max-width: 860px) {
  .topbar { padding: 0 16px; font-size: 0.75rem; }
  .topbar__left span, .topbar__right > span { padding: 0 10px; }
  .navbar__inner { padding: 0 20px; gap: 12px; }
  .navbar__hamburger { display: flex; }
  .navbar__nav { display: none; }
  .navbar__actions { margin-left: auto; }
  .btn-cotizar { padding: 8px 16px !important; font-size: 0.82rem !important; }
}
@media (max-width: 500px) {
  .topbar__left span:last-child { display: none; }
  .topbar__right .topbar__socials { display: none; }
  .btn-cotizar { display: none !important; }
}

/* ── BUTTONS (shared, used in header & throughout) ─────────── */
.btn-primary {
  background: var(--orange); color: #fff;
  border: none; border-radius: var(--r);
  padding: 11px 24px; font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--t); cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,105,30,.4);
}
.btn-primary-lg { padding: 13px 30px; font-size: 15px; }

.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.3); border-radius: var(--r);
  padding: 11px 24px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--t); cursor: pointer;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-wa {
  background: var(--whatsapp); color: #fff; border: none; border-radius: 50px;
  padding: 9px 18px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  transition: all var(--t); white-space: nowrap;
}
.btn-wa:hover {
  background: var(--whatsapp-dark); transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}

.btn-admin {
  background: transparent; color: var(--silver-lt);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r);
  padding: 8px 14px; font-size: 13px;
  display: flex; align-items: center; gap: 7px;
  transition: all var(--t);
}
.btn-admin:hover {
  color: var(--white); border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
}

.btn-navy {
  background: var(--navy); color: #fff;
  border: none; border-radius: var(--r);
  padding: 11px 24px; font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--t); cursor: pointer;
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark); color: var(--silver-lt);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 52px;
}

.fbrand img   { height: 46px; width: auto; margin-bottom: 16px; }
.fbrand p     { font-size: 13px; line-height: 1.8; color: var(--silver); margin-bottom: 22px; max-width: 300px; }
.socials      { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--r);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--silver-lt); transition: all var(--t);
}
.social-btn:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--silver); font-size: 13px;
  display: flex; align-items: center; gap: 6px; transition: color var(--t);
}
.footer-links a:hover { color: var(--orange); }
.footer-links a i     { font-size: 9px; color: var(--orange); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--silver);
}
.footer-contact-list li i { color: var(--orange); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: var(--silver); transition: color var(--t); }
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p   { font-size: 12px; color: var(--silver); }
.footer-bottom a   { color: var(--orange); }

/* ── RESPONSIVE HEADER ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav ul { gap: 2px; }
  .main-nav a  { padding: 8px 10px; font-size: 12px; }
}
@media (max-width: 860px) {
  .main-nav      { display: none; }
  .header-search { display: none; }
  .hamburger     { display: block; }
  .contact-strip { display: none; }
}
@media (max-width: 600px) {
  .btn-admin { display: none; }
}

/* ── HEADER INFO STRIP (capa 1) ─────────────────────────────── */
.header-info-strip {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 7px 0;
}
.header-info-strip .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.his-left  { display: flex; gap: 20px; align-items: center; overflow: hidden; flex-shrink: 1; }
.his-right { display: flex; gap: 20px; align-items: center; flex-shrink: 0; }

.his-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: rgba(200,208,216,.7); white-space: nowrap;
}
.his-pill i { color: var(--orange); font-size: 10px; }

.his-contact {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(200,208,216,.7);
  transition: color var(--t); white-space: nowrap;
}
.his-contact:hover { color: var(--orange); }
.his-contact i { color: var(--orange); font-size: 10px; }

/* ── HEADER MAIN — rediseñado (capa 2) ──────────────────────── */
.header-main { padding: 12px 0; }
.header-main .container { display: flex; align-items: center; gap: 16px; }

.hm-search-wrap {
  flex: 1; max-width: 580px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px; overflow: hidden;
  transition: border-color var(--t), background var(--t);
}
.hm-search-wrap:focus-within {
  background: rgba(255,255,255,.14); border-color: var(--orange);
}

.hm-cat-select {
  background: transparent; border: none;
  color: var(--silver-lt); font-size: 12px; font-weight: 600;
  padding: 0 26px 0 16px; height: 40px;
  outline: none; cursor: pointer;
  white-space: nowrap; max-width: 160px;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238B9BAB'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}
.hm-cat-select option { background: var(--navy-dark); color: var(--white); }

.hm-search-divider { width: 1px; height: 22px; background: rgba(255,255,255,.15); flex-shrink: 0; }

.hm-search-inner { position: relative; flex: 1; }
.hm-search-inner input {
  background: transparent; border: none;
  color: var(--white); font-size: 13px;
  width: 100%; height: 40px; padding: 0 8px 0 34px;
  outline: none;
}
.hm-search-inner input::placeholder { color: var(--silver); }
.hm-search-inner > i {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--silver); font-size: 12px; pointer-events: none;
}

.hm-search-btn {
  background: var(--orange); border: none; color: #fff; font-size: 13px;
  width: 44px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background var(--t);
}
.hm-search-btn:hover { background: var(--orange-dark); }

.hm-wa-btn {
  flex-direction: column !important; align-items: flex-start !important;
  border-radius: var(--r) !important; padding: 8px 16px !important;
  gap: 2px !important; white-space: nowrap;
}
.hm-wa-text { display: flex; flex-direction: column; gap: 1px; }
.hm-wa-label { font-size: 10px; font-weight: 700; line-height: 1; opacity: .9; }
.hm-wa-num   { font-size: 13px; font-weight: 800; line-height: 1; }

/* ── HEADER CATEGORY NAV (capa 3) ───────────────────────────── */
.header-cat-nav {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
}
.header-cat-nav .container { padding-top: 0; padding-bottom: 0; }

.hcn-track {
  display: flex; align-items: stretch;
  overflow-x: auto; gap: 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.hcn-track::-webkit-scrollbar { display: none; }

.hcn-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 9px 20px;
  color: rgba(200,208,216,.7);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  white-space: nowrap; flex-shrink: 0;
  border-bottom: 2px solid transparent;
  transition: all var(--t);
}
.hcn-item:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-bottom-color: var(--orange);
}
.hcn-icon { font-size: 15px; display: block; line-height: 1; }
.hcn-label { line-height: 1; }

/* ── SIDEBAR FLOTANTE DERECHO ────────────────────────────────── */
.yi-float-sidebar {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 990; display: flex; flex-direction: column; gap: 2px;
}

.yfs-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--navy-dark); color: var(--silver-lt);
  border: none; padding: 14px 8px; width: 68px;
  text-decoration: none; cursor: pointer;
  border-left: 3px solid transparent;
  transition: all var(--t);
}
.yfs-btn:hover {
  background: var(--navy); color: var(--white);
  border-left-color: var(--orange);
}
.yfs-btn--cot          { background: var(--whatsapp); color: #fff; }
.yfs-btn--cot:hover    { background: var(--whatsapp-dark); border-left-color: #fff; color: #fff; }
.yfs-btn--call         { background: var(--orange); color: #fff; }
.yfs-btn--call:hover   { background: var(--orange-dark); border-left-color: #fff; color: #fff; }

.yfs-icon { font-size: 18px; line-height: 1; }
.yfs-label {
  font-size: 8px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .5px; line-height: 1.3; text-align: center;
}

/* ── RESPONSIVE HEADER (nuevo) ───────────────────────────────── */
@media (max-width: 1100px) {
  .hm-cat-select    { display: none; }
  .hm-search-divider { display: none; }
}
@media (max-width: 860px) {
  .hm-search-wrap   { display: none; }
  .header-cat-nav   { display: none; }
  .his-left         { display: none; }
}
@media (max-width: 640px) {
  .yi-float-sidebar  { display: none; }
  .header-info-strip { display: none; }
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 80px; right: 24px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: all var(--t);
}
.wa-float:hover { background: var(--whatsapp-dark); transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,.55); }

/* ── RESPONSIVE FOOTER ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fbrand      { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }
}
