/* Cookie Consent Banner */
#cookieConsentModal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#cookieConsentModal.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-text-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.cookie-title {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-bottom: 4px;
    display: block;
}

.cookie-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
}

.btn-cookie-close {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-close:hover {
    background: #f8f9fa;
    border-color: #ccc;
    color: #333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-text-group {
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .btn-cookie-accept, .btn-cookie-close {
        flex: 1;
        text-align: center;
    }
}
