/**
 * EHERO Woo Checkout Offers — front end styles.
 *
 * Scoped entirely under .ehero-cho so it can drop into any theme without
 * leaking. Colours come from --ehero-cho-accent, printed inline from the
 * settings, so the brand colour is never hardcoded here.
 *
 * @package Ehero_Offers
 */

.ehero-cho {
	--ehero-cho-accent: #017cba;
	--ehero-cho-accent-2: #00b2e2;
	--ehero-cho-radius: 10px;
	--ehero-cho-border: #e2e6ea;
	--ehero-cho-muted: #6b7280;
	--ehero-cho-surface: #fff;
	--ehero-cho-surface-alt: #f7fafc;
	--ehero-cho-text: #1f2933;
	--ehero-cho-save: #0a7c42;

	margin: 20px 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--ehero-cho-text);
}

.ehero-cho *,
.ehero-cho *::before,
.ehero-cho *::after {
	box-sizing: border-box;
}

/* ---------- Header ---------- */

.ehero-cho__head {
	margin-bottom: 12px;
}

.ehero-cho__title {
	margin: 0 0 2px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--ehero-cho-text);
}

.ehero-cho__subtitle {
	margin: 0;
	font-size: 13px;
	color: var(--ehero-cho-muted);
}

/* ---------- Notices ---------- */

.ehero-cho__notice {
	margin-bottom: 10px;
	padding: 8px 12px;
	border-radius: 6px;
	background: var(--ehero-cho-surface-alt);
	border-left: 3px solid var(--ehero-cho-accent);
	font-size: 13px;
}

.ehero-cho__notice.is-error {
	border-left-color: #c0392b;
	background: #fdf1f0;
	color: #8e2a20;
}

/* ---------- List ---------- */

.ehero-cho__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ehero-cho.is-busy {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

/* ---------- Card ---------- */

.ehero-cho__card {
	border: 1px solid var(--ehero-cho-border);
	border-radius: var(--ehero-cho-radius);
	background: var(--ehero-cho-surface);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ehero-cho__card:hover {
	border-color: var(--ehero-cho-accent-2);
}

.ehero-cho__card.is-accepted {
	border-color: var(--ehero-cho-accent);
	background: linear-gradient(0deg, rgba(1, 124, 186, 0.04), rgba(1, 124, 186, 0.04)), var(--ehero-cho-surface);
	box-shadow: 0 0 0 1px var(--ehero-cho-accent) inset;
}

.ehero-cho__card.is-expired {
	opacity: 0.5;
	pointer-events: none;
}

.ehero-cho__label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 12px 14px;
	cursor: pointer;
	width: 100%;
}

.ehero-cho__label:focus-within {
	outline: 2px solid var(--ehero-cho-accent);
	outline-offset: 2px;
	border-radius: var(--ehero-cho-radius);
}

/* ---------- Checkbox ---------- */

.ehero-cho__check {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.ehero-cho__toggle {
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: var(--ehero-cho-accent);
	cursor: pointer;
}

/* ---------- Thumbnail ---------- */

.ehero-cho__thumb {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--ehero-cho-surface-alt);
}

.ehero-cho__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
}

/* ---------- Body ---------- */

.ehero-cho__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.ehero-cho__name {
	font-weight: 600;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.ehero-cho__subtext {
	font-size: 12.5px;
	color: var(--ehero-cho-muted);
}

.ehero-cho__prices {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.ehero-cho__was {
	color: var(--ehero-cho-muted);
	text-decoration: line-through;
	font-size: 13px;
	opacity: 0.85;
}

.ehero-cho__now {
	background: none;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	color: var(--ehero-cho-accent);
}

/* ---------- Badges ---------- */

.ehero-cho__flags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 2px;
}

.ehero-cho__badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.6;
	white-space: nowrap;
}

.ehero-cho__badge--save {
	background: rgba(10, 124, 66, 0.1);
	color: var(--ehero-cho-save);
}

.ehero-cho__badge--save .woocommerce-Price-amount {
	font-weight: 700;
}

.ehero-cho__badge--left {
	background: rgba(217, 119, 6, 0.12);
	color: #a45c06;
}

.ehero-cho__badge--clock {
	background: rgba(1, 124, 186, 0.1);
	color: var(--ehero-cho-accent);
	font-variant-numeric: tabular-nums;
}

/* ---------- Quantity ---------- */

.ehero-cho__qty {
	margin-top: 4px;
}

.ehero-cho__qty-select {
	min-height: 30px;
	padding: 2px 6px;
	font-size: 13px;
	border: 1px solid var(--ehero-cho-border);
	border-radius: 6px;
	background: var(--ehero-cho-surface);
}

/* ---------- Action label ---------- */

.ehero-cho__action {
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 600;
	color: var(--ehero-cho-accent);
	white-space: nowrap;
}

.ehero-cho__action-remove {
	display: none;
	color: var(--ehero-cho-muted);
}

.ehero-cho__card.is-accepted .ehero-cho__action-add {
	display: none;
}

.ehero-cho__card.is-accepted .ehero-cho__action-remove {
	display: inline;
}

/* ---------- Layout: compact ---------- */

.ehero-cho--compact .ehero-cho__label {
	padding: 9px 12px;
	gap: 10px;
}

.ehero-cho--compact .ehero-cho__now {
	font-size: 14px;
}

.ehero-cho--compact .ehero-cho__list {
	gap: 6px;
}

/* ---------- Layout: carousel ---------- */

.ehero-cho--carousel .ehero-cho__list {
	flex-direction: row;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 6px;
	-webkit-overflow-scrolling: touch;
}

.ehero-cho--carousel .ehero-cho__card {
	flex: 0 0 240px;
	scroll-snap-align: start;
}

.ehero-cho--carousel .ehero-cho__label {
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.ehero-cho--carousel .ehero-cho__thumb {
	width: 100%;
	height: 120px;
}

/* ---------- Layout: single order bump ---------- */

.ehero-cho--bump .ehero-cho__card {
	border: 2px dashed var(--ehero-cho-accent);
	background: var(--ehero-cho-surface-alt);
}

.ehero-cho--bump .ehero-cho__card.is-accepted {
	border-style: solid;
}

.ehero-cho--bump .ehero-cho__label {
	padding: 14px 16px;
}

/* ---------- Block cart & checkout ---------- */

/*
 * Inside the blocks sidebar the slot areas butt right against the section
 * separators; without breathing room the shelf reads as glued to the edges.
 * The 2px horizontal padding also keeps the card focus ring from clipping
 * against the container.
 */
/*
 * Padding, not margin, on purpose: themes draw the sidebar separators right
 * against the slot area and vertical margins collapse into them, gluing the
 * heading to the divider. Padding cannot collapse.
 */
.ehero-cho--blocks {
	margin: 14px 0 18px;
}

.ehero-cho--blocks .ehero-cho__head {
	margin: 0 0 14px;
}

/* ---------- Panel container ---------- */

/*
 * On the checkout and cart the shelf gets a real container — soft surface,
 * border, radius and inner padding — so it reads as one module instead of
 * cards floating flush against the theme's edges. The mini cart drawer stays
 * flat: at ~400px wide a nested panel just eats space.
 */
.ehero-cho--checkout,
.ehero-cho--cart,
.ehero-cho--blocks:not(.ehero-cho--minicart) {
	background: var(--ehero-cho-surface-alt);
	border: 1px solid var(--ehero-cho-border);
	border-radius: var(--ehero-cho-radius);
	padding: 16px;
}

/* Cards sit on the panel's soft surface, so they go plain white for contrast —
   including the bump template, whose usual soft background would blend in. */
.ehero-cho--checkout .ehero-cho__card,
.ehero-cho--cart .ehero-cho__card,
.ehero-cho--blocks:not(.ehero-cho--minicart) .ehero-cho__card {
	background: var(--ehero-cho-surface);
}

.ehero-cho--blocks .ehero-cho__list {
	gap: 12px;
}

/* Inside the totals blocks WooCommerce wraps content tightly. */
.wc-block-components-totals-wrapper .ehero-cho--blocks {
	margin: 8px 0;
}

/* ---------- Mini cart ---------- */

.ehero-cho--minicart {
	margin: 12px 0;
	font-size: 13px;
}

.ehero-cho--minicart .ehero-cho__title {
	font-size: 13px;
}

/* ---------- Small screens ---------- */

@media (max-width: 600px) {
	.ehero-cho__label {
		padding: 10px;
		gap: 10px;
	}

	.ehero-cho__thumb {
		width: 46px;
		height: 46px;
	}

	.ehero-cho__action {
		display: none;
	}

	.ehero-cho--carousel .ehero-cho__card {
		flex-basis: 200px;
	}
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
	.ehero-cho__card,
	.ehero-cho.is-busy {
		transition: none;
	}
}

/* ---------- Mini-Cart block drawer ---------- */

/*
 * The drawer's own content areas carry their horizontal padding themselves,
 * so the injected host starts at the drawer edge — pad it to line up with the
 * items above and keep the shelf clear of the footer divider.
 */
.wc-block-mini-cart__drawer .ehero-cho--minicart {
	margin: 0;
	padding: 12px 24px 16px;
}

.wc-block-mini-cart__drawer .ehero-cho--minicart .ehero-cho__title {
	font-size: 14px;
}

.wc-block-mini-cart__drawer .ehero-cho--minicart .ehero-cho__subtitle {
	font-size: 12px;
}

/* =========================================================================
 * Popup mode
 * ========================================================================= */

/*
 * The dialog is position:fixed, so it covers the viewport no matter where it
 * sits in the DOM. That is what lets the classic markup stay INSIDE the
 * checkout form (where the checkboxes must live to be serialised) while
 * looking like a body-level modal.
 */
.ehero-cho-modal[hidden] {
	display: none;
}

.ehero-cho-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.ehero-cho-modal__backdrop {
	position: absolute;
	inset: 0;
	background: var(--ehero-cho-backdrop, rgba(15, 23, 32, 0.7));
	backdrop-filter: blur(3px);
	animation: ehero-cho-fade 0.18s ease-out;
	cursor: pointer;
}

.ehero-cho-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--ehero-cho-modal-w, 760px);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: var(--ehero-cho-modal-bg, var(--ehero-cho-surface));
	color: var(--ehero-cho-modal-text, var(--ehero-cho-text));
	border-radius: var(--ehero-cho-modal-radius, 16px);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
	animation: ehero-cho-pop 0.26s cubic-bezier(0.22, 1.2, 0.36, 1);
	text-align: center;
}

@keyframes ehero-cho-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes ehero-cho-pop {
	from { opacity: 0; transform: translateY(14px) scale(0.94); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Close ---------- */

.ehero-cho-modal__x {
	position: absolute;
	top: 10px;
	right: 12px;
	z-index: 2;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	color: #1f2933;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease;
}

.ehero-cho-modal__x:hover {
	background: #fff;
}

/* ---------- Head ---------- */

.ehero-cho-modal__head {
	padding: 26px 26px 16px;
}

.ehero-cho-modal__title {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: inherit;
}

.ehero-cho-modal__subtitle {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.45;
	color: inherit;
	opacity: 0.72;
}

.ehero-cho-modal__burst {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ehero-cho-accent), var(--ehero-cho-accent-2));
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

/* ---------- Sizes ---------- */

/*
 * From "large" up the dialog is wide enough that a single column of cards
 * looks lost, so the shelf switches to a grid. The heading stays full width.
 */
.ehero-cho-modal--size-large .ehero-cho__list,
.ehero-cho-modal--size-xlarge .ehero-cho__list,
.ehero-cho-modal--size-full .ehero-cho__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.ehero-cho-modal--size-large .ehero-cho-modal__head,
.ehero-cho-modal--size-xlarge .ehero-cho-modal__head,
.ehero-cho-modal--size-full .ehero-cho-modal__head {
	padding-left: 40px;
	padding-right: 40px;
}

.ehero-cho-modal--size-large .ehero-cho-modal__body,
.ehero-cho-modal--size-xlarge .ehero-cho-modal__body,
.ehero-cho-modal--size-full .ehero-cho-modal__body {
	padding: 24px 32px 4px;
}

.ehero-cho-modal--size-large .ehero-cho-modal__foot,
.ehero-cho-modal--size-xlarge .ehero-cho-modal__foot,
.ehero-cho-modal--size-full .ehero-cho-modal__foot {
	padding: 22px 32px 28px;
}

/* The takeover fills the viewport and centres its own footer button. */
.ehero-cho-modal--size-full .ehero-cho-modal__dialog {
	max-height: 94vh;
}

.ehero-cho-modal--size-full .ehero-cho-modal__cta,
.ehero-cho-modal--size-xlarge .ehero-cho-modal__cta {
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

/* A wide dialog can take a bigger headline without crowding. */
.ehero-cho-modal--size-xlarge .ehero-cho-modal__title,
.ehero-cho-modal--size-full .ehero-cho-modal__title {
	font-size: 30px;
}

/* Single column again as soon as the grid would squeeze the cards. */
@media (max-width: 820px) {
	.ehero-cho-modal .ehero-cho__list {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ---------- Body ---------- */

.ehero-cho-modal__body {
	padding: 0 20px;
	text-align: left;
}

/* The shelf moves in here: it already has its own panel, drop the duplicate. */
.ehero-cho-modal__body .ehero-cho {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
}

/* Its heading would repeat the modal title. */
.ehero-cho-modal__body .ehero-cho__head {
	display: none;
}

/* ---------- Foot ---------- */

.ehero-cho-modal__foot {
	padding: 18px 26px 24px;
}

.ehero-cho-modal__cta {
	display: block;
	width: 100%;
	padding: 14px 20px;
	border: 0;
	border-radius: 10px;
	background: var(--ehero-cho-cta-from, var(--ehero-cho-accent));
	color: var(--ehero-cho-cta-text, #fff);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: filter 0.15s ease, transform 0.1s ease;
}

.ehero-cho-modal__cta:hover {
	filter: brightness(1.08);
}

.ehero-cho-modal__cta:active {
	transform: translateY(1px);
}

.ehero-cho-modal__dismiss {
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 6px;
	border: 0;
	background: none;
	color: var(--ehero-cho-muted);
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
}

.ehero-cho-modal__dismiss:hover {
	color: var(--ehero-cho-text);
}

/* =========================================================================
 * Loud variant
 * ========================================================================= */

.ehero-cho-modal--loud .ehero-cho-modal__head {
	padding: 30px 26px 20px;
	border-radius: 16px 16px 0 0;
	background: linear-gradient(135deg, var(--ehero-cho-head-from), var(--ehero-cho-head-to));
	color: var(--ehero-cho-head-text, #fff);
}

.ehero-cho-modal--loud .ehero-cho-modal__title {
	color: var(--ehero-cho-head-text, #fff);
}

.ehero-cho-modal--loud .ehero-cho-modal__subtitle {
	color: var(--ehero-cho-head-text, #fff);
	opacity: 0.92;
}

.ehero-cho-modal--loud .ehero-cho-modal__title {
	font-size: 23px;
	text-transform: uppercase;
}

.ehero-cho-modal--loud .ehero-cho-modal__burst {
	width: 86px;
	height: 86px;
	background: var(--ehero-cho-badge-bg, #fff);
	color: var(--ehero-cho-badge-text, var(--ehero-cho-accent));
	font-size: 24px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.ehero-cho-modal--loud.is-pulsing .ehero-cho-modal__burst {
	animation: ehero-cho-throb 1.5s ease-in-out infinite;
}

@keyframes ehero-cho-throb {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.07); }
}

.ehero-cho-modal--loud.ehero-cho-modal--size-compact .ehero-cho-modal__body {
	padding-top: 16px;
}

.ehero-cho-modal--loud .ehero-cho-modal__cta {
	background: linear-gradient(135deg, var(--ehero-cho-cta-from), var(--ehero-cho-cta-to));
	color: var(--ehero-cho-cta-text, #fff);
	font-size: 17px;
	padding: 16px 20px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.ehero-cho-modal--loud.is-pulsing .ehero-cho-modal__cta {
	animation: ehero-cho-nudge 2.4s ease-in-out infinite;
}

@keyframes ehero-cho-nudge {
	0%, 88%, 100% { transform: scale(1); }
	92%           { transform: scale(1.035); }
}

/* The countdown carries the urgency here, so make it impossible to miss. */
.ehero-cho-modal--loud .ehero-cho__badge--clock {
	background: #b32d2e;
	color: #fff;
}

.ehero-cho-modal--loud .ehero-cho__badge--left {
	background: #d97706;
	color: #fff;
}

/* ---------- Motion & small screens ---------- */

/* ---------- Entrance animations ---------- */

.ehero-cho-modal--anim-zoom .ehero-cho-modal__dialog {
	animation: ehero-cho-zoom 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ehero-cho-zoom {
	from { opacity: 0; transform: scale(1.14); }
	to   { opacity: 1; transform: scale(1); }
}

.ehero-cho-modal--anim-slide .ehero-cho-modal__dialog {
	animation: ehero-cho-drop 0.3s cubic-bezier(0.22, 1.2, 0.36, 1);
}

@keyframes ehero-cho-drop {
	from { opacity: 0; transform: translateY(-60px); }
	to   { opacity: 1; transform: translateY(0); }
}

.ehero-cho-modal--anim-shake .ehero-cho-modal__dialog {
	animation: ehero-cho-burst 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes ehero-cho-burst {
	0%   { opacity: 0; transform: scale(0.82); }
	45%  { opacity: 1; transform: scale(1.04) rotate(-1.2deg); }
	60%  { transform: scale(1) rotate(1deg); }
	75%  { transform: rotate(-0.6deg); }
	90%  { transform: rotate(0.3deg); }
	100% { transform: rotate(0); }
}

.ehero-cho-modal--anim-none .ehero-cho-modal__dialog,
.ehero-cho-modal--anim-none .ehero-cho-modal__backdrop {
	animation: none;
}

/*
 * Accessibility beats configuration: a merchant cannot opt a visitor out of
 * their own reduced-motion setting.
 */
@media (prefers-reduced-motion: reduce) {
	.ehero-cho-modal__dialog,
	.ehero-cho-modal__backdrop,
	.ehero-cho-modal--loud .ehero-cho-modal__burst,
	.ehero-cho-modal--loud .ehero-cho-modal__cta,
	.ehero-cho-modal--loud.is-pulsing .ehero-cho-modal__burst,
	.ehero-cho-modal--loud.is-pulsing .ehero-cho-modal__cta,
	.ehero-cho-modal--anim-zoom .ehero-cho-modal__dialog,
	.ehero-cho-modal--anim-slide .ehero-cho-modal__dialog,
	.ehero-cho-modal--anim-shake .ehero-cho-modal__dialog {
		animation: none;
	}
}

@media (max-width: 600px) {
	.ehero-cho-modal {
		padding: 0;
		align-items: flex-end;
	}

	.ehero-cho-modal__dialog {
		max-width: none;
		max-height: 88vh;
		border-radius: 16px 16px 0 0;
		animation: ehero-cho-sheet 0.26s cubic-bezier(0.22, 1.2, 0.36, 1);
	}

	@keyframes ehero-cho-sheet {
		from { transform: translateY(100%); }
		to   { transform: translateY(0); }
	}

	.ehero-cho-modal--loud .ehero-cho-modal__title {
		font-size: 20px;
	}
}

/* Body lock while the dialog is open. */
body.ehero-cho-modal-open {
	overflow: hidden;
}

/*
 * Popup-only mode: the shelf still has to sit in the DOM (its checkboxes are
 * part of the checkout form and must keep being serialised), so it is hidden
 * from sight and from assistive tech rather than removed.
 */
.ehero-cho--parked {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* ---------- Sold-out card ---------- */

/*
 * Visible but unmistakably unavailable: desaturated, no hover, no pointer,
 * struck-through price and a solid "Sold out" badge. The badge stays at full
 * contrast so it reads even though the rest of the card is faded.
 */
.ehero-cho__card.is-sold-out {
	background: var(--ehero-cho-surface-alt);
	border-style: dashed;
	cursor: not-allowed;
}

.ehero-cho__card.is-sold-out:hover {
	border-color: var(--ehero-cho-border);
}

.ehero-cho__card.is-sold-out .ehero-cho__label {
	cursor: not-allowed;
}

.ehero-cho__card.is-sold-out .ehero-cho__thumb,
.ehero-cho__card.is-sold-out .ehero-cho__name,
.ehero-cho__card.is-sold-out .ehero-cho__subtext,
.ehero-cho__card.is-sold-out .ehero-cho__prices,
.ehero-cho__card.is-sold-out .ehero-cho__check {
	opacity: 0.45;
	filter: grayscale(1);
}

.ehero-cho__card.is-sold-out .ehero-cho__now {
	text-decoration: line-through;
}

.ehero-cho__badge--soldout {
	background: #1f2933;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
