/**
 * ستايل المراسلات — صفحة حسابي (العميل) + قسم لوحة التاجر
 * سوق رؤية — roeia.com
 */

.roeia-chat {
	--roeia-night: #0E1B2C;
	--roeia-teal: #0CC0AE;
	--roeia-coral: #FF6B57;
	--roeia-cloud: #F4F9F8;
	--roeia-mist: #8FA8B5;
	--roeia-stone: #5B6B74;
	font-family: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
	color: var(--roeia-night);
	line-height: 1.6;
}

.roeia-chat-title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	color: var(--roeia-night);
}

.roeia-chat-notice {
	background: rgba(12, 192, 174, .12);
	border: 1px solid rgba(12, 192, 174, .35);
	color: #0a8f82;
	padding: 12px 16px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 18px;
}

/* ── القائمة ── */

.roeia-chat-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(14, 27, 44, .1);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
}

.roeia-chat-list-item + .roeia-chat-list-item {
	border-top: 1px solid rgba(14, 27, 44, .08);
}

.roeia-chat-list-item a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	text-decoration: none;
	color: var(--roeia-night);
	transition: background .15s ease;
}

.roeia-chat-list-item a:hover,
.roeia-chat-list-item a:focus {
	background: var(--roeia-cloud);
}

.roeia-chat-list-item.is-unread .roeia-chat-list-name {
	font-weight: 700;
}

.roeia-chat-list-name {
	font-weight: 600;
	font-size: 15px;
	flex: 1 1 auto;
}

.roeia-chat-list-time {
	color: var(--roeia-mist);
	font-size: 12px;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.roeia-chat-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	border-radius: 999px;
	background: var(--roeia-coral);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.roeia-chat-empty-list {
	text-align: center;
	background: var(--roeia-cloud);
	border: 1px dashed rgba(14, 27, 44, .18);
	border-radius: 14px;
	padding: 40px 24px;
	color: var(--roeia-stone);
	font-size: 14px;
}

.roeia-chat-empty-list .dashicons {
	font-size: 34px;
	width: 34px;
	height: 34px;
	color: var(--roeia-teal);
	margin-bottom: 8px;
}

/* ── رأس المحادثة ── */

.roeia-chat-header {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(14, 27, 44, .1);
}

.roeia-chat-header .roeia-chat-title {
	margin: 0;
	flex: 1 1 auto;
	font-size: 18px;
}

.roeia-chat-back {
	color: var(--roeia-stone);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}

.roeia-chat-back:hover {
	color: var(--roeia-teal);
}

.roeia-chat-visit {
	color: var(--roeia-teal);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	border: 1px solid rgba(12, 192, 174, .4);
	padding: 6px 14px;
	border-radius: 999px;
}

.roeia-chat-visit:hover {
	background: rgba(12, 192, 174, .1);
	color: #0a8f82;
}

/* ── سجل الرسائل ── */

.roeia-chat-log {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 460px;
	overflow-y: auto;
	padding: 8px 4px;
	margin-bottom: 16px;
}

.roeia-chat-empty {
	text-align: center;
	color: var(--roeia-mist);
	font-size: 14px;
	padding: 32px 0;
}

.roeia-chat-bubble {
	max-width: 78%;
	padding: 11px 15px;
	border-radius: 16px;
	font-size: 14.5px;
	position: relative;
}

.roeia-chat-bubble.is-mine {
	align-self: flex-start;
	background: var(--roeia-teal);
	color: #06231f;
	border-bottom-right-radius: 5px;
}

.roeia-chat-bubble.is-theirs {
	align-self: flex-end;
	background: var(--roeia-cloud);
	color: var(--roeia-night);
	border-bottom-left-radius: 5px;
}

.roeia-chat-text {
	word-break: break-word;
}

.roeia-chat-time {
	display: block;
	margin-top: 5px;
	font-size: 11px;
	opacity: .7;
	font-variant-numeric: tabular-nums;
}

/* ── نموذج الرد ── */

.roeia-chat-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.roeia-chat-form textarea {
	width: 100%;
	border: 1px solid rgba(14, 27, 44, .18);
	border-radius: 12px;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 14.5px;
	color: var(--roeia-night);
	resize: vertical;
	box-sizing: border-box;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.roeia-chat-form textarea:focus {
	outline: none;
	border-color: var(--roeia-teal);
	box-shadow: 0 0 0 3px rgba(12, 192, 174, .16);
}

.roeia-chat-send {
	align-self: flex-start;
	background: var(--roeia-night);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 11px 28px;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	transition: filter .15s ease;
}

.roeia-chat-send:hover,
.roeia-chat-send:focus {
	filter: brightness(1.15);
}

/* داخل لوحة التاجر: حدود ناعمة حول القسم */
.roeia-chat--dashboard {
	background: #fff;
}
