/* ===================================
   STICKY BOTTOM BUTTON
   =================================== */
.sticky-bottom-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--christmas-red) 0%, #A01729 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(196, 30, 58, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    animation: slideUp 0.5s ease forwards 1s;
    transition: all 0.3s ease;
}

.sticky-bottom-btn:hover {
    background: linear-gradient(135deg, #A01729 0%, var(--christmas-red) 100%);
    transform: translateY(0) scale(1.02);
    box-shadow: 0 -6px 30px rgba(196, 30, 58, 0.5);
}

.sticky-bottom-btn .btn-icon {
    font-size: 1.4rem;
    animation: pulse 2s ease-in-out infinite;
}

.sticky-bottom-btn .btn-text {
    letter-spacing: 0.5px;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Hide on desktop (optional - show on all devices) */
@media (min-width: 769px) {
    .sticky-bottom-btn {
        display: none; /* Remove this line if you want it on desktop too */
    }
}

/* Adjust for very small screens */
@media (max-width: 400px) {
    .sticky-bottom-btn {
        font-size: 0.9rem;
        padding: 14px 16px;
    }
    
    .sticky-bottom-btn .btn-icon {
        font-size: 1.2rem;
    }
}

/* Add padding to footer to prevent overlap */
body {
    padding-bottom: 70px; /* Height of sticky button */
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0; /* Remove padding on desktop if button is hidden */
    }
}
