/* styles/components/seller-gate.css */

.dashboard-section.seller-gated {
    position: relative;
    min-height: 70vh;
}

.dashboard-section.seller-gated>*:not(.seller-gate) {
    pointer-events: none;
    user-select: none;
}

.seller-gate {
    position: absolute;
    inset: 0;
    z-index: 50;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border-radius: inherit;
}

.seller-gate-content {
    width: min(550px, calc(100% - 60px));
    padding: 35px 40px;

    background: rgba(42, 42, 42, 1);
    border: 1px solid rgba(162, 38, 255, 0.45);
    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);

    text-align: center;
    color: #fff;
}

.seller-gate-content h2 {
    margin: 0 0 16px;

    font-size: 26px;
    font-weight: 400;
    color: #fff;
}

.seller-gate-description {
    margin: 0 0 16px;

    font-size: 15px;
    line-height: 1.6;
    color: #d5d5d5;
}

.seller-gate-requirement {
    margin: 0 0 28px;

    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.seller-gate-button {
    min-width: 230px;
    height: 38px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 0;
    border-radius: 20px;

    background: #a226ff;
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.seller-gate-button img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.seller-gate-button:hover {
    opacity: .7;
}

.seller-gate-button:active {
    transform: scale(.98);
}

.seller-gate-actions {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.seller-gate-status-button {
    min-width: 230px;
    height: 38px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 20px;
    background: #1a771d;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

.seller-gate-status-button:hover {
    opacity: 0.7;
}

@media (max-width: 800px) {
    .seller-gate-content {
        width: calc(100% - 30px);
        padding: 28px 22px;
    }

    .seller-gate-content h2 {
        font-size: 22px;
    }

    .seller-gate-button {
        width: 100%;
        min-width: 0;
    }
}