/* Styles voor T Breumelke Product & Order Manager */

.tb-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.tb-product-item {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 15px;
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.tb-product-item h3 {
    margin-top: 0;
    color: #4d2a11;
    font-size: 1.5em;
}

.tb-product-item .tb-price {
    margin: 8px 0;
    font-weight: bold;
    color: #4d2a11;
}

.tb-order-form .tb-field {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.tb-order-form label {
    font-weight: bold;
    margin-bottom: 4px;
    color: #4d2a11;
}

.tb-order-form input[type="number"],
.tb-order-form input[type="text"],
.tb-order-form input[type="email"],
.tb-order-form select {
    padding: 6px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95em;
}

.tb-order-form button {
    background: #f0c987;
    color: #4d2a11;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease-in-out;
}

.tb-order-form button:hover {
    background: #e8b96f;
}

@media (max-width: 768px) {
    .tb-product-item {
        flex: 1 1 100%;
    }
}