body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;

}

/* TOP BAR */
.topbar {
  background: #ff4d2d;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.topbarverde {
  background: #00594e;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}



/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 10px 50px;
  background: white;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

#search {
  width: 40%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #000;
}

.icons {
  font-size: 18px;
}

/* MENU */
.menu {
  background: #fff;
    font-weight: 700;
    font-size: 14px;
    color: #333333;
}

.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 20px;
  padding: 0px 120px;
}

.menu li {
  position: relative;
  cursor: pointer;
      padding-top: 10px;
    height: 40px;

}

/* MEGA MENU */
/* CONTENEDOR */
.has-mega {
  position: relative;
}

/* MEGA MENU OCULTO */
.mega {
  position: absolute;
  top: 35px;
  left: 0;
  width: 500px;
  background: white;
  padding: 25px;
  display: flex;
  gap: 40px;

  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

  /* 🔥 ANIMACIÓN */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: all 0.35s ease;
}

/* ACTIVO */
.has-mega:hover .mega {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* LINKS */
.mega h4 {
  margin-bottom: 10px;
  font-size: 14px;
}

.mega a {
  display: block;
  margin: 5px 0;
  color: #555;
  transition: 0.2s;
  font-weight: 400;
}

.mega a:hover {
  color: black;
  transform: translateX(5px);
}
.mega {
  opacity: 0;
  transform: translateY(20px);
}

.mega.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* HERO */
.hero {
  height: 400px;
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  color: white;
  text-align: center;
}

.hero button {
  padding: 12px 20px;
  background: #1c3d2b;
  color: white;
  border: none;
  border-radius: 5px;
}

/* CATEGORÍAS */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
}

.cat {
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: 0.3s;
   text-align: center;
     flex-direction: column; /* 🔥 clave */
}
.cat img {
  width: 100px;
  height: 100px;
  object-fit: cover;

  border-radius: 18px;
  border: 1px solid #eee;
  padding: 5px; /* efecto tarjeta */
  background: #fff;

  transition: 0.3s;
}
.cat {

  padding: 10px;
  border-radius: 18px;
}
.cat:hover img {
  transform: scale(1.05);
  border-color: #1c3d2b;
}

.cat span {
  margin-top: 8px; /* separación */
  font-size: 14px;
}

.cat:hover {
  transform: scale(1.05);
}

/* PRODUCTOS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 30px;
  gap: 20px;
}

.product {

  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
}

.price {
  font-weight: bold;
  color: #1c3d2b;
}

.product button {
  width: 50%;
  padding: 10px;
  background: #1c3d2b;
  color: white;
  border: none;
  margin-top: 10px;
  border-radius: 6px;
  height: 45px;
    font-size: 1rem;
    line-height: 1.5rem;
}
}

/* FOOTER */
footer {
  background: #000000;
  color: white;
  padding: 40px;
  display: flex;
  justify-content: space-around;
}

.search-container {
  position: relative;
  width: 50%; /* 🔥 más ancho */
}

/* INPUT */
#search {
  width: 100%;
  padding: 12px 15px 12px 40px; /* espacio para icono */
  border-radius: 10px;
  border: 2px solid #000; /* 🔥 más grueso */
  font-size: 15px;
  transition: all 0.25s ease;
}

/* ICONO */
.icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
}

/* HOVER */
#search:hover {
  border-color: #999;
}

/* FOCUS (🔥 PRO) */
#search:focus {
  outline: none;
  border-color: #1c3d2b;
  box-shadow: 0 0 0 3px rgba(28,61,43,0.15);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FLECHA */
.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 12px;
}

/* ANIMACIÓN AL HOVER */
.has-mega:hover .arrow {
  transform: rotate(90deg);
}
.has-mega:hover .menu-item {
  color: #1c3d2b;
}

/* HAMBURGUESA */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 2px;
}

/* MOBILE MENU */


.mobile-menu.active {
  left: 0;
}

/* LINKS */
.mobile-link {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  cursor: pointer;
  font-weight: bold;
}

/* SUBMENÚ */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.submenu a {
  display: block;
  padding: 8px 0 8px 10px;
  color: #555;
}

/* ABIERTO */
.mobile-item.open .submenu {
  max-height: 200px;
}

/* FLECHA */
.arrow {
  transition: transform 0.3s;
}

.mobile-item.open .arrow {
  transform: rotate(90deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #search {
    width: 60%;
  }
}

/* CONTENEDOR */
.app {
  overflow-x: hidden;
}

/* MENU */


/* CONTENIDO */
.content {
  transition: transform 0.3s ease;
}

/* ACTIVO */
.app.menu-open .mobile-menu {
  transform: translateX(0);
}

.app.menu-open .content {
  transform: translateX(260px); /* empuja */
}

/* BOTÓN CERRAR */
.close-btn {
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 20px;
}

/* HAMBURGUESA */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
}

/* SUBMENU */
.mobile-item.open .submenu {
  max-height: 200px;
}

.arrow {
  transition: 0.3s;
}

.mobile-item.open .arrow {
  transform: rotate(90deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;

  width: 80%;            /* 🔥 responsive */
   /* límite en celulares */

  height: 100%;
  background: white;

  padding: 20px;
  box-sizing: border-box; /* 🔥 CLAVE */

  transform: translateX(-100%);
  transition: 0.3s ease;
  z-index: 1000;
}

.content {
  transition: transform 0.3s;
}

/* 👇 esto activa el menú */
.app.menu-open .mobile-menu {
  transform: translateX(0);
}

.app.menu-open .content {
  transform: translateX(80%);
}
body {
  overflow-x: hidden;
}
/* OCULTO POR DEFECTO (desktop) */
.hamburger {
  display: none;
}

/* SOLO MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
}
@media (max-width: 768px) {
  .header {
    justify-content: space-between;
  }

  .search-container {
    display: none; /* 🔥 opcional, estilo apps reales */
  }
}

.slider {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1s ease;
}

/* ZOOM leve */
.slide.active img {
  transform: scale(1.05);
}

/* TEXTO */
.caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
}

.caption h2 {
  font-size: 32px;
  margin: 0;
}

.caption button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: #1c3d2b;
  color: white;
  cursor: pointer;
}

/* BOTONES */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 22px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* DOTS */
.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}
.slide {
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;

  /* 🔥 clave para parallax */
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
/* altura total menos header */
.slider {
  height: calc(100vh - 110px); /* 🔥 ajusta según tu header */
}
.slides,
.slide,
.slide img {
  height: 100%;
}
.slider {
  height: calc(100dvh - 110px);
}
.menu {
  position: relative;
  z-index: 200;
}

.mega {
  z-index: 300; /* 🔥 más alto que slider */
}
.slider {
  position: relative;
  z-index: 1;
}
.header {
  z-index: 500;
}

.search-box {
  display: flex;
  align-items: center;
  background: #fff;

  border: 1px solid #ccc;          /* gris ligero */
  border-radius: 6px;

  padding: 8px 12px;
  width: 100%;
  max-width: 600px;

  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* sombra ligera */
}

/* INPUT */
.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: #000;
  border-color: #1c3d2b;
  height:30px;
}

/* BOTÓN LUPA */
.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
}

/* hover elegante */
.search-box:hover {
  border-color: #888; /* gris más oscuro */
}
.search-box:focus-within {
  border-color: #1c3d2b;
  box-shadow: 0 0 0 2px rgba(28,61,43,0.1);
}
.search-box button svg {
  color: #555; /* gris elegante */
}
.search-box button svg {
  color: #666;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  padding: 20px;
}

.search-overlay.active {
  display: block;
}

/* HEADER */
.search-header {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #1c3d2b;
  padding-bottom: 10px;
}

.search-header input {
  flex: 1;
  border: none;
  font-size: 18px;
  outline: none;
}

/* TAGS */
.search-tags {
  margin: 15px 0;
}

.tag {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px 12px;
  margin: 5px;
  cursor: pointer;
}

/* RESULTADOS */
.search-results {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
}

/* SIDEBAR */
.filters {
  border-right: 1px solid #eee;
}

/* PRODUCTOS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.product-card {

  padding: 10px;
}

.product-card img {
  width: 100%;
}
.mega {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.mega.active {
  opacity: 1;
  visibility: visible;
}
/* CONTENEDOR */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* CARD */
.product {
 
  padding: 15px;
  border-radius: 8px;
  transition: 0.2s;
}

.product:hover {
  transform: translateY(-5px);
}

/* IMAGEN */
.product img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product img {
    height: 160px;
  }
}

/* MOBILE CHICO */
@media (max-width: 480px) {
  .products {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .products {
    display: flex;
    overflow-x: auto;
    gap: 15px;
  }

  .product {
    min-width: 70%;
  }
}
.products {
  scroll-snap-type: x mandatory;
}

.product {
  scroll-snap-align: start;
}
/* colores */
.colors {
  margin: 8px 0;
}

.color {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 5px;
  border: 1px solid #ccc;
}

/* precio */
.price {
  font-weight: bold;
  margin: 10px 0;
}

/* botón */
.btn-cart {
  width: 100%;
  padding: 10px;
  background: #1c3d2b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn-cart:hover {
  background: #2e5c45;
}
.btn-cart:hover {
  content: "Ver dónde comprar";
}
.btn-cart {
  position: relative;
  overflow: hidden;
}

/* textos */
.btn-cart span {
  display: block;
  transition: 0.3s;
}

/* hover oculto */
.text-hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

/* animación */
.btn-cart:hover .text-default {
  transform: translateY(-100%);
}

.btn-cart:hover .text-hover {
  top: 0;
}
.categories {
  display: flex;
  gap: 15px;
  padding: 15px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

/* ocultar scrollbar */
.categories::-webkit-scrollbar {
  display: none;
}

.cat {
  min-width: 120px;
  flex-shrink: 0;
  text-align: center;
  scroll-snap-align: start;
  cursor: pointer;
}

/* imagen circular */
.cat img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 2px solid #eee;
  transition: 0.3s;
}

/* texto */
.cat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

/* hover */
.cat:hover img {
  border-color: #1c3d2b;
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
  }

  .cat {
    min-width: auto;
  }
}
/* CONTENEDOR */
.categories {
  display: flex;
  gap: 20px;
  padding: 20px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

/* ocultar scrollbar */
.categories::-webkit-scrollbar {
  height: 6px;
}

.categories::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* ITEM */
.cat {
  min-width: 140px;
  flex-shrink: 0;
  text-align: center;
  scroll-snap-align: start;
  cursor: pointer;
}
.cat-wrapper {
  position: relative;
}

.cat-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;

  background: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;

  box-shadow: 0 2px 8px rgba(0,0,0,0.15);

}

.cat-btn.left { left: 5px; }
.cat-btn.right { right: 5px; }
@media (max-width: 768px) {
  .cat-btn {
    display: none;
  }
}
@media (hover: none) {
  .cat-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .categories {
    display: flex;
    gap: 12px;
    padding: 10px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .cat {
    flex: 0 0 38%; /* 🔥 clave */
    scroll-snap-align: start;
  }
}
.categories {
  scroll-padding-left: 10px;
}
.categories {
  padding-left: 15px;
}
.color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
}

.color.active {
  border-color: #1c3d2b;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.mega {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  padding: 30px;
  display: none;

  /* 🔥 GRID REAL */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 999;
}

/* mostrar */
.has-mega:hover .mega {
  display: grid;
}
.mega .col h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1c3d2b;
}

.mega .col a {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
  text-decoration: none;
}

.mega .col a:hover {
  color: #1c3d2b;
}
grid-template-columns: repeat(5, 1fr);
.mega {
  max-height: 500px;
  overflow-y: auto;
}
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 500px;
  background: #fff;
  padding: 30px 40px;

  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 columnas */
  gap: 25px;

  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}

/* Mostrar */
.has-mega:hover .mega {
  opacity: 1;
  visibility: visible;
}

/* Cada columna */
.mega .col {
  display: flex;
  flex-direction: column;
}

/* Títulos */
.mega h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #0f3d2e;
}

/* Links */
.mega a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
  transition: .2s;
}

.mega a:hover {
  color: #0f3d2e;
}
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
.has-mega {
  position: relative;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px;
}

/* GALERÍA */
.gallery {
  display: flex;
  flex-direction: column;
}

.main-img {
  width: 100%;
  border-radius: 10px;
  transition: transform .4s ease;
}

.main-img:hover {
  transform: scale(1.05);
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbs img {
  width: 70px;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: .2s;
}

.thumbs img:hover {
  border-color: #0f3d2e;
}

/* INFO */
.info h1 {
  font-size: 28px;
  margin: 10px 0;
}

.brand {
  font-size: 12px;
  color: #888;
}

.price {
  font-size: 30px;
  margin: 20px 0;
}

/* BENEFICIOS */
.benefits {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* COLORES */
.colors {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.color {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ccc;
}

.color.active {
  border: 2px solid #0f3d2e;
}

/* TALLAS */
.sizes {
  margin-bottom: 20px;
}

.sizes button {
  padding: 8px 12px;
  margin: 5px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.sizes button.active {
  border: 2px solid #0f3d2e;
}

/* BOTÓN */
.btn-buy {
  width: 100%;
  padding: 15px;
  background: #1f3f2e;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 8px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  transition: all .3s ease;
}

.btn-buy .icon {
  transition: transform .3s ease;
}

.btn-buy:hover {
  background: #0f3d2e;
}

.btn-buy:hover .icon {
  transform: translateX(5px);
}
@media(max-width:768px){
  .product-detail{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .main-img{
    max-height: 300px;
    object-fit: contain;
  }
}
.availability {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  margin-top: 25px;
}

.availability h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.stock-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #e0e0e0;
}

.stock-item:first-of-type {
  border-top: none;
}

/* DOTS */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.online {
  background: #0f3d2e;
}

.dot.store {
  background: #2ecc71;
}

/* TEXTO */
.stock-item p {
  font-size: 13px;
  margin: 0;
}

/* NOTA */
.stock-note {
  margin-top: 10px;
  font-size: 12px;
}

.stock-note a {
  color: #0f3d2e;
  text-decoration: none;
  font-weight: bold;
}
.store-map iframe{
  width:100%;
  height:200px;
  border-radius:10px;
  border:none;
  margin-top:10px;
}
.store-info {
  margin-top: 40px;
}

.store-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1f2937;
}

/* CARD */
.store-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f9fafb;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all .3s ease;
}

.store-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICONO */
.store-icon {
  font-size: 28px;
  background: #e5f7ef;
  color: #065f46;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* INFO */
.store-details h4 {
  margin: 0;
  font-size: 16px;
}

.store-details p {
  margin: 3px 0 10px;
  font-size: 14px;
  color: #6b7280;
}

/* BOTONES */
.store-actions {
  display: flex;
  gap: 10px;
}

.btn-map,
.btn-whatsapp {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s ease;
}

/* MAPA */
.btn-map {
  background: #e5e7eb;
  color: #111;
}

.btn-map:hover {
  background: #d1d5db;
}

/* WHATSAPP */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}
.product-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card .btn-cart{
    margin-top:auto; /* empuja el botón hasta abajo */
}
footer{
    background:#000;
    color:white;
    padding:30px 20px;
    text-align:center;
	margin-top: 40px;
	
}

footer a{
    color:white;
}

footer .social-links i{
    font-size:18px;
}