:root {
    --primary-orange: #ff7849;
    --text-color: #2c3e50;
    --background-color: #ffffff;
    --popup-overlay: rgba(0, 0, 0, 0.5);
    --border-color: #e2e8f0;
}

.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--popup-overlay);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.cookie-consent-overlay.show {
    display: flex;
}

.cookie-consent-popup {
    background-color: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-consent-title {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cookie-consent-content {
    margin-bottom: 2rem;
}

.cookie-consent-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-consent-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.cookie-consent-accept-button {
    background-color: var(--primary-orange);
    color: white;
    border: none;
}

.cookie-consent-accept-button:hover {
    background-color: #e66a3e;
}

.cookie-consent-reject-button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.cookie-consent-reject-button:hover {
    background-color: #f8fafc;
}

@media (max-width: 768px) {
    .cookie-consent-popup {
        padding: 1.5rem;
        max-height: 90vh;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent-button {
        width: 100%;
    }
}