* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }
body { font-family: 'Barlow', sans-serif; color: #1a1a2e; background: #fff; }

/* TOP BAR */
.topbar {
  background: #1B3A5C; color: white;
  font-size: 17px; padding: 7px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: #a8c8e8; text-decoration: none; }
.topbar-social { display: flex; gap: 14px; }

/* NAV DESKTOP */
nav {
  background: white;
  border-bottom: 2px solid #D6E6F2;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(27,58,92,0.08);
  min-height: 100px;
}
.logo-wrap {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0; max-width: 60%;
}
.logo-wrap img { height: 105px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-sub {
  font-size: 19px; color: #6B7280; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap;
}
.logo-slogan {
  font-size: 13px; color: #2E5F8A; font-weight: 700;
  font-style: italic; white-space: nowrap; letter-spacing: 0.3px;
}
.nav-links { display: flex; gap: 0; align-items: center; flex-shrink: 0; }
.nav-links a {
  padding: 28px 16px; font-size: 18px; font-weight: 600; color: #1B3A5C;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 3px solid transparent; transition: all 0.2s; display: block;
}
.nav-links a:hover { color: #1B3A5C; background: #D6E6F2; border-bottom-color: #1B3A5C; }
.nav-wsp {
  background: #25D366; color: white !important;
  padding: 13px 22px !important; border-radius: 8px;
  border-bottom: none !important; margin-left: 14px;
  display: flex !important; align-items: center; gap: 8px;
  font-size: 16px !important; font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-wsp:hover { background: #1B3A5C !important; border-bottom: none !important; transform: translateY(-2px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #1B3A5C; border-radius: 2px; }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: white; z-index: 300; flex-direction: column; padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 27px; font-weight: 800; color: #1B3A5C; }
.close-btn { background: none; border: none; font-size: 33px; cursor: pointer; color: #1B3A5C; }
.mobile-link {
  display: block; padding: 18px 0; font-size: 25px; font-weight: 600;
  color: #1B3A5C; text-decoration: none; border-bottom: 1px solid #eef2f7;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
}
.mobile-wsp-btns { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-wsp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: white; text-decoration: none;
  padding: 16px; border-radius: 10px; font-size: 21px; font-weight: 700;
}
.mobile-wsp.suc { background: #2E5F8A; }

/* HERO SLIDER */
.hero-slider { position: relative; width: 100%; aspect-ratio: 1920/500; overflow: hidden; line-height: 0; }
.slides { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); color: #fff; border: none; width: 44px; height: 44px; font-size: 22px; cursor: pointer; z-index: 10; border-radius: 6px; }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }
.slider-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; border: 2px solid rgba(255,255,255,0.7); padding: 0; }
.dot.active { background: #fff; }

/* FLOATING WSP */

.float-wsp-wrap {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 8px;
  flex-direction: column;
}
.float-bubble {
  background: white; color: #111;
  font-size: 20px; font-weight: 700;
  padding: 10px 18px; border-radius: 14px;
  border: 2px solid #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.2);
  position: relative; white-space: nowrap;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.float-bubble::after {
  content: '';
  position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: #25D366;
  border-bottom: 0;
}
.float-bubble::before {
  content: '';
  position: absolute; bottom: -7px; left: 50%;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-color: white;
  border-bottom: 0;
  z-index: 1;
}
@keyframes fadeIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 768px) { .float-bubble { display: none !important; } }
@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    max-width: 100% !important;
  }
  .social-card {
    padding: 16px 10px !important;
    min-width: unset !important;
    width: 100% !important;
  }
  .social-card svg { width: 24px; height: 24px; }
  .social-card .sname { font-size: 14px !important; }
  .social-card .shandle { font-size: 10px !important; word-break: break-word; text-align: center; }
}

.float-wsp {
  position: relative; bottom: auto; right: auto; z-index: 999;
  background: #25D366; color: white;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  text-decoration: none; animation: pulse 2.5s infinite;
}
.float-wsp svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.75); }
}

/* STRIP */
.strip {
  background: #1B3A5C; display: flex; align-items: center;
  justify-content: center; gap: 36px; padding: 14px 40px; flex-wrap: wrap;
}
.strip-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 18px; font-weight: 500; }
.strip-item svg { width: 18px; height: 18px; fill: #a8c8e8; flex-shrink: 0; }

/* SECTIONS */
section { padding: 70px 40px; }
.section-label { font-size: 16px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #2E5F8A; margin-bottom: 8px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 43px; font-weight: 800; color: #1B3A5C; line-height: 1.1; margin-bottom: 12px; text-transform: uppercase; }
.section-sub { font-size: 21px; color: #6B7280; max-width: 520px; line-height: 1.6; margin-bottom: 40px; }

/* SERVICES */
.services { background: #F4F5F6; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.service-card {
  background: white; border-radius: 12px;
  padding: 20px; border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,58,92,0.12); }
.service-img {
  width: 100%; padding: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-img img {
  width: 100%; max-height: 180px;
  object-fit: contain; display: block;
}
.service-card h3 { font-size: 20px; font-weight: 700; color: #1B3A5C; margin-bottom: 8px; }
.service-card p { font-size: 18px; color: #6B7280; line-height: 1.6; }

/* CATALOGO INDIVIDUAL */
.prod-card { cursor: pointer; }
.prod-card.active-cat { border: 3px solid #1B3A5C !important; box-shadow: 0 0 0 4px rgba(27,58,92,0.15) !important; transform: translateY(-4px); }
.cat-panel { display: none; margin-top: 32px; background: #f8fafc; border-radius: 16px; border: 2px solid #D6E6F2; overflow: hidden; }
.cat-panel.visible { display: block; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { opacity:0; transform: translateY(-10px); } to { opacity:1; transform: translateY(0); } }
.cat-panel-header { background: #1B3A5C; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.cat-panel-header h3 { color: white; font-size: 22px; font-weight: 700; }
.cat-cerrar { background: rgba(255,255,255,0.2); color: white; border: none; border-radius: 8px; padding: 8px 18px; cursor: pointer; font-size: 15px; font-weight: 700; }
.cat-cerrar:hover { background: rgba(255,255,255,0.35); }
.cat-panel-body { padding: 28px 24px; }
.item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.item-card { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: white; transition: transform 0.2s; }
.item-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,58,92,0.12); }
.item-card.oculto { display: none; }
.item-card img { width: 100%; height: 140px; object-fit: cover; object-position: center; }
.item-body { padding: 11px; }
.item-name { font-size: 16px; font-weight: 700; color: #1B3A5C; margin-bottom: 4px; }
.item-model { font-size: 13px; color: #6B7280; margin-bottom: 6px; }
.item-desc { font-size: 14px; color: #374151; margin-bottom: 10px; line-height: 1.5; }
.item-price { font-size: 22px; font-weight: 800; color: #1B3A5C; margin-bottom: 8px; }
.item-cat { display: inline-block; background: #D6E6F2; color: #1B3A5C; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.sin-productos { text-align: center; padding: 50px 20px; color: #6B7280; font-size: 17px; }
/* BUSCADOR */
.buscador-wrap { margin: 32px auto 40px; max-width: 640px; position: sticky; top: 104px; z-index: 150; padding: 10px 0; }
.buscador-box { display: flex; align-items: center; background: white; border: 2px solid #D6E6F2; border-radius: 50px; padding: 12px 22px; gap: 12px; box-shadow: 0 6px 24px rgba(27,58,92,0.13); transition: border 0.2s, box-shadow 0.2s; }
.buscador-box:focus-within { border-color: #1B3A5C; box-shadow: 0 6px 28px rgba(27,58,92,0.22); }
.buscador-icon { width: 22px; height: 22px; stroke: #1B3A5C; fill: none; stroke-width: 2.5; flex-shrink: 0; }
.buscador-input { flex: 1; border: none; outline: none; font-size: 16px; color: #1B3A5C; background: transparent; }
.buscador-input::placeholder { color: #9CA3AF; }
.buscador-limpiar { background: #e5e7eb; border: none; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 14px; color: #6B7280; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.buscador-limpiar:hover { background: #1B3A5C; color: white; }
.busqueda-resultados { margin-top: 0; background: #f8fafc; border-radius: 16px; border: 2px solid #D6E6F2; overflow: hidden; margin-bottom: 32px; }
.busqueda-header { background: #1B3A5C; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; color: white; font-weight: 700; font-size: 16px; }
.busqueda-cerrar { background: rgba(255,255,255,0.2); color: white; border: none; border-radius: 8px; padding: 7px 16px; cursor: pointer; font-size: 14px; font-weight: 700; }
.busqueda-cerrar:hover { background: rgba(255,255,255,0.35); }
#busquedaGrid { padding: 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
#busquedaGrid .especial-card { background: #1B3A5C; border-radius: 12px; overflow: hidden; border: 1px solid rgba(168,200,232,0.25); }
#busquedaGrid .especial-card .especial-img { height: 180px; }
#busquedaGrid .especial-card .especial-body { padding: 14px; min-height: auto; display: block; }
#busquedaGrid .especial-card .especial-badge,
#busquedaGrid .especial-card .especial-parte,
#busquedaGrid .especial-card .especial-wsp { display: none; }
#busquedaGrid .especial-card .especial-nombre { font-size: 16px; font-weight: 700; color: white; margin-bottom: 6px; line-height: 1.3; }
#busquedaGrid .especial-card .especial-precio { font-size: 20px; font-weight: 800; color: #F59E0B; margin-bottom: 0; }
/* MODAL PRODUCTO */
.producto-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.75); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.producto-modal.abierto { display: flex; animation: fadeInModal 0.25s ease; }
@keyframes fadeInModal { from { opacity:0; } to { opacity:1; } }
.producto-modal-inner { background: white; border-radius: 20px; overflow: hidden; max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.producto-cerrar { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.55); color: white; border: none; border-radius: 50%; width: 38px; height: 38px; font-size: 20px; cursor: pointer; z-index: 10; line-height: 1; }
.producto-cerrar:hover { background: #1B3A5C; }
.producto-modal-inner > img { width: 100%; height: 280px; object-fit: cover; display: block; }
.producto-modal-body { padding: 28px; }
.producto-modal-cat { display: inline-block; background: #D6E6F2; color: #1B3A5C; font-size: 13px; font-weight: 700; padding: 5px 16px; border-radius: 20px; margin-bottom: 14px; }
.producto-modal-inner h2 { font-size: 28px; font-weight: 800; color: #1B3A5C; margin-bottom: 6px; }
.producto-modal-modelo { color: #6B7280; font-size: 15px; margin-bottom: 12px; }
.producto-modal-desc { font-size: 16px; color: #374151; line-height: 1.7; margin-bottom: 18px; }
.producto-modal-precio { font-size: 34px; font-weight: 900; color: #1B3A5C; margin-bottom: 24px; }
.producto-modal-wsp { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: white; text-decoration: none; padding: 15px 24px; border-radius: 12px; font-size: 18px; font-weight: 700; transition: background 0.2s; }
.producto-modal-wsp:hover { background: #1B3A5C; }
.item-card { cursor: pointer; }

/* ARTICULOS ESPECIALES */
.especiales-section { background: #0f1f35; }
.especiales-section .section-label { color: #a8c8e8; }
.especiales-section .section-title { color: white; }
.especiales-section .section-sub { color: rgba(255,255,255,0.65); }
.especial-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.especial-card { background: #1B3A5C; border-radius: 12px; overflow: hidden; border: 1px solid rgba(168,200,232,0.2); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; display: flex; flex-direction: column; }
.especial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.especial-img { height: 189px; overflow: hidden; background: #0f1f35; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.especial-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.especial-img .sin-img { color: rgba(255,255,255,0.15); font-size: 44px; }
/* flex:1 hace que el cuerpo llene la tarjeta, así el botón de WhatsApp queda SIEMPRE abajo y parejo */
.especial-body { padding: 16px; min-height: 168px; display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.especial-badge { display: inline-block; background: #F59E0B; color: #1B3A5C; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 8px; }
.especial-badge.baja { background: #e53e3e; color: white; }
.especial-nombre { font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; line-height: 1.4; }
.especial-parte { font-size: 12px; color: #a8c8e8; margin-bottom: 8px; }
.especial-precio { font-size: 17px; font-weight: 800; color: #F59E0B; margin-bottom: 10px; }
.especial-wsp { display: flex; align-items: center; justify-content: center; gap: 6px; background: #25D366; color: white; text-decoration: none; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 700; transition: background 0.2s; margin-top: auto; }
.especial-wsp:hover { background: #128C7E; }
@media(max-width:900px){ .especial-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:500px){ .especial-grid { grid-template-columns: repeat(2,1fr); } }
/* PRODUCTS */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prod-card { border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; transition: transform 0.2s; background: white; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,58,92,0.12); }
.prod-img { height: 180px; overflow: hidden; background: #D6E6F2; flex-shrink: 0; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* La franja azul ocupa todo el espacio sobrante de la ficha (sin huecos blancos) y centra el texto */
.prod-body { padding: 0; flex: 1; background: #1B3A5C; display: flex; align-items: center; justify-content: center; }
.prod-body h4 {
  width: 100%;
  font-size: 24px; font-weight: 800; color: white;
  background: transparent; padding: 16px 14px;
  margin: 0;
  text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: center; text-align: center; gap: 8px;
}
.prod-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.prod-tag { background: #D6E6F2; color: #1B3A5C; font-size: 16px; font-weight: 600; padding: 3px 8px; border-radius: 20px; }

/* BRANDS */
.brands { background: #F4F5F6; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.brand-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(27,58,92,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 90px;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(27,58,92,0.12); }
.brand-card img {
  max-width: 100%; max-height: 60px;
  object-fit: contain; display: block;
}
@media (max-width: 768px) {
  .float-bubble { display: none !important; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .brand-card { min-height: 70px; padding: 12px 10px; }
  .brand-card img { max-height: 45px; }
}

/* SUCURSALES */
.branches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.branch-card { background: white; border-radius: 14px; border: 1px solid #e2e8f0; overflow: hidden; }
.branch-header { background: #1B3A5C; padding: 18px 22px; display: flex; align-items: center; gap: 10px; }
.branch-header svg { width: 20px; height: 20px; fill: #a8c8e8; }
.branch-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 25px; font-weight: 700; color: white; }
.branch-body { padding: 20px 22px; }
.branch-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 19px; color: #374151; }
.branch-row svg { width: 18px; height: 18px; fill: #2E5F8A; flex-shrink: 0; margin-top: 2px; }
.wsp-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: white; border-radius: 10px; padding: 14px 18px;
  font-size: 20px; font-weight: 700; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  width: 100%; margin-top: 16px;
}
.wsp-btn:hover { background: #128C7E; transform: translateY(-2px); }
.wsp-btn svg { width: 20px; height: 20px; fill: white; }
.wsp-info { text-align: left; }
.wsp-label { font-size: 16px; opacity: 0.85; display: block; }
.wsp-num { font-size: 21px; font-weight: 800; display: block; }

/* SOCIAL */
.social-section { background: #1B3A5C; text-align: center; }
.social-section .section-title { color: white; }
.social-section .section-label { color: #a8c8e8; }
.social-section .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.social-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 28px 20px; color: white; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.social-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.social-card svg { width: 28px; height: 28px; fill: white; }
.social-card .sname { font-size: 18px; font-weight: 600; }
.social-card .shandle { font-size: 16px; color: rgba(255,255,255,0.6); }

footer { background: #0f2236; color: rgba(255,255,255,0.6); padding: 28px 40px; text-align: center; font-size: 18px; }
footer strong { color: white; }

/* MOBILE */
@media (max-width: 768px) {
  .topbar { display: none; }
  nav { padding: 0 14px; min-height: 70px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo-wrap { max-width: 80%; gap: 10px; }
  .logo-wrap img { height: 50px; }
  .logo-sub { font-size: 16px; white-space: normal; }
  .hero-slider img { width: 100%; height: auto; }
  .strip { display: none; }
  section { padding: 36px 16px; }
  .section-title { font-size: 31px; }
  .services-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  #busquedaGrid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 14px; }
  #busquedaGrid .item-model,
  #busquedaGrid .item-desc,
  #busquedaGrid .item-cat { display: none; }
  #busquedaGrid .item-card img { height: 130px; }
  #busquedaGrid .especial-card .especial-img { height: 130px; }
  .prod-tags { display: none; }
  #busquedaGrid .item-body { padding: 10px; }
  #busquedaGrid .item-name { font-size: 13px; margin-bottom: 4px; }
  #busquedaGrid .item-price { font-size: 16px; margin-bottom: 0; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-pill { font-size: 17px; padding: 10px 6px; }
  .branches-grid { grid-template-columns: 1fr; }
  .social-card { min-width: 100px; padding: 14px 10px; }
  
.float-wsp-wrap {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 8px;
  flex-direction: column;
}
.float-bubble {
  background: white; color: #111;
  font-size: 20px; font-weight: 700;
  padding: 10px 18px; border-radius: 14px;
  border: 2px solid #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.2);
  position: relative; white-space: nowrap;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.float-bubble::after {
  content: '';
  position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: #25D366;
  border-bottom: 0;
}
.float-bubble::before {
  content: '';
  position: absolute; bottom: -7px; left: 50%;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-color: white;
  border-bottom: 0;
  z-index: 1;
}
@keyframes fadeIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 768px) { .float-bubble { display: none !important; } }
@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    max-width: 100% !important;
  }
  .social-card {
    padding: 16px 10px !important;
    min-width: unset !important;
    width: 100% !important;
  }
  .social-card svg { width: 24px; height: 24px; }
  .social-card .sname { font-size: 14px !important; }
  .social-card .shandle { font-size: 10px !important; word-break: break-word; text-align: center; }
}

.float-wsp { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  footer { padding: 20px 16px; }
}