footer {

    left: 0;
    width: 100%;
    background-color: #160503;
    color: #E5E7EB;
    z-index: 1000;
    background-color: #160503;
    /* Marrón oscuro principal */
    color: #E5E7EB;
    /* Texto gris claro/blanco */
    padding: 70px 0 30px 0;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    box-sizing: border-box;
    /* Asegura que el padding no afecte el ancho total */
    margin-top: 100px;
    /* Espacio para que no se pegue con el contenido */
    border-top: 3px solid #9F5524;
    /* Línea superior decorativa */
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* Para que se adapte a pantallas pequeñas */
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    /* Ancho mínimo antes de que se apilen */
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-column .footer-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #F2AF2A;
    /* Dorado/Amarillo */
    margin-bottom: 15px;
    display: block;
    /* Para que ocupe su línea */
    text-decoration: none;
}

.footer-column .footer-logo:hover {
    opacity: 0.9;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #9F5524;
    /* Marrón medio */
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column ul li a:hover {
    color: #9F5524;
    /* Marrón medio al pasar el mouse */
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 18px;
    /* Espacio entre iconos */
    margin-top: 10px;
}

.social-icons .social-icon {
    width: 42px;
    height: 42px;
    background-color: #362625;
    /* Marrón un poco más claro */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons .social-icon svg {
    width: 20px;
    height: 20px;
    fill: #FFF;
    /* Iconos en blanco */
}

.social-icons .social-icon:hover {
    background-color: #9F5524;
    /* Marrón medio al pasar el mouse */
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #362625;
    /* Línea divisoria sutil */
    margin-top: 40px;
    font-size: 13px;
    opacity: 0.5;
    color: #FFF;
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
        /* Centra la línea debajo del título */
    }

    .social-icons {
        justify-content: center;
        /* Centra los iconos */
    }

    .footer-column {
        padding: 0;
    }

    /* Menu content styles - Add specific styles for your menu page here */
    .menu-content {
        margin-top: 60px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-title {
        color: var(--primary-color);
        font-family: Fredoka, sans-serif;
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 30px;
        text-align: center;
    }

    .menu-categories {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .category-button {
        background-color: var(--background-gray);
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-family: "Open Sans";
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .category-button:hover,
    .category-button.active {
        background-color: var(--primary-brown);
        color: white;
    }

    .menu-items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        width: 100%;
        max-width: 1200px;
    }

    .menu-item {
        background-color: var(--background-white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .menu-item:hover {
        transform: translateY(-5px);
    }

    .menu-item-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .menu-item-content {
        padding: 20px;
    }

    .menu-item-title {
        font-family: Amaranth, sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 8px;
    }

    .menu-item-description {
        color: rgba(22, 5, 3, 0.76);
        font-size: 14px;
        margin-bottom: 15px;
    }

    .menu-item-price {
        font-weight: 700;
        font-size: 18px;
        color: var(--primary-brown);
    }

    .add-to-cart {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: var(--primary-brown);
        color: white;
        font-family: "Open Sans";
        font-weight: 700;
        border: none;
        border-radius: 64px;
        padding: 10px 20px;
        margin-top: 15px;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s ease;
    }

    .add-to-cart:hover {
        background-color: var(--primary-color);
    }

    .add-to-cart:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .add-to-cart.success {
        background-color: var(--success-green);
    }

    .add-to-cart.error {
        background-color: var(--error-red);
    }

    /* Loading state */
    .loading {
        text-align: center;
        color: var(--primary-color);
        font-size: 18px;
        padding: 60px 20px;
        grid-column: 1 / -1;
    }

    /* Error message */
    .error-message {
        text-align: center;
        color: var(--error-red);
        font-size: 18px;
        padding: 60px 20px;
        grid-column: 1 / -1;
    }

    .error-details {
        font-size: 14px;
        color: var(--primary-color-opacity);
        margin-top: 10px;
    }

    /* No products message */
    .no-products {
        text-align: center;
        color: var(--primary-color-opacity);
        font-size: 18px;
        padding: 60px 20px;
        grid-column: 1 / -1;
    }

    /* Stock badge */
    .menu-item-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .stock-badge {
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 12px;
        font-weight: 600;
    }

    .stock-badge.low-stock {
        background-color: #FEF3C7;
        color: #D97706;
    }

    /* Disabled button state */
    .add-to-cart.disabled {
        background-color: var(--light-gray);
        color: #9CA3AF;
        cursor: not-allowed;
    }

    .add-to-cart.disabled:hover {
        background-color: var(--light-gray);
    }

    /* Cart badge */
    .cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: var(--primary-brown);
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
    }

    nav.encabezado .btnCart {
        position: relative;
    }

    @media (max-width: 960px) {
        nav.encabezado .btnFindKopi {
            padding-right: 0px;
        }

        nav.encabezado .btnLogin,
        nav.encabezado .btnRegister,
        nav.encabezado #shopping_cart {
            display: none;
        }

        nav.encabezado #menu {
            display: block;
        }
    }

    @media (max-width: 670px) {
        nav.encabezado .btnMenu {
            display: none;
        }

        .menu-title {
            font-size: 36px;
        }
    }

    @media (min-width: 961px) {
        nav.encabezado #menu {
            display: none;
        }
    }

    .usuario {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        color: #FFF;
        text-align: center;
        font-family: "Open Sans";
        font-size: 18px;
        font-style: normal;
        line-height: normal;
        letter-spacing: 0.09px;
        width: 53px;
        height: 2px;
        margin-right: 40px;
        margin-top: -45px;
    }

    .container {
        display: flex;
        height: 100vh;
    }

    .left-panel {
        width: 50%;
        background: linear-gradient(135deg, #2d1810 0%, #1a0f0a 100%);
        display: flex;
        flex-direction: column;
    }

    .search-section {
        padding: 20px;
    }

    .search-bar {
        position: relative;
        margin-bottom: 20px;
    }

    .search-input {
        width: 100%;
        padding: 15px;
        background-color: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 8px;
        color: white;
        font-size: 16px;
    }

    .search-input::placeholder {
        color: #aaa;
    }

    .search-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
    }

    .location-marker {
        width: 20px;
        height: 20px;
        background-color: #ff6b35;
        border-radius: 50%;
        margin-left: 10px;
    }

    .places-list {
        flex: 1;
        overflow-y: auto;
        padding: 0 20px;
    }

    .place-card {
        background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 15px;
        position: relative;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .place-card:hover {
        transform: translateY(-2px);
    }

    .place-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .place-address {
        font-size: 12px;
        opacity: 0.9;
        margin-bottom: 4px;
    }

    .place-phone {
        font-size: 12px;
        opacity: 0.9;
        margin-bottom: 8px;
    }

    .place-hours {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
    }

    .time-icon {
        width: 16px;
        height: 16px;
        border: 2px solid white;
        border-radius: 50%;
    }

    .place-rating {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.3);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
    }

    .place-decorative {
        position: absolute;
        bottom: -10px;
        right: -10px;
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, #ff6b35, #ffa500);
        border-radius: 50%;
        opacity: 0.3;
    }

    .right-panel {
        width: 50%;
        position: relative;
    }

    #map {
        width: 100%;
        height: 100%;
    }

    .map-marker {
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 12px;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .marker-orange {
        background-color: #ff6b35;
    }

    .marker-blue {
        background-color: #0099ff;
    }

    .marker-gray {
        background-color: #666;
    }

    .subrayado {
        display: inline-block;
        border-bottom: 1.65px solid #8B4513;
        padding-bottom: 4px;
        min-width: 20rem;
        text-align: left;
    }

    .centro {
        margin-top: -2rem;
    }

    .menu-link {
        font-size: 1.2rem;
        color: rgb(170, 170, 170);
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        padding-bottom: 2px;
    }

    .menu-link:hover {
        color: #160503;
        cursor: pointer;
        border-bottom: 4px solid #8B4513;
        font-size: 1.4rem;
    }

    nav.encabezado {
        background-color: #160503;
        color: #FFF;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 35px 40px;
        gap: 20px;
    }

    nav.encabezado .home {
        text-align: center;
        font-family: Fredoka, sans-serif;
        font-size: 70px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.35px;
        margin-top: -28px;
        text-decoration: none;
        color: #FFF;
    }

    nav.encabezado .btnMenu {
        user-select: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        margin-top: 30px;
        gap: 20px;
        margin-left: 55px;
        color: #FFF;
        text-align: center;
        font-family: "Open Sans";
        font-size: 18px;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.09px;
    }

    nav.encabezado .btnMenu .linea {
        width: 53px;
        height: 2px;
        margin-bottom: -20px;
        margin-top: -20px;
        background-color: #FFF;
    }

    @media (max-width: 670px) {
        nav.encabezado .btnMenu {
            display: none;
        }
    }

    nav.encabezado .btnFindKopi {
        user-select: none;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        color: #FFF;
        text-align: center;
        font-family: "Open Sans";
        font-size: 20px;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.1px;
        padding-right: 70px;
        margin-top: -24px;
    }

    @media (max-width: 960px) {
        nav.encabezado .btnFindKopi {
            padding-right: 0px;
        }
    }

    nav.encabezado .btnLogin {
        user-select: none;
        cursor: pointer;
        color: #FFF;
        text-align: center;
        font-family: "Open Sans";
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.09px;
        border: #FFF solid;
        padding: 7px;
        border-radius: 64px;
        margin-left: 20px;
        width: 92px;
        height: 39px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -20px;
    }

    nav.encabezado .btnLogin a {
        text-decoration: none;
        color: inherit;
    }

    @media (max-width: 960px) {
        nav.encabezado .btnLogin {
            display: none;
        }
    }

    nav.encabezado .btnRegister {
        user-select: none;
        cursor: pointer;
        text-align: center;
        font-family: "Open Sans";
        font-weight: 700;
        letter-spacing: 0.09px;
        border-radius: 64px;
        border: 1px solid #FFF;
        background: #FFF;
        margin-left: 20px;
        color: #160503;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 92px;
        height: 39px;
        padding: 7px;
        margin-top: -20px;
    }

    nav.encabezado .btnRegister a {
        text-decoration: none;
        color: inherit;
    }

    @media (max-width: 960px) {
        nav.encabezado .btnRegister {
            display: none;
        }
    }

    nav.encabezado .material-symbols-outlined {
        user-select: none;
        margin-left: 20px;
        cursor: pointer;
    }

    nav.encabezado #shopping_cart {
        margin-top: -25px;
    }

    @media (max-width: 960px) {
        nav.encabezado #shopping_cart {
            display: none;
        }
    }

    nav.encabezado #menu {
        user-select: none;
    }

    @media (min-width: 961px) {
        nav.encabezado #menu {
            display: none;
        }
    }

    .usuario {
        user-select: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        color: #FFF;
        text-align: center;
        font-family: "Open Sans";
        font-size: 18px;
        line-height: normal;
        letter-spacing: 0.09px;
        width: 53px;
        height: 2px;
        margin-right: 40px;
        margin-top: -45px;
    }

    a:visited {
        color: inherit;
        text-decoration: none;
    }
}