body {
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.btn-primary {
    background-color: #1a472a;
    border-color: #1a472a;
}

.btn-primary:hover {
    background-color: #2d5a3d;
    border-color: #2d5a3d;
}

.list-group-item:hover {
    background-color: #e9ecef;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
}

#cart-items-container {
    max-height: 60vh;
    overflow-y: auto;
}

/* Estilo para el scrollbar del carrito */
#cart-items-container::-webkit-scrollbar {
    width: 6px;
}
#cart-items-container::-webkit-scrollbar-thumb {
    background: #1a472a;
    border-radius: 10px;
}

.x-small {
    font-size: 0.75rem;
}

.offcanvas-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.titulo{
     color: #fff;
     text-align: center;
     font-size: 18px;
}

@media (max-width:996px) {
    .titulo{
        font-size: 18px;
}
}