.copy-notification {
    position: fixed;
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    animation: fadeInOut 1.5s ease-in-out;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transform: translateX(-50%);
    max-width: 200px;
    text-align: center;
}


.cursor-pointer {
    cursor: pointer;
}
.become-supplier{
    min-height: 240px;
    padding-bottom: 70px;
    margin-bottom: -50px;
}
@media(min-width: 992px){
    .become-supplier{
        min-height: unset;
        padding-bottom: 40px;
        margin-bottom: -50px;
    }
}



@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, 10px); }
    20% { opacity: 1; transform: translate(-50%, 0); }
    80% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -10px); }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .copy-notification {
        max-width: 180px;
        font-size: 13px;
        padding: 6px 12px;
    }
}