html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Golos Text', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Barra superior fluida */
.top-bar {
  background-color: #514c48;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  height: 35px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Contenedor del texto desplazable */
.scroll-text {
  display: flex;
  white-space: nowrap;
  animation: scroll-smooth 25s linear infinite;
}

/* Estilo del texto */
.scroll-text span {
  font-size: 0.9em;
  padding-right: 3rem;
  letter-spacing: 0.5px;
}

/* Animación continua */
@keyframes scroll-smooth {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== ENCABEZADO PRINCIPAL ===== */
header {
  background-color: #fff;
  padding: 15px 50px;
  margin-top: 40px;
}

/* Contenedor general del header */
.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

/* ==== LOGO ==== */
.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.logo img {
  width: 160px;
  /* ajusta según el tamaño del logo */
  height: auto;
  display: block;
  margin: 0 auto;
}

.logo p {
  font-size: 0.9em;
  color: #777;
  margin-top: 20px;
  letter-spacing: 1px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .logo-container {
    position: relative;
    left: 0;
    transform: none;
    text-align: left;
  }

  .logo img {
    width: 130px;
    /* logo más pequeño */
  }

  .logo p {
    font-size: 0.8em;
    margin-left: 5px;
  }
}

/* Iconos a la derecha */
.icons {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  top: 15px;
  /*  bajamos los íconos para alinearlos mejor */
}

.icons img {
  width: 22px;
  height: 22px;
  cursor: pointer;
  transition: transform 0.3s;
}

.icons img:hover {
  transform: scale(1.1);
}

.icons span {
  font-size: 0.9em;
  color: #514c48;
}

/* ==== Carrito lateral (ajustado) ==== */
.carrito-popup {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 400px;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #ccc;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 2000;
  padding: 20px;
  transition: transform 0.35s ease-in-out;
}

.carrito-popup.active {
  transform: translateX(0);
}

/* ==== Contenido del carrito ==== */
.carrito-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.cerrar {
  cursor: pointer;
  font-size: 20px;
}

/* ==== Lista de productos ==== */
.carrito-items {
  flex: 1;
  overflow-y: auto;
  margin-top: 15px;
  padding-right: 5px;
  padding-bottom: 15px;
  /* deja espacio para el botón inferior */
}

.carrito-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* separa contenido e ícono */
  margin-bottom: 15px;
}

.carrito-item img {
  width: 65px;
  height: 65px;
  border-radius: 6px;
  margin-right: 12px;
}

.carrito-item .info {
  flex: 1;
  /* que el texto ocupe todo el espacio posible */
}

.eliminar-item {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  /* espacio adicional para alejar el tacho */
}

.eliminar-item img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.eliminar-item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* ==== Pie del carrito ==== */
.carrito-footer {
  border-top: 1px solid #eee;
  padding-top: 10px;
  text-align: center;
  background-color: #fff;
  position: sticky;
  bottom: 0;
  /* siempre visible sin importar el scroll */
  padding-bottom: 15px;
}

.btn-finalizar {
  width: 100%;
  background-color: black;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-finalizar:hover {
  background-color: #333;
}

/* Scroll estético */
.carrito-items::-webkit-scrollbar {
  width: 6px;
}

.carrito-items::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}


/* ===== Navegación ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 80px;
  /*  deja espacio arriba y a los lados */
  background-color: #fff;
  margin-top: 40px;
  /*  separa del header */
  margin-bottom: 35px;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #b46a39;
}

nav {
  border-bottom: none;
}

/* ====== BOTÓN MENÚ HAMBURGUESA ====== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle img {
  width: 26px;
  height: 26px;
}

/* ====== MENÚ MÓVIL ====== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -70%;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 3000;
  padding: 25px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

body.menu-open {
  overflow: hidden;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.mobile-header img {
  width: 24px;
  height: 24px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
}

/* Enlaces del menú móvil */
.mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-links li {
  margin: 20px 0;
}

.mobile-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.mobile-links a:hover {
  color: #b46a39;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav {
    display: none;
    /* ocultamos el nav desktop */
  }

  .menu-toggle {
    display: block;
  }

  .icons span {
    display: none;
    /* ocultamos texto del carrito */
  }
}

/* === Espaciado extra en versión responsive === */
@media (max-width: 992px) {
  header {
    margin-bottom: 50px;
    /* puedes ajustar según el espacio que necesites */
  }
}

@media (max-width: 600px) {
  header {
    margin-bottom: 70px;
    /* un poco más en pantallas pequeñas */
  }
}

/* === Ocultar el icono de usuario en vista móvil === */
@media (max-width: 992px) {
  .icons a[href*="login"] {
    display: none;
  }
}

/* === Mantener visible el carrito y su texto en responsive === */
@media (max-width: 992px) {
  .icons span {
    display: inline-block;
    font-size: 0.9em;
    color: #514c48;
    position: relative;
    top: 2px;
    /* ajusta si se desalineara con el ícono */
  }

  .icons a[href*="carrito"] img {
    width: 22px;
    height: 22px;
  }
}

/*PANTALLA GIGANTE PROMOCIONAL*/

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #F2E9E2;
  height: 90vh;
  /* Ocupa casi toda la pantalla */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
}

/* Capa de sombreado suave para resaltar el texto */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-top: 250px;
  margin-left: 50px;
}

.btn-banner {
  display: inline-block;
  border: 1px solid #FFFFFF;
  padding: 12px 25px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  margin-top: 25px;
  transition: all 0.3s;
}

.btn-banner:hover {
  background-color: #7a5f50;
  color: #fff;
  border-color: #7a5f50;
}

/* ============================
   COLECCIONES DESTACADAS
============================ */
.featured-collections {
  text-align: center;
  padding: 80px 40px;
  background-color: #fff;
}

.featured-collections h2 {
  font-size: 2em;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.featured-collections p {
  font-size: 1em;
  color: #555;
  margin-bottom: 50px;
}

.featured-collections a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  justify-items: center;
}

.collection-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.collection-card h3 {
  font-size: 1em;
  margin: 15px 0 5px 0;
}

.collection-card p {
  font-size: 0.9em;
  color: #555;
  margin: 0 10px 15px 10px;
}

.btn-small {
  display: inline-block;
  border: 1px solid #000;
  padding: 8px 15px;
  text-decoration: none;
  color: #000;
  font-size: 0.85em;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.btn-small:hover {
  background-color: #000;
  color: #fff;
}

/* ============================
   BANNER INFERIOR (BOSTON BAG)
============================ */
.boston-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boston-text {
  position: absolute;
  top: 85%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
}

/* Botones de navegación */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Puntos de navegación */
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dots span.active {
  background: #fff;
}

/* ============================
   TE SUGERIMOS (AHORA LLAMADO MÁS VENDIDOS)
============================ */
/* === SECCIÓN TE SUGERIMOS (AHORA LLAMADO MÁS VENDIDOS) === */
.sugerencias {
  position: relative;
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.sugerencias h2 {
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-size: clamp(24px, 4vw, 32px);
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.productos {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.producto {
  min-width: 250px;
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.producto:hover {
  transform: translateY(-8px);
}

.producto img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.producto:hover img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nombre {
  margin-top: 12px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.precio {
  font-weight: bold;
  margin: 8px 0;
  font-size: 16px;
  color: #000;
}

/* ==== BOTÓN COMPRAR ==== */
.btn-comprar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.favorito-card:hover .btn-comprar {
  opacity: 1;
}

/* ==== BOTÓN FAVORITO ==== */
.btn-favorito {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-favorito img {
  width: 20px;
  height: 20px;
}

.btn-favorito:hover {
  background-color: #f3f3f3;
}

/* Corazón activo */
.btn-favorito.activo img {
  filter: invert(21%) sepia(98%) saturate(7471%) hue-rotate(356deg) brightness(94%) contrast(110%);
  transform: scale(1.1);
  transition: transform 0.2s ease, filter 0.3s ease;
}

/* === BOTONES DEL CARRUSEL === */
.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  font-size: 24px;
  cursor: pointer;
  padding: 15px 18px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.9;
}

.carousel-btn:hover {
  background: #000;
  color: #fff;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* ============================
   TE SUGERIMOS (AHORA LLAMADO MÁS VENDIDOS)
============================ */
/* === SECCIÓN TE SUGERIMOS (AHORA LLAMADO MÁS VENDIDOS) === */
.sugerencias {
  position: relative;
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.sugerencias h2 {
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-size: clamp(24px, 4vw, 32px);
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.productos {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.producto {
  min-width: 250px;
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.producto:hover {
  transform: translateY(-8px);
}

.producto-img {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
  border-radius: 12px;
}

.producto-img:hover img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.producto img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.producto:hover img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nombre {
  margin-top: 12px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.precio {
  font-weight: bold;
  margin: 8px 0;
  font-size: 16px;
  color: #000;
}

/* ==== BOTÓN COMPRAR ==== */
.btn-comprar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.producto-img:hover .btn-comprar {
  opacity: 1;
}

.favorito-card:hover .btn-comprar {
  opacity: 1;
}

/* ==== BOTÓN FAVORITO ==== */
.btn-favorito {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-favorito img {
  width: 20px;
  height: 20px;
}

.btn-favorito:hover {
  background-color: #f3f3f3;
}

/* Corazón activo */
.btn-favorito.activo img {
  filter: invert(21%) sepia(98%) saturate(7471%) hue-rotate(356deg) brightness(94%) contrast(110%);
  transform: scale(1.1);
}

/* === BOTONES DEL CARRUSEL === */
.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  font-size: 24px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.9;
}

.carousel-btn span,
.carousel-btn {
  transform: translateY(-52%);
}

.carousel-btn:hover {
  background: #000;
  color: #fff;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* ============================
   FORMAS DE COMPRAR
============================ */
.formas-compra {
  padding: 60px 5%;
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
  text-align: center;
}

.formas-compra h2 {
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: clamp(24px, 4vw, 32px);
}

.subtitulo {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.opciones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.opcion {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 30px;
  transition: all 0.3s ease;
}

.opcion:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.opcion img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.opcion h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.opcion p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .sugerencias {
    padding: 40px 3%;
  }

  .producto {
    min-width: 200px;
  }

  .producto img {
    height: 260px;
  }

  .carousel-btn {
    padding: 12px 15px;
    font-size: 20px;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }

  .formas-compra {
    padding: 40px 3%;
  }

  .opciones {
    gap: 20px;
  }

  .opcion {
    padding: 20px;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .producto {
    min-width: 160px;
  }

  .producto img {
    height: 220px;
  }

  .productos {
    gap: 20px;
  }
}

/* === FOOTER === */
.formosa-footer {
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Fondo principal (marrón) */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 40px;
  padding: 60px 10% 20px 10%;
  background-color: #5b514b;
  align-items: start;
}

/* === Enlaces === */
.footer-col a {
  display: block;
  color: #e6e1de;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

/* === Contacto === */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  color: #e6e1de;
}

.contact-info p .icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* === Bloque Formosa (derecha) === */
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
  position: relative;
  top: -20px;
}

.footer-brand .logo img {
  width: 150px;
  height: auto;
}

.footer-brand .social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
  padding-left: 40px;
}

.footer-brand .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: transparent;
  transition: transform 0.3s ease;
}

.footer-brand .social-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-brand .social-icon:hover {
  transform: scale(1.1);
}

/* === Texto inferior === */
.footer-bottom-text {
  background-color: #5b514b;
  text-align: right;
  padding: 15px 195px;
  font-size: 13px;
  color: #e0e0e0;
}

/* === Barra negra === */
.footer-black-bar {
  background-color: #1c1c1c;
  height: 40px;
}

/* === Responsive: hasta 900px === */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    padding: 50px 8%;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    grid-column: span 2;
    top: 0;
  }

  .footer-brand .social-icons {
    justify-content: center;
    padding-right: 0;
  }
}

/* === Responsive: hasta 600px === */
@media (max-width: 600px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding: 40px 5% 20px;
  }

  .footer-col,
  .contact-info,
  .footer-brand {
    width: 100%;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }

  .footer-brand .logo img {
    width: 130px;
  }

  .footer-brand .social-icons {
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .footer-bottom-text {
    text-align: center;
    padding: 15px;
    font-size: 12.5px;
  }
}

/* ====== FOOTER ACCORDION ====== */

/* Ocultamos los botones de título por defecto */
.footer-toggle {
  display: none;
}

/* Enlaces normales (modo desktop) */
.footer-links {
  display: block;
}

/* --- Responsive: modo acordeón --- */
@media (max-width: 768px) {
  .footer-col {
    text-align: left;
  }

  /* Mostramos los botones */
  .footer-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    padding: 10px 0;
    cursor: pointer;
  }

  .footer-toggle .toggle-icon {
    font-size: 1.3em;
    transition: transform 0.3s ease;
  }

  /* Ocultamos los enlaces hasta que se haga clic */
  .footer-links {
    display: none;
    flex-direction: column;
    padding-left: 5px;
    margin-bottom: 10px;
  }

  /* Cuando está activo */
  .footer-col.active .footer-links {
    display: flex;
  }

  .footer-col.active .toggle-icon {
    transform: rotate(45deg);
  }
}

.collection-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Clase que activamos desde JS */
.collection-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Ocultar inicialmente todas las opciones */
.formas-compra .opcion {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Clase que se activa al hacer scroll */
.formas-compra .opcion.show {
    opacity: 1;
    transform: translateY(0);
}
