/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #2c3e50;
    padding: 1.5rem 1rem;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid #e9ecef;
    max-width: 100vw;
    overflow-x: hidden;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
}

.cookie-consent-text h5 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-consent-text h5 i {
    color: var(--primary-color, #3498db);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cookie-consent-text p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
}

.cookie-consent-text a {
    color: var(--primary-color, #3498db);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--primary-color, #3498db);
    color: #fff;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.cookie-btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cookie-btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.cookie-btn-secondary:hover {
    background: #e9ecef;
    border-color: #ced4da;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1.25rem 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-text h5 {
        font-size: 1rem;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        padding: 1rem 0.75rem;
    }

    .cookie-consent-text h5 {
        font-size: 0.95rem;
    }

    .cookie-consent-text h5 i {
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        font-size: 0.8rem;
    }

    .cookie-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}
