/* Gifts Section */
.gifts-section {
    margin-bottom: 24px;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.gift-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.gift-card:hover {
    transform: translateY(-4px);
}

.gift-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.gift-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

.gift-name {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
}

.gift-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.gift-price {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: bold;
    color: white;
    font-size: 16px;
}

.gift-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffd700;
    color: #000;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: bold;
}
