* {
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: "Hammersmith One", sans-serif;
  font-weight: 400;
  font-style: normal;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #ece7ed;
}

html {
        scroll-behavior: smooth;
}

/* --- HEADER Y NAVEGACIÓN --- */
.encabezado-tienda {
    font-weight: bold;
    background-color: #190f1b;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contenedor-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icono-bolsa {
    width: 30px;
    height: 30px;
    color: #d4d4d4;
}

.nombre-tienda {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d4d4d4;
}

.destacado-2{
    color: #f9a1a9;
}

.menu-hamburguesa {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001;
}

.menu-hamburguesa span {
    width: 25px;
    height: 3px;
    background-color: #d4d4d4;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-hamburguesa.abierto span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-hamburguesa.abierto span:nth-child(2) {
    opacity: 0;
}

.menu-hamburguesa.abierto span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-lateral {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    background-color: rgba(212, 130, 161, 0.6);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border: 1px solid #FF7783;
    box-shadow: -8px 10px 0px rgba(0, 0, 0, 0.23);
    transition: 0.4s ease-in-out;
    z-index: 1000;
    padding-top: 80px;
}

.menu-lateral.activo {
    right: 0;
}

.lista-categorias {
    list-style: none;
    padding: 0 20px;
}

.lista-categorias li {
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.lista-categorias a {
    text-decoration: none;
    color: #000;
    font-size: 1.125rem;
    display: block;
}

/* --- HERO SECTION --- */

.seccion-hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), 
                      url("/css/b524757e89bd791bcbf030759930df9c.jpg");
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80vh;
    text-align: center;
    padding: 0 20px;
    gap: 40px;
    border-bottom: 2px groove black;
}

.titulo-hero {
    width: 100%;
    height: 30px;
    font-size: 2.1875rem;
    margin-bottom: 10px;
    font-weight: 100;
    color: #000;
    text-shadow: -3px 3px 0px rgba(0, 0, 0, 0.23);
}

.subtitulo-hero {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #000;
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    background-color: rgba(212, 130, 161, 0.6);
    border: 1px solid #FF7783;
    padding: 15px;
    border-radius: 3px;
}

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    background-color: #624b61;
    box-shadow: -8px 10px 0px rgba(0, 0, 0, 0.23);
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.btn-hero:hover {
    transform: scale(0.9);
    box-shadow: -3px 4px 0px rgba(0, 0, 0, 0.23);
}

/* --- GRID DE PRODUCTOS --- */

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px; padding: 40px 20px; max-width: 1200px; margin: 0 auto;
}

.titulo-categoria-separador {
    grid-column: 1 / -1;
    font-size: 1.5625rem;
    font-weight: 100;
    border-bottom: 2px solid #190f1b;
    margin-top: 40px;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #190f1b;
}

.tarjeta-producto {
    display: flex;
    flex-direction: column;
}

.contenedor-imagen {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid black;
    margin-bottom: 15px;
    box-shadow: -4px 4px 0px rgba(0, 0, 0, 0.23);
}

.producto-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detalles {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nombre {
    font-size: 1.375rem;
    color: #190f1b;
    text-transform: uppercase;
}

.precio {
    font-size: 1.25rem;
    color: #190f1b;
    font-weight: bold;
}

/* --- ELEMENTOS FLOTANTES Y FOOTER --- */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #25d366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp svg {
    color: white;
    display: block;
}

.whatsapp li {
    list-style: none;
}

.oferta-container {
    width: 100%;
    background-color: #f9a1a9;
    color: white;
    overflow: hidden;
    padding: 10px 0;
    font-family: sans-serif;
    font-weight: bold;
    white-space: nowrap;
}

.oferta-texto {
    display: flex;
    white-space: nowrap;
    animation: desplazar 8s linear infinite;
}

.oferta-texto span {
    padding-right: 50px;
}

@keyframes desplazar { from {

    transform: translateX(0);
}

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

.footer {
    background: #544e58;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links h4 {
    border-bottom: 2px solid #d4d4d4;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #ffc9ce;
}

.footer-links ul li a {
    text-decoration: none;
    color: #d4d4d4;
    margin-bottom: 8px;
    display: block;
    font-size: 1.4375rem;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    transform: scale(1.1);
    color: #f9a1a9;
    border-bottom: 2px solid #ffc9ce;
}

.marca {
    text-align: center;
    padding: 10px;
    background: #222;
    color: #fff;
    font-size: 1.4375rem;
}

#logo-vortex {
    filter: invert(1);
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 600px) {

    .grid-productos {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 15px;
    }

    .nombre {
        font-size: 1.125rem;
    }

    .titulo-hero { font-size: 2rem; 
    }

    .footer-row{
        text-align: center;
        width: 100%;
        flex-direction: column;
        align-items: center;

    }

    .footer-links {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.modal-carrito {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    transition: 0.4s;
    color: #d4d4d4;
}

.modal-carrito.activo {
    right: 0;
}

.contenido-carrito {
    width: 300px;
    height: 100%;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(212, 130, 161, 0.6);
    border-radius: 12px;
    border: 1px solid #f9a1a9;
    float: right;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.header-carrito {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    color: #fff;
}

.header-carrito button{
    color: #d4d4d4;
}

.lista-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 0;
}
.item-carrito {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    position: relative;
}

.btn-eliminar {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
}

.footer-carrito {
    border-top: 2px solid #fff;
    padding-top: 15px;
    text-align: center;
}

.btn-finalizar {
    background: #d4d4d4;
    border-radius: 4px;
    color: #0a0a0a;
    width: 100%;
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    font-size: 0.9375rem;
}

#carrito-count {
    background: #c62828;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    position: absolute;
    top: 0;
    right: 0;
}

.icono-carrito {
    position: absolute;
    color: #d4d4d4;
    right: 60px;
    cursor: pointer;
}

.icono-carrito.palpitando {
    animation: palpitacion 1s infinite;
}

@keyframes palpitacion {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.header-carrito button {
    background: none;
    border: none;
    font-size: 1.5625rem;
}

.maps h2{
    margin: 15px;
    border-bottom: 2px solid black;
}

.modal-type {
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    background-color: rgba(212, 130, 161, 0.6);
    border-radius: 12px;
    border: 1px solid #FF7783;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    font-family: sans-serif;
}

/* From Uiverse.io by david-mohseni */ 
.wrapper {
  display: inline-flex;
  list-style: none;
  height: auto;
  width: 100%;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 5px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: -3px 4px 0px rgba(0, 0, 0, 0.23);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}


.postres {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.350rem;
    
}

.postres h2 {
    border-bottom: 2px solid black;
    width: 100%;
    text-shadow: -3px 3px 0px rgba(0, 0, 0, 0.23);
    
}