/* Reseteo y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header y navegación - SIN MODIFICAR */
header {
    background-color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
    position: relative;
}

.nav-links a {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #C8A97E;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C8A97E;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
}

.cart-icon {
    margin-right: 20px;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #C8A97E;
    color: white;
    font-size: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #C8A97E;
    color: #C8A97E;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #C8A97E;
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Para agrandar el logo y moverlo más a la izquierda - SIN MODIFICAR */
.logo {
    position: relative;
    left: -60px; /* Mueve todo el contenedor del logo hacia la izquierda */
}

.logo img {
    transform: scale(5.5); /* Hace el logo 2.5 veces más grande */
    transform-origin: left center; /* Mantiene la alineación izquierda */
    max-height: none !important; /* Elimina restricciones de altura */
    margin-right: 30px; /* Añade espacio a la derecha para evitar solapamientos */
    position: relative;
    left: -10px; /* Mueve la imagen aún más a la izquierda */
}

/* Asegura que no afecte al resto del header - SIN MODIFICAR */
header, .header-content {
    height: auto !important; /* Mantiene la altura original */
}

/* Responsive - SIN MODIFICAR la parte del header */
@media (max-width: 992px) {
    .nav-links {
        padding: 0 10px;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    
    /* Responsive para el logo - SIN MODIFICAR */
    .logo {
        left: 0; /* Elimina el desplazamiento en pantallas pequeñas */
    }
    
    .logo img {
        left: 0; /* Elimina el desplazamiento en pantallas pequeñas */
        transform: scale(2); /* Ligeramente más pequeño en móviles */
    }
}

/* ANULACIÓN AGRESIVA DE ESTILOS DE FOOTER EXISTENTES */
footer, 
footer.footer-modern, 
body > footer, 
main + footer, 
section + footer,
.footer-grid, 
.footer-column,
.footer-contact,
.social-links,
.copyright,
footer img,
footer .logo,
footer.footer-modern img,
body > footer img,
footer.footer-modern .footer-logo-section img,
body > footer.footer-modern .footer-logo-section img,
footer img[src*="logo"],
footer img[src*="oasis"],
footer.footer-modern img[src*="logo"],
footer.footer-modern img[src*="oasis"] {
    all: unset !important;
    box-sizing: border-box !important;
}

footer *, 
footer.footer-modern *, 
body > footer * {
    box-sizing: border-box !important;
}

/* NUEVO FOOTER - MEJORADO Y CORREGIDO CON MAYOR ESPECIFICIDAD */
footer.footer-modern,
body > footer.footer-modern,
#footer,
.site-footer,
body > footer {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding: 40px 0 0 !important;
    margin: 0 !important;
    clear: both !important;
    width: 100% !important;
    position: relative !important;
    display: block !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
    font-family: 'Montserrat', sans-serif !important;
}

footer.footer-modern .footer-container,
body > footer.footer-modern .footer-container,
body > footer .footer-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 90% !important;
}

/* Logo y descripción */
footer.footer-modern .footer-logo-section,
body > footer.footer-modern .footer-logo-section,
body > footer .footer-logo-section {
    flex: 1 !important;
    min-width: 300px !important;
    margin-bottom: 20px !important;
    padding-right: 30px !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* LOGO EXTRA GRANDE */
footer.footer-modern .footer-logo-section img,
body > footer.footer-modern .footer-logo-section img,
body > footer .footer-logo-section img,
footer img[src*="logo"],
footer img[src*="oasis"],
footer.footer-modern img[src*="logo"],
footer.footer-modern img[src*="oasis"] {
    width: auto !important;
    height: 140px !important; /* Tamaño significativamente mayor */
    margin-bottom: 20px !important;
    display: block !important;
    transform: none !important;
    max-height: none !important;
    object-fit: contain !important;
    margin-left: 0 !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
}

footer.footer-modern .footer-logo-section p,
body > footer.footer-modern .footer-logo-section p,
body > footer .footer-logo-section p {
    color: #bbb !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
    font-weight: normal !important;
}

/* Ocultamos completamente las redes sociales */
footer.footer-modern .footer-social,
body > footer.footer-modern .footer-social,
body > footer .footer-social {
    display: none !important;
}

/* Sección de información de contacto */
footer.footer-modern .footer-info-section,
body > footer.footer-modern .footer-info-section,
body > footer .footer-info-section {
    flex: 1 !important;
    min-width: 300px !important;
    padding-left: 20px !important;
    display: block !important;
    box-sizing: border-box !important;
}

footer.footer-modern .footer-info-title,
body > footer.footer-modern .footer-info-title,
body > footer .footer-info-title {
    color: #C8A97E !important;
    font-size: 18px !important;
    margin-bottom: 25px !important;
    font-weight: 600 !important;
    position: relative !important;
    padding-bottom: 10px !important;
    text-align: left !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    display: block !important;
}

footer.footer-modern .footer-info-title::after,
body > footer.footer-modern .footer-info-title::after,
body > footer .footer-info-title::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background-color: #C8A97E !important;
}

footer.footer-modern .footer-contact-item,
body > footer.footer-modern .footer-contact-item,
body > footer .footer-contact-item {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 15px !important;
    text-align: left !important;
}

footer.footer-modern .footer-contact-item i,
body > footer.footer-modern .footer-contact-item i,
body > footer .footer-contact-item i {
    color: #C8A97E !important;
    margin-right: 15px !important;
    font-size: 16px !important;
    min-width: 20px !important;
    margin-top: 3px !important;
    display: inline-block !important;
}

footer.footer-modern .footer-contact-item span,
body > footer.footer-modern .footer-contact-item span,
body > footer .footer-contact-item span {
    color: #bbb !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    font-weight: normal !important;
    text-align: left !important;
    display: inline-block !important;
}

/* Copyright */
footer.footer-modern .footer-copyright,
body > footer.footer-modern .footer-copyright,
body > footer .footer-copyright {
    width: 100% !important;
    text-align: center !important;
    padding: 15px 0 !important;
    margin-top: 20px !important;
    font-size: 13px !important;
    color: #888 !important;
    background-color: #111 !important;
    border-top: 1px solid #333 !important;
    display: block !important;
}

/* Responsive */
@media (max-width: 992px) {
    footer.footer-modern .footer-logo-section img,
    body > footer.footer-modern .footer-logo-section img,
    body > footer .footer-logo-section img,
    footer img[src*="logo"],
    footer img[src*="oasis"],
    footer.footer-modern img[src*="logo"],
    footer.footer-modern img[src*="oasis"] {
        height: 120px !important;
    }
}

@media (max-width: 768px) {
    footer.footer-modern .footer-container,
    body > footer.footer-modern .footer-container,
    body > footer .footer-container {
        flex-direction: column !important;
    }
    
    footer.footer-modern .footer-logo-section,
    body > footer.footer-modern .footer-logo-section,
    body > footer .footer-logo-section,
    footer.footer-modern .footer-info-section,
    body > footer.footer-modern .footer-info-section,
    body > footer .footer-info-section {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    footer.footer-modern .footer-logo-section img,
    body > footer.footer-modern .footer-logo-section img,
    body > footer .footer-logo-section img,
    footer img[src*="logo"],
    footer img[src*="oasis"],
    footer.footer-modern img[src*="logo"],
    footer.footer-modern img[src*="oasis"] {
        margin: 0 auto 20px !important;
        height: 100px !important;
    }
    
    footer.footer-modern .footer-logo-section p,
    body > footer.footer-modern .footer-logo-section p,
    body > footer .footer-logo-section p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    footer.footer-modern .footer-info-title,
    body > footer.footer-modern .footer-info-title,
    body > footer .footer-info-title {
        text-align: center !important;
    }
    
    footer.footer-modern .footer-info-title::after,
    body > footer.footer-modern .footer-info-title::after,
    body > footer .footer-info-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    footer.footer-modern .footer-contact-item,
    body > footer.footer-modern .footer-contact-item,
    body > footer .footer-contact-item {
        justify-content: center !important;
    }
    
    footer.footer-modern .footer-contact-item i,
    body > footer.footer-modern .footer-contact-item i,
    body > footer .footer-contact-item i {
        margin-right: 10px !important;
    }
    
    footer.footer-modern .footer-contact-item span,
    body > footer.footer-modern .footer-contact-item span,
    body > footer .footer-contact-item span {
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    footer.footer-modern,
    body > footer.footer-modern,
    body > footer {
        padding: 30px 0 0 !important;
    }
    
    footer.footer-modern .footer-logo-section img,
    body > footer.footer-modern .footer-logo-section img,
    body > footer .footer-logo-section img,
    footer img[src*="logo"],
    footer img[src*="oasis"],
    footer.footer-modern img[src*="logo"],
    footer.footer-modern img[src*="oasis"] {
        height: 90px !important;
    }
}
/* Asegúrate de que estos estilos estén en tu archivo CSS 
   o agrégalos como un bloque <style> en el <head> */

/* Estilo para el botón de menú móvil */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: #333;
    z-index: 1001; /* Asegurar que esté por encima */
}

/* Estilos responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    nav {
        width: 100%; /* Asegurar que ocupe todo el ancho */
    }
    
    .nav-links {
        position: fixed;
        top: 80px; /* Ajustar a la altura del header */
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 1000; /* Asegurar que esté por encima */
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
}
/* NUEVO CSS PERSONALIZADO PARA FOOTER CON LOGO MÁS GRANDE */
.footer-modern {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 0;
    margin: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px; /* Footer compacto */
    margin: 0 auto;
    padding: 0 20px;
}

/* Sección del logo */
.footer-logo-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding-right: 20px;
    /* Ajustamos la disposición vertical para acomodar el logo más grande */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-section img {
    width: auto;
    height: 280px; /* Logo significativamente más grande */
    margin-bottom: 20px;
    display: block;
    object-fit: contain;
    /* Aseguramos que no sobrepase su contenedor */
    max-width: 100%;
}

.footer-logo-section p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 300px; /* Limita el ancho del texto */
}

/* Ocultamos redes sociales */
.footer-social {
    display: none;
}

/* Sección de información de contacto */
.footer-info-section {
    flex: 1;
    min-width: 250px;
    padding-left: 20px;
    /* Aseguramos que esta sección no se expanda demasiado */
    max-width: 350px;
}

.footer-info-title {
    color: #C8A97E; /* Color dorado para títulos */
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-info-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #C8A97E;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: #C8A97E;
    margin-right: 15px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 3px;
}

.footer-contact-item span {
    color: #bbb;
    font-size: 14px;
    line-height: 1.5;
}

/* Copyright */
.footer-copyright {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 13px;
    color: #888;
    background-color: #111;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        max-width: 95%;
    }
    
    .footer-logo-section img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-section, 
    .footer-info-section {
        width: 100%;
        padding: 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-logo-section img {
        margin: 0 auto 20px;
        height: 200px;
    }
    
    .footer-logo-section p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-info-title {
        text-align: center;
    }
    
    .footer-info-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-modern {
        padding: 30px 0 0;
    }
    
    .footer-logo-section img {
        height: 160px;
    }
}