button.t-submit {
    font-weight: 600;
    border-radius: 10px;
    background-image: linear-gradient(0.738turn,rgba(149,193,43,1) 0%,rgba(179,218,87,1) 47%,rgba(149,193,43,1) 97%);
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    box-shadow: 0px 4px 0px 0px rgba(144,190,32,1);
}







.messenger-buttons {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.messenger-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none !important;
}

.messenger-button:hover {
    transform: scale(1.05);
}

.messenger-button svg {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.messenger-button.telegram {
    background: #37AEE2;
}

.messenger-button.whatsapp {
    background: #25D366;
}

.messenger-button.max {
    background: linear-gradient(90deg, #5a8cff -16.1%, #43d6ff 16.36%, #8f3fff 76.63%);
    color: white;
}

.messenger-button.max svg {
    width: 24px;
    height: 24px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .messenger-buttons {
        bottom: 45px;
        right: 15px;
    }
    
    .messenger-button {
        width: 50px;
        height: 50px;
    }
    
    .messenger-button svg {
        width: 24px;
        height: 24px;
    }
    
    .messenger-button.max svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .messenger-buttons {
        bottom: 30px;
        right: 10px;
        gap: 8px;
    }
}



/* ГОРИЗОНТАЛЬНЫЕ кнопки */
.messenger-horizontal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.messenger-horizontal-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none !important;
    position: relative;
}

.messenger-horizontal-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.messenger-horizontal-button:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
}

.messenger-horizontal-button svg {
    width: 30px;
    height: 30px;
}

.messenger-horizontal-button.telegram {
    background: #37AEE2;
}

.messenger-horizontal-button.whatsapp {
    background: #25D366;
}

.messenger-horizontal-button.max {
    background: linear-gradient(90deg, #5a8cff -16.1%, #43d6ff 16.36%, #8f3fff 76.63%);
    color: white;
}

.messenger-horizontal-button.max svg {
    width: 26px;
    height: 26px;
}

/* Стили для подписи под кнопками */
.messenger-horizontal-caption {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* Вариант с текстом рядом */
.messenger-horizontal-with-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.messenger-text-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .messenger-horizontal {
        gap: 12px;
    }
    
    .messenger-horizontal-button {
        width: 55px;
        height: 55px;
    }
    
    .messenger-horizontal-button svg {
        width: 26px;
        height: 26px;
    }
    
    .messenger-horizontal-button.max svg {
        width: 22px;
        height: 22px;
    }
    
    .messenger-horizontal-caption {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .messenger-horizontal {
        gap: 10px;
    }
    
    .messenger-horizontal-button {
        width: 50px;
        height: 50px;
    }
    
    .messenger-horizontal-button svg {
        width: 24px;
        height: 24px;
    }
    
    .messenger-horizontal-button.max svg {
        width: 20px;
        height: 20px;
    }
}