.container.footer-container { padding: 0; }
.logo.footer-logo { color: var(--text-dark); }

.price-lines {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    line-height: 1.12;
}

.price-line {
    display: block;
}

.price-line-label {
    font: inherit;
    opacity: 1;
}

.price-line + .price-line {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.7px;
    opacity: 0.72;
}

body.cookie-notice-visible {
    padding-bottom: calc(var(--cookie-notice-height, 0px) + 28px);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 18px;
    z-index: 1000;
    width: min(100% - 32px, 980px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px 16px 22px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-dark);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.cookie-notice__content {
    min-width: 0;
}

.cookie-notice__content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.cookie-notice__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-notice__link,
.cookie-notice__accept {
    min-height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition, all 0.25s ease);
    white-space: nowrap;
}

.cookie-notice__link {
    color: var(--text-dark);
    background: #f4f4f5;
}

.cookie-notice__link:hover {
    background: #ececef;
}

.cookie-notice__accept {
    color: var(--oev-black);
    background: var(--oev-lime);
}

.cookie-notice__accept:hover {
    background: #bccf4a;
}

@media (max-width: 640px) {
    body.cookie-notice-visible {
        padding-bottom: calc(var(--cookie-notice-height, 0px) + 20px);
    }

    .cookie-notice {
        bottom: 10px;
        width: calc(100% - 20px);
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
        border-radius: 20px;
    }

    .cookie-notice__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-notice__link,
    .cookie-notice__accept {
        width: 100%;
        padding: 0 12px;
    }
}
