<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos generales */
body {
    background-image: url('../image/coffee-sales-website.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 56px; /* Espacio para la navbar fija */
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar .nav-item a {
    color: #333 !important;
}

.navbar-nav .nav-item .nav-link {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-nav .nav-item .nav-link i {
    margin-right: 5px;
}

.navbar-nav .nav-item .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Estilos de botones */
.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-info {
    background-color: #17a2b8;
    border: none;
}

.btn-info:hover {
    background-color: #117a8b;
}


/* Estilos de tarjetas */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out;
    margin: 10px;
    min-height: 450px;
    background-color: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    margin-top: 20px;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    max-height: 200px;
    object-fit: cover;
    width: 90%;
}

.card-body {
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    color: #555;
}
/* Estilos para las estrellas */
.stars {
    color: gold;
    font-size: 1.2em;
    display: inline-block;
}




/* Footer */
footer {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    margin-top: 20px;
    bottom: 0;
}

footer p {
    margin: 0;
    color: #333;
}

footer a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0056b3;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    margin: 0 10px;
    color: #333;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #007bff;
}

/* Estilos especÃ­ficos */
#contenido {
    margin-left: auto;
}

#contenido h2 {
    color: #fff;
    background-color: #000;
    max-width: 75%;
    background-image: url('../image/wooden-background.webp'); /* Ajusta la ruta segÃºn sea necesario */
    background-size: cover;
    background-position: center;
    padding: 10px;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 5px;
}

#cartContainer {
    height: auto;
    max-height: auto;
}

#cartContainer h2 {
    color: #fff;
}

#sidebarDesktop {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 70px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    max-width: 200px;
}

#sidebarDesktop h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
}

#sidebarDesktop .list-group {
    border: none;
    padding-left: 0;
    list-style: none;
}

#sidebarDesktop .list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
}

#sidebarDesktop .list-group-item ul, li, a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

#sidebarDesktop .list-group-item ul, li {
    list-style-type: none;
}

#sidebarDesktop .list-group-item ul, li, a:hover {
    text-decoration: none;
    color: #fff;
}

#sidebarDesktop .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}



/* Ajustes responsivos */
@media (max-width: 768px) {
    .col-12 {
        margin-bottom: 20px;
        margin-top: -70px;
        background-image: url('../image/wooden-background.webp'); /* Ajusta la ruta segÃºn sea necesario */
        background-size: cover;
        background-position: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        color: #fff;
    }
    
    .col-12 h5 {
        font-size: 28px;
        margin-top: 10px;
    }
    
    .product-container {
        margin-top: 70px;
    }

    .product-image, .img-thumbnail {
        max-height: 200px;
    }

    .star-rating {
        font-size: 30px;
    }

    #leaveReviewBtn {
        font-size: 14px;
        padding: 6px 15px;
    }

    #cartContainer {
        margin-bottom: 100px;
    }

    #leftMenuMobile li {
        background-image: url('../image/wooden-background.webp'); /* Ajusta la ruta segÃºn sea necesario */
        background-size: cover;
        background-position: center;
        color: #fff;
        margin-top: 10px;
        text-align: center;
    }

    #leftMenuMobile .list-group-item a {
        color: #fff !important;
    }

    #leftMenuMobile .list-group-item a:hover {
        color: #ccc !important;
    }

    #leftMenuMobile .list-group-item a {
        margin-bottom: -20px;
        font-size: 26px;
    }
    .collapse {
    transition: height 3.9s ease;
}

}
</pre></body></html>