/* Cookie Consent Banner Styling */
.cookie-consent-overlay {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    width: calc(100% - 48px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
    z-index: 999;
    font-family: 'Poppins', sans-serif;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    display: none;
    box-sizing: border-box;
}

.cookie-consent-overlay.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-overlay.hide {
    transform: translateY(100px);
    opacity: 0;
}

.cookie-consent-content {
    margin-bottom: 18px;
}

.cookie-consent-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.cookie-consent-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

.cookie-consent-text a {
    color: #303F9F;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-consent-text a:hover {
    color: #1a237e;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.cookie-consent-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-consent-btn-accept {
    background-color: #303F9F;
    color: #ffffff;
}

.cookie-consent-btn-accept:hover {
    background-color: #1a237e;
    transform: translateY(-1px);
}

.cookie-consent-btn-accept:active {
    transform: translateY(1px);
}

.cookie-consent-btn-deny {
    background-color: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.cookie-consent-btn-deny:hover {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: #9ca3af;
    color: #1f2937;
    transform: translateY(-1px);
}

.cookie-consent-btn-deny:active {
    transform: translateY(1px);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .cookie-consent-overlay {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: calc(100% - 32px);
        max-width: none;
        padding: 16px;
    }

    .cookie-consent-text {
        font-size: 12px;
    }

    .cookie-consent-text a {
        font-size: 12px;
    }

    .cookie-consent-buttons {
        flex-direction: row-reverse;
        gap: 8px;
    }
    
    .cookie-consent-btn {
        width: 100%;
        padding: 9px 0;
        font-size: 13px;
    }
}
