/**
 * Sikeres Idősödés Tagság — Fiókom: Tagságom + Számláim.
 * A checkout űrlappal azonos semleges paletta.
 */

.si-ma,
.si-ma * {
	box-sizing: border-box;
}

.si-ma {
	color: #37352f;
	line-height: 1.55;
}

/* Üres állapot */
.si-ma__empty {
	padding: 28px 24px;
	border: 1px dashed #d9d6cf;
	border-radius: 12px;
	background: #fdfdfc;
	color: #8a877e;
	text-align: center;
}

/* Tagsági kártya */
.si-ma-card {
	border: 1px solid #e6e4de;
	border-radius: 12px;
	background: #fdfdfc;
	padding: 24px;
	margin: 0 0 24px;
}

.si-ma-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid #eeece6;
}

.si-ma-card__head h3 {
	margin: 0;
	font-size: 1.2em;
	color: #37352f;
}

/* Státusz jelvények */
.si-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.si-badge--active {
	background: #eaf2e9;
	color: #44603f;
}

.si-badge--warning {
	background: #f7efdf;
	color: #8a6d2f;
}

.si-badge--muted {
	background: #edecE8;
	background: #edece8;
	color: #6f6d66;
}

.si-badge--gift {
	background: #eef0f4;
	color: #4e5a6e;
}

/* Adatsorok */
.si-ma-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px;
	margin: 0 0 20px;
}

.si-ma-meta > div {
	background: #f7f6f3;
	border-radius: 8px;
	padding: 12px 14px;
}

.si-ma-meta dt {
	font-size: 0.78em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #a09d94;
	margin: 0 0 4px;
}

.si-ma-meta dd {
	margin: 0;
	font-weight: 600;
	color: #37352f;
}

/* Tartalom-listák */
.si-ma-card h4 {
	margin: 20px 0 10px;
	font-size: 0.95em;
	color: #6f6d66;
}

.si-ma-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.si-ma-list li {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 10px 2px;
	border-bottom: 1px dashed #e6e4de;
}

.si-ma-list li:last-child {
	border-bottom: none;
}

.si-ma-list a {
	font-weight: 600;
	color: #37352f;
	text-decoration: underline;
	text-decoration-color: #cfccc3;
	text-underline-offset: 3px;
}

.si-ma-list a:hover {
	text-decoration-color: #37352f;
	color: #37352f;
}

.si-ma-list .si-schedule-badge {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #e9e7e1;
	color: #6f6d66;
	font-size: 0.72em;
	font-weight: 700;
	transform: translateY(3px);
}

.si-ma-list--unlocked .si-schedule-badge {
	background: #eaf2e9;
	color: #44603f;
}

.si-ma-list .si-schedule-when {
	color: #a09d94;
	font-size: 0.86em;
}

/* Gombok */
.si-btn {
	display: inline-block;
	padding: 9px 18px;
	border-radius: 8px;
	border: 1px solid #d9d6cf;
	background: #fff;
	color: #37352f;
	font: inherit;
	font-size: 0.9em;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.15s ease;
}

.si-btn:hover {
	border-color: #a09d94;
	background: #f7f6f3;
	color: #37352f;
}

.si-btn--danger {
	border-color: #e0cbc7;
	color: #8c4a42;
	background: #fff;
}

.si-btn--danger:hover {
	background: #faf3f2;
	border-color: #c9a49e;
	color: #8c4a42;
}

.si-ma-card__actions {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #eeece6;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

/* Számlák táblázat */
.si-ma-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e6e4de;
	border-radius: 12px;
	overflow: hidden;
	background: #fdfdfc;
}

/* A padding !important-tal, mert a téma/Woo táblázat-stílusai felülírnák. */
.si-ma .si-ma-table th {
	text-align: left;
	font-size: 0.78em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #a09d94;
	background: #f7f6f3;
	padding: 12px 16px !important;
	border-bottom: 1px solid #e6e4de;
}

.si-ma .si-ma-table td {
	padding: 14px 16px !important;
	border-bottom: 1px solid #eeece6;
	color: #37352f;
	vertical-align: middle;
	background: transparent;
}

.si-ma-table tr:last-child td {
	border-bottom: none;
}

.si-ma-table .si-ma-table__num {
	font-weight: 700;
}

.si-ma-table .si-ma-table__amount {
	font-weight: 600;
	white-space: nowrap;
}

/* Értesítés (lemondás visszaigazolás) */
.si-ma .si-notice,
.si-ma-notice {
	padding: 14px 18px;
	border-radius: 10px;
	margin: 0 0 18px;
	font-size: 0.95em;
	border: 1px solid #cfdecf;
	background: #f2f6f2;
	color: #44603f;
}

/* Mobil */
@media (max-width: 640px) {
	.si-ma-card {
		padding: 18px 16px;
	}

	.si-ma-table thead {
		display: none;
	}

	.si-ma-table tr {
		display: block;
		border-bottom: 1px solid #e6e4de;
	}

	.si-ma .si-ma-table td {
		display: flex;
		justify-content: space-between;
		gap: 12px;
		border-bottom: none;
		padding: 8px 14px !important;
	}

	.si-ma-table td::before {
		content: attr(data-label);
		font-size: 0.78em;
		font-weight: 700;
		text-transform: uppercase;
		color: #a09d94;
	}
}
