/**
 * Promos Widget
 * shop-zen-pro-addons
 *
 */

/* ─── Grid ────────────────────────────────────────────────────────── */
.szpa-promos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

/* ─── Card ────────────────────────────────────────────────────────── */
.szpa-promos-card {
	height: 180px;
	border-radius: 16px;
	border: 1px solid;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.szpa-promos-hover .szpa-promos-card:hover {
	transform: translateY(-2px);
}

/* ─── Text column ─────────────────────────────────────────────────── */
.szpa-promos-text {
	width: 60%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 2;
}

.szpa-promos-head {
	display: block;
}

/* ─── Label ───────────────────────────────────────────────────────── */
.szpa-promos-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 4px;
}

/* ─── Title ───────────────────────────────────────────────────────── */
.szpa-promos-title {
	font-size: 24px;
	font-weight: 800;
	font-family: "Outfit", "Inter", sans-serif;
	line-height: 1.15;
	color: #1A202C;
	margin: 0;
}

.szpa-promos-title-small {
	font-size: 14px;
	font-weight: 700;
	display: block;
	margin-bottom: 1px;
	opacity: 0.9;
}

/* ─── Link ────────────────────────────────────────────────────────── */
.szpa-promos-link {
	font-size: 14px;
	font-weight: 700;
	color: #1E3F2A;
	text-decoration: none;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.szpa-promos-link:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.szpa-promos-arrow {
	font-family: Arial, sans-serif;
}

/* ─── Image ───────────────────────────────────────────────────────── */
.szpa-promos-img {
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.szpa-promos-img img {
	height: 100%;
	width: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 8px;
	filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
	transition: transform 0.25s ease;
}

.szpa-promos-hover .szpa-promos-card:hover .szpa-promos-img img {
	transform: scale(1.03);
}

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.szpa-promos-card {
		height: 160px;
		padding: 20px;
	}

	.szpa-promos-title {
		font-size: 22px;
	}
}
