/* =============================================
   STEELCOM — Homepage Styles v4.0
   Colores: #C8102E / #1a1a1a
   Tipografía: Barlow Condensed + Inter
   ============================================= */

:root {
  --sc-red:        #C8102E;
  --sc-red-hover:  #a30c26;
  --sc-red-dark:   #870b20;
  --sc-red-light:  #fdeaee;
  --sc-gray-900:   #1a1a1a;
  --sc-gray-700:   #333333;
  --sc-gray-500:   #666666;
  --sc-gray-300:   #dddddd;
  --sc-gray-100:   #f5f5f5;
  --sc-gray-50:    #f9f9f9;
  --sc-white:      #ffffff;
  --sc-font-head:  'Barlow Condensed', 'Oswald', sans-serif;
  --sc-font:       'Inter', 'Roboto', sans-serif;
  --sc-transition: all 0.22s ease;
  --sc-shadow:     0 2px 8px rgba(0,0,0,0.08);
  --sc-shadow-h:   0 6px 20px rgba(200,16,46,0.16);
  --sc-radius:     8px;
  --sc-btn-radius: 4px;
}

/* ============================================
   WOODMART HEADER OVERRIDES
   ============================================ */

/* Ocultar top bar (EUR, Gift cards, Showrooms) */
.whb-top-bar,
.wd-top-bar,
.wd-header-top {
  display: none !important;
}

/* Header principal: fondo blanco con sombra inferior */
.whb-header,
.whb-general-header {
  background: #ffffff !important;
}

.whb-general-header .container,
.whb-general-header .whb-flex-row {
  background: #ffffff !important;
}

/* Quitar el color-scheme-dark del header general */
.whb-general-header.whb-color-dark .wd-nav-main .woodmart-nav-link,
.whb-general-header.whb-color-dark .wd-nav-main .woodmart-nav-link .nav-link-text {
  color: #333333 !important;
}

/* Navegación principal: mayúsculas, peso y espaciado */
#menu-main-navigation .woodmart-nav-link,
.wd-nav-main .woodmart-nav-link {
  font-family: var(--sc-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #333333 !important;
  padding: 0 4px !important;
}

/* Item activo (Inicio) — subrayado rojo */
#menu-main-navigation .current-menu-item > .woodmart-nav-link .nav-link-text,
.wd-nav-main .current-menu-item > .woodmart-nav-link .nav-link-text {
  color: var(--sc-red) !important;
  border-bottom: 2px solid var(--sc-red);
  padding-bottom: 3px;
}

/* Hover en items de navegación */
.wd-nav-main .menu-item:hover > .woodmart-nav-link .nav-link-text {
  color: var(--sc-red) !important;
}

/* Separador fino debajo del header */
.whb-header {
  border-bottom: 1px solid #eeeeee !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
}

/* Search form */
.whb-general-header .searchform .s {
  color: #333333 !important;
  background: #f5f5f5 !important;
  border: 1px solid #dddddd !important;
  border-radius: 4px !important;
}

/* Carrito e íconos del header: color oscuro */
.whb-general-header .wd-tools-element a,
.whb-general-header .wd-tools-icon {
  color: #333333 !important;
}

.whb-general-header .wd-cart-number,
.whb-general-header .wd-tools-count {
  background: var(--sc-red) !important;
  color: #fff !important;
}

/* Altura mínima del header principal */
.whb-general-header .whb-flex-row {
  min-height: 68px;
}

/* ============================================
   GLOBAL BODY
   ============================================ */
body.steelcom-home {
  font-family: var(--sc-font);
  color: var(--sc-gray-900);
  background: var(--sc-white);
}

.steelcom-home .site-content {
  padding: 0 !important;
  margin: 0 !important;
}

.steelcom-home #main {
  padding: 0 !important;
}

.sc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.sc-hero {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
  background: #e5e1dd;
}

.sc-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.sc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.sc-slide.active {
  opacity: 1;
  pointer-events: all;
}

.sc-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Overlay blanco degradé izquierda → transparente */
.sc-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.80) 30%,
    rgba(255,255,255,0.45) 55%,
    rgba(255,255,255,0.08) 75%,
    transparent 100%
  );
  z-index: 1;
}

.sc-slide-content {
  position: absolute;
  left: 72px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 480px;
}

/* "SOLUCIONES PARA TU" — negro */
.sc-hero-title-main {
  font-family: var(--sc-font-head);
  font-size: 44px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.5px;
}

/* "BAÑO" — rojo grande */
.sc-hero-title-accent {
  display: block;
  color: var(--sc-red);
  font-size: 56px;
  font-weight: 900;
  line-height: 0.95;
  margin-top: 0;
  font-family: var(--sc-font-head);
  letter-spacing: -1px;
}

/* Subtítulo: "Calidad · Durabilidad · Diseño" */
.sc-hero-subtitle {
  font-size: 17px;
  color: #444;
  margin: 10px 0 26px;
  font-weight: 400;
  font-family: var(--sc-font);
  letter-spacing: 0.01em;
}

.sc-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sc-red);
  color: #fff !important;
  padding: 13px 30px;
  border-radius: var(--sc-btn-radius);
  font-family: var(--sc-font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: var(--sc-transition);
  letter-spacing: 0.06em;
}

.sc-btn-hero:hover {
  background: var(--sc-red-hover);
  color: #fff !important;
  transform: translateX(4px);
  text-decoration: none !important;
}

/* Dots del slider */
.sc-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.sc-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: 2px solid rgba(0,0,0,0.28);
  cursor: pointer;
  transition: var(--sc-transition);
  padding: 0;
}

.sc-slider-dot.active {
  background: var(--sc-red);
  border-color: var(--sc-red);
  transform: scale(1.2);
}

/* Flechas del slider */
.sc-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.90);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sc-transition);
  color: var(--sc-red);
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
}

.sc-slider-arrow:hover { background: var(--sc-red); color: #fff; }
.sc-slider-arrow.prev { left: 18px; }
.sc-slider-arrow.next { right: 18px; }
.sc-slider-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; }

/* ============================================
   BARRA DE CATEGORÍAS
   Imagen full-height edge-to-edge izquierda
   ============================================ */
.sc-category-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--sc-white);
  margin: 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.sc-cat-item {
  display: flex;
  align-items: stretch;  /* imagen llena el alto */
  height: 88px;
  border-right: 1px solid #e0e0e0;
  text-decoration: none !important;
  transition: background 0.18s;
  overflow: hidden;
  gap: 0;
  padding: 0;
}

.sc-cat-item:last-child { border-right: none; }

.sc-cat-item:hover { background: #f7f7f7; text-decoration: none !important; }
.sc-cat-item:hover .sc-cat-arrow { color: var(--sc-red); transform: translateX(4px); }

/* Imagen: full-height, ancho fijo, sin radio */
.sc-cat-img {
  width: 110px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  flex-shrink: 0;
  display: block;
}

/* Texto de categoría */
.sc-cat-name {
  font-family: var(--sc-font);
  font-size: 13px;
  font-weight: 600;
  color: #333;
  flex: 1;
  padding: 0 10px;
  display: flex;
  align-items: center;
  line-height: 1.3;
}

/* Flecha → */
.sc-cat-arrow {
  font-size: 18px;
  color: #888;
  padding-right: 14px;
  display: flex;
  align-items: center;
  transition: var(--sc-transition);
  flex-shrink: 0;
}

/* ============================================
   TRUST BAR
   ============================================ */
.sc-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
  background: var(--sc-white);
}

.sc-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  border-right: 1px solid #e0e0e0;
}

.sc-trust-item:last-child { border-right: none; }

.sc-trust-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.sc-trust-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--sc-red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-trust-text {
  font-family: var(--sc-font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.sc-trust-text .sc-accent { color: var(--sc-red); }

/* ============================================
   PRODUCTOS DESTACADOS — 16 productos 4 col
   ============================================ */
.sc-featured {
  padding: 36px 0 40px;
  background: var(--sc-white);
}

.sc-section-header { margin-bottom: 24px; }

.sc-section-title {
  font-family: var(--sc-font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sc-gray-900);
  margin: 0 0 7px;
  letter-spacing: 0.02em;
}

.sc-section-title .sc-accent { color: var(--sc-red); }

.sc-title-line {
  width: 40px;
  height: 3px;
  background: var(--sc-red);
  border-radius: 2px;
}

/* Grid: productos (75%) + promo (25%) */
.sc-featured-grid {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 20px;
  align-items: start;
}

/* Grid de 4 columnas para N productos */
.sc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Tarjeta de producto */
.sc-product-card {
  background: var(--sc-white);
  border: 1px solid #eeeeee;
  border-radius: var(--sc-radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.sc-product-card:hover {
  box-shadow: var(--sc-shadow-h);
  transform: translateY(-2px);
}

.sc-product-img-wrap {
  width: 100%;
  height: 150px;
  background: var(--sc-gray-50);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  box-sizing: border-box;
}

.sc-product-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sc-product-card:hover .sc-product-img-wrap img { transform: scale(1.05); }

.sc-product-name {
  font-family: var(--sc-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--sc-gray-900);
  margin: 10px 0 3px;
  line-height: 1.35;
}

.sc-product-sku {
  font-size: 11px;
  color: #999;
  margin-bottom: 8px;
  line-height: 1.4;
}

.sc-product-price {
  font-family: var(--sc-font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--sc-gray-900);
  margin: 0 0 12px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.sc-product-actions {
  display: flex;
  gap: 7px;
  margin-top: auto;
}

.sc-btn-comprar {
  flex: 1;
  background: var(--sc-red);
  color: #fff !important;
  border: none;
  padding: 9px 0;
  border-radius: var(--sc-btn-radius);
  font-family: var(--sc-font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}

.sc-btn-comprar:hover { background: var(--sc-red-hover); color: #fff !important; text-decoration: none !important; }

.sc-btn-cart {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--sc-red);
  background: var(--sc-white);
  border-radius: var(--sc-btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--sc-transition);
  color: var(--sc-red);
  flex-shrink: 0;
  padding: 0;
  text-decoration: none !important;
}

.sc-btn-cart:hover { background: var(--sc-red); color: #fff; border-color: var(--sc-red); }

.sc-btn-cart svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   PROMO CARD — col derecha
   ============================================ */
.sc-promo-block {
  position: sticky;
  top: 80px;
  background-size: cover;
  background-position: center;
  background-color: #111111;
  border-radius: var(--sc-radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 320px;
}

.sc-promo-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.74);
  z-index: 0;
  border-radius: var(--sc-radius);
}

.sc-promo-block > * { position: relative; z-index: 1; }

.sc-promo-header { text-align: center; margin-bottom: 10px; width: 100%; }

.sc-promo-title-main {
  font-family: var(--sc-font-head);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.sc-promo-title-sub {
  font-family: var(--sc-font-head);
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  margin: 2px 0 0;
  text-transform: uppercase;
}

.sc-promo-percent {
  width: 64px;
  height: 64px;
  background: rgba(200,16,46,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sc-font-head);
  font-size: 28px;
  color: #fff;
  font-weight: 900;
  margin: 12px auto;
}

.sc-promo-img { display: none; }

.sc-promo-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}

.sc-promo-benefits li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sc-font);
}

.sc-promo-benefits li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sc-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-btn-ver-ofertas {
  background: var(--sc-red);
  color: #fff !important;
  border: none;
  padding: 11px 20px;
  width: 100%;
  border-radius: var(--sc-btn-radius);
  font-family: var(--sc-font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--sc-transition);
  text-align: center;
  text-decoration: none !important;
  display: block;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  margin-top: auto;
}

.sc-btn-ver-ofertas:hover { background: var(--sc-red-hover); color: #fff !important; text-decoration: none !important; }

/* ============================================
   MARCAS
   ============================================ */
.sc-brands {
  padding: 28px 0;
  background: var(--sc-white);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.sc-brands-title {
  text-align: center;
  font-family: var(--sc-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-gray-500);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.sc-brands-title::before,
.sc-brands-title::after {
  content: '';
  display: block;
  height: 2px;
  width: 60px;
  background: var(--sc-red);
  border-radius: 2px;
  flex-shrink: 0;
}

.sc-brands-title .sc-accent { color: var(--sc-red); }

.sc-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.sc-brand-sep {
  color: #bbbbbb;
  font-size: 18px;
  user-select: none;
  flex-shrink: 0;
  margin: 0 4px;
}

.sc-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  text-decoration: none !important;
  transition: var(--sc-transition);
}

.sc-brand-name {
  font-family: var(--sc-font-head);
  font-size: 22px;
  font-weight: 800;
  color: #aaaaaa;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  line-height: 1;
  white-space: nowrap;
}

.sc-brand-name.helvex {
  background: var(--sc-red);
  color: #fff;
  padding: 5px 13px;
  border-radius: 4px;
  font-size: 17px;
  letter-spacing: 0.10em;
  transition: background 0.2s;
}

.sc-brand-name.ferrato {
  font-style: italic;
  text-transform: none;
  font-size: 20px;
}

.sc-brand-name.fv {
  font-style: italic;
  font-size: 28px;
  font-weight: 900;
}

.sc-brand-item:hover .sc-brand-name { color: var(--sc-red); }
.sc-brand-item:hover .sc-brand-name.helvex { background: var(--sc-red-hover); color: #fff; }

/* ============================================
   FOOTER CUSTOM — 4 columnas
   Logo primero (col 1) en referencia imagen
   ============================================ */
.sc-bottom-bar {
  background: #f3f3f3;
  border-top: 1px solid #e0e0e0;
  padding: 44px 0 36px;
}

.sc-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.sc-bottom-block-title {
  font-family: var(--sc-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--sc-gray-900);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sc-bottom-block-title .sc-accent { color: var(--sc-red); }

/* Columna 4 del footer: logo + tagline */
.sc-bottom-block--logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Logo STEELCOM en footer */
.sc-bottom-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sc-bottom-logo-wrap::before,
.sc-bottom-logo-wrap::after {
  content: '';
  display: block;
  height: 2px;
  flex: 1;
  background: var(--sc-red);
  border-radius: 2px;
}

.sc-bottom-logo {
  font-family: var(--sc-font-head);
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.5px;
}

/* STEEL = rojo, COM = gris oscuro (igual que en el header) */
.sc-logo-steel { color: var(--sc-red); }
.sc-logo-com   { color: var(--sc-gray-900); }

.sc-logo-line {
  height: 2px;
  width: 40px;
  background: var(--sc-red);
  border-radius: 2px;
  margin: 10px 0;
  display: none; /* reemplazado por el wrap de arriba */
}

.sc-bottom-tagline {
  font-family: var(--sc-font);
  font-size: 13px;
  color: var(--sc-gray-500);
  line-height: 1.6;
}

/* Ícono círculo rojo (asesoría) */
.sc-bottom-icon-circle {
  width: 52px;
  height: 52px;
  background: var(--sc-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.sc-bottom-icon-circle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-bottom-text {
  font-family: var(--sc-font);
  font-size: 13px;
  color: var(--sc-gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.sc-btn-outline {
  display: inline-block;
  border: 2px solid var(--sc-red);
  color: var(--sc-red) !important;
  background: transparent;
  padding: 9px 20px;
  border-radius: var(--sc-btn-radius);
  font-family: var(--sc-font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--sc-transition);
  text-decoration: none !important;
  letter-spacing: 0.04em;
}

.sc-btn-outline:hover { background: var(--sc-red); color: #fff !important; text-decoration: none !important; }

/* Visítanos */
.sc-visit-info { display: flex; flex-direction: column; gap: 8px; }

.sc-visit-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--sc-font);
  font-size: 13px;
  color: var(--sc-gray-500);
  line-height: 1.5;
}

.sc-visit-row svg { width: 15px; height: 15px; fill: var(--sc-red); flex-shrink: 0; margin-top: 2px; }

/* Redes sociales */
.sc-social-icons { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 4px; }

.sc-social-icon {
  width: 36px;
  height: 36px;
  background: var(--sc-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sc-transition);
  text-decoration: none !important;
}

.sc-social-icon:hover { background: var(--sc-red-hover); transform: scale(1.12); }
.sc-social-icon svg { width: 17px; height: 17px; fill: white; }

/* ============================================
   PRECIO: símbolo S/ más pequeño
   ============================================ */
.sc-price-currency {
  font-size: 14px;
  font-weight: 700;
  margin-right: 2px;
  vertical-align: super;
  line-height: 1;
}

/* Grid 4 columnas en featured (desktop) */
@media (min-width: 769px) {
  .sc-products-grid--featured {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ============================================
   FOOTER BOTTOM (barra oscura)
   ============================================ */
.sc-footer-bottom {
  background: #1a1a1a;
  color: #ffffff;
  padding: 14px 24px;
}

.sc-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.sc-footer-copy {
  font-family: var(--sc-font);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.sc-payment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-pay-badge {
  background: #ffffff;
  color: #1a1a1a;
  font-family: var(--sc-font);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

.sc-pay-badge--yape { background: #6B21A8; color: #fff; }
.sc-pay-badge--plin { background: #16A34A; color: #fff; }

/* ============================================
   OCULTAR WOODMART FOOTER
   ============================================ */
body.steelcom-home-page .wd-prefooter,
body.steelcom-home-page .wd-footer,
body.steelcom-home-page .footer-container,
body.steelcom-home-page .site-footer {
  display: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .sc-products-grid { grid-template-columns: repeat(3, 1fr); }
  .sc-featured-grid { grid-template-columns: 1fr 250px; }
}

@media (max-width: 1024px) {
  .sc-featured-grid { grid-template-columns: 1fr; }
  .sc-promo-block { display: none; }
  .sc-products-grid { grid-template-columns: repeat(4, 1fr); }
  .sc-bottom-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-brand-item { padding: 0 16px; }
}

@media (max-width: 768px) {
  .sc-hero { height: 300px; }
  .sc-hero-title-main { font-size: 30px; }
  .sc-hero-title-accent { font-size: 40px; }
  .sc-hero-subtitle { font-size: 14px; margin: 8px 0 18px; }
  .sc-btn-hero { padding: 11px 20px; font-size: 13px; }
  .sc-slide-content { left: 20px; max-width: 82%; }

  .sc-category-bar {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    -webkit-overflow-scrolling: touch;
  }
  .sc-cat-item { height: 75px; }
  .sc-cat-img { width: 90px; }
  .sc-cat-name { font-size: 12px; padding: 0 8px; }

  .sc-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .sc-products-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-bottom-grid { grid-template-columns: 1fr; }
  .sc-brands-row { gap: 4px; }
  .sc-brand-item { padding: 0 12px; }
  .sc-brand-name { font-size: 17px; }
}

@media (max-width: 480px) {
  .sc-category-bar { grid-template-columns: repeat(3, minmax(130px, 1fr)); }
  .sc-products-grid { grid-template-columns: repeat(2, 1fr); }
}
