    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .list-group-item:hover {
        background-color: #f8f9fa;
    }
    .badge.bg-danger {
        background-color: #E10600 !important;
    }
    .btn-outline-danger {
        color: #E10600;
        border-color: #E10600;
    }
    .btn-outline-danger:hover {
        background-color: #E10600;
        color: white;
    }
    .breadcrumb {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        content: "›";
        font-size: 1.2rem;
        vertical-align: middle;
    }
    .toggle-subcategorias {
        transition: transform 0.2s;
    }
    .toggle-subcategorias:hover {
        transform: scale(1.1);
}
/* Estilos personalizados */
    .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 10px;
        overflow: hidden;
        border: none;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .product-image-container {
        position: relative;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
    }
    
    .product-image-container img {
        max-height: 100%;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .product-card:hover .product-image-container img {
        transform: scale(1.05);
    }
    
    .no-image-placeholder {
        text-align: center;
        color: #6c757d;
    }
    
    .no-image-placeholder i {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    
    .product-category-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(48, 47, 47, 0.9);
        color: white;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: bold;
    }
    
    .product-title {
        font-size: 1rem;
        font-weight: 600;
        min-height: 2.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-description {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-detail-btn {
        transition: all 0.3s ease;
    }
    
    .empty-state-icon {
        margin-bottom: 20px;
    }
