.c2-pop-up-backdrop {
	--c2-pop-up-backdrop: rgba(0, 0, 0, 0.46);
	position: fixed;
	inset: 0;
	z-index: 99998;
	background: var(--c2-pop-up-backdrop);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	animation: c2-pop-up-backdrop-fade-in 180ms ease-out;
}

.c2-pop-up-backdrop.is-hidden {
	opacity: 0;
	transition: opacity 180ms ease-in;
}

.c2-pop-up {
	--c2-pop-up-background: #4a3529;
	--c2-pop-up-text: #ffffff;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99999;
	width: 50vw;
	overflow: visible;
	background: var(--c2-pop-up-background);
	color: var(--c2-pop-up-text);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
	transform: translate(-50%, -50%);
	animation: c2-pop-up-fade-in 180ms ease-out;
}

.c2-pop-up.is-hidden {
	transform: translate(-50%, -48%);
	opacity: 0;
	transition: transform 180ms ease-in, opacity 180ms ease-in;
}

.c2-pop-up__inner {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	overflow: visible;
}

.c2-pop-up__body {
	box-sizing: border-box;
	max-height: 50vh;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 18px 64px 18px 20px;
}

.c2-pop-up__title {
	display: flex;
	flex-wrap: wrap;
	gap: 0.42em;
	align-items: flex-end;
	margin: 0 0 0.55em;
	color: inherit;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.c2-pop-up__title-text {
	min-width: 0;
}

.c2-pop-up__title-coffee {
	position: relative;
	flex: 0 0 auto;
	width: 40px;
	height: 38px;
	margin-bottom: 0.04em;
	color: #ffffff;
}

.c2-pop-up__title-coffee-svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.c2-pop-up__title-coffee-steam,
.c2-pop-up__title-coffee-rim,
.c2-pop-up__title-coffee-bowl,
.c2-pop-up__title-coffee-handle,
.c2-pop-up__title-coffee-face path {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.c2-pop-up__title-coffee-steam {
	opacity: 0;
	stroke-dasharray: 18;
	stroke-dashoffset: 18;
	stroke-width: 2.7;
	transform-box: fill-box;
	transform-origin: bottom center;
	animation: c2-pop-up-coffee-steam 1500ms ease-in-out infinite;
}

.c2-pop-up__title-coffee-steam--one {
	animation-delay: 0ms;
}

.c2-pop-up__title-coffee-steam--two {
	animation-delay: 220ms;
}

.c2-pop-up__title-coffee-steam--three {
	animation-delay: 440ms;
}

.c2-pop-up__title-coffee-cup {
	animation: c2-pop-up-coffee-cup 1800ms ease-in-out infinite;
	transform-box: fill-box;
	transform-origin: center center;
}

.c2-pop-up__title-coffee-liquid {
	fill: currentColor;
	opacity: 0.28;
	transform-box: fill-box;
	transform-origin: center center;
	animation: c2-pop-up-coffee-liquid 2200ms ease-in-out infinite;
}

.c2-pop-up__title-coffee-rim {
	stroke-width: 2.2;
}

.c2-pop-up__title-coffee-bowl,
.c2-pop-up__title-coffee-handle {
	stroke-width: 2.7;
}

.c2-pop-up__title-coffee-face circle {
	fill: currentColor;
}

.c2-pop-up__title-coffee-face path {
	stroke-width: 1.8;
}

.c2-pop-up__content {
	font-size: 16px;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.c2-pop-up__content p {
	margin: 0 0 0.75em;
}

.c2-pop-up__content p:last-child {
	margin-bottom: 0;
}

.c2-pop-up__content strong {
	font-weight: 700;
}

.c2-pop-up__content a {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.c2-pop-up__content a:hover,
.c2-pop-up__content a:focus-visible {
	text-decoration: none;
}

.c2-pop-up__close {
	position: absolute;
	top: 12px;
	right: 14px;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background-color: transparent;
	box-shadow: inset 0 0 0 1px currentColor;
	color: inherit;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
	overflow: visible;
	transition:
		background-color 160ms ease,
		box-shadow 160ms ease,
		color 160ms ease,
		transform 160ms ease;
}

.c2-pop-up__close span {
	position: relative;
	z-index: 2;
	display: block;
	line-height: 1;
}

.c2-pop-up__close::before,
.c2-pop-up__close::after,
.c2-pop-up__close span::before,
.c2-pop-up__close span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 15px;
	height: 23px;
	border-radius: 50%;
	background:
		linear-gradient(90deg, transparent 43%, rgba(255, 255, 255, 0.45) 44%, rgba(255, 255, 255, 0.45) 56%, transparent 57%),
		#6f3f23;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.32);
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.35);
}

.c2-pop-up__close span::before,
.c2-pop-up__close span::after {
	z-index: -1;
}

.c2-pop-up__close:hover,
.c2-pop-up__close:focus-visible {
	background-color: var(--c2-pop-up-text);
	box-shadow: inset 0 0 0 1px var(--c2-pop-up-text), 0 10px 22px rgba(0, 0, 0, 0.22);
	color: var(--c2-pop-up-background);
	outline: none;
	transform: scale(1.06);
}

.c2-pop-up__close:hover::before,
.c2-pop-up__close:focus-visible::before {
	animation: c2-pop-up-bean-one 700ms ease-out forwards;
}

.c2-pop-up__close:hover::after,
.c2-pop-up__close:focus-visible::after {
	animation: c2-pop-up-bean-two 760ms ease-out forwards;
}

.c2-pop-up__close:hover span::before,
.c2-pop-up__close:focus-visible span::before {
	animation: c2-pop-up-bean-three 680ms ease-out forwards;
}

.c2-pop-up__close:hover span::after,
.c2-pop-up__close:focus-visible span::after {
	animation: c2-pop-up-bean-four 820ms ease-out forwards;
}

@keyframes c2-pop-up-backdrop-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes c2-pop-up-fade-in {
	from {
		transform: translate(-50%, -48%);
		opacity: 0;
	}

	to {
		transform: translate(-50%, -50%);
		opacity: 1;
	}
}

@keyframes c2-pop-up-bean-one {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
	}

	18% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translate(62px, -26px) scale(1.35) rotate(-150deg);
	}
}

@keyframes c2-pop-up-bean-two {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
	}

	18% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translate(88px, -4px) scale(1.25) rotate(135deg);
	}
}

@keyframes c2-pop-up-bean-three {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
	}

	18% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translate(58px, 24px) scale(1.2) rotate(120deg);
	}
}

@keyframes c2-pop-up-bean-four {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
	}

	18% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translate(92px, 32px) scale(1.3) rotate(-125deg);
	}
}

@keyframes c2-pop-up-coffee-steam {
	0% {
		opacity: 0;
		stroke-dashoffset: 18;
		transform: translateY(4px) scale(0.96);
	}

	35% {
		opacity: 0.95;
	}

	65% {
		stroke-dashoffset: 0;
	}

	100% {
		opacity: 0;
		stroke-dashoffset: 0;
		transform: translateY(-8px) scale(1.03);
	}
}

@keyframes c2-pop-up-coffee-cup {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-1px);
	}
}

@keyframes c2-pop-up-coffee-liquid {
	0%,
	100% {
		transform: translateY(0) scaleX(1);
	}

	50% {
		transform: translateY(0.8px) scaleX(0.96);
	}
}

@media (max-width: 600px) {
	.c2-pop-up {
		width: 50vw;
	}

	.c2-pop-up__body {
		padding: 16px 56px 16px 16px;
	}

	.c2-pop-up__content {
		font-size: 15px;
		line-height: 1.5;
	}

	.c2-pop-up__title {
		font-size: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.c2-pop-up-backdrop {
		animation: none;
	}

	.c2-pop-up-backdrop.is-hidden {
		transition: none;
	}

	.c2-pop-up {
		animation: none;
	}

	.c2-pop-up.is-hidden {
		transition: none;
	}

	.c2-pop-up__title-coffee-cup,
	.c2-pop-up__title-coffee-liquid,
	.c2-pop-up__title-coffee-steam {
		animation: none;
	}

	.c2-pop-up__close,
	.c2-pop-up__close:hover,
	.c2-pop-up__close:focus-visible {
		transform: none;
	}

	.c2-pop-up__close:hover::before,
	.c2-pop-up__close:focus-visible::before,
	.c2-pop-up__close:hover::after,
	.c2-pop-up__close:focus-visible::after,
	.c2-pop-up__close:hover span::before,
	.c2-pop-up__close:focus-visible span::before,
	.c2-pop-up__close:hover span::after,
	.c2-pop-up__close:focus-visible span::after {
		animation: none;
		opacity: 0;
	}
}
