.bb-card-container {
    max-width: 1200px;
    min-width: 1024px;
    margin: 40px auto;
}

.bb-card-grid {
    width: 100%;
}

    .bb-card-grid tbody {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .bb-card-grid tr {
        display: block;
        width: calc(50% - 15px);
    }

    .bb-card-grid td {
        display: block;
        border: none !important;
        padding: 0 !important;
    }

.bb-product-card {
    display: flex;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    height: 100%;
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 8px 20px rgba(0,0,0,0.05);
}

    .bb-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08), 0 20px 40px rgba(0,0,0,0.18);
    }

.bb-card-image {
    display: flex;
    align-items: center;
}

.bb-card-image img {
    width: 140px;
    border-radius: 8px;
}

.bb-card-body {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bb-card-code {
    font-size: 13px;
    color: #6B7C8A;
    margin-bottom: 4px;
}

.bb-card-description {
    font-size: 15px;
    font-weight: 500;
    color: #1E2A33;
    margin-bottom: 10px;
}

.bb-card-price {
    font-size: 19px;
    font-weight: 600;
    color: #F28C28;
    margin-bottom: 12px;
}

.bb-card-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bb-add-btn {
    background: #004E7C;
    padding: 6px;
    border-radius: 6px;
    transition: 0.2s;
}

    .bb-add-btn:hover {
        background: #003B5C;
    }
