/* ============================================
   Cookie Banner
   ============================================ */
.hdp-cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hdp-cookie-banner.active {
    bottom: 0;
}

.hdp-cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hdp-cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hdp-cookie-text {
    flex: 1;
}

.hdp-cookie-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--hdp-gray-900);
}

.hdp-cookie-text p {
    font-size: 0.875rem;
    color: var(--hdp-gray-600);
    line-height: 1.5;
    margin: 0;
}

.hdp-cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hdp-cookie-buttons .hdp-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.hdp-btn-outline {
    background: transparent;
    border: 1px solid var(--hdp-gray-300);
    color: var(--hdp-gray-700);
}

.hdp-btn-outline:hover {
    border-color: var(--hdp-gray-900);
    color: var(--hdp-gray-900);
    background: var(--hdp-gray-50);
}