.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent__text {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.55;
}

.cookie-consent__text a {
    color: #374151;
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    color: #111827;
}

.cookie-consent__actions {
    display: flex;
    flex-shrink: 0;
    gap: 12px;
}

.cookie-consent__btn {
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.cookie-consent__btn:hover {
    opacity: 0.9;
}

.cookie-consent__btn--accept {
    background: #2f6b4f;
    color: #fff;
}

.cookie-consent__btn--decline {
    background: #fff;
    color: #374151;
    border: 1px solid #d1d5db;
}

@media (max-width: 991px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        justify-content: flex-end;
    }
}

@media (max-width: 575px) {
    .cookie-consent {
        padding: 14px 16px;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-consent__btn {
        width: 100%;
    }
}
