@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: #ebd7d7;
  font-family: "Poppins", sans-serif;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-button-prev::after {
    font-size: 25px;
}

.swiper-button-next::after {
    font-size: 25px;
}

.swiper-button-next{
    color: #ff8fab;
}

.swiper-button-prev{
    color: #ff8fab;
}

.swiper-pagination-bullet {
    background-color: #D3D2D2;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #ff8fab;
    opacity: 1;
}

.menu {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.navbar {
    display: flex;
}

.menu-1 {
    margin-right: 180px;
}

.menu-2 {
    margin-left: 180px;
    display: flex;
    align-items: center;
}

.logo-1 {
    width: 0;
}

.logo-2 {
    width: 150px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social img {
     width: 20px;                   /* Ajusta según necesites */
    height: 20px;                  /* Ajusta según necesites */
    object-fit: contain;
    margin: 0 !important;          /* Anula márgenes previos */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centrado perfecto */
}

.social {
    margin: 0 10px;
    height: 40px;
    width: 40px;
    border: 1px solid #ff8fab;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

.social:hover {
    background-color: #ff8fab;
}




.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #ffffff;
    display: block;
}

.menu .navbar ul li a:hover {
    color: #ff8fab;
}



.menu-icono {
    width: 25px;
}

.menu-label {
    cursor: pointer;
    display: none;
}

.header-content {
    margin-top: 200px;
    padding-bottom: 50px;
}

.slider {
    display: flex;
    align-items: center;
}

.slider-txt {
    margin-left: 85px;
    width: 50%;
}

.slider-txt h1 {
    font-size: 70px;
    color: #0d0d0d;
    text-transform: uppercase;
    font-weight: 800;
}

.slider-txt p {
    font-size: 18px;
    color: #A7A7A7;
}

.botones {
    margin-top: 50px;
}

.btn-1 {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #ff8fab;
    color: #0d0d0d;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 20px;
    border-radius: 50px;
}

.btn-1:hover {
    background-color: #ff8fab;
}

.slider-img {
    width: 50%;
}

.slider-img img {
    margin-right: 225px;
    width: 550px;
}

.products {
    background-color: #ebd7d7;   /*dondo apartado productos tabs*/
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0px;
}

.tabs label {
    width: 15%;
    order: 1;
    display: block;
    padding: 20px 0px;
    text-align: center;
    cursor: pointer;
    color: #A7A7A7;
    font-weight: 700;
    transition: background ease 0.2s;
}

.tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding-top: 25px;
}

.tabs input[type="radio"] {
    display: none;
}
.tabs input[type="radio"]:checked + label {
    border-bottom: 2px solid #ff8fab;
    color: #000000;
}

.tabs input[type="radio"]:checked + label + .tab {
    display: block;
}

.product {
    background-color: #e0c7c7;  
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 0 10px;
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}

.product-img {
    width: 100%; /* usa todo el ancho del contenedor */
    height: 220px; /* o ajusta a tu gusto */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    position: relative;
}


.product-img h4 {
    display: inline-block;
    padding: 5px 7px;
    line-height: 15px;
    color: #ff8fab;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    border: 2px solid #ff8fab;
    border-radius: 10px;
    margin-bottom: 50px;
}
/*controla el tamano de la imagen del producto*/
.product-img img {
  width: 100%;
  max-height: 352px; /*si quieres más grande */
  object-fit: contain;
  transition: transform 0.3s ease;
}   


.product-txt {
    width: 50%;
    margin-left: 10px;
    text-align: left;
}

.product-txt h4 {
    color: #ff8fab;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 5px;
}

.product-txt p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 15px;
}
/*modifica cosas del precio*/
.product-txt span {
    color: #0d0d0d;
    font-size: 18px;
    font-weight: 800;
}

.info {
    padding: 100px 0px;
    display: flex;
    align-items: center;
}

.info-img {
    width: 50%;
}

.info-img img {
    width: 500px;
    height: 400px;
}

.info-txt {
    width: 50%;
}

.info-txt h2 {
    font-size: 75px;
    color: #0d0d0d;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.info-txt p {
    font-size: 18px;
    color: #A7A7A7;
    margin-bottom: 50px;
}

.btn-2 {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ff8fab;
    color: #0d0d0d;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn-2 :hover {
    background-color: #ab1c15;
}

.horario {
    padding: 100px 0px;
    background-color: #ebd7d7;  /*fondo horario*/
}

.horario-info h2 {
    font-size: 75px;
    color: #0d0d0d;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.horario-txt {
    display: flex;
    justify-content: space-between;
}

.txt {
    color: #0d0d0d;
}

.txt h4 {
    font-size: 18px;
    color: #A7A7A7;
    margin-bottom: 30px;
}

.txt p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.map {
    filter:grayscale(100%) invert(92%) contrast(93%);
}

.footer-container {
    padding: 100px 0;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: flex-start; /* Alinea los items al inicio verticalmente */
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
    gap: 50px; /* Espacio entre columnas */
    max-width: 1200px; /* Ancho máximo del footer */
    margin: 0 auto; /* Centra el footer en la página */
    width: 100%;
}

.logo-2 {
    width: 150px; /* Ajusta según necesites */
    height: auto;
    align-self: center; /* Centra el logo verticalmente */
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el contenido de cada columna */
    text-align: center; /* Centra el texto */
    min-width: 150px; /* Ancho mínimo para cada columna */
}

.links h4 {
    color: #0d0d0d;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 18px;
}

.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links ul li {
    margin-bottom: 10px;
}

.links ul li a {
    color: #0d0d0d;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links ul li a:hover {
    color: #cccccc; /* Color al hacer hover */
}

.socials {
    display: flex;
    gap: 15px; /* Espacio entre iconos sociales */
    justify-content: center;
}

.social img {
    width: 20px; /* Tamaño de los iconos sociales */
    height: 30px;
    transition: transform 0.3s ease;
}

.social img:hover {
    transform: scale(1.1); /* Efecto al hacer hover */
}
@media(max-width: 991px) {
    .menu {
        padding: 20px;
        justify-content: space-between;
    }

    .menu-2{
        display: none;
    }

    .logo-1{
        width: 100px;
    }

    .logo-2{
        width: 0;
    }

    .menu-label{
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #181818;
        display: none;
        padding: 15px 20px;
    }

    .menu .navbar ul li {
        width: 100%;
        padding: 15px;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .header-content {
        padding: 30px;
        margin-top: 100px;
    }

    .slider {
        flex-direction: column;
    }

    .slider-txt {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .slider-txt h1 {
        font-size: 50px;
    }

    .slider-txt p {
        font-size: 16px;
    }

    .btn-1 {
        padding: 10px 25px;
        font-size: 14px;
    }

    .slider-img {
        width: 100%;
        text-align: center;
    }

    .slider-img img {
        margin-right: 0px;
        width: 300px;
    }

    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets,.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: -7px;
    }

    .tabs {
        padding: 50px 30px;
    }

    .tabs label {
        width: 33%;
    }

    .info {
        padding: 30px;
        flex-direction: column;
    }

    .info-img img {
        width: 400px;
        height: 200px;
        margin-bottom: 25px;
    }

    .info-txt {
        width: 100%;
        text-align: center;
    }

    .info-txt h2 {
        font-size: 50px;
    }

    .info-txt p {
        font-size: 16px;
    }

    .btn-1 {
        font-size: 16px;
    }

    .horario {
        padding: 30PX;
        text-align: 15px;
    }

    .horario-info h2 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .horario-txt {
        flex-direction: column;
    }

    .socials {
        justify-content: center;
    }

    .social img {
        margin: 8px 0 0 0;
    }

    .footer-container {
        padding: 50px 20px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .links {
        width: 100%;
        margin-bottom: 20px;
    }
    .social img {
        margin: 0 !important; /* Elimina márgenes anteriores */
    }
    
}

/* AÑADE ESTO NUEVO (después del media query grande) */
@media (max-width: 480px) {
    .slider-txt h1 {
        font-size: 28px !important;
    }
    .slider-img img {
        width: 250px !important;
    }
    .btn-1 {
        padding: 8px 20px !important;
    }

    .info-img img {
        width: 100% !important;
        height: auto !important;
    }
}
.cart-section {
    padding: 50px 0;
    color: #fff;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 5px;
}

.cart-item h4 {
    margin: 0;
    font-size: 18px;
}

.cart-item span {
    display: block;
    color: #ff8fab;
    margin-top: 5px;
}

.cart-item button {
    margin-top: 10px;
    background-color: transparent;
    border: 1px solid #ff8fab;
    color: #ff8fab;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.cart-item button:hover {
    background-color: #ff8fab;
    color: white;
}
.cart-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ff8fab;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    z-index: 999;
}

.cart-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.cart-modal.open {
    display: flex;
}

.cart-modal-content {
    background-color: #181818;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    color: white;
    max-height: 80vh;
    overflow-y: auto;
}

.close-cart {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.cart-item {
    display: flex;
    margin-bottom: 15px;
    background-color: #222;
    padding: 10px;
    border-radius: 10px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 5px;
}

.cart-item h4 {
    margin: 0;
}

.cart-item button {
    background: none;
    border: 1px solid #ff8fab;
    color: #ff8fab;
    padding: 4px 10px;
    margin-top: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.cart-item button:hover {
    background-color: #ff8fab;
    color: white;
}
.cart-feedback {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: #ff8fab;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    opacity: 0;
    z-index: 1001;
    transition: opacity 0.3s ease-in-out;
}

.cart-feedback.show {
    opacity: 1;
}
/* Efecto hover de ampliación */
.product-img img {
    transition: transform 0.3s ease;
}

.product-img:hover img {
    transform: scale(1.1);
}
/* Tooltip personalizado */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    background-color: #ff8fab;
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    white-space: nowrap;
    pointer-events: none;
}

.tooltip.show .tooltip-text {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.cart-item button {
    background-color: transparent;
    border: 1px solid #ff8fab;
    color: #ff8fab;
    padding: 5px 10px;
    margin: 5px 5px 5px 0;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-item button:hover {
    background-color: #ff8fab;
    color: white;
}
.clear-cart-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff8fab;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.clear-cart-btn:hover {
    background-color: #ab1c15;
}
.empty-msg {
    color: #ccc;
    text-align: center;
    margin-top: 20px;
    display: none;
    font-style: italic;
}
.product-controls {
    margin-top: 100px; /* O el alto aproximado de tu header */
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
  }
  
  .pagination button {
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ff8fab;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }
  
  .pagination button.active,
  .pagination button:hover {
    background-color: #ff8fab;
    color: white;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas fijas */
    gap: 30px;
    margin-top: 40px;
  }
  
  @media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 productos por fila en móvil */
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 por fila en pantallas pequeñas */
  }
}

.product-grid {
    width: 100%;
  }
  .filtro-barra {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
  }
  
  .filtro-barra input,
  .filtro-barra select {
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid #ff8fab;
    background-color: #111;
    color: white;
    font-size: 16px;
    outline: none;
    min-width: 200px;
    transition: border 0.3s ease;
  }
  
  .filtro-barra input::placeholder {
    color: #999;
  }
  
  .filtro-barra input:focus,
  .filtro-barra select:focus {
    border: 1px solid #ff4c4c;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .filtro-barra {
      flex-direction: column;
      align-items: stretch;
    }
  }
  .menu-toggle {
    display: none;
  }
     
  .menu-toggle {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
  }
/* 🔒 Ocultar checkbox */
.menu-toggle {
    display: none;
  }
  
  /* 🔹 Menú oculto por defecto */
  .navbar {
    display: none;
    flex-direction: column;
    background-color: #181818;
    width: 100%;
    padding: 20px;
  }
  
  /* ✅ Mostrar menú cuando el checkbox esté marcado */
  #menu-toggle:checked ~ .navbar {
    display: flex;
  }
  
  /* 🔸 Estilo del menú-icono */
  .menu-icono {
    width: 30px;
    cursor: pointer;
  }
  
  /* RESPONSIVE */
  @media (min-width: 992px) {
    .menu-toggle,
    .menu-icono {
      display: none;
    }
  
    .navbar {
      display: flex !important;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      background: none;
      padding: 0;
    }
  }
  .menu-icon-wrapper {
    display: inline-block;
    cursor: pointer;
  }
/* LOADER */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .loader-content {
    text-align: center;
    animation: fadeIn 1s ease;
  }
  
  .loader-logo {
    width: 120px;
    animation: rotate 2s linear infinite;
  }
  
  .loader-heart {
    font-size: 2rem;
    display: block;
    margin-top: 10px;
    animation: pulse 1s infinite alternate;
  }
  
  /* Animaciones */
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes pulse {
    from { opacity: 0.3; transform: scale(1); }
    to { opacity: 1; transform: scale(1.2); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
    
  .product .stock {
    color: white;
    font-size: 14px;
    margin-top: 5px;
  }
  
  .btn-1.disabled {
    background-color: gray;
    pointer-events: none;
    cursor: not-allowed;
  }
  
  .btn-finalizar {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff8fab;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 143, 171, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-finalizar:hover {
    background-color: #e86a90;
    box-shadow: 0 6px 20px rgba(255, 143, 171, 0.6);
    transform: scale(1.05);
}
body {
  background-color: #ebd7d7 !important;
}
.form-input, select {
  padding: 10px;
  border: 2px solid #d3c1ec;
  border-radius: 12px;
  width: 60%;
  font-size: 16px;
  margin-top: 5px;
  background: #fff;
  color: #333;
  transition: border 0.3s;
}

.form-input:focus, select:focus {
  outline: none;
  border-color: #b076e2;
  box-shadow: 0 0 0 2px rgba(176, 118, 226, 0.2);
}

/* -----------------------------------------------------
  Ajuste para que los filtros no se superpongan al header
----------------------------------------------------- */
.product-controls.filtro-barra {
  /* Ajusta “100px” al valor que necesites según la altura real de tu header */
  margin-top: 150px;
}

  