/* Temu Gift Button Styles */
.temu-gift-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.gift-content {
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 75, 87, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.gift-content i {
    font-size: 1.5rem;
}

.gift-text {
    font-weight: bold;
    font-size: 1rem;
}

.temu-gift-button:hover .gift-content {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #ff4757, #ff6b6b);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .temu-gift-button {
        bottom: 10px;
        right: 10px;
    }
    
    .gift-content {
        padding: 10px 15px;
        gap: 5px;
    }
    
    .gift-content i {
        font-size: 1.2rem;
    }
    
    .gift-text {
        font-size: 0.8rem;
    }
}

/* Small Screens */
@media (max-width: 480px) {
    .temu-gift-button {
        bottom: 5px;
        right: 5px;
    }
    
    .gift-content {
        padding: 8px 12px;
    }
    
    .gift-content i {
        font-size: 1rem;
    }
    
    .gift-text {
        font-size: 0.7rem;
    }
} 