 /* Стили для спойлера о cookies */
.cookies-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: var(--secondary);
    color: var(--textlight);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookies-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookies-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

.cookies-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: 10px;
}

.cookies-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cookies-accept {
    background: var(--primary);
    color: var(--secondary);
}

.cookies-accept:hover {
    background: #ffbb33;
}

.cookies-settings {
    background: transparent;
    color: var(--textlight);
    border: 1px solid var(--textlight);
}

.cookies-settings:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookies-more {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: none;
}

.cookies-more h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.cookies-more p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Адаптивность для cookies */
@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookies-text {
        min-width: unset;
    }
    
    .cookies-buttons {
        width: 100%;
        justify-content: center;
    }
}
