* {
    font-family: 'Playfair Display', serif;
    margin: 0;
    color: #FFCF66;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/finoso/fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Inria Sans';
    src: url('/finoso/fonts/Inria_Sans/InriaSans-Regular.ttf') format('truetype');
}
body {
    background-color: #090909;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
.login {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #090909;
    width: 25px;
    height: 25px;
    cursor: none;
}
nav {
    width: 100vw;
    display: flex;
    background-color: #090909;
    color: white;
    padding: 5px 2% 5px 8%;
    box-sizing: border-box;
}
.texto-nombre {
    width: 35%;
    text-align: left;
    font-weight: normal;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s forwards;
}
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.texto-nombre h2 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 2px;
    color: #FFCF66;
}
.menu {
    display: flex;
    width: 35%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDownFade 1s ease-out forwards
}
@keyframes slideDownFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.iconos-menu {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-width: 80px;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDownFade 1s ease-out forwards
}
@keyframes slideDownFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.icono-login {
    display: flex;
    justify-content: flex-end;
    width: 40%;
}
.icono-carrito {
    display: flex;
    width: 40%;
    position: relative;
}
.contador-carrito {
    position: absolute;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: bold;
    display: none; /* oculto si no hay productos */
}
.iconos-menu .icono-carrito .contador-carrito {
    background: #FF3B30;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.85);
}
.icono-carrito svg {
    width: 50px;
    object-fit: cover;
    cursor: pointer;
    min-width: 50px;
}
.icono-login svg {
    width: 25px;
    object-fit: cover;
    cursor: pointer;
}
.icono-carrito svg,
.icono-carrito .contador-carrito {
    transition: all 0.3s ease;
}
.icono-carrito:hover svg,
.icono-carrito:hover .contador-carrito {
    transform: translateY(-3px) scale(1.08);
    filter: brightness(1.1);
    transition: all 0.3s ease;
}
.icono-login svg,
.icono-login .contador-carrito {
    transition: all 0.3s ease;
}
.icono-login svg {
    position: relative;
}
.icono-login:hover svg,
.icono-login:hover {
    transform: translateY(-3px) scale(1.07);
    filter: brightness(1.1);
    transition: all 0.3s ease;
}
.texto-inicio {
    display: flex;
    justify-content: center;
    width: 100%;
}
.texto-inicio h3 {
    font-size: 1rem;
    font-weight: normal;
    color: #FFFFFF;
}
.texto-catalogo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-right: 10px;
}
.texto-catalogo h3 {
    font-size: 1rem;
    font-weight: normal;
    color: #FFFFFF;
}
.texto-contacto {
    display: flex;
    justify-content: center;
    width: 100%;
}
.texto-contacto h3 {
    font-size: 1rem;
    font-weight: normal;
    color: #FFFFFF;
}
.texto-inicio h3:hover,
.texto-catalogo h3:hover,
.texto-contacto h3:hover {
  color: #d4af37; /* tono dorado fino */
}

/* Línea debajo al hacer hover */
.texto-inicio h3::after,
.texto-catalogo h3::after,
.texto-contacto h3::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.texto-inicio h3:hover::after,
.texto-catalogo h3:hover::after,
.texto-contacto h3:hover::after {
  width: 100%;
}
.contenedor-texto-img {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 120px;
    height: 80vh;
}
section {
    padding: 5px 2% 5px 8%;
    background: linear-gradient(to bottom, #090909 0%, #FFCF66 100%);
    box-sizing: border-box;
}
.section {
    position: relative;
}
.texto {
    display: grid;
    justify-items: start;
    align-items: center;
    width: 30%;
    box-sizing: border-box;
    height: min-content;
    opacity: 0; /* Estado inicial para que la animación tenga efecto */
    transform: translateX(-20px); /* Estado inicial de desplazamiento */
    animation: slideDownFade 1s ease-out forwards;
}

@keyframes slideDownFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.texto h1 {
    font-size: 3.5rem;
    font-weight: normal;
    color: #FFCF66;
    margin: 0;
    margin-bottom: 5px;
}
.texto p {
    font-family: 'InriaSans-Light.ttf';
    font-size: 1.3rem;
    font-weight: normal;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
}
.img {
    position: fixed; /* Fijo para que se mueva con scroll */
    z-index: 50;
    transition: none; /* Sin transición CSS, controlamos con JS */
    animation: tracking-in-expand 0.4s linear both;
    display: flex;
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.2em;
        opacity: 0;
    }
    40% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}
#insertar-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.img img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255,255,255,0.2));
}
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    z-index: 200;
    transition: width 0.1s ease-out;
 }
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: white;
    transform: scale(1.5);
}
.texto-coleccion {
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideDownFade 1s ease-out forwards;
    margin-top: 200px;
}
@keyframes slideDownFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.texto-coleccion h3{
    font-family: 'InriaSans-Light.ttf';
    letter-spacing: 2px;
    font-size: 1.4rem;
    font-weight: normal;
}
.contenedor-img-coleccion {
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 30px;
    height: 35vh;
}
.img-coleccion {
    position: relative;
    width: 100%;
    height: auto;
}
.img-coleccion img {
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(255,255,255,0.2));
}
#mainElement.in-section2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1.2);
  z-index: 1;
}
.icon {
  color: #FFCF66;
}
.contenedor-catalogo {
    display: flex;
    align-items: center;
    height: 30vh;
}
.texto-ver-catalogo {
    width: 70%;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideDownFade 1s ease-out forwards
}
@keyframes slideDownFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.texto-ver-catalogo h3 {
    letter-spacing: 2px;
    font-size: 4rem;
    font-weight: normal;
    letter-spacing: 2px;
    color: #090909;
}
.boton-catalogo {
    display: flex;
    justify-content: start;
    width: 30%;
    animation: bounceInRight 1.2s ease-out forwards;
}
@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }
    60% {
        opacity: 1;
        transform: translateX(-20px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}
.boton-catalogo button{
    font-family: 'InriaSans-Light.ttf';
    width: 70%;
    height: auto;
    background: #090909;
    border: 2px solid #FFCF66;
    font-size: 2rem;
    padding: 3%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}
.boton-catalogo button:hover {
    background-color: #d4af37;
    color: #000;
    box-shadow: 0 0 10px rgba(234, 206, 113, 0.857);
    font-weight: 800;
}

/* ===== SECCIÓN DE UBICACIÓN Y CONTACTO ===== */
.contenedor-ubicacion-contacto {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 30px;
    width: 100%;
    height: auto;
    min-height: 35vh;
    align-items: stretch;
}

.contenedor-ubicacion {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.texto-ubicacion {
    width: 100%;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideDownFade 1s ease-out forwards;
}

.texto-ubicacion h3 {
    font-family: 'InriaSans-Light.ttf';
    letter-spacing: 2px;
    font-size: 3rem;
    font-weight: normal;
    color: #090909;
    margin-bottom: 10px;
}

.mapa-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFCF66;
    transition: all 0.3s ease;
    background: #1a1a1a;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mapa-wrapper:hover {
    box-shadow: 0 8px 25px rgba(255, 207, 102, 0.3);
    transform: translateY(-5px);
}

.mapa-wrapper iframe {
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.mapa-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.info-contacto-ubicacion {
    display: flex;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.4s forwards;
}

.direccion-info,
.horarios-info,
.whatsapp-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid #FFCF66;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.direccion-info:hover,
.horarios-info:hover,
.whatsapp-info:hover {
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid #FFD700;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(255, 207, 102, 0.3);
}

.direccion-info svg,
.horarios-info svg,
.whatsapp-info svg {
    flex-shrink: 0;
    color: #FFCF66;
    stroke: #FFCF66;
    fill: #FFCF66;
    filter: drop-shadow(0 0 5px rgba(255, 207, 102, 0.3));
}

.direccion-info span,
.horarios-info div,
.whatsapp-info a {
    font-family: 'InriaSans-Light.ttf';
    font-size: 0.95rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.horarios-info div strong {
    color: #FFCF66;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 207, 102, 0.4);
}

.whatsapp-info a {
    color: #FFCF66;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-info a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 207, 102, 0.5);
    transform: scale(1.05);
}

.contenedor-contacto {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
}

.texto-contacto-footer {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideDownFade 1s ease-out forwards
}
@keyframes slideDownFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.texto-contacto-footer h3 {
    font-family: 'InriaSans-Light.ttf';
    letter-spacing: 2px;
    font-size: 3rem;
    font-weight: normal;
    color: #090909;
}
ul {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}
ul li {
    width: 120px;
    height: 120px;
    margin-right: 12px;
    border: 2px solid #090909;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    z-index: 2;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: floatUp 1s ease-out forwards;
}
.redes-sociales li:nth-child(1) { animation-delay: 0.2s; }
.redes-sociales li:nth-child(2) { animation-delay: 0.4s; }

@keyframes floatUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
ul li i {
    color: #090909;
    transition: all 0.5s ease-in-out;
}
ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #090909;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}
ul li:hover:before {
    opacity: 1;
    transform: scale(0.8);
}
ul li:hover i {
    color: #fff;
}
ul li:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px dashed #FFCF66;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    box-sizing: border-box;
}
  
@keyframes rotating {
    0% {
      transform: scale(0.92) rotate(0deg);
    }
    100% {
      transform: scale(0.92) rotate(360deg);
    }
}
  
li:hover:after {
    opacity: 1;
    animation: rotating 10s linear infinite;
}

.cuadro-carrito {
    position: absolute;
    top: 45px;
    right: 20px;
    z-index: 101;
    display: none;
    gap: 15px;
    width: 370px;
    height: 210px;
    padding: 20px;
    background: #090909;
    border-radius: 12px;
    border: 2px solid rgb(255, 255, 255);
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}
.texto-close-carrito {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.texto-carrito {
    width: 50%;
}
.texto-carrito h1 {
    font-size: 30px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0;
    white-space: nowrap;
    font-weight: normal;
}
.contenedor-info-relojes-carrito {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}
.contenedor-info-relojes-carrito {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.cuadro-info-reloj-carrito {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 207, 102, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cuadro-info-reloj-carrito:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFCF66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 207, 102, 0.3);
}

.img-reloj-carrito {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.img-reloj-carrito img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.nombre-precio-carrito {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.nombre-carrito h2 {
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.precio-carrito {
    display: flex;
    gap: 8px;
    align-items: center;
}

.precio-carrito h3 {
    font-size: 15px;
    color: #FFCF66;
    margin: 0;
    font-weight: 700;
}

.precio-carrito h4 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-decoration: line-through;
}
.contenedor-total-finalizar-carrito {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-carrito {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}
.boton-eliminar button {
    padding: 5px;
    background: #090909;
    border: 2px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.3s ease;
}

.boton-eliminar button:hover {
    background: #FFCF66;
    border-color: #FFCF66;
    color: #090909;
}

.boton-eliminar button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.total-carrito h3 {
    font-size: 20px;
    font-weight: normal;
    margin: 0;
}
.boton-finalizar-carrito button {
    width: 140px;
    height: 40px;
    background: #090909;
    color: #FFFF;
    border: 2px solid #FFCF66;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.boton-finalizar-carrito button:hover {
    background: #FFCF66;
    box-shadow: 0px 0px 10px rgba(255, 216, 131, 0.5);
}
.close {
    background: linear-gradient(135deg, rgba(255, 222, 136, 0.15), rgba(255, 207, 102, 0.25));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 175, 32, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(249, 140, 7, 0.1);
}
.close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 175, 32, 0.1) 0%, rgba(249, 140, 7, 0.2) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.close:hover::before {
    opacity: 1;
}
.close:hover {
    background: linear-gradient(135deg, rgba(255, 207, 102, 0.25), rgba(249, 140, 7, 0.35));
    border-color: rgba(255, 175, 32, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(249, 140, 7, 0.2),
        0 2px 10px rgba(255, 175, 32, 0.1);
}
.close svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    z-index: 1;
}
.close:hover svg {
    transform: scale(1.1);
}
.close svg path {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 2.5;
    transition: all 0.3s ease;
}
.close:hover svg path {
    stroke: #ffaf20;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 175, 32, 0.4));
}
.close:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}
.close::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 222, 136, 0.3), 
        transparent, 
    rgba(255, 175, 32, 0.2), 
    transparent
    );
    border-radius: 13px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.close:hover::after {
    opacity: 1;
}
.user-box {
    display: none;
    background: linear-gradient(to bottom right, #2b2b2b, #1a1a1a);
    border: 1px solid #FFCF66;
    padding: 10px 15px;
    border-radius: 12px;
    position: absolute;
    top: 0; /* Ajusta según el diseño */
    right: 0; /* Ajusta según el diseño */
    color: #fff;
    font-family: 'Georgia', serif;
    box-shadow: 0 0 10px #FFCF66;
    z-index: 1000;
    width: 130px;
    text-align: center;
}

.user-box .username {
  font-size: 16px;
  color: #FFCF66;
  margin: 0 0 10px;
  font-weight: bold;
}

.user-box .username {
  color: #fff;
  font-style: italic;
}

.logout-btn {
  background-color: transparent;
  color: #FFCF66;
  border: 1px solid #FFCF66;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.logout-btn:hover {
  background-color: #FFCF66;
  color: #1a1a1a;
}
@media ( width < 1068px) {
    .user-box {
    top: 45px; /* Ajusta según el diseño */
    right: 13%; /* Ajusta según el diseño */
    width: 130px;
    }
}

/* Responsive para tablets (768px) */
@media ( width < 768px) {
    .contenedor-ubicacion-contacto {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }
    
    .contenedor-ubicacion,
    .contenedor-contacto {
        flex: 1;
        width: 100%;
    }
    
    .contenedor-contacto {
        margin-top: 30px;
    }
    
    .mapa-wrapper {
        height: 280px;
    }
    
    .texto-ubicacion h3 {
        font-size: 2.5rem;
    }
    
    .direccion-info,
    .horarios-info {
        padding: 10px 12px;
    }
}

@media ( width < 660px) {
    nav {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .texto-nombre {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .menu {
        width: 100%;
    }
    .texto {
        width: 40%;
    }
    .texto h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .texto p {
        font-size: 1.1rem;
    }
    .img {
        width: 60%;
    }
    .texto-ver-catalogo h3{
        font-size: 3rem;
    }
    .boton-catalogo button {
        font-size: 1.5rem;
    }
    .contenedor-ubicacion-contacto {
        flex-direction: column !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: auto !important;
    }
    
    .contenedor-ubicacion,
    .contenedor-contacto {
        flex: 1 !important;
        width: 100% !important;
    }
    
    .contenedor-contacto {
        margin-top: 25px !important;
    }
    
    .contenedor-ubicacion {
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .texto-ubicacion {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .texto-ubicacion h3 {
        font-size: 1.1rem !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    .mapa-wrapper {
        height: 85px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .info-contacto-ubicacion {
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .direccion-info,
    .horarios-info {
        padding: 1px 2px !important;
        font-size: 0.5rem !important;
        gap: 2px !important;
        margin: 0 !important;
        border-radius: 2px !important;
    }
    
    .direccion-info svg,
    .horarios-info svg {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
    }
    
    .direccion-info span,
    .horarios-info div {
        font-size: 0.5rem !important;
        line-height: 0.95 !important;
    }
    
    .horarios-info div strong {
        font-size: 0.55rem !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .horarios-info div br {
        line-height: 0.8 !important;
        margin: 0 !important;
    }
    
    .iconos-menu {
        width: 100%;
        gap: 15px;
    }
    section {
        height: auto;
        min-height: 100vh;
    }
    .contenedor-texto-img {
        height: 20vh;
        margin-bottom: 80px;
    }
    .texto-coleccion {
        height: auto;
        margin: 0;
    }
    .contenedor-img-coleccion {
        height: 20vh;
    }
    .contenedor-catalogo {
        margin-top: 0;
    }
    .contenedor-catalogo {
        height: 15vh;
    }
    #contenedor-borrar {
        display: none !important;
    }
    .cuadro-carrito {
        width: 340px;
        height: 180px;
        top: 130px;
        right: 30px;
        padding: 20px;
        overflow-x: hidden;
    }
    .user-box {
        top: 125px; /* Ajusta según el diseño */
        right: 32%; /* Ajusta según el diseño */
        width: 120px;
    }
}
@media ( width < 460px) {
    nav {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .texto-nombre {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .menu {
        width: 100%;
    }
    .texto h1 {
        font-size: 2rem;
    }
    .texto p {
        font-size: 0.9rem;
    }
    .texto-ver-catalogo h3{
        font-size: 2.2rem;
    }
    .boton-catalogo button {
        font-size: 1rem;
    }
    .iconos-menu {
        width: 100%;
        gap: 10px;
    }
    .cuadro-carrito {
        right: 0px;
    }
    .boton-finalizar-carrito button {
        width: 120px;
        height: 35px;
        font-size: 12px;
    }

    /* Responsive de ubicación en móvil */
    .contenedor-ubicacion-contacto {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        gap: 3px !important;
        padding: 0 !important;
        min-height: auto !important;
    }
    
    .contenedor-contacto {
        margin-top: 20px !important;
    }
    
    .contenedor-ubicacion {
        gap: 3px !important;
        margin-bottom: 0 !important;
    }
    
    .texto-ubicacion {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding: 0 !important;
    }
    
    .texto-ubicacion h3 {
        font-size: 1.5rem !important;
        margin-bottom: 2px !important;
        margin-top: 0 !important;
        padding: 0 !important;
    }
    
    .mapa-wrapper {
        height: 130px !important;
        margin-bottom: 2px !important;
        margin-top: 0 !important;
    }
    
    .info-contacto-ubicacion {
        gap: 3px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .direccion-info,
    .horarios-info {
        padding: 3px 6px !important;
        font-size: 0.7rem !important;
        gap: 5px !important;
        border-radius: 5px !important;
        margin: 0 !important;
    }
    
    .direccion-info svg,
    .horarios-info svg {
        width: 12px !important;
        height: 12px !important;
        flex-shrink: 0 !important;
        min-width: 12px !important;
    }
    
    .direccion-info span,
    .horarios-info div {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
    
    .horarios-info div strong {
        font-size: 0.75rem !important;
        display: block !important;
        margin-bottom: 1px !important;
        margin-top: 0 !important;
    }
    
    .horarios-info div br {
        margin: 0 !important;
        line-height: 1.1 !important;
    }
}

/* Estilos para mensaje de carrito vacío */
#texto-informativo {
    display: none;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 20px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 207, 102, 0.1), rgba(255, 184, 77, 0.1));
    border: 2px solid rgba(255, 207, 102, 0.3);
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 207, 102, 0.2);
    transition: all 0.3s ease;
}