/* =========================================
   5. МОДУЛЬ МАГАЗИНА (SHOP)
   ========================================= */

#shop-modal .modal-content {
    max-width: 450px;
}

#shop-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.shop-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    text-align: left;
    border-left: 5px solid #ccc;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shop-item h4 {
    margin: 0;
    font-size: 1.1rem;
}

.shop-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.shop-level-green {
    border-color: #66bb6a;
}

.shop-level-blue {
    border-color: #42a5f5;
}

.shop-level-red {
    border-color: #ef5350;
}

.shop-level-fire {
    border-color: #ffa726;
}

.shop-btn-buy {
    align-self: flex-end;
    background: #228be6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.shop-btn-buy:disabled {
    background: #ccc;
    cursor: not-allowed;
}