.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    color: #1d1d1b;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    z-index: 9999;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner[hidden] {
    display: none;
}
.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
}
.cookie-banner__title {
    display: block;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 6px;
    color: #1d1d1b;
}
.cookie-banner__text p {
    margin: 0;
    color: #444;
}
.cookie-banner__link {
    color: #c8102e;
    text-decoration: underline;
    margin-left: 4px;
}
.cookie-banner__link:hover {
    text-decoration: none;
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cookie-banner__btn {
    appearance: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 22px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    min-width: 120px;
}
.cookie-banner__btn--primary {
    background: #c8102e;
    color: #ffffff;
}
.cookie-banner__btn--primary:hover {
    background: #a40d25;
}
.cookie-banner__btn--secondary {
    background: #ffffff;
    color: #1d1d1b;
    border: 1px solid #c4c4c4;
}
.cookie-banner__btn--secondary:hover {
    background: #f4f4f4;
    border-color: #1d1d1b;
}
.cookie-preferences-link {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1d1d1b;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    cursor: pointer;
    z-index: 9998;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cookie-preferences-link:hover {
    background: #c8102e;
    color: #ffffff;
    transform: translateY(-2px);
}
.cookie-preferences-link i {
    font-size: 20px;
    line-height: 1;
}
@media (max-width: 480px) {
    .cookie-preferences-link {
        bottom: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
    }
    .cookie-preferences-link i {
        font-size: 18px;
    }
}
@media (min-width: 720px) {
    .cookie-banner__inner {
        flex-direction: row;
        align-items: center;
    }
    .cookie-banner__text {
        flex: 1;
    }
    .cookie-banner__actions {
        flex-shrink: 0;
        justify-content: flex-end;
    }
}
@media (max-width: 480px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }
    .cookie-banner__btn {
        flex: 1;
        min-width: 0;
    }
}
