/**
 * Timss — промо Premium Collection.
 * Палітра й типографіка сайту: білий фон, текст #282828, акцент #cd2122,
 * рамки #e9eaea, Montserrat, радіус 3px.
 * Кут — лівий нижній: правий зайнятий панеллю акції 3+1.
 */

.tpp-promo {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 9997;
	display: flex;
	align-items: stretch;
	gap: 14px;
	width: 380px;
	max-width: calc(100vw - 32px);
	padding: 14px 16px 14px 14px;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	color: #282828;
	background: #fff;
	border: 1px solid #e9eaea;
	border-radius: 3px;
	box-shadow: 0 14px 36px -14px rgba(0, 0, 0, .3);
	box-sizing: border-box;
}

.tpp-promo * {
	box-sizing: border-box;
}

.tpp-promo[hidden] {
	display: none;
}

.tpp-promo.is-visible {
	animation: tpp-in .55s cubic-bezier(.2, .85, .3, 1) both;
}

@keyframes tpp-in {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

.tpp-promo.is-leaving {
	animation: tpp-out .3s ease forwards;
}

@keyframes tpp-out {
	to { opacity: 0; transform: translateY(16px); }
}

/* --- фото --- */

.tpp-promo__media {
	flex: 0 0 auto;
	display: block;
	width: 92px;
	align-self: center;
	background: #f4f4f5;
	border-radius: 3px;
	overflow: hidden;
}

.tpp-promo__media img {
	display: block;
	width: 100%;
	height: auto;
}

/* --- текст --- */

.tpp-promo__body {
	display: block;
	min-width: 0;
	padding-right: 14px;
}

.tpp-promo__eyebrow {
	display: block;
	margin-bottom: 4px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #cd2122;
}

.tpp-promo__title {
	display: block;
	margin-bottom: 4px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	color: #282828;
}

.tpp-promo__text {
	display: block;
	margin-bottom: 12px;
	font-size: 13px;
	line-height: 1.45;
	color: #767676;
}

.tpp-promo__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	background: #000;
	border-radius: 3px;
	transition: background-color .25s ease;
}

.tpp-promo__cta:hover,
.tpp-promo__cta:focus {
	color: #fff;
	background: #cd2122;
}

/* --- закриття --- */

.tpp-promo__close {
	position: absolute;
	top: 6px;
	right: 8px;
	width: 26px;
	height: 26px;
	padding: 0;
	font-size: 20px;
	line-height: 1;
	color: #b0b0b0;
	background: none;
	border: 0;
	cursor: pointer;
	transition: color .2s ease;
}

.tpp-promo__close:hover {
	color: #282828;
}

/* ------------------------------------------------------------------ *
 * Мобільні
 * ------------------------------------------------------------------ */

@media (max-width: 782px) {
	.tpp-promo {
		left: 10px;
		right: 10px;
		bottom: 10px;
		width: auto;
		max-width: none;
		gap: 12px;
		padding: 12px 14px 12px 12px;
	}

	.tpp-promo__media {
		width: 76px;
	}

	.tpp-promo__title {
		font-size: 15px;
	}

	.tpp-promo__text {
		margin-bottom: 10px;
		font-size: 12.5px;
	}

	.tpp-promo__cta {
		padding: 9px 15px;
	}
}

/* ------------------------------------------------------------------ *
 * Доступність
 * ------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
	.tpp-promo.is-visible,
	.tpp-promo.is-leaving {
		animation: none;
	}
}

.tpp-promo a:focus-visible,
.tpp-promo button:focus-visible {
	outline: 2px solid #cd2122;
	outline-offset: 2px;
}
