.floating-buy-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #17191E 0%, #D3221A 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(211, 34, 26, 0.35);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-buy-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(211, 34, 26, 0.5);
}

.floating-buy-button .buy-icon {
    width: 80px;
    height: 80px;
    /* filter: brightness(0) invert(1); */
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 24px rgba(211, 34, 26, 0.35);
    }
    50% {
        box-shadow: 0 8px 24px rgba(211, 34, 26, 0.6);
    }
    100% {
        box-shadow: 0 8px 24px rgba(211, 34, 26, 0.35);
    }
}

@media (max-width: 768px) {
    .floating-buy-button {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
    
    .floating-buy-button .buy-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .floating-buy-button {
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
    }
    
    .floating-buy-button .buy-icon {
        width: 60px;
        height: 60px;
    }
} 