/* Cookie consent banner — Minolita */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(45, 45, 45, 0.97);
    color: #f2f2f2;
    border-top: 2px solid #bb7c4b;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px 20px;
}

.cookie-consent__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.cookie-consent__text {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 920px;
}

.cookie-consent__text a {
    color: #d4a077;
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    color: #fff;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.cookie-consent__btn {
    appearance: none;
    border: 1px solid transparent;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    padding: 10px 18px;
    min-height: 44px;
    min-width: 140px;
    flex: 1 1 auto;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent__btn--accept {
    background: #bb7c4b;
    color: #fff;
    border-color: #bb7c4b;
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus {
    background: #a56b3d;
    border-color: #a56b3d;
    outline: none;
}

/* Равный визуальный вес с «Принять все»: отказ не прячется и не ослабляется */
.cookie-consent__btn--reject {
    background: #fff;
    color: #2d2d2d;
    border-color: #fff;
}

.cookie-consent__btn--reject:hover,
.cookie-consent__btn--reject:focus {
    background: #f0f0f0;
    outline: none;
}

.cookie-consent__btn--settings {
    background: transparent;
    color: #d4a077;
    border-color: #bb7c4b;
    /*flex: 0 1 auto;*/
    min-width: 120px;
}

.cookie-consent__btn--settings:hover,
.cookie-consent__btn--settings:focus {
    background: rgba(187, 124, 75, 0.15);
    outline: none;
}

.cookie-consent__settings {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-consent__option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent__option input {
    margin-top: 4px;
    flex-shrink: 0;
}

.cookie-consent__option strong {
    display: block;
    font-weight: 600;
    color: #fff;
}

.cookie-consent__option em {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

.cookie-consent__actions--settings {
    margin-top: 8px;
}

.cookie-consent-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
}

.cookie-consent-link:hover,
.cookie-consent-link:focus {
    color: #bb7c4b;
    outline: none;
}

@media (max-width: 640px) {
    .cookie-consent__inner {
        padding: 14px 14px 16px;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-consent__btn {
        width: 100%;
        text-align: center;
    }
}
