/* Korry Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #212529;
    color: #fff;
    padding: 16px 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 240px;
}

.cookie-consent-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: #fff;
}

.cookie-consent-text p {
    font-size: 13px;
    color: #adb5bd;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    white-space: nowrap;
}

.cookie-btn-link {
    color: #adb5bd !important;
    font-size: 13px;
    text-decoration: underline !important;
    padding: 0;
    white-space: nowrap;
}

.cookie-btn-link:hover {
    color: #fff !important;
}

.cookie-category {
    padding: 12px 0;
}

.cookie-toggle-wrapper {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-consent-actions {
        width: 100%;
    }
}