.bawu-page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 20px;
}

.bawu-upload {
    max-width: 980px;
    margin: 32px auto;
}

.bawu-upload h2,
.bawu-upload h1 {
    margin: 0 0 8px;
}

.bawu-intro {
    margin: 0 0 24px;
}

.bawu-item {
    margin: 0 0 28px;
}

.bawu-item h3 {
    margin: 0 0 12px;
}

.bawu-slots {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.bawu-dropzone {
    position: relative;
    min-height: 150px;
    border: 2px dashed #8b98a7;
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.bawu-dropzone:hover,
.bawu-dropzone.is-dragging {
    border-color: #111827;
    background: #f8fafc;
}

.bawu-dropzone input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.bawu-dropzone-text {
    display: grid;
    gap: 6px;
}

.bawu-dropzone-text strong {
    font-size: 1rem;
}

.bawu-dropzone-text span,
.bawu-status {
    color: #526070;
}

.bawu-progress {
    height: 8px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5e7eb;
}

.bawu-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #2563eb;
    transition: width 160ms ease;
}

.bawu-status {
    min-height: 1.4em;
    margin: 12px 0 0;
}

.bawu-dropzone[data-state="success"] {
    border-color: #15803d;
}

.bawu-dropzone[data-state="success"] .bawu-progress span {
    background: #15803d;
}

.bawu-dropzone[data-state="success"] .bawu-status {
    color: #15803d;
}

.bawu-dropzone[data-state="error"] {
    border-color: #b91c1c;
}

.bawu-dropzone[data-state="error"] .bawu-status {
    color: #b91c1c;
}

.woocommerce .button.bawu-artwork-uploaded,
.woocommerce a.button.bawu-artwork-uploaded {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}
