.seller-capacity-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid #eceff2;
    border-bottom: 1px solid #eceff2;
    background: transparent;
    color: #2f3742;
}

.seller-capacity-notice-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.seller-capacity-notice-copy strong {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    color: #303744;
}

.seller-capacity-notice-copy span {
    font-size: 11px;
    line-height: 1.45;
    color: #737b87;
}

.seller-capacity-info {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 0 5px 6px;
    border: 0;
    background: transparent;
    color: #f05505;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.seller-capacity-info i {
    font-size: 9px;
}

.seller-capacity-info:hover,
.seller-capacity-info:focus-visible {
    color: #d94b04;
    background: transparent;
    outline: 2px solid rgba(240, 85, 5, 0.2);
    outline-offset: 3px;
}

.seller-capacity-dialog {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(18, 22, 30, 0.55);
}

.seller-capacity-dialog-card {
    width: min(100%, 560px);
    max-height: min(82vh, 680px);
    overflow-y: auto;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(18, 22, 30, 0.25);
}

.seller-capacity-dialog-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.seller-capacity-dialog-header h2 {
    margin: 0;
    color: #1f2f46;
    font-size: 21px;
    line-height: 1.25;
}

.seller-capacity-dialog-close {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #eef1f5;
    color: #3f4a5b;
}

.seller-capacity-dialog-close:focus-visible {
    outline: 3px solid rgba(240, 85, 5, 0.25);
    outline-offset: 2px;
}

.seller-capacity-dialog-body p {
    margin: 0 0 14px;
    color: #3f4b5d;
    font-size: 14px;
    line-height: 1.55;
}

.seller-capacity-dialog-body p:last-child {
    margin-bottom: 0;
}

body.seller-capacity-dialog-open {
    overflow: hidden;
}

.theme-dark .seller-capacity-notice {
    border-color: #3b3e44;
    background: transparent;
    color: #f4f4f4;
}

.theme-dark .seller-capacity-notice-copy strong,
.theme-dark .seller-capacity-dialog-header h2 {
    color: #fff;
}

.theme-dark .seller-capacity-notice-copy span,
.theme-dark .seller-capacity-dialog-body p {
    color: #d2d6dc;
}

.theme-dark .seller-capacity-dialog-card {
    background: #25272b;
}

@media (max-width: 575px) {
    .seller-capacity-dialog {
        align-items: flex-end;
        padding: 0;
    }

    .seller-capacity-dialog-card {
        width: 100%;
        max-height: 84vh;
        padding: 18px 18px calc(20px + env(safe-area-inset-bottom));
        border-radius: 18px 18px 0 0;
    }

    .seller-capacity-dialog-header h2 {
        font-size: 19px;
    }
}
