span {
    color: white !important;
}

.floating-order-button {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 0 10px;
    width: auto;
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-order-button__link {
    position: relative;
    background: linear-gradient(135deg, #ff3366, #ff6600);
    color: #fff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.4;
    max-width: 100%;
    width: auto;
    text-align: center;
    min-width: 280px;
}

.floating-order-button__link:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.floating-order-button__close {
    position: absolute;
    top: -12px;
    right: 12px;
    background: #000;
    color: #fff;
    width: 26px;
    height: 26px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    transition: background 0.2s ease;
}

.floating-order-button__close:hover {
    background: #222;
}

/* Адаптация под мобилки */
@media (max-width: 768px) {
    .floating-order-button {
        bottom: 120px;
        padding: 0 10px;
        width: 100%;
    }

    .floating-order-button__link {
        font-size: 15px;
        padding: 12px 20px;
        width: 100%;
        border-radius: 24px;
    }

    .floating-order-button__close {
        top: -10px;
        right: 10px;
        width: 24px;
        height: 24px;
        font-size: 16px;
        line-height: 24px;
    }
}
