/* ══════════ FOOTER ══════════ */
.site-footer {
  background: #1B2A5B;
  color: rgba(255,255,255,0.75);
  font-family: 'Outfit', sans-serif;
}

/* ── Main footer ── */
.footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* ── Logo column ── */
.footer-col {}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-main {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.footer-logo-main .usa {
  color: white;
}
.footer-logo-main .tronics {
  color: #E31B23;
}
.footer-logo-sub {
  font-size: 8px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
  width: fit-content;
}
.social-link.wa {
  background: #25D366;
  color: white;
}
.social-link.wa:hover {
  background: #1ebb57;
}
.social-link.phone {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}
.social-link.phone:hover {
  background: rgba(255,255,255,0.12);
}

/* ── Titles ── */
.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Links columns ── */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.15s;
  display: block;
  padding: 4px 0;
}
.footer-links li a:hover {
  color: white;
  padding-left: 4px;
}

/* ── Features list ── */
.footer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.feat-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.footer-features li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-features li strong {
  font-size: 13px;
  font-weight: 700;
  color: white;
}
.footer-features li span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* ── Bottom bar ── */
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ══════════ PRODUCT CARDS (home / categoría) ══════════ */
.product-card .product-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card .product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
}

/* Badge ribbon promocional */
.product-image-wrapper {
  position: relative;
}

.promo-ribbon {
  position: absolute;
  top: 18px;
  left: -32px;
  width: 140px;
  transform: rotate(-40deg);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 5px 0;
  z-index: 20;
  letter-spacing: 0.06em;
  line-height: 1.3;
  pointer-events: none;
  text-transform: uppercase;
}

/* Badge imagen PNG */
.promo-badge-img {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 80px;
  height: auto;
  object-fit: contain;
  z-index: 20;
  pointer-events: none;
}