/**
 * Shop offers. Load order is significant: keep this file's <link> position in index.html.
 */

.modal-panel--shop {
    max-width: min(480px, 92vw);
}

.shop-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    width: 100%;
    padding-right: 6px;
}

.shop-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--card);
    border: 3px solid var(--card-edge);
}

.shop-offer__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
}

.shop-offer__price {
    font-size: 14px;
    color: var(--text-dim);
}

.shop-offer__buy {
    padding: 8px 20px;
    border-radius: 8px;
    border: 3px solid var(--cta-edge);
    background: linear-gradient(var(--cta-top), var(--cta-bottom));
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.shop-offer__buy:disabled {
    filter: grayscale(0.7);
    opacity: 0.55;
    cursor: default;
}

.shop-empty {
    color: var(--text-muted);
    opacity: 0.8;
}
