/* Rewards Container */
.rewards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Reward Card */
.reward-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.reward-card:hover {
    transform: translateY(-4px);
}

/* Card Header */
.reward-card-header {
    padding: 0;
}

.reward-image-container {
    position: relative;
    aspect-ratio: 16/9;
    background-color: #f3f4f6;
    overflow: hidden;
}

.reward-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reward-card:hover .reward-image {
    transform: scale(1.05);
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9ca3af;
    font-size: 2rem;
}

/* Card Content */
.reward-card-content {
    padding: 1.5rem;
}

.reward-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.points-display {
    display: flex;
    align-items: center;
    color: #eab308;
    gap: 0.5rem;
}

.points-display i {
    font-size: 1.25rem;
}

.reward-price {
    font-size: 1.875rem;
    font-weight: 800;
    color: #E37302;
}

/* Card Footer */
.reward-card-footer {
    background-color: #f3f4f6;
    padding: 1.5rem;
}

.buy-now-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: #24184a;
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.buy-now-btn:hover {
    background-color: #24184a;
}

.buy-now-btn i {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rewards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1rem;
    }
    
    .reward-card-content {
        padding: 1rem;
    }
    
    .reward-card-footer {
        padding: 1rem;
    }
}