.angie-cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #ffffff;
    color: #333333;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 999999;
    width: 90%;
    max-width: 800px;
    font-family: system-ui, -apple-system, sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.angie-cookie-popup.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.angie-cookie-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.angie-cookie-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
}

.angie-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.angie-btn-accept {
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.angie-btn-accept:hover {
    background: #374151;
}

.angie-btn-decline {
    background: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.angie-btn-decline:hover {
    background: #f3f4f6;
    color: #111827;
}

@media (max-width: 600px) {
    .angie-cookie-popup {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
    }
    .angie-cookie-actions {
        width: 100%;
        justify-content: center;
    }
}