.cbo-bulk-order {
    margin: 1.5rem 0;
}

.cbo-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.cbo-table th,
.cbo-table td {
    border: 1px solid #ddd;
    padding: 0.6rem;
    text-align: left;
    vertical-align: middle;
}

.cbo-thumb img {
    max-width: 60px;
    height: auto;
    display: block;
}

.cbo-qty-input,
.cbo-cart-item-qty {
    width: 65px;
    font-size: 14px;
    font-family: inherit;
    border: var(--lightGrey);
    border: #aaa 1px solid;
    padding: 0.25em;
    border-radius: 0.25em;
}

.cbo-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85em;
}

.cbo-message {
    min-height: 1.2em;
    font-size: 0.95rem;
}

.cbo-message.is-success {
    color: #1f7a1f;
}

.cbo-message.is-error {
    color: #b42318;
}

.cbo-cart-summary-wrap {
    border: 1px solid #ddd;
    padding: 1rem;
    background: #fafafa;
}

.cbo-cart-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.cbo-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.5rem 0;
}

.cbo-cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.cbo-cart-item-controls button {
    font-size: 0.75em !important;
}

.cbo-cart-total {
    margin-bottom: 0.8rem;
}

.cbo-quote-box {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid #e5e5e5;
    font-size: 0.85em;
}

.cbo-quote-box h4 {
    margin: 0 0 0.5rem;
}

.cbo-guest-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.cbo-guest-fields p {
    margin: 0;
}

.cbo-guest-fields label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.cbo-guest-fields input {
    width: 100%;
}

@media (max-width: 768px) {
    .cbo-cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cbo-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cbo-guest-fields {
        grid-template-columns: 1fr;
    }
}


.cbo-checkout-btn {
    font-size: 0.85em;
    text-decoration: none !important;
}

.cbo-table th:first-child, .cbo-table td:first-child {
    width: 7em;
}
.cbo-thumb img {
    width: 100%;
}