.cookie-info {
    position: fixed;
    z-index: 1080;
    right: 1.25rem;
    bottom: 1.25rem;
    width: min(430px, calc(100vw - 2rem));
    color: #17251b;
    background: rgba(255, 253, 248, 0.97);
    border: 1px solid rgba(63, 122, 47, 0.2);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(8, 29, 19, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-info--closing {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
}

.cookie-info-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    padding: 1rem;
}

.cookie-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #315f25;
    background: #edf5e8;
    border-radius: 0.85rem;
    font-size: 1.15rem;
}

.cookie-info-content {
    min-width: 0;
}

.cookie-info-title {
    margin: 0 0 0.3rem;
    color: #132118;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.25;
}

.cookie-info-text {
    margin: 0;
    color: #526056;
    font-size: 0.88rem;
    line-height: 1.45;
}

.cookie-info-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.8rem;
    margin-top: 0.8rem;
}

.cookie-info-more {
    color: #315f25;
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: none;
}

.cookie-info-more:hover,
.cookie-info-more:focus {
    color: #234a1c;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.cookie-info-confirm {
    padding: 0.48rem 0.85rem;
    color: #ffffff;
    background: linear-gradient(135deg, #5f963a, #3f7a2f);
    border: 0;
    border-radius: 0.7rem;
    box-shadow: 0 8px 18px rgba(63, 122, 47, 0.22);
    font-size: 0.84rem;
    font-weight: 800;
}

.cookie-info-confirm:hover,
.cookie-info-confirm:focus-visible {
    background: linear-gradient(135deg, #4f8330, #315f25);
    outline: 3px solid rgba(63, 122, 47, 0.2);
    outline-offset: 2px;
}

.cookie-policy-table th {
    white-space: nowrap;
}

.cookie-policy-note {
    border-left: 4px solid #6ea53d;
    background: #f2f7ee;
}

@media (max-width: 575.98px) {
    .cookie-info {
        right: 0.75rem;
        bottom: 0.75rem;
        width: calc(100vw - 1.5rem);
        border-radius: 15px;
    }

    .cookie-info-inner {
        gap: 0.7rem;
        padding: 0.85rem;
    }

    .cookie-info-icon {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-info {
        transition: none;
    }
}
