/* =====================================================================
   دیدبان — فوتر
   ===================================================================== */

.didban-footer {
	margin-top: var(--space-8);
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	color: var(--color-text);
}

/* حالت تیره — بازتعریف توکن ها در محدودهٔ فوتر تا کنتراست همیشه درست باشد */
.didban-footer--dark {
	background: #10161f;
	border-top-color: transparent;
	color: #D7DEE8;
	--color-text: #D7DEE8;
	--color-text-muted: #9AA6B5;
	--color-border: rgba(255, 255, 255, 0.08);
	--color-surface: #10161f;
	--color-surface-alt: #1a2230;
	--color-primary-soft: #16222f;
}

.didban-footer--dark a {
	color: #D7DEE8;
}

.didban-footer--dark .didban-footer__title {
	color: #fff;
}

.didban-footer__widgets {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-6);
	padding-block: var(--space-7);
}

@media (min-width: 768px) {
	.didban-footer__widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1025px) {
	.didban-footer__widgets {
		grid-template-columns: repeat(4, 1fr);
		gap: var(--space-7);
	}
}

.didban-footer .widget {
	background: transparent;
	border: none;
	padding: 0;
}

.didban-footer .widget-title {
	border-bottom: none;
	color: var(--color-text);
	font-size: var(--text-md);
	margin-bottom: var(--space-4);
}

.didban-footer ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	font-size: var(--text-sm);
}

.didban-footer a:hover {
	color: var(--color-accent);
}

/* موبایل: ستون های فوتر جمع شونده با details بومی */
@media (max-width: 767px) {
	.didban-footer__widgets details summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 48px;
		cursor: pointer;
		font-weight: 700;
		list-style: none;
	}

	.didban-footer__widgets details summary::-webkit-details-marker {
		display: none;
	}

	.didban-footer__widgets details summary::after {
		content: '+';
		color: var(--color-text-muted);
	}

	.didban-footer__widgets details[open] summary::after {
		content: '−';
	}

	.didban-footer__widgets details > .widget-title {
		display: none;
	}
}

.didban-footer__bottom {
	border-top: 1px solid var(--color-border);
	padding-block: var(--space-4);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

.didban-footer--dark .didban-footer__bottom {
	border-top-color: rgba(255, 255, 255, 0.08);
}

.didban-footer__credit a {
	color: var(--color-text-muted);
}

.didban-footer__credit a:hover {
	color: var(--color-accent);
}

/* موبایل: ردیف کپی رایت مرکزچین */
@media (max-width: 767px) {
	.didban-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}
