:root{
  --stanley: #FFD20A;
  --ink: #111;
  --topbar-h: 40px;
  --nav-h: 110px;
  --header-h: calc(var(--topbar-h) + var(--nav-h));

  /* Para que todo sea “cuadrado” (sin bordes redondeados tipo pills) */
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
}

html, body{ height: 100%; }

body{
  margin: 0;
  padding-top: var(--header-h);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  overflow-x: clip;
}

.fw-black{ font-weight: 900; }
.btn-squared{ border-radius: 0 !important; }

/* Topbar */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  z-index: 1040;
}
.topbar-link{ opacity: .9; }
.topbar-link:hover{ opacity: 1; text-decoration: underline; }

/* Navbar (fixed debajo del topbar) */
.navbar-stanley{
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--stanley);
  z-index: 1030;
  border-bottom: 1px solid rgba(0,0,0,.12);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-stanley .navbar-brand{ padding: 0; }
.navbar-stanley .nav-logo{ display: block; height: 52px; width: auto; }

.navbar-stanley .nav-link{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #111 !important;
  padding: .65rem .85rem;
}
.navbar-stanley .nav-link:hover{
  background: rgba(0,0,0,.06);
}
.navbar-stanley .nav-link.active{
  background: #000;
  color: #fff !important;
}
.navbar-stanley .btn-cta{
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
  border: 2px solid #000;
}

.navbar-stanley .navbar-toggler{
  border: 2px solid #000;
  border-radius: 0;
  padding: .45rem .55rem;
}
.navbar-stanley .navbar-toggler:focus{
  box-shadow: none;
}

.dropdown-menu{
  border-radius: 0;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: none;
}
.dropdown-item{ font-weight: 700; }

/* Offcanvas */
.offcanvas-stanley{
  background: var(--stanley);
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.offcanvas .list-group-item{
  border-radius: 0;
}
.offcanvas .list-group-item.active{
  background: #000;
  color: #fff;
  border-color: #000;
}
.offcanvas .accordion-button{
  border-radius: 0;
}
.offcanvas .accordion-button:focus{
  box-shadow: none;
}

/* HERO (sin overlay oscuro, sin blur) */
.hero{
  position: relative;
  height: clamp(520px, 86vh, 820px);
  overflow: hidden;
}
.hero-media{
  position: absolute;
  inset: 0;
}
.hero-video,
.hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero-inner{
  position: relative;
  height: 100%;
}

.hero-card{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 38vw, 380px);
  background: var(--stanley);
  padding: 32px 34px;
}

.hero-eyebrow{
  margin: 0 0 .35rem;
  font-weight: 900;
  letter-spacing: .2px;
}

.hero-title{
  margin: 0 0 .6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1;
}

.hero-sub{
  margin: 0 0 1.1rem;
  font-size: 1rem;
}

.hero-card .btn{
  border-width: 2px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .25px;
}

/* Tiles debajo del hero */
.feature-tile{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}
.feature-tile i{
  font-size: 22px;
  width: 28px;
}

/* Cards categorías */
.cat-card{
  display: block;
  text-decoration: none;
  color: inherit;
  border: 2px solid rgba(0,0,0,.12);
  padding: 18px 18px 16px;
  background: #fff;
  height: 100%;
}
.cat-card:hover{
  border-color: #000;
}
.cat-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid #000;
  background: var(--stanley);
  margin-bottom: 12px;
}
.cat-icon i{ font-size: 18px; }
.cat-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .25px;
  margin-bottom: 4px;
}
.cat-sub{
  color: #555;
  margin-bottom: 10px;
}
.cat-cta{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2px;
  color: #000;
}

/* Footer */
.site-footer .footer-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .25px;
  margin-bottom: 10px;
}
.footer-link{
  color: rgba(255,255,255,.75);
  text-decoration: none;
}
.footer-link:hover{ color: #fff; text-decoration: underline; }

.footer-mark{
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--stanley);
  color: #000;
  font-weight: 900;
}

.social-btn{
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  text-decoration: none;
}
.social-btn:hover{
  border-color: var(--stanley);
  color: var(--stanley);
}

.contact-ico{
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.35);
}

/* WhatsApp FAB */
.whatsapp-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(0,0,0,.25);
  z-index: 1050;
}
.whatsapp-fab i{ font-size: 26px; }

/* Responsive */
@media (max-width: 991.98px){
  :root{
    --topbar-h: 0px;
    --nav-h: 86px;
    --header-h: var(--nav-h);
  }
  .topbar{ display: none; }
  .navbar-stanley{ top: 0; }


  .hero{ height: 560px; }
  .hero-card{
    left: 16px;
    right: 16px;
    width: auto;
    top: auto;
    bottom: 18px;
    transform: none;
  }
}

/* =========================================================
   Category banners (Home)
   ========================================================= */
.cat-banners{ align-items: stretch; }

.cat-banner{
  position: relative;
  height: 240px;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

  /* imagen full-bleed (sin borde) */
  border: 0;
  border-radius: 0; /* pon 14px si quieres redondeado */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* separación sutil sin “marco” */
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .18s ease, box-shadow .18s ease;
  isolation: isolate;
}

.cat-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.65) 100%);
}

.cat-banner:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.cat-banner:focus-visible{
  outline: 3px solid var(--stanley);
  outline-offset: 3px;
}

.cat-banner .cat-content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 28px;
  text-align: right;
  color: #fff;
}



.cat-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-end;
  padding:28px;
  text-align:right;
  color:#fff;
}

.cat-title{
  font-size:2rem;
  font-weight:900;
  margin:0;
}

.cat-eyebrow{
  opacity:.9;
  margin:0 0 6px;
}

.cat-cta{
  margin-top:12px;
  font-weight:800;
  text-decoration:underline;
}

.products-wide .container{
  max-width: 1320px; 
}

@media (min-width: 1400px){
  .products-wide .container{
    max-width: 1500px;
  }
}


/* =========================================================
   Feature marquee (4 cards con auto-scroll + pausa en hover)
   ========================================================= */
.feature-head .fw-black{
  letter-spacing: .02em;
}

.feature-marquee{
  --marquee-speed: 26s; /* ajusta velocidad: menor = más rápido */
  overflow: hidden;
  position: relative;
  padding: 2px 0; /* evita que se corte el borde al animar */
  /* suaviza bordes (fade) */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.feature-track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: featureMarquee var(--marquee-speed) linear infinite;
  transform: translate3d(0,0,0);
}

.feature-set{
  display: flex;
  gap: 18px; /* separación entre cards */
  padding-right: 18px; /* separación entre el set 1 y set 2 */
}

.feature-item{
  flex: 0 0 auto;
  width: clamp(240px, 23vw, 280px); /* ancho responsive */
}

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

@keyframes featureMarquee{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-50%,0,0); }
}

@media (prefers-reduced-motion: reduce){
  .feature-track{ animation: none; transform: none; }
  .feature-marquee{
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* =========================================================
   Category banners (Home)
   ========================================================= */
.cat-banners{ align-items: stretch; }

.cat-banner{
  position: relative;
  height: 240px;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 2px solid rgba(0,0,0,.12);
  border-radius: 0; /* todo cuadrado */
  background-size: cover;
  background-position: center;
}

.cat-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  /* gradiente para legibilidad del texto */
  background: linear-gradient(90deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.65) 100%);
}

.cat-banner:hover{ border-color: #000; }

.cat-banner .cat-content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 28px;
  text-align: right;
  color: #fff;
}

.cat-banner .cat-title{
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .25px;
}

.cat-banner .cat-eyebrow{
  opacity: .9;
  margin: 0 0 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18px;
}

.products-wide .container{ max-width: 1320px; }

@media (min-width: 1400px){
  .products-wide .container{ max-width: 1500px; }
}

/* =========================================================
   Support strip (Home)
   ========================================================= */
.support-strip{ background: #fff; }

.support-box{
  border: 2px solid rgba(0,0,0,.12);
  background:
    linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.58)),
    linear-gradient(135deg, rgba(255,210,10,.22) 0%, rgba(0,0,0,0) 55%),
    #111;
  background-size: cover;
  background-position: center;
  padding: clamp(22px, 3vw, 34px);
}

.support-content{
  max-width: 720px;
  color: #fff;
}

.support-eyebrow{
  display: inline-block;
  background: var(--stanley);
  color: #000;
  font-weight: 900;
  padding: 6px 10px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.support-title{
  margin: 0 0 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1.05;
  font-size: clamp(22px, 3vw, 34px);
}

.support-text{
  margin: 0 0 18px;
  opacity: .92;
  font-size: 1rem;
  max-width: 620px;
}

@media (hover: none){
  .feature-marquee{ --marquee-speed: 34s; }
}

/* =========================================================
   INNOVACIÓN & SOSTENIBILIDAD (sección)
   ========================================================= */
.commitment{
  padding: 80px 0;
  background: #fff;
}

.commitment-head{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px;
}

.commitment-head h2{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.commitment-head p{
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.commitment-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 34px;
}

.commitment-card{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.commitment-card h3{
  margin: 14px 0 10px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.commitment-card p{
  margin: 0;
  color: #2f2f2f;
  line-height: 1.6;
}

.commitment-icon{
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: #FFD100; /* Stanley yellow */
}

.commitment-icon svg{
  width: 26px;
  height: 26px;
  fill: #0b0b0b;
}

.commitment-cta{
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Responsive */
@media (max-width: 980px){
  .commitment-grid{ grid-template-columns: 1fr; }
  .commitment{ padding: 64px 0; }
}

/* CTA Stanley (solo para este botón) */
.commitment .btn-stanley-cta{
  background: #FFD20A;          /* amarillo Stanley */
  color: #000000;               /* texto negro */
  border: 2px solid #000000;    /* borde negro */
  border-radius: 0;             /* look “recto” */

  /* Medidas guía CTA */
  font-size: 14px;
  line-height: 45px;
  padding: 0 35px;
  min-width: 200px;
  text-transform: uppercase;
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-weight: 700;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-shadow: none;
  transition: background-color .15s ease, transform .15s ease;
}

/* Hover (imágenes cambiantes / hover) */
.commitment .btn-stanley-cta:hover{
  background: #DBB612; /* hover recomendado en la guía */
  color: #000000;
  transform: translateY(-1px);
}

.commitment .btn-stanley-cta:active{
  transform: translateY(0);
}

.commitment .btn-stanley-cta:focus-visible{
  outline: 3px solid #000000;
  outline-offset: 3px;
}

/* =========================================================
   PRO-CONNECT banner
   ========================================================= */
.proconnect{
  padding: 34px 0;
  background: #f5f5f5; /* como el fondo gris clarito de tu página */
}

/* PRO-CONNECT: que no sea tan largo */
.proconnect-box{
  background: #FFD20A;
  padding: 28px 36px;

  width: min(100%, 980px);  /* <-- AJUSTA: 900px / 980px / 1050px */
  margin: 0 auto;           /* centra el bloque */
}


.proconnect-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}

.proconnect-logo{
  max-width: 260px; /* ajusta según tu logo */
  width: 100%;
  height: auto;
  display: block;
}

.proconnect-text{
  margin: 12px 0 0;
  color: #000;
  line-height: 1.55;
  font-size: 16px;
}

.proconnect-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: #000;
  font-weight: 600;
}

.proconnect-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.proconnect-bullet{
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.proconnect-bullet svg{
  width: 18px;
  height: 18px;
  fill: #000;
}

/* Botón negro (estilo del screenshot) */
.proconnect-btn{
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  padding: 12px 18px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: none;
}

.proconnect-btn:hover{
  filter: brightness(1.08);
  color: #fff;
}

/* Responsive */
@media (max-width: 980px){
  .proconnect-box{ padding: 26px 22px; }
  .proconnect-grid{ grid-template-columns: 1fr; }
  .proconnect-right{ text-align: left; }
}

/* =========================================================
   SOLUCIONES POR USO
   ========================================================= */
.solutions{
  padding: 70px 0;
  background: #fff;
}

.solutions-head{
  margin-bottom: 22px;
}

.solutions-head h2{
  margin: 0;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.solutions-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.solution-card{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  overflow: hidden; /* clave para que la imagen “corte” perfecto */
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.solution-media{
  height: 210px; /* ajusta si quieres más alto */
  background: #111;
}

.solution-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;      /* para que ocupe todo sin deformarse */
  object-position: center;
}

.solution-body{
  padding: 18px 18px 22px;
}

.solution-body h3{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 16px;
}

.solution-body p{
  margin: 0;
  color: #2f2f2f;
  line-height: 1.6;
  font-size: 14.5px;
}

/* Hover sutil (opcional) */
.solution-card:hover{
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

/* Responsive */
@media (max-width: 980px){
  .solutions-grid{ grid-template-columns: 1fr; }
  .solution-media{ height: 220px; }
}

/* =========================================================
   FAQ (Preguntas frecuentes)
   ========================================================= */
.faq{
  padding: 70px 0;
  background: #fff;
}

.faq-wrap{
  max-width: 980px;   /* similar a tu captura */
}

.faq-kicker{
  margin: 0 0 6px;
  color: #FFD20A;
  font-weight: 800;
}

.faq-title{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.faq-list{
  display: grid;
  gap: 16px;
}

.faq-item{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.faq-q{
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  font-weight: 800;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
}

.faq-a{
  padding: 0 18px 18px;
  color: #2f2f2f;
  line-height: 1.6;
  border-top: 1px dashed rgba(0,0,0,.08);
  margin-top: 0;
}

.faq-diamond{
  width: 34px;
  height: 34px;
  background: #FFD20A;
  border: 2px solid #000;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.faq-plus{
  transform: rotate(-45deg);
  font-weight: 900;
  color: #000;
  line-height: 1;
  font-size: 18px;
}

/* cuando está abierto, cambia el + a x */
.faq-item.is-open .faq-plus{
  content: "×";
}

/* accesibilidad */
.faq-q:focus-visible{
  outline: 3px solid #000;
  outline-offset: 3px;
}

/* ===== Catálogo / Detalle ===== */

.btn-stanley{
  background: var(--stanley) !important;
  border: 2px solid #000 !important;
  color: #000 !important;
  border-radius: 0 !important;
}
.btn-stanley[aria-disabled="true"]{
  opacity: .5; pointer-events: none;
}

/* Hero categoría */
/* =========================
   HERO CATEGORÍA (video)
========================= */
.hero-categoria{
  position: relative;
  min-height: 84vh;          /* <-- Sube/baja esto (70-85vh) */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-categoria .hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-categoria .hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);     /* un pelín para evitar bordes */
}

/* Oscurece un poco el video para que el texto se lea */
.hero-categoria::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1;
}

.hero-categoria .hero-overlay{
  position: relative;
  z-index: 2;
}

/* Ajuste en pantallas pequeñas */
@media (max-width: 576px){
  .hero-categoria{ min-height: 60vh; }
}

.hero-box{
  max-width: 920px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  padding: 22px 22px;
}
/* ===== SOLO para HERO CATEGORÍA (no afecta al HOME) ===== */
.hero-categoria .hero-title{
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.0;
}

.hero-categoria .hero-breadcrumb{ color: rgba(255,255,255,.85); margin-bottom: 10px; font-weight: 700; }
.hero-categoria .hero-line{ width: 90px; height: 4px; background: var(--stanley); margin: 12px 0; }
.hero-categoria .hero-text{ color: rgba(255,255,255,.9); max-width: 720px; }


/* Filtros */
.filtros-card{ border: 1px solid rgba(0,0,0,.12); }

/* Card producto */
.producto-card{ border: 1px solid rgba(0,0,0,.12); }

.badge-descuento{
  background: #ff2d2d;
  color: #fff;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
  border-radius: 0;
}
.badge-abs{ position:absolute; top: 10px; left: 10px; }
.badge-abs2{ position:absolute; top: 10px; right: 10px; border-radius:0; font-weight:900; }

/* Detalle */
.producto-galeria{ border: 1px solid rgba(0,0,0,.12); }
.producto-imagen-principal{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.producto-imagen-principal img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.producto-thumbs .thumb-btn{
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  padding: 0;
  width: 62px; height: 62px;
}
.producto-thumbs .thumb-btn img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.tabla-titulo{
  height: 6px;
  width: 100%;
  background: var(--stanley);
  margin-bottom: 14px;
}


/* ===== OVERRIDE TAMAÑO IMÁGENES (PEGAR AL FINAL) ===== */

/* CATÁLOGO: imagen dentro de la card */
/* ===========================
   FIX imágenes con <picture>
   (CATÁLOGO + DETALLE + THUMBS)
   Pegar al FINAL del CSS
=========================== */

/* CATÁLOGO (cards) */
.producto-imgwrap{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  aspect-ratio: 4/3;
  overflow: hidden;

  display: grid;
  place-items: center;

  padding: 18px; /* ajusta: 12 (más grande) / 24 (más margen) */
}

.producto-imgwrap picture{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.producto-imgwrap img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* DETALLE (imagen principal) */
.producto-imagen-principal{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  aspect-ratio: 16/10;
  overflow: hidden;

  display: grid;
  place-items: center;
}

.producto-imagen-principal picture{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.producto-imagen-principal img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 1px;
  display: block;
}

/* THUMBS (miniaturas) */
.producto-thumbs .thumb-btn{
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  padding: 0;
  width: 62px;
  height: 62px;
  overflow: hidden;
}

.producto-thumbs .thumb-btn picture{
  width: 100%;
  height: 100%;
  display: block;
}

.producto-thumbs .thumb-btn img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  display: block;
}


/* =======================
   CATÁLOGO: imagen más grande y centrada
   ======================= */

.producto-imgwrap{
  aspect-ratio: 4/3;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 12px !important;   /* antes 32 (menos padding = imagen más grande) */
  overflow: hidden;
}

.producto-imgwrap img{
  width: auto !important;
  height: auto !important;

  max-width: 94% !important;  /* SUBE/BAJA: 90% - 98% */
  max-height: 94% !important; /* SUBE/BAJA: 90% - 98% */

  object-fit: contain !important;
  padding: 0 !important;
  display: block;
}

/* =========================================================
   SOSTENIBILIDAD (Página)
   ========================================================= */

.sus-hero{ min-height: 62vh; }
.sus-hero-kicker{
  display: inline-block;
  background: var(--stanley);
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.sus-page{ background: #fff; }

.sus-callout{
  border: 2px solid rgba(0,0,0,.12);
  background: rgba(255,210,10,.18);
  padding: 16px 16px;
}
.sus-callout-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .25px;
  margin-bottom: 8px;
}
.sus-list{ padding-left: 18px; }
.sus-list li{ margin: 6px 0; }

.sus-sidecard{
  border: 2px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 18px;
}
.sus-sidecard-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .25px;
  margin-bottom: 12px;
}
.sus-sideitem{
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.sus-sideitem:first-of-type{ border-top: 0; padding-top: 0; }
.sus-dot{
  width: 14px;
  height: 14px;
  background: var(--stanley);
  border: 2px solid #000;
  flex: 0 0 auto;
  margin-top: 3px;
}

.sus-kpis{ background: #fff; }

.sus-kpi{
  background: linear-gradient(180deg, #FFD20A, #FFC906);
  border: 2px solid #000;
  padding: 16px 14px;
  text-align: center;
  height: 100%;
}
.sus-kpi-num{
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1;
}
.sus-kpi-label{
  margin-top: 8px;
  font-weight: 700;
  color: #111;
  font-size: 13.5px;
  line-height: 1.35;
}
.sus-kpi-label small{
  font-weight: 600;
  color: rgba(0,0,0,.65);
}

.sus-kicker{
  display: inline-block;
  padding: 6px 10px;
  background: #000;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.sus-impact{
  border: 2px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 18px;
  height: 100%;
}
.sus-impact-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--stanley);
  border: 2px solid #000;
  font-size: 20px;
  margin-bottom: 12px;
}

.sus-quote{ background: #f1f1f1; }
.sus-quote-box{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-left: 6px solid var(--stanley);
  padding: 20px 18px;
  font-size: 1.05rem;
  color: #222;
}

.sus-cta{
  border: 2px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 22px;
}

/* Reveal SOLO para esta página */
.sus-page [data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.sus-page [data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SOPORTE / SERVICIO - (PEGAR AL FINAL)
   ========================================================= */

/* Hero kicker y acciones */
.sc-kicker{
  display:inline-block;
  background: var(--stanley);
  color:#000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing:.25px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.sc-hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Cards de servicio */
.sc-eyebrow{
  display:inline-block;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.25px;
  background: #000;
  color:#fff;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.sc-card{
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  padding: 18px 18px 20px;
  height:100%;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.sc-ico{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  background: var(--stanley);
  border: 2px solid #000;
  font-size: 20px;
  margin-bottom: 10px;
}

.sc-card-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 15px;
  margin: 0 0 8px;
}

.sc-card-text{
  margin:0;
  color:#2f2f2f;
  line-height:1.6;
  font-size: 14.5px;
}

/* Strip oscuro (garantía) */
.sc-strip{
  background:
    linear-gradient(0deg, rgba(0,0,0,.62), rgba(0,0,0,.62)),
    linear-gradient(135deg, rgba(255,210,10,.20) 0%, rgba(0,0,0,0) 55%),
    #111;
}

.sc-mini{
  border: 1px solid rgba(255,255,255,.18);
  padding: 18px 18px 16px;
  background: rgba(0,0,0,.20);
}

.sc-mini-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.18);
}
.sc-mini-row:last-child{ border-bottom: 0; }

.sc-mini-dot{
  width: 12px; height: 12px;
  background: var(--stanley);
  border: 2px solid #000;
  flex: 0 0 auto;
  margin-top: 3px;
}

/* Contacto */
.sc-contact-card{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.sc-contact-item{
  display:flex;
  gap:12px;
  align-items:center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.sc-contact-item:last-of-type{ border-bottom: 0; }

.sc-contact-ico{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  background: var(--stanley);
  border: 2px solid #000;
  font-size: 18px;
  flex: 0 0 auto;
}

.sc-map{
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.sc-map iframe{
  width: 100%;
  height: 420px;
  display:block;
}

@media (max-width: 991.98px){
  .sc-map iframe{ height: 360px; }
}

/* ===== PRO-CONNECT (botón mini con logo) ===== */
.sc-probtn{
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 6px 10px !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}

.sc-prologo{
  height: 18px !important; 
  width: auto !important;
  max-width: 110px !important; 
  object-fit: contain !important;
  display: block !important;
}

/* =========================================================
   PRO-CONNECT (Página) — limpio y aislado
   ========================================================= */

.pc-hero::before{ background: rgba(0,0,0,.45); }

.pc-page{ background: #fff; }

/* Barra fija (sin sticky raro): JS la fija con clase */
.pc-bar-spacer{ height: 0; }
.pc-bar-spacer.is-on{ height: var(--pc-bar-h, 84px); }

.pc-bar{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pc-bar.is-fixed{
  position: fixed;
  top: var(--pc-top, calc(var(--header-h) + 12px));
  /* left: var(--pc-left, 0px); */
  width: var(--pc-width, 100%);
  z-index: 1025;
}

.pc-left{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.pc-right{
  display:flex;
  gap:10px;
  align-items:flex-end;
  flex-wrap:wrap;
}

.pc-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  cursor:pointer;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.2px;
  font-size:12px;
  line-height:1;
}

.pc-chip input{
  appearance:none;
  width:16px;
  height:16px;
  border:2px solid #000;
  background:#fff;
  display:inline-block;
}

.pc-chip:has(input:checked){
  background: var(--stanley);
  border-color:#000;
}

.pc-chip input:checked{ background:#000; }

.pc-search{
  position: relative;
  display:flex;
  align-items:center;
}

.pc-search i{
  position:absolute;
  left:10px;
  color: rgba(0,0,0,.55);
}

.pc-search input{
  padding: 8px 10px 8px 32px;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  width: min(360px, 70vw);
  outline:none;
}

.pc-search input:focus{
  border-color:#000;
  box-shadow: 0 0 0 3px rgba(255,210,10,.25);
}

.pc-sort{ display:flex; align-items:center; gap:10px; }
.pc-sort-label{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.2px;
  font-size:12px;
  margin:0;
}
.pc-select{ border-radius:0 !important; border:1px solid rgba(0,0,0,.12) !important; }
.pc-clear{ padding: 8px 10px; }

.pc-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin: 14px 0 18px;
}

/* Grid */
.pc-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.pc-card{
  grid-column: span 4;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  overflow:hidden;
}

.pc-thumb{
  aspect-ratio: 16/9;
  background:#f2f2f2;
  overflow:hidden;
}
.pc-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.pc-body{ padding: 14px 14px 16px; }

.pc-badge{
  display:inline-flex;
  align-items:center;
  height:24px;
  padding: 0 10px;
  background: var(--stanley);
  border:2px solid #000;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.2px;
  font-size:12px;
}

.pc-title{
  margin: 10px 0 8px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size:14px;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height: calc(1.25em * 2);
}

.pc-tags{ color:#555; font-size:13px; margin-bottom: 12px; }

.pc-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.pc-actions .btn{ border-width:2px; }

.pc-empty{
  border: 1px dashed rgba(0,0,0,.25);
  padding: 22px;
  text-align:center;
  color:#555;
  background:#fff;
  margin-top: 16px;
}

.pc-pager{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top: 18px;
}

.pc-pager button{
  border:2px solid rgba(0,0,0,.15);
  background:#fff;
  padding: 8px 12px;
  font-weight:900;
  cursor:pointer;
}
.pc-pager button[aria-current="page"]{
  border-color:#000;
  box-shadow: 0 0 0 3px rgba(255,210,10,.25);
}

/* Modal */
.pc-modal{
  width: min(1100px, 92vw);
  border:0;
  padding:0;
  overflow:hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  background:#fff;
}
.pc-modal::backdrop{ background: rgba(0,0,0,.55); }

.pc-close{
  position:absolute;
  top:10px;
  right:10px;
  border:2px solid #000;
  background: var(--stanley);
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:5;
}

.pc-modal-body{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:16px;
  padding:14px;
}

.pc-stage--video{
  position: relative;
  padding-top: 56.25%;
  background:#000;
  overflow:hidden;
}
.pc-stage--video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.pc-sku{ font-weight:800; text-transform:uppercase; color:#444; margin:0; }
.pc-mtitle{ font-weight:900; text-transform:uppercase; letter-spacing:.02em; }
.pc-bullets{ margin:0 0 10px 18px; color:#333; }
.pc-desc{ color:#333; line-height:1.6; }

@media (max-width: 1100px){
  .pc-card{ grid-column: span 6; }
  .pc-modal-body{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .pc-grid{ grid-template-columns: 1fr; }
  .pc-card{ grid-column: auto; }
  .pc-meta{ gap:10px; flex-wrap:wrap; }
}

/* HOME móvil: card más abajo + más video visible */
@media (max-width: 991.98px){
  .hero{ height: 640px; }          /* antes 560px */
  .hero-card{ bottom: 30px; }      /* antes 18px (más abajo) */

  /* un respiro extra entre el hero y la sección siguiente */
  .hero + .py-4.bg-white{
    margin-top: 10px;
  }
}

/* =========================================================
   HOME: HERO CARD entre el video y la sección blanca
   (aplica de laptop -> celular)
   ========================================================= */

@media (max-width: 1399.98px){
  /* deja que la tarjeta “salga” del hero hacia abajo */
  .hero{
    overflow: visible;
    margin-bottom: 270px; /* espacio para que la tarjeta no choque con la sección de abajo */
  }

  /* la tarjeta ya no va a la izquierda: queda centrada abajo del video */
  .hero-card{
    top: auto;
    bottom: -200px;              /* cuánto baja (mientras más negativo, más abajo) */
    left: 50%;
    transform: translateX(-50%);
    width: clamp(320px, 62vw, 620px);
    border: 2px solid #000;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    z-index: 5;
  }
}

/* celular: la card crece, dale más aire */
@media (max-width: 575.98px){
  .hero{
    margin-bottom: 280px;
  }
  .hero-card{
    bottom: -230px;
    width: calc(100% - 32px);
    padding: 26px 22px;
  }
}

/* HOME: card debajo del hero (tablet/laptop) */
@media (min-width: 992px) and (max-width: 1399.98px){
  .hero{
    overflow: visible;
    margin-bottom: 260px;
  }

  .hero .hero-card{
    top: auto;
    bottom: -190px;
    left: 50%;
    transform: translateX(-50%);
    width: min(620px, calc(100% - 64px));
  }
}

/* Macbook / laptop grande (1400px a 1699.98px) */
@media (min-width: 1400px) and (max-width: 1699.98px){
  .hero .hero-card{
    left: -60px;   /* prueba: -40, -60, -80 */
  }
}

/* Desktop grande real (>= 1700px) */
@media (min-width: 1700px){
  .hero .hero-card{
    left: -190px;  /* tu valor fuerte para pantallas enormes */
  }
}

/* Quitar recuadro/plomo del botón hamburguesa (móvil) */
.navbar-stanley .navbar-toggler{
  border: 0 !important;              /* quita el borde */
  background: transparent !important; /* quita el fondo */
  box-shadow: none !important;        /* por si Bootstrap mete sombra */
  outline: none !important;
}

/* estados que suelen dejar “plomo” */
.navbar-stanley .navbar-toggler:focus,
.navbar-stanley .navbar-toggler:focus-visible,
.navbar-stanley .navbar-toggler:active{
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

/* “plomo” al tocar en móvil (Android/Chrome) */
.navbar-stanley .navbar-toggler{
  -webkit-tap-highlight-color: transparent;
}

/* =========================================
   SOSTENIBILIDAD: evitar que el H1 se salga en móvil
   ========================================= */
@media (max-width: 575.98px){
  .sus-hero .hero-box{
    padding: 18px 16px;         /* un poquito menos padding */
  }

  .sus-hero .hero-title{
    font-size: clamp(26px, 9vw, 40px); /* baja el tamaño en móvil */
    line-height: 1.05;
    letter-spacing: .5px;
    overflow-wrap: anywhere;    /* fuerza a partir si es necesario */
    word-break: break-word;
  }

  /* opcional: que el texto no choque */
  .sus-hero .hero-text{
    font-size: 0.95rem;
  }
}

@media (min-width: 479px) and (max-width: 991.98px){
  .cat-banners{
    display:flex;
    flex-wrap:wrap;
  }
  .cat-banners > [class*="col-"]{
    flex:0 0 50%;
    max-width:50%;
  }
  .cat-banners > [class*="col-"]:nth-child(3){
    flex:0 0 100%;
    max-width:100%;
    display:flex;
    justify-content:center;
  }
  .cat-banners > [class*="col-"]:nth-child(3) .cat-banner{
    width: calc(50% - 12px);
  }

  .cat-banners .cat-banner{ background-size: cover; background-color: transparent; }
}


/* CELULAR: banners pegados (llenan todo) */
@media (max-width: 767.98px){
  .cat-banner{
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important; /* no se verá igual porque cover llena */
  }
}

/* WhatsApp FAB en círculo */
.whatsapp-fab{
  border-radius: 999px !important;  /* o 50% */
}

/* PRO-CONNECT: filtros fijos SOLO en móvil + tablet */
@media (max-width: 991.98px){
  /* quita el sistema del JS (spacer) en móvil/tablet */
  .pc-bar-spacer{ display:none !important; }

  

  /* opcional: para que no se sienta gigante */
  .pc-bar{ padding: 10px; }
}

/* ===========================
   FIX DEFINITIVO IMÁGENES (WebP + picture)
   Pegar AL FINAL del CSS
=========================== */

/* CATÁLOGO: todas las cards iguales */
.producto-imgwrap{
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: block !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  background: #fff !important;
}

/* el picture ocupa todo el cuadro */
.producto-imgwrap > picture{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  padding: 18px !important;   /* ajusta: 12 = más grande / 26 = más chico */
  box-sizing: border-box !important;
}

/* la imagen se adapta dentro sin deformarse */
.producto-imgwrap > picture > img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  padding: 0 !important;
}

/* DETALLE: imagen principal controlada */
.producto-imagen-principal{
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  display: block !important;
}

.producto-imagen-principal > picture{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.producto-imagen-principal > picture > img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 14px !important;
  display: block !important;
}

/* THUMBS: miniaturas iguales */
.producto-thumbs .thumb-btn{
  width: 62px !important;
  height: 62px !important;
  overflow: hidden !important;
}

.producto-thumbs .thumb-btn picture{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.producto-thumbs .thumb-btn img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 6px !important;
  display: block !important;
}

/* FAQ: que NUNCA se ponga azul en iOS */
.faq-q,
.faq-q span{
  color: #111 !important;
  text-decoration: none !important;
}

/* estados típicos que iOS/Bootstrap pueden tocar */
.faq-q:visited,
.faq-q:hover,
.faq-q:active,
.faq-q:focus{
  color: #111 !important;
}

/* opcional: quitar “look” nativo raro en iOS */
.faq-q{
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

/* ===== PRODUCTO: Precio + Stock (Opción 3) ===== */
.ps-hero{
  border:2px solid #000;
  background: rgba(255,210,10,.20);
  padding: 14px 14px;
}

.ps-hero-label{
  font-weight:900;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.25px;
  color:#333;
}

.ps-hero-value{
  font-weight:900;
  font-size: 30px;
  line-height: 1.05;
}

.ps-hero-stock{
  margin-top: 8px;
  font-weight:800;
  color:#15803d;
  background: rgba(22,163,74,.08);
  border:1px solid rgba(22,163,74,.25);
  padding: 8px 10px;
}

.ps-hero-stock.is-out{
  color:#b91c1c;
  background: rgba(220,38,38,.10);
  border-color: rgba(220,38,38,.25);
}


/* =========================================
   FOOTER: Brandbar (FERRAMENTA + STANLEY)
   ÚNICO — PEGAR AL FINAL
========================================= */

.site-footer .footer-brandbar{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  width:100%;
}

/* Texto FERRAMENTA */
.site-footer .footer-brandname{
  color:#fff;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  line-height:1;
  margin:0;
}

/* Logo STANLEY */
.site-footer .footer-stanley-logo{
  display:block;
  width:auto;
  object-fit:contain;
  flex:0 0 auto;
}

/* MÓVIL + TABLET: STANLEY a la derecha pero con "aire" (más a la izquierda) */
@media (max-width: 991.98px){
  .site-footer .footer-brandbar{
    flex-wrap: nowrap; 
    justify-content: flex-start;
    padding-right: 100px; /* <-- esto lo separa de la pared derecha */
  }

  /* Empuja el logo al lado derecho */
  .site-footer .footer-stanley-logo{
    margin-left: auto;
    height: 62px;                          /* más grande */
    max-width: min(240px, 52vw);           /* evita que reviente */
  }

  .site-footer .footer-brandname{
    font-size: 18px;
  }
}

/* TABLET: un toque más grande */
@media (min-width: 576px) and (max-width: 991.98px){
  .site-footer .footer-brandname{ font-size: 20px; }

  .site-footer .footer-stanley-logo{
    height: 74px;
    max-width: 300px;
  }
}

/* LAPTOP */
@media (min-width: 992px) and (max-width: 1399.98px){
  .site-footer .footer-brandbar{
    padding-right: 0; 
    gap: 28px;
    flex-wrap: wrap;
  }
  .site-footer .footer-stanley-logo{
    margin-left: 0;
    height: 62px;
    max-width: 240px;
  }
}

/* PC grande */
@media (min-width: 1400px){
  .site-footer .footer-brandbar{ gap: 60px; }
  .site-footer .footer-stanley-logo{ height: 80px; max-width: 240px; }
}

/* Menú móvil */
.offcanvas a,
.mobile-menu a,
.navbar-mobile a {
  color: #444 !important;   /* negro */
  text-decoration: none;
}

.offcanvas .accordion-button:not(.collapsed) {
  background-color: #e4e4e4;
  color: #111;
}

/* =========================================
   MOBILE MENU FIX + FONT SIZE MOBILE
   PEGAR AL FINAL DEL CSS
========================================= */

/* Panel móvil */
#mobileMenu.offcanvas-stanley{
  background: #fff;
  color: #111;
  border-left: 1px solid #e9e9e9;
}

/* Header del offcanvas */
#mobileMenu .offcanvas-header{
  padding: 18px 18px 14px;
  border-bottom: 1px solid #ececec;
}

#mobileMenu .offcanvas-body{
  padding: 18px;
}

/* Botón cerrar */
#mobileMenu .btn-close{
  opacity: 1;
  filter: none;
}

/* Links normales del menú */
#mobileMenu nav > a{
  color: #111 !important;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.2;
  padding: 8px 0;
  letter-spacing: .02em;
}

/* Hover / tap */
#mobileMenu nav > a:hover,
#mobileMenu nav > a:focus{
  color: #000 !important;
}

/* Accordion container */
#mobileMenu .accordion{
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-border-color: #e9e9e9;
}

#mobileMenu .accordion-item{
  border: 1px solid #e9e9e9;
  background: #fff;
}

/* Botón de Productos */
#mobileMenu .accordion-button{
  background: #fff;
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 14px 16px;
}

#mobileMenu .accordion-button:not(.collapsed){
  background: #fff7cc;   /* amarillo suave */
  color: #111;
  box-shadow: none;
}

#mobileMenu .accordion-button:focus{
  box-shadow: none;
  border-color: #e9e9e9;
}

/* Flecha del accordion */
#mobileMenu .accordion-button::after{
  filter: none;
}

/* Subitems */
#mobileMenu .accordion-body{
  padding: 0;
  background: #fff;
}

#mobileMenu .accordion-body a{
  display: block;
  padding: 12px 16px;
  color: #222 !important;
  text-decoration: none;
  font-size: .96rem;
  font-weight: 700;
  border-top: 1px solid #f0f0f0;
}

#mobileMenu .accordion-body a:hover,
#mobileMenu .accordion-body a:focus{
  background: #fff7cc;
  color: #000 !important;
}

/* CTA soporte / garantía */
#mobileMenu .btn.btn-dark{
  background: #111 !important;
  color: #fff !important;
  border: 2px solid #111 !important;
  text-align: center;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 12px 16px;
}

#mobileMenu .btn.btn-dark:hover,
#mobileMenu .btn.btn-dark:focus{
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* =========================
   SOLO CELULAR: letras más pequeñas
========================= */
@media (max-width: 575.98px){
  #mobileMenu nav > a{
    font-size: .94rem;
  }

  #mobileMenu .accordion-button{
    font-size: .94rem;
    padding: 13px 14px;
  }

  #mobileMenu .accordion-body a{
    font-size: .90rem;
    padding: 11px 14px;
  }

  #mobileMenu .btn.btn-dark{
    font-size: .90rem;
    padding: 11px 14px;
  }
}

/* =========================================
   CATEGORY BANNERS - TEXTO MÁS PEQUEÑO
   SOLO TABLET Y CELULAR
   PEGAR AL FINAL DEL CSS
========================================= */

/* TABLET */
@media (min-width: 768px) and (max-width: 991.98px){
  .cat-banner .cat-content{
    padding: 20px !important;
  }

  .cat-banner .cat-eyebrow{
    font-size: 0.95rem !important;
    margin-bottom: 4px !important;
    line-height: 1.1 !important;
  }

  .cat-banner .cat-title{
    font-size: 1.85rem !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
  }
}

/* CELULAR */
@media (max-width: 767.98px){
  .cat-banner .cat-content{
    padding: 16px !important;
  }

  .cat-banner .cat-eyebrow{
    font-size: 0.82rem !important;
    margin-bottom: 4px !important;
    line-height: 1.05 !important;
  }

  .cat-banner .cat-title{
    font-size: 1.45rem !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
  }
}

/* CELULAR PEQUEÑO */
@media (max-width: 479.98px){
  .cat-banner .cat-content{
    padding: 14px !important;
  }

  .cat-banner .cat-eyebrow{
    font-size: 0.74rem !important;
  }

  .cat-banner .cat-title{
    font-size: 1.28rem !important;
    line-height: 0.92 !important;
  }
}