.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
	word-break: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}

/* ─── Dedeho Chatbot ─────────────────────────────────────────────────────── */

:root {
    --dch-bg: linear-gradient(135deg, #4F6BED, #C94B4B);
    --dch-c1: #4F6BED;
    --dch-radius: 18px;
    --dch-w: 360px;
    --dch-h: 580px;
    --dch-z: 99990;
}

/* All selectors prefixed with #dch-root to beat theme specificity */
#dch-root,
#dch-root *,
#dch-root *::before,
#dch-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Bubble ──────────────────────────────────────────────────────────────── */

#dch-bubble {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: var(--dch-bg) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.22) !important;
    z-index: calc(var(--dch-z) + 1) !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
    border: none !important;
    outline: none !important;
    user-select: none !important;
    padding: 0 !important;
    text-decoration: none !important;
}

#dch-bubble:hover  { transform: scale(1.08) !important; box-shadow: 0 6px 24px rgba(0,0,0,.28) !important; }
#dch-bubble:active { transform: scale(.96) !important; }

#dch-bubble-icon { display: block; }
#dch-bubble-x    { display: none; color: #fff; font-size: 22px; font-weight: 300; line-height: 1; }

/* ── Panel ───────────────────────────────────────────────────────────────── */

#dch-panel {
    position: fixed !important;
    bottom: 92px !important;
    right: 24px !important;
    width: var(--dch-w) !important;
    height: var(--dch-h) !important;
    max-height: calc(100vh - 120px) !important;
    background: #fff !important;
    border-radius: var(--dch-radius) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: var(--dch-z) !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(16px) scale(.97) !important;
    transition: opacity .22s ease, transform .22s ease !important;
}

#dch-panel.dch-open {
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateY(0) scale(1) !important;
}

/* ── Header ──────────────────────────────────────────────────────────────── */

#dch-header {
    background: var(--dch-bg) !important;
    padding: 14px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-shrink: 0 !important;
}

#dch-avatar {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.22) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

#dch-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

#dch-botname {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

#dch-status {
    color: rgba(255,255,255,.8) !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

#dch-close {
    background: none !important;
    border: none !important;
    color: rgba(255,255,255,.8) !important;
    font-size: 20px !important;
    cursor: pointer !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    line-height: 1 !important;
    transition: background .15s !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-text-fill-color: rgba(255,255,255,.8) !important;
}
#dch-close:hover { background: rgba(255,255,255,.18) !important; color: #fff !important; -webkit-text-fill-color: #fff !important; }

/* ── Messages ────────────────────────────────────────────────────────────── */

#dch-messages {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    scroll-behavior: smooth !important;
    background: #fff !important;
}

#dch-root .dch-msg {
    display: flex !important;
    align-items: flex-end !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

#dch-root .dch-user { justify-content: flex-end !important; }

#dch-root .dch-av {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #f0f0f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

#dch-root .dch-av img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

#dch-root .dch-bbl {
    max-width: 80% !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    word-break: break-word !important;
    border-radius: 4px 16px 16px 16px !important;
    background: #f1f3f4 !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    box-shadow: none !important;
    border: none !important;
}

#dch-root .dch-user .dch-bbl {
    background: var(--dch-bg) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-radius: 16px 16px 4px 16px !important;
}

#dch-root .dch-user .dch-bbl a { color: rgba(255,255,255,.9) !important; -webkit-text-fill-color: rgba(255,255,255,.9) !important; }
#dch-root .dch-bot  .dch-bbl a { color: var(--dch-c1) !important; }
#dch-root .dch-bbl strong { font-weight: 600 !important; }

/* ── Typing dots ─────────────────────────────────────────────────────────── */

#dch-root .dch-typing {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 14px 18px !important;
    min-width: 58px !important;
    background: #f1f3f4 !important;
}

#dch-root .dch-typing span {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #bbb !important;
    display: inline-block !important;
    animation: dch-bounce 1.3s infinite ease-in-out !important;
}
#dch-root .dch-typing span:nth-child(2) { animation-delay: .18s !important; }
#dch-root .dch-typing span:nth-child(3) { animation-delay: .36s !important; }

@keyframes dch-bounce {
    0%, 80%, 100% { transform: translateY(0);    opacity: .4; }
    40%           { transform: translateY(-7px); opacity: 1;  }
}

/* ── Suggestions ─────────────────────────────────────────────────────────── */

#dch-root .dch-suggestions {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    padding-left: 36px !important;
    margin-top: 2px !important;
}

#dch-root .dch-sugg-btn {
    background: transparent !important;
    border: 1.5px solid var(--dch-c1) !important;
    color: var(--dch-c1) !important;
    -webkit-text-fill-color: var(--dch-c1) !important;
    padding: 7px 14px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: background .15s !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-weight: 400 !important;
    width: auto !important;
    display: block !important;
    text-decoration: none !important;
}
#dch-root .dch-sugg-btn:hover {
    background: rgba(79,107,237,.09) !important;
    color: var(--dch-c1) !important;
    -webkit-text-fill-color: var(--dch-c1) !important;
}

/* ── Privacy notice ──────────────────────────────────────────────────────── */

#dch-privacy {
    background: #f7f7f7 !important;
    border-top: 1px solid #e8e8e8 !important;
    padding: 14px 16px !important;
    font-size: 13px !important;
    color: #444 !important;
    -webkit-text-fill-color: #444 !important;
    line-height: 1.55 !important;
    flex-shrink: 0 !important;
}

#dch-privacy p {
    color: #444 !important;
    -webkit-text-fill-color: #444 !important;
    font-size: 13px !important;
    margin: 0 !important;
}

#dch-privacy a {
    color: var(--dch-c1) !important;
    -webkit-text-fill-color: var(--dch-c1) !important;
    text-decoration: underline !important;
}

#dch-root .dch-btn-primary {
    background: var(--dch-bg) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: opacity .15s !important;
    box-shadow: none !important;
    text-shadow: none !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    display: inline-block !important;
}
#dch-root .dch-btn-primary:hover { opacity: .88 !important; }

#dch-root .dch-btn-secondary {
    background: transparent !important;
    color: #666 !important;
    -webkit-text-fill-color: #666 !important;
    border: 1px solid #ccc !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    transition: background .15s !important;
    box-shadow: none !important;
    text-shadow: none !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    display: inline-block !important;
}
#dch-root .dch-btn-secondary:hover { background: #ebebeb !important; }

/* ── Input area ──────────────────────────────────────────────────────────── */

#dch-inputarea {
    border-top: 1px solid #eee !important;
    padding: 10px 12px !important;
    display: flex !important;
    align-items: flex-end !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    background: #fff !important;
}

#dch-input {
    flex: 1 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 20px !important;
    padding: 9px 14px !important;
    font-size: 14px !important;
    resize: none !important;
    outline: none !important;
    line-height: 1.45 !important;
    max-height: 120px !important;
    overflow-y: auto !important;
    background: #f8f8f8 !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    transition: border-color .2s, background .2s !important;
    box-shadow: none !important;
    width: auto !important;
    min-height: 0 !important;
}

#dch-input:focus {
    border-color: var(--dch-c1) !important;
    background: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}

#dch-input:disabled { opacity: .45 !important; cursor: not-allowed !important; }

#dch-root .dch-icon-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid #e0e0e0 !important;
    background: #fff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #888 !important;
    -webkit-text-fill-color: #888 !important;
    flex-shrink: 0 !important;
    transition: background .15s, color .15s !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
#dch-root .dch-icon-btn:hover { background: #f0f0f0 !important; color: #444 !important; }

#dch-root .dch-icon-btn.dch-mic-on {
    background: #fff0f0 !important;
    color: #c00 !important;
    border-color: #fcc !important;
}

#dch-root .dch-send-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: none !important;
    background: var(--dch-bg) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    flex-shrink: 0 !important;
    transition: opacity .15s, transform .15s !important;
    padding: 0 !important;
    box-shadow: none !important;
}
#dch-root .dch-send-btn:hover   { opacity: .88 !important; }
#dch-root .dch-send-btn:active  { transform: scale(.94) !important; }
#dch-root .dch-send-btn:disabled { opacity: .45 !important; cursor: not-allowed !important; }

/* ── Footer ──────────────────────────────────────────────────────────────── */

#dch-footer {
    text-align: center !important;
    font-size: 11px !important;
    color: #c0c0c0 !important;
    -webkit-text-fill-color: #c0c0c0 !important;
    padding: 5px !important;
    background: #fafafa !important;
    border-top: 1px solid #f0f0f0 !important;
    flex-shrink: 0 !important;
}

#dch-footer strong {
    font-weight: 600 !important;
    color: #c0c0c0 !important;
    -webkit-text-fill-color: #c0c0c0 !important;
}

/* ── Proactive callout ───────────────────────────────────────────────────── */

#dch-proactive {
    position: fixed !important;
    bottom: 90px !important;
    right: 24px !important;
    max-width: 220px !important;
    background: #fff !important;
    border: 0.5px solid #e0e0e0 !important;
    border-radius: 14px 14px 4px 14px !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    line-height: 1.5 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.12) !important;
    z-index: var(--dch-z) !important;
    cursor: pointer !important;
    opacity: 0 !important;
    transform: translateY(8px) !important;
    transition: opacity .3s ease, transform .3s ease !important;
    pointer-events: none !important;
}

#dch-proactive.dch-pro-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
}

#dch-proactive-close {
    position: absolute !important;
    top: 4px !important;
    right: 8px !important;
    font-size: 14px !important;
    color: #bbb !important;
    -webkit-text-fill-color: #bbb !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 2px !important;
}
#dch-proactive-close:hover { color: #888 !important; -webkit-text-fill-color: #888 !important; }

@media (max-width: 480px) {
    #dch-proactive { right: 16px !important; bottom: 82px !important; }
}

@media (max-width: 480px) {
    #dch-panel {
        bottom: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 85dvh !important;
        max-height: 85dvh !important;
        border-radius: 20px 20px 0 0 !important;
    }
    #dch-bubble {
        bottom: 16px !important;
        right: 16px !important;
    }
}

/*
 * Frontend badge layout.
 * CSS Grid keeps the badge in the same visual cell as the media and avoids
 * conflicts with Elementor/theme rules that reposition generic buttons.
 */
.ddh-ai-media-wrap {
    position: relative !important;
    display: inline-grid !important;
    grid-template-columns: minmax(0, auto) !important;
    grid-template-rows: minmax(0, auto) !important;
    max-width: 100% !important;
    line-height: 0 !important;
    vertical-align: middle !important;
    isolation: isolate;
    box-sizing: border-box !important;
}

.ddh-ai-media-wrap--full {
    display: grid !important;
    width: 100% !important;
}

.ddh-ai-media-wrap > img,
.ddh-ai-media-wrap > picture,
.ddh-ai-media-wrap > a {
    grid-area: 1 / 1 !important;
    display: block !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.ddh-ai-media-wrap > picture > img,
.ddh-ai-media-wrap > a > img,
.ddh-ai-media-wrap > a > picture,
.ddh-ai-media-wrap > a > picture > img {
    display: block !important;
    max-width: 100% !important;
}

.ddh-ai-media-wrap > .ddh-ai-badge {
    grid-area: 1 / 1 !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 20 !important;
    float: none !important;
    clear: none !important;
    transform: none !important;
    margin: 10px !important;
    align-self: start !important;
    justify-self: start !important;
}

.ddh-ai-media-wrap--top-left > .ddh-ai-badge {
    align-self: start !important;
    justify-self: start !important;
}

.ddh-ai-media-wrap--top-right > .ddh-ai-badge {
    align-self: start !important;
    justify-self: end !important;
}

.ddh-ai-media-wrap--bottom-left > .ddh-ai-badge {
    align-self: end !important;
    justify-self: start !important;
}

.ddh-ai-media-wrap--bottom-right > .ddh-ai-badge {
    align-self: end !important;
    justify-self: end !important;
}

.ddh-ai-badge {
    appearance: none !important;
    -webkit-appearance: none !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    width: max-content !important;
    max-width: calc(100% - 20px) !important;
    min-width: 0 !important;
    min-height: 30px !important;
    height: auto !important;
    padding: 3px 9px 3px 3px !important;
    border: 1px solid rgba(255, 255, 255, .5) !important;
    border-radius: 999px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .28) !important;
    font: 600 12px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: none !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    overflow: visible !important;
}

.ddh-ai-badge--inline {
    position: static !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

.ddh-ai-inline-placeholder {
    display: inline-block;
}

span.ddh-ai-badge {
    cursor: default !important;
}

.ddh-ai-badge--dark {
    color: #fff !important;
    background: rgba(5, 19, 35, .94) !important;
}

.ddh-ai-badge--light {
    color: #051323 !important;
    background: rgba(255, 255, 255, .96) !important;
    border-color: rgba(5, 19, 35, .25) !important;
}

.ddh-ai-badge:hover,
.ddh-ai-badge:focus,
.ddh-ai-badge:active {
    text-decoration: none !important;
    transform: none !important;
}

.ddh-ai-badge:focus-visible {
    outline: 3px solid #fff !important;
    outline-offset: 2px !important;
}

.ddh-ai-badge__mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: currentColor;
    color: #051323;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.ddh-ai-badge--light .ddh-ai-badge__mark {
    color: #fff;
}

.ddh-ai-badge__mark b {
    position: absolute;
    right: -3px;
    bottom: -3px;
    display: grid;
    place-items: center;
    width: 12px;
    height: 12px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: #fff;
    color: #087a3d;
    font-size: 8px;
    line-height: 1;
}

.ddh-ai-badge--state-invalid .ddh-ai-badge__mark b {
    color: #b42318;
}

.ddh-ai-badge__text {
    min-width: 0;
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;
}

.ddh-ai-media-wrap--compact > .ddh-ai-badge {
    width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    padding: 3px !important;
    justify-content: center !important;
}

.ddh-ai-media-wrap--compact .ddh-ai-badge__text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ddh-ai-dialog[hidden] { display: none; }
.ddh-ai-dialog { position: fixed; inset: 0; z-index: 999999; display: grid; place-items: center; padding: 20px; line-height: 1.5; }
.ddh-ai-dialog__backdrop { position: absolute; inset: 0; background: rgba(2, 8, 20, .68); backdrop-filter: blur(2px); }
.ddh-ai-dialog__panel { position: relative; z-index: 1; width: min(540px, 100%); max-height: min(720px, calc(100vh - 40px)); overflow: auto; padding: 26px; border-radius: 18px; background: #fff; color: #051323; box-shadow: 0 24px 70px rgba(0, 0, 0, .34); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.ddh-ai-dialog__close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #eef1f6; color: #051323; font-size: 25px; cursor: pointer; }
.ddh-ai-dialog__heading { display: flex; align-items: center; gap: 14px; padding-right: 36px; }
.ddh-ai-dialog__mark { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; flex: 0 0 52px; border-radius: 50%; background: #051323; color: #fff; font-weight: 800; }
.ddh-ai-dialog h2 { margin: 0 0 2px; color: #051323; font-size: 21px; line-height: 1.2; }
.ddh-ai-dialog__label { margin: 0; font-weight: 700; }
.ddh-ai-dialog__verification { margin: 18px 0 0; padding: 10px 12px; border-radius: 10px; background: #eef1f6; font-size: 13px; font-weight: 700; }
.ddh-ai-dialog__verification--verified { background: #e9f7ef; color: #126b3b; }
.ddh-ai-dialog__verification--integrity { background: #eef4ff; color: #174ea6; }
.ddh-ai-dialog__verification--invalid { background: #fff0ef; color: #9f241b; }
.ddh-ai-dialog__content { display: grid; gap: 0; margin-top: 14px; }
.ddh-ai-dialog__row { display: grid; grid-template-columns: minmax(120px, 38%) 1fr; gap: 14px; padding: 11px 0; border-top: 1px solid #e4e8ef; }
.ddh-ai-dialog__row dt { font-weight: 700; }
.ddh-ai-dialog__row dd { margin: 0; }
.ddh-ai-dialog__note { margin: 20px 0 0; padding: 12px; border-radius: 10px; background: #f4f6f9; color: #445064; font-size: 12px; }
.ddh-ai-dialog-open { overflow: hidden; }

@media (max-width: 480px) {
    .ddh-ai-media-wrap > .ddh-ai-badge { margin: 7px !important; max-width: calc(100% - 14px) !important; }
    .ddh-ai-badge { min-height: 28px !important; font-size: 11px !important; }
    .ddh-ai-badge__mark { width: 22px; height: 22px; flex-basis: 22px; }
    .ddh-ai-dialog__panel { padding: 22px 18px; }
    .ddh-ai-dialog__row { grid-template-columns: 1fr; gap: 3px; }
}



/** THIS FILE IS AUTOMATICALLY GENERATED - DO NOT MAKE MANUAL EDITS! **/
/** Custom CSS should be added to Mega Menu > Menu Themes > Custom Styling **/

.mega-menu-last-modified-1766139397 { content: 'Friday 19th December 2025 10:16:37 UTC'; }

.wp-block {}
