/**
 * EMPORAS — Ραντεβού
 * @since 1.12.0
 */

.appointments-page {
	padding: 32px 0 56px;
}

.appointments-page__header {
	margin-bottom: 28px;
}

.appointments-page__header h1 {
	margin: 4px 0 10px;
	color: #1e2a5e;
}

.appointments-page__intro {
	max-width: 680px;
	color: #555;
	line-height: 1.6;
}

/* ---------- Κάρτες ---------- */

.emporas-appts__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 18px;
}

.appt-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 22px 20px;
	transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.appt-card:hover {
	border-color: #1e2a5e;
	box-shadow: 0 8px 24px rgba(30, 42, 94, .1);
	transform: translateY(-2px);
}

.appt-card__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: #facc15;
	color: #1d1f23;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .4px;
	padding: 4px 9px;
	border-radius: 100px;
}

.appt-card__icon {
	font-size: 34px;
	line-height: 1;
	margin-bottom: 12px;
}

.appt-card__title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.3;
	color: #1e2a5e;
}

.appt-card__desc {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.55;
	color: #6b7280;
	flex-grow: 1;
}

.appt-card__meta {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	font-size: 13px;
	color: #4b5563;
}

.appt-card__meta li {
	margin-bottom: 4px;
}

.appt-card__cta {
	width: 100%;
	text-align: center;
	cursor: pointer;
}

/* ---------- Κουμπιά (τοπικά, ώστε να μην εξαρτώμαστε από το theme) ---------- */

.emporas-appts .btn,
.emporas-appt-form .btn {
	display: inline-block;
	padding: 11px 20px;
	border-radius: 7px;
	border: 1px solid transparent;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: opacity .15s ease;
}

.emporas-appts .btn:hover { opacity: .9; }
.emporas-appts .btn[disabled] { opacity: .55; cursor: not-allowed; }

.emporas-appts .btn--primary,
.emporas-appt-form .btn--primary {
	background: #1e2a5e;
	color: #fff;
}

.emporas-appts .btn--secondary {
	background: #fff;
	color: #1e2a5e;
	border-color: #1e2a5e;
}

.emporas-appt-form .btn--ghost {
	background: transparent;
	color: #6b7280;
	border-color: #e5e7eb;
}

/* ---------- Επικοινωνία ---------- */

.appointments-page__contact {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
	text-align: center;
	color: #6b7280;
	font-size: 15px;
}

.appointments-page__contact a {
	color: #1e2a5e;
	font-weight: 600;
	text-decoration: none;
}

.emporas-appt-empty {
	padding: 22px;
	background: #f7f7f9;
	border-radius: 8px;
	color: #555;
}

/* ---------- Κουμπί σε άλλες σελίδες ---------- */

.emporas-appt-inline-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 11px 20px;
	border-radius: 7px;
	background: #fff;
	color: #1e2a5e;
	border: 1px solid #1e2a5e;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.emporas-appt-inline-cta:hover {
	background: #1e2a5e;
	color: #fff;
}

@media (max-width: 560px) {
	.appt-form__row { grid-template-columns: 1fr; }
	.emporas-appts__grid { grid-template-columns: 1fr; }
}
