/* Cookies Banner Styles */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid #66CCCC;
    color: #000000;
    z-index: 21474836517;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookies-content {
    flex: 1;
}

.cookies-text {
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
}

.cookies-link {
    color: #66CCCC;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookies-link:hover {
    color: #000000;
}

.cookies-accept {
    background: #66CCCC;
    border: none;
    border-radius: 60px;
    padding: 10px 20px;
    color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.cookies-accept:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Мобильные стили */
@media (max-width: 768px) {
    .cookies-banner {
        padding: 12px 0;
    }
    
    .cookies-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cookies-text {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .cookies-accept {
        padding: 8px 16px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
    }
}