/* Floating Widget Styles */
.floating-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: slideInUp 0.5s ease-out;
}

.floating-button {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.floating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    background: #3a3a3a;
}

.floating-button:active {
    transform: translateY(0);
}

.floating-button .icon {
    width: 130px;
    height: 50px;
    display: flex;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    overflow: hidden;
}

.floating-button .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.floating-button .text {
    flex: 1;
    text-align: left;
}

.floating-button .text .main {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
}

.floating-button .text .sub {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.2;
}

.floating-button .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.floating-button:hover .arrow {
    transform: translateX(2px);
    opacity: 1;
}

/* Ripple effect */
.floating-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.floating-button:active::before {
    width: 100%;
    height: 100%;
}

/* Animation */
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-button {
        min-width: 100px;
        padding: 10px 16px;
        font-size: 13px;
    }
    
.floating-button .icon {
        width: 50px;
        height: 42px;
    }
    
    .floating-button .text .main {
        font-size: 12px;
    }
    
    .floating-button .text .sub {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .floating-widget {
        bottom: 80px;
        right: 10px;
    }
    
    .floating-button {
        min-width: 80px;
        padding: 8px 12px;
    }
    .floating-button .icon {
        width: 45px;
        height: 38px;
    }
}