/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    min-height: 80px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color, #1E1E1E);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.cookie-accept-btn {
    background: var(--primary-color, #3D5A80);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius, 12px);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-accept-btn:hover {
    background: var(--secondary-color, #00a8e8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 90, 128, 0.3);
}

.cookie-accept-btn:active {
    transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px 0;
        text-align: center;
    }

    .cookie-text {
        text-align: center;
        font-size: 13px;
    }

    .cookie-accept-btn {
        align-self: center;
        width: 100%;
        max-width: 200px;
    }

    .cookie-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .cookie-content {
        padding: 12px 0;
        min-height: 60px;
    }

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

    .cookie-accept-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}