*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    padding: 0;
    margin: 0;
}
html {
    height: 100%;
}
header{
    text-align: center;
}

/* mensaje superior para escribir a whatsapp */
.wsp{
    display: block;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    color: black;
    gap: 10px; 
    margin-bottom: 5px;
    text-align: center;
    background-color: #F7F7F7;
}
.wsp:hover{
    background-color: #d5d8da;
}
.wsp:hover .flecha{
    transform: translateX(5px);
}
.flecha{
    padding: 0 0 0 10px;
    transition: transform 0.3s ease;
    text-align: right;
}
/* Tamaño con bordes redondeados*/
.contenedor{
    max-width: 1400px;
    margin: auto;           /* espacio arriba y centrado */
    padding: 0 0px;
    border-radius: 15px;
    padding-left: 0;
}
.bloque-central-header {
    overflow: hidden;
    background-color: #000;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.bloque-central-carrusel{
    overflow: hidden;
    padding-left: 0;
    margin: 10px auto;
}
.titulo {
    display: flex;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-family: "Outfit", sans-serif;
    font-weight: 400px;
    font-style: normal;
    font-optical-sizing: auto;
    transition: transform 0.3s ease;
    letter-spacing: 2px;
}
.navbar-principal{
    margin-bottom: 15px;
}
.navbar{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
    padding: 0 !important;
}
.nav-section{
    flex: 1;
    display: flex;
    align-items: center;
}
/* POSICIONES DE LA NAVBAR */
.izq{
    justify-content: flex-start;
    padding-left: 100px;
}

.cent{
    justify-content: center;
}

.der{
    justify-content: flex-end;
    gap: 25px;
    padding-right: 100px;
}
.der i{
    font-size: 20px;
    color: white;
}
.hamburguesa {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
/* RECURSOS DE LA NAVBAR*/

.izq img{
    object-fit:cover;
    height: 80px;
    padding-top: 20px;
    transition: transform 0.3s ease;
}
.izq i{
    transition: transform 0.3s ease;
}
.logo img:hover{
    transform: scale(1.2);
}
.hamburguesa i:hover{
    transform: scale(1.2);
}
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding-bottom: 0px;
}
.menu a {
    color: rgba(255, 237, 237, 0.938);
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
}
.menu .activo{
    color: white;
    text-decoration: underline;
}
.menu a:hover{
    color: white;
    text-decoration: underline;
}
/* ANIMACION BOTONES DE LA NAVBAR*/

.cent a:hover{
    color: white;
    transform: scale(1.2);
}
.der a:hover{
    transform: scale(1.2);
}
.usuario{
    transition: transform 0.3s ease;
}
.carrito{
    transition: transform 0.3s ease;
}
.carrito i{
    font-size: 24px;
}
/* Menú lateral oculto por defecto */

.menu-lateral {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100dvh;
    background-color: #111;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001; /* Más alto que el overlay */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Esto empuja los íconos hacia abajo */
}
.redes-sociales{
    position: sticky;
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.redes-sociales a i {
    display: flex;
    font-size: 20px;
    color: white;
    transition: transform 0.2s ease;
    line-height: 1;
}
.redes-sociales a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    text-decoration: none;
    padding: 0;
}

.redes-sociales a:hover i {
    transform: scale(1.2);
    color: #25D366; /* Por ejemplo, verde para WhatsApp. Cambia según red */
}

.menu-lateral.abierto {
    transform: translateX(0);
}
.contenido-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
    margin-top: 30px;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000; /* Debajo del menú lateral */
}
.menu-overlay.activo {
    opacity: 1;
    visibility: visible;
}

/* Enlaces dentro del menú */
.menu-lateral .secciones-menu a{
    padding-left: 20px;
}
.secciones-menu a {
    display: block;
    padding: 15px 0;
    color: #ffff;
    text-decoration: none;
    font-size: 1.2rem;
}
.secciones-menu a:hover{
    background-color: #1b1b1b;
}

/* Opcional: cerrar el menú si se hace clic fuera */
.menu-lateral::before {
    content: '';
    display: none;
}


/* BOTON DE WHATSAPP */
.btn-wsp{
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #0df053;
    color: #ffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}
.btn-wsp:hover{
    text-decoration: none;
    color: #0df053;
    background: #ffff;
}

/* ----------ALTURA DEL CARRUSEL---------- */
.carousel img{
    height: 700px;     
    object-fit:contain;       /* para que no se deforme */
    display: block;        
    width: 100%;
}
.bloque-central-carrusel{
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

/* ----------CARRUSEL DE NAVEGACION---------- */

.titulo-navegacion{
    font-family: 'Poppins', sans-serif;
    margin-top: 4rem;
    font-size: 1.8rem;
    gap: 3rem;
    letter-spacing: 1px;
}
.titulo-navegacion::after{
    content: "";
    display: block;
    width: 150px;             /* Ancho de la línea */
    height: 1.5px;             /* Grosor de la línea */
    background-color: #c9aa63; /* Color dorado suave */
    margin: 0 auto;
    margin-top: 10px;
}
.contenedor-nav {
    max-width: 1400px;
    padding: 30px 0;
    padding-left: 0;
    align-items: center;
}

.tarjeta-categoria {
    border-radius: 8px;
    background-color: #ffff;
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    text-align: center;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: 1px solid #d7d7d7;
    transition: border 0.8s ease;
}
.tarjeta-categoria:hover{
    border: 1px solid #c9aa63;
}
.contenedor-imagen {
    width: 100%;
    height: 220px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background-color: #000;/* color de fondo si la imagen no carga */
}
.contenedor-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tarjeta-categoria p {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    text-align: center;
    align-items: center;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.contenedor-nav .swiper-pagination-bullet{
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #5372F0;
}
.contenedor-nav .swiper-pagination-bullet-active{
    opacity: 1;
}
.contenedor-nav .swiper-slide-button{
    color: #5372F0;
    margin-top: -35px;
}
body {
    background-color: #F7F7F7;
}

/* HORARIOS*/
.horarios{
    margin-top: 60px;
    background-color: #ffff;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
}
.imagen-hora img{
    height: 90px;
    padding-top: 10px;
    object-fit: contain;
    padding-right: 20px;
}
.horas-derecha{
    padding-left: 250px;
}
.horas-derecha h2{
    font-size: 21px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.horas-derecha h3{
    font-size: 18px;
}
/* ----------INFORMACION SOBRE LA EMPRESA---------- */
.contenedor-sobre-nosotros{
    text-align: center;
}
.contenedor-sobre-nosotros p{
    font-size: 20px;
    margin: 0 100px;
    font-weight: 400;
    margin: 50px 0;
}


/* ASESORIA PROFESIONAL */

.asesoria-profesional{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    gap: 2rem;
    margin: 100px 3.5rem;
    padding: 1.3rem 1.3rem;
    font-family: "Outfit", sans-serif;
    background-color: #ffff;
    border-radius: 15px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
}
.texto-asesoria{
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
    padding: 0 40px 0 40px;
}
.texto-asesoria h2{
    font-size: 35px;
    padding-bottom: 20px;
}
.texto-asesoria p{
    font-size: 20px;
    padding-bottom: 10px;
}
.imagen-asesoria{
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    flex: 1;
}
.texto-asesoria button {
    background-color: #2e86de;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.texto-asesoria button:hover {
    background-color: #1c66b0;
}

/* ----------TRABAJOS REALIZADOS---------- */
.contenedor-proyectos{
    margin-top: 100px;
    text-align: center;
    margin-bottom: 50px;
}
.contenedor-realizados{
    margin: 30px;
}
.titulo-seccion{
    font-family: 'Poppins', sans-serif;
    margin-top: 4rem;
    font-size: 1.8rem;
    gap: 3rem;
    letter-spacing: 1px;
}
.fila-proyectos{
    margin-bottom: 55px;
}
.titulo-seccion::after{
    content: "";
    display: block;
    width: 150px;       
    height: 1.5px;             
    background-color: #c9aa63; 
    margin: 0 auto;
    margin-top: 10px;
}
.tarjeta-proyectos{
    width: 100%;
    height: 420px;

    overflow: hidden;
    background-color: #000;
}
.tarjeta-proyectos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ------------UBICACION ----------------*/
.ubicacion{
    text-align: center;
    margin: 100px 0 50px 0;
}
.mapa{
    margin: 30px 0;
}

/* ---------- PAGINA DE SOFAS ---------- */
.inicio-sofa{
    margin: 30px 0 30px 80px;
    float: left;
    font-size: 15px;
}
.inicio-sofa a{
    color: black;
    text-decoration: none;
    font-size: 13px;
}
.select-order{
    margin: 20px 80px 20px 0;
    float: right;
    padding: 10px;
    border: 0;
    outline: 0;
    box-shadow: none;
    background-color: transparent;
    cursor: pointer;
}
.pagina-actual a,span{
    font-weight: lighter;
}
.product-box {
    background-color: #ffff;
    margin-bottom: 40px;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
    position: relative;
    height: 100%;
    display: block;
    text-align: left;
    font-size: 17px;
    border: 1px solid #d7d7d7;
}
.nombre-producto{
    text-align: left;
    text-transform: uppercase;
    padding-top: 10px;
    font-size: 16px;
}
.product-text{
    padding-left: 10px;
}
.product-box:hover {
    transform: scale(1.03);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
}
.product-box:hover h3{
    text-decoration: underline;
}

.hiden-oferta {
    background-color: red;
    color: white;
    padding: 2px 6px;
    font-size: 0.8rem;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 5px;
    z-index: 2;
}
.text-center {
    text-align: center;
}
#btnMostrarMas{
    padding: 10px 30px;
    border-radius: 50px;
    transition: transform 0.2s ease-in-out;
    background-color: #ffff;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}
#btnMostrarMas:hover{
    transform:  scale(1.05);
}
.img-producto {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.precio del{
    font-size: 15px;
    color: red;
}
.titulo-sofas{
    font-family: 'Poppins', sans-serif;
    margin-top: 4rem;
    font-size: 30px;
    gap: 3rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 40px;
}
/* FOOTER */

.footer{
    background-color: #000;
    padding: 70px 0 40px 110px;
}
.footer-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links{
    width: 19%;
    padding: 0 10px;
}
.footer-links ul{
    margin: 0;
    padding: 0;
}
.footer-links h4{
    font-size: 19px;
    color: #A8977B;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 1px;
    margin-bottom: 15px;
}
.footer-links ul li a{
    font-size: 17px;
    text-decoration: none;
    color: white;
    display: block;
    margin-bottom: 5px;
    transition: all .3s ease;
}
.footer-links ul li:hover{
    color: #A8977B;
}
.footer-links ul li a:hover{
    color: #A8977B;
    padding-left: 6px;
    text-decoration: underline;
}
.footer-links ul li {
    font-size: 18px;
    color: white;
    list-style: none;
    margin-bottom: 15px;
}

.social-links a{
    display: inline-block;
    min-height: 40px;
    width: 40px;
    margin: 0 10px 10px 0;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    transition: all .5s ease;
}
.social-links a:hover{
    background-color: #A8977B;
}
/* CSS DEL MODAL DE PRODUCTOS*/

.modal {
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.modal.activo {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 1300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease;
    position: relative;
}

.modal-body {
    display: flex;
    gap: 20px;
    align-items: center;
}

.modal-body img {
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.modal-texto {
    flex: 1;
    text-align: center;
    padding: 50px;
}

.modal-texto h3 {
    margin: 0 0 55px 0;
    font-size: 25px;
}

.modal-texto p {
    margin: 0;
    font-size: 16px;
    margin-bottom: 20px;
}
#btnAgregarCarrito {
  position: relative;
  overflow: hidden;
  transition: padding-right 0.3s ease;
}
#btnAgregarCarrito::after {
  content: '>';
  position: absolute;
  font-size: 17px;
  right: 10px;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#btnAgregarCarrito:hover {
  padding-right: 30px; /* deja espacio para la flecha */
}

#btnAgregarCarrito:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.btn-cerrar-modal{
    display: none;
}
.tabla-info {
    width: 100%;
    margin-bottom: 35px;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 15px;
}

.tabla-info td {
    padding: 6px 10px;
    vertical-align: top;
    border: 1px solid #ccc;
    text-align: left;
}
.tabla-info td:first-child {
    background-color: #f9f9f9;
    font-weight: bold;
}
.tabla-info tr td:first-child {
    font-weight: 600;
    width: 120px;
    color: #444;
}
.zoom-container {
    position: relative;
    overflow: hidden;
    width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.zoom-img {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    pointer-events: none;
    display: none;
    z-index: 10;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6); /* resplandor blanco suave */
}

/* carrito.css */
.carrito-flotante {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    background: #f9f9f9;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
}

.carrito-flotante.activo {
    transform: translateX(0);
}

.carrito-flotante .carrito-contenido {
    padding: 20px;
}

.carrito-flotante .carrito-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.oculto {
    display: none;
}
.carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}
.carrito-header h3 {
    margin: 0;
    font-size: 24px;
}
#cerrar-carrito {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    color: #555;
    font-weight: lighter;
    margin-bottom: 25px;
}
.carrito-titulos h3{
    margin-bottom: 25px;
}
.carrito-titulos h4{
    font-size: 13px;
    text-transform: uppercase;
    color: #5251519d ;
}
/* === Contenido del carrito === */
.carrito-contenido {
    padding: 15px;
    overflow-y: auto;
}

#carrito-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 700px;
    max-height: calc(100vh - 400px);
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 50px; /* evita que se tape por el footer */
    box-sizing: border-box;
}

/* Estilo para cada producto en el carrito */
.carrito-item {
    display: flex;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

/* Imagen del producto */
.carrito-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* Detalle del producto */
.carrito-detalle {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carrito-detalle h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.carrito-detalle p {
    margin: 3px 0;
    font-size: 14px;
    color: #666;
}

/* Mensaje si el carrito está vacío */

.carrito-vacio {
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-top: 50px;
}
.controles-productos{
    display: flex;
    justify-content: space-between;
}
.item-controles{
    border: 1px solid black;
    border-radius: 50px;
    margin-left: 10px;
    margin-top: 10px;
}
.item-controles button{
    border: none;
    margin: 4px 20px;
    background-color: transparent;
}
.btn-eliminar{
    border: none;
    background-color: transparent;
    margin-right: 50px;
}
.carrito-total {
    margin-top: auto;
    padding: 10px;
    border-top: 1px solid #ccc;
    font-family: Arial, sans-serif;
}
.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.subtotal-label {
    color: #333;
}
.subtotal-precio {
    color: #000;
}
.nota-carrito {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}
.btn-pagar-carrito {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #28a745; /* Verde */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.btn-pagar-carrito:hover {
    background-color: #218838;
}
.carrito-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 12px;
    border-top: 1px solid #ddd;
    z-index: 10;
}
.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* RESPONSIVE CELULARES */
@media (max-width: 768px) {
    .contenedor {
    padding: 0 16px;
    max-width: 768px;
    }
    .bloque-central-header {
    padding: 7px 2px 2px 2px;
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 15px;
    }
    .menu{
    padding-top: 5px;
    padding-bottom: 0px;
    }
    .bloque-central-carrusel {
    margin-left: 0px;
    border-radius: 15px;
    }
    .asesoria-profesional {
    flex-direction: column;
    text-align: center;
    max-width: 768px;
    margin: 90px 1.5rem;
    }

    .texto-asesoria,
    .imagen-asesoria {
    width: 100%;
    }

    .imagen-asesoria {
    max-width: 70%;
    margin: 0 auto;
    }

    .texto-asesoria h2 {
    font-size: 1.5rem;
    }

    .texto-asesoria p {
    font-size: 0.95rem;
    }
    .footer-row{
    text-align: center;
    }
    .footer{
    padding-left: 0;
    }
    .footer-links{
    width: 100%;
    }
    .horarios{
    padding-top: 30px;
    flex-direction: column;
    text-align: center;
    }
    .horas-derecha{
    padding-left: 0;
    padding-top: 40px;
    }

    /* MODAL RESPONSIVE */
    .modal-content {
        width: 90%;              /* más pequeño que la pantalla */
        max-width: 400px;        /* límite para que no se vea muy grande */
        margin: 10px auto;       /* centra el modal y deja margen arriba/abajo */
        border-radius: 10px;     /* esquinas redondeadas para que no parezca toda la pantalla */
        max-height: 1200px;
    }

    .modal-body {
        display: flex;
        flex-direction: column;  /* imagen arriba, luego texto/tabla, luego botón */
        align-items: center;
        padding: 15px;
        
    }

    .zoom-container img {
        max-width: 100%;
        border-radius: 8px;
    }

    .tabla-info {
        width: 100%;
        margin-top: 10px;
        font-size: 14px;
    }
    #modalPrecio {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0;
    }

    #btnAgregarCarrito {
        width: 100%;
    }
    .zoom-container {
        width: 100%;               
        max-width: 350px;
        height: 350px;          
        overflow: hidden;          
    }
    .zoom-container img {
        pointer-events: none;
    }
    .zoom-container img {
        width: 100%;               
        height: auto;              
        display: block;            
        border-radius: 8px;
    }
    /* CARRITO FLOTANTE*/
    .carrito-flotante{
    width: 340px;
    }
    .carrito-img {
    width: 100%;
    max-width: 250px;
    }
    .der{
    padding-right: 40px;
    }
    .carrito-detalle {
    width: 100%;
    }
    .item-controles{
    display: flex;
    margin: 0;
    text-align: center;
    justify-content: center;
    }
    .item-cantidad{
    padding-top: 11px;
    }
    .item-controles button {
    font-size: 14px;
    padding: 5px 10px;
    }
    .btn-eliminar{
    margin-left: 5px;
    }
    .menu {
    display: none !important;
    }
    .izq a{
    display: none !important;
    }
    .izq{
    padding-left: 40px;
    }
    .hamburguesa {
    display: inline-block;
    }
    .contenedor-imagen {
    height: 140px;
    width: 100%;
    }
    .mapa{
    width: 400px;
    }
    .carousel img{
    height: 100%;
    }
}
@media (min-width: 768px) {
    .menu-principal {
    display: flex;
    justify-content: center;
    gap: 20px;
    }
  /* Oculta este menú lateral en desktop */
    .menu-lateral {
    display: none;
    }
    .menu-lateral, .menu-overlay {
    display: none;
    }
    .carousel img{
        height: 100%;
    }
}
