/* Main wrapper */

.bpe-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    box-sizing: border-box;
}


/* Header */

.bpe-header {
    margin-bottom: 25px;
}

.bpe-header h2 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.2;
}

.bpe-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
}


/* Toolbar */

.bpe-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Search */

.bpe-search {
    flex: 1;
}

#bpe-product-search {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}


/* Select All */

.bpe-select-all {
    white-space: nowrap;
}

.bpe-select-all label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
}

.bpe-select-all input {
    width: 18px;
    height: 18px;
}


/* Table */

.bpe-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
}

.bpe-product-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.bpe-product-table th {
    background: #f5f5f5;
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}

.bpe-product-table td {
    padding: 13px 12px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
}

.bpe-product-table tbody tr:hover {
    background: #fafafa;
}


/* Checkbox */

.bpe-checkbox-cell {
    width: 80px;
    text-align: center !important;
}

.bpe-product-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}


/* Product name */

.bpe-product-name {
    font-weight: 500;
}


/* SKU */

.bpe-product-sku {
    color: #777;
    font-size: 14px;
}


/* Quantity */

.bpe-quantity-cell {
    width: 130px;
}

.bpe-quantity {
    width: 90px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
}


/* Selected count */

.bpe-selected-count {
    padding: 12px 15px;
    margin-bottom: 30px;
    background: #f7f7f7;
    border-radius: 5px;
    font-size: 14px;
}


/* Customer section */

.bpe-customer-section {
    padding-top: 10px;
}

.bpe-customer-section h3 {
    margin: 0 0 20px;
    font-size: 24px;
}


/* Form grid */

.bpe-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* Field */

.bpe-field {
    margin-bottom: 20px;
}

.bpe-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
}

.bpe-field label span {
    color: #d00;
}

.bpe-field input,
.bpe-field textarea {
    width: 100%;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    padding: 12px 14px;
    font-size: 15px;
    box-sizing: border-box;
    background: #fff;
}

.bpe-field input {
    height: 48px;
}

.bpe-field textarea {
    min-height: 120px;
    resize: vertical;
}


/* Submit button */

.bpe-submit-button {
    display: inline-block;
    padding: 14px 30px;
    border: 0;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bpe-submit-button:hover {
    opacity: 0.9;
}

.bpe-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* Response */

.bpe-response {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
}

.bpe-success {
    display: block;
    background: #eaf8ee;
    color: #176b32;
    border: 1px solid #bde5c8;
}

.bpe-error {
    display: block;
    background: #fff0f0;
    color: #a30000;
    border: 1px solid #efb5b5;
}


/* Honeypot */

.bpe-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}


/* Mobile */

@media (max-width: 767px) {

    .bpe-wrapper {
        padding: 20px 15px;
    }

    .bpe-header h2 {
        font-size: 26px;
    }

    .bpe-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .bpe-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bpe-product-table {
        min-width: 600px;
    }

    .bpe-submit-button {
        width: 100%;
    }

}
.bpe-product-image {
    width: 80px;
    text-align: center;
}

.bpe-product-thumb {
    width: 55px !important;
    height: 55px !important;
    object-fit: contain;
    display: inline-block;
    border-radius: 4px;
}