/* =========================
   FOOTER ESTILO E-COMMERCE
   ========================= */
.footer-main {
  background: #f5f5f5;
  padding: 40px 0 0;
  font-size: 0.95rem;
}

/* ---------- TOP1: ITEMS CON IMAGEN ---------- */
.footer-top1 {
  /*background: #ffffff;*/
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
}

.footer-top1-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-top1-title {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-right: 10px;
}

.footer-top1-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.footer-top1-img {
  max-height: 60px;
  width: auto;
}

/* Título de sección en el footer */
.footer-title {
  position: relative;
  display: inline-block;              /* La línea tendrá el ancho del texto */
  font-family: "NeoSansSTD", sans-serif;
  font-size: 1rem;
  padding-bottom: 6px;                /* espacio para la línea */
  margin-bottom: 8px;
}

/* Línea decorativa debajo del texto (no de toda la col) */
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;                           /* se ajusta al ancho del texto */
  bottom: 0;                          /* justo debajo del h5 */
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-family: 'Open Sans', sans-serif !important;
}

/* Estilo de los enlaces del footer */
.footer-list a {
  text-decoration: none;              /* sin subrayado */
  color: var(--black-color);          /* mismo color que el texto */
}

.footer-list a:hover {
  text-decoration: underline;         /* opcional: subrayado al hover */
  color: var(--primary-color);        /* opcional: color primario al hover */
}


/* Pie inferior */
.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding: 10px 0;
  background: #f5f5f5;
}

.footer-logo-img {
  max-height: 25px;
  width: auto;
}
/* ---------- Layout base footer-bottom (desktop) ---------- */
.footer-bottom .container {
  /* ya viene con d-flex / justify-content-between / flex-wrap desde Bootstrap */
  gap: 10px;
}