/* Contenedor principal flex */
.content-section .container {
  display: flex;
  gap: 24px;
  padding: 40px 0;
}

/* Sidebar categorías */
.shop-category-menu {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Botones categorías */
.shop-category-menu .btn.cat-menu {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-weight: 600;
  border: 2px solid #222;
  background-color: transparent;
  color: #222;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.shop-category-menu .btn.cat-menu:hover,
.shop-category-menu .btn.cat-menu.active {
  background-color: #222;
  color: #fff;
  border-color: #222;
}

/* Lista productos con 3 por fila */
.shop-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Cada producto: 3 por fila */
.shop-list .product-item {
  flex: 1 1 calc(33.33% - 24px);
  max-width: 360px; /* controla ancho máximo para que no estire mucho */
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  transition: transform 0.2s ease;
  margin: 0 auto; /* centrado horizontal */
}

.shop-list .product-item:hover {
  transform: translateY(-5px);
}

/* Imagen producto */
.shop-list .product-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  align-self: center;
}

/* Nombre producto */
.shop-list .product-item h3.shop-item-name {
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  text-align: center;
}

/* Botón detalles */
.shop-list .product-item .btn {
  margin-top: 12px;
  align-self: center;
  padding: 10px 20px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.shop-list .product-item .btn:hover {
  background-color: #444;
}

/* Responsive para móviles */
@media screen and (max-width: 768px) {
  .content-section .container {
    flex-direction: column;
  }

  .shop-category-menu {
    flex: 1 0 auto;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    margin-bottom: 24px;
  }

  .shop-category-menu .btn.cat-menu {
    flex: 0 0 auto;
    width: auto;
    padding: 10px 16px;
  }

  .shop-list {
    gap: 20px;
  }

  .shop-list .product-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0;
  }

  .shop-list .product-item img {
    width: 100%;
  }
}



/* Banner de ancho completo */
.full-banner-wrapper {
  width: 100vw; /* ancho total del viewport */
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.full-banner-image {
  width: 100%;
  height: 290px; /* ajusta esta altura según lo que desees */
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin-bottom: 16px; /* espacio debajo */
}


/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

footer.footer-wrap {
  background-color: #111 !important;
  color: #fff !important;
  padding: 40px 20px !important;
  text-align: center !important;
  width: 100% !important;
  margin: 0 !important;
  position: relative !important;
}

footer.footer-wrap .w-container {
  max-width: 1140px;
  margin: 0 auto;
}

footer.footer-wrap p {
  margin: 0;
  font-size: 0.9rem;
}

//* Menú hamburguesa visible solo en móviles */
@media screen and (max-width: 768px) {
  .w-nav-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #111;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    z-index: 1001;
    position: relative;
  }

  .w-icon-nav-menu {
    position: relative;
    width: 24px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .w-icon-nav-menu span,
  .w-icon-nav-menu::before,
  .w-icon-nav-menu::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff;
  }

  .w-icon-nav-menu span {
    top: 8px; /* línea central */
  }

  .w-icon-nav-menu::before {
    top: 2px;
  }

  .w-icon-nav-menu::after {
    bottom: 2px;
  }

  .w-nav-menu {
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    background-color: #111;
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .w-nav-menu.w--open {
    display: flex !important;
  }

  .w-nav-menu .w-nav-link {
    color: #fff !important;
    padding: 12px 0;
    border-bottom: 1px solid #444;
    text-align: center;
  }
}

/* En escritorio se oculta el botón hamburguesa */
@media screen and (min-width: 769px) {
  .w-nav-button {
    display: none !important;
  }

  .w-nav-menu {
    display: flex !important;
    position: static;
    background-color: transparent;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }

  .w-nav-link {
    color: #222 !important;
  }
}

.w-icon-nav-menu:before {
  content: none !important;
}






