/* ============================================
   Rewards System - Frontend Styles
   ============================================ */

.rewards-system-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.rewards-system-reward-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.rewards-system-reward-card__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.rewards-system-reward-card__cost {
    color: #0073aa;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

