/* Уведомление о cookie (152-ФЗ) */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #2a2520;
    color: #f5f2ee;
    padding: 1rem 1.25rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    font-family: var(--font-heading), sans-serif;
    font-size: 0.9rem;
}

.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent__text {
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.cookie-consent__link {
    color: #c4b8a8;
    text-decoration: underline;
}

.cookie-consent__link:hover {
    color: #f5f2ee;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-consent__btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-consent__btn:hover {
    opacity: 0.9;
}

.cookie-consent__btn--accept {
    background: #8b1e1e;
    color: #fff;
}

.cookie-consent__btn--reject {
    background: transparent;
    color: #c4b8a8;
    border: 1px solid #c4b8a8;
}

.cookie-consent__btn--settings {
    background: #5c5c5c;
    color: #fff;
}

/* Модальное окно настройки */
.cookie-consent-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-consent-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.cookie-consent-modal__box {
    position: relative;
    background: #f5f2ee;
    color: #2a2520;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cookie-consent-modal__title {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
}

.cookie-consent-modal__desc {
    font-size: 0.9rem;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.cookie-consent-modal__list {
    margin-bottom: 1.25rem;
}

.cookie-consent-modal__item {
    display: block;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    cursor: pointer;
}

.cookie-consent-modal__item input {
    margin-right: 0.5rem;
}

.cookie-consent-modal__actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-consent-modal__close {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #999;
    border-radius: 6px;
    font-family: inherit;
    cursor: pointer;
}

.cookie-consent-modal__close:hover {
    background: #eee;
}
