.liste-kartlari {
	cursor: pointer;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	border-radius: 18px;
}

.liste-kartlari:hover,
.liste-kartlari:focus-within {
	transform: translateY(-4px);
}

.liste-kartlari.is-interactive:focus {
	outline: 2px solid rgba(125, 67, 34, 0.35);
	outline-offset: 4px;
}

.tarot-card-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: min(380px, calc(100vw - 32px));
	background: linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(246, 236, 214, 0.98));
	border: 1px solid rgba(110, 68, 34, 0.18);
	border-radius: 24px;
	box-shadow: 0 24px 55px rgba(63, 36, 19, 0.22);
	padding: 18px 18px 16px;
	z-index: 9999;
	opacity: 0;
	transform: translateY(18px);
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.tarot-card-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.tarot-card-toast__top {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.tarot-card-toast__thumb {
	width: 72px;
	height: 108px;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid rgba(110, 68, 34, 0.18);
	box-shadow: 0 12px 25px rgba(63, 36, 19, 0.16);
	flex: 0 0 auto;
}

.tarot-card-toast__meta {
	min-width: 0;
	flex: 1 1 auto;
}

.tarot-card-toast__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 1.1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9a6b42;
	margin-bottom: 6px;
}

.tarot-card-toast__title {
	margin: 0;
	font-size: 2.2rem;
	line-height: 1.1;
	color: #5c2918;
	font-weight: 800;
}

.tarot-card-toast__text {
	margin: 14px 0 0;
	font-size: 1.45rem;
	line-height: 1.65;
	color: #5b4734;
}

.tarot-card-toast__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: rgba(110, 68, 34, 0.08);
	color: #6d4326;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.tarot-card-toast__close:hover,
.tarot-card-toast__close:focus {
	background: rgba(110, 68, 34, 0.16);
	transform: scale(1.04);
	outline: none;
}

@media screen and (max-width: 767px) {
	.tarot-card-toast {
		right: 16px;
		left: 16px;
		bottom: 16px;
		width: auto;
		padding: 16px 16px 14px;
		border-radius: 20px;
	}

	.tarot-card-toast__title {
		font-size: 2rem;
	}

	.tarot-card-toast__text {
		font-size: 1.35rem;
		line-height: 1.58;
	}
}
