.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1080;
}

.cookie-consent__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 22px 24px;
    border: 1px solid rgba(68, 165, 174, 0.2);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 46px rgba(31, 57, 61, 0.18);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent__eyebrow {
    margin-bottom: 8px;
    color: #357a81;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cookie-consent__title {
    margin: 0 0 10px;
    text-align: left;
    text-shadow: none;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
}

.cookie-consent__text {
    margin-bottom: 12px;
    max-width: 760px;
    line-height: 1.7;
}

.cookie-consent__details {
    margin-bottom: 14px;
}

.cookie-consent__details summary {
    color: #357a81;
    cursor: pointer;
    font-weight: 700;
}

.cookie-consent__details-content {
    margin-top: 10px;
}

.cookie-consent__details-content p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent__checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: #44a5ae;
    flex-shrink: 0;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    min-width: 280px;
}

.cookie-consent__btn {
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cookie-consent__btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #44a5ae 0%, #357a81 100%);
}

.cookie-consent__btn-primary:hover,
.cookie-consent__btn-primary:focus {
    color: #ffffff;
    background: linear-gradient(135deg, #3a939c 0%, #2f6d73 100%);
}

.cookie-consent__btn-secondary {
    color: #357a81;
    border: 1px solid rgba(68, 165, 174, 0.38);
    background: rgba(68, 165, 174, 0.08);
}

.cookie-consent__btn-ghost {
    color: #5f6f73;
    border: 1px solid rgba(95, 111, 115, 0.18);
    background: #ffffff;
}

@media (max-width: 900px) {
    .cookie-consent__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-consent__actions {
        min-width: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-consent__inner {
        padding: 18px;
        border-radius: 18px;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-consent__btn {
        width: 100%;
    }
}
