/* Jumstore Core – public styles.
   Light layer: standalone markup for non-Jumstore themes plus
   shared bits (inline countdown, flash-sale note, core product grid). */

.jum-product-grid--core {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

@media (max-width: 900px) {
	.jum-product-grid--core {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.jum-product-grid--core {
		grid-template-columns: 1fr;
	}
}

.jum-core-section {
	margin: 40px 0;
}

.jum-core-empty {
	color: #6b7280;
	font-size: 14px;
}

/* Inline countdown (shortcode / single product flash sale) */
.jum-countdown--inline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}

.jum-countdown--inline .jum-countdown__cell {
	background: #101217;
	color: #fff;
	border-radius: 8px;
	padding: 6px 8px;
	min-width: 46px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.1;
}

.jum-countdown--inline .jum-countdown__cell strong {
	font-size: 16px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.jum-countdown--inline .jum-countdown__cell span {
	font-size: 9px;
	letter-spacing: 1px;
	opacity: 0.65;
}

.jum-countdown--inline .jum-countdown__sep {
	color: #ff6a00;
	font-weight: 800;
}

.jum-flash-single {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	background: #fff3ea;
	border: 1px solid #ffd9bb;
	border-radius: 10px;
	padding: 12px 16px;
	margin: 16px 0;
}

.jum-flash-single__label {
	font-weight: 700;
	font-size: 13.5px;
	color: #b54400;
}

/* Fallback components for third-party themes */
.jum-core-hero {
	background: linear-gradient(135deg, #05070b, #101217);
	color: #fff;
	border-radius: 16px;
	padding: 56px 32px;
	text-align: center;
	margin: 24px 0;
}

.jum-core-hero h2 {
	color: #fff;
	font-size: 34px;
	margin: 10px 0;
}

.jum-core-hero p {
	color: #9ca3af;
	max-width: 520px;
	margin: 0 auto 22px;
}

.jum-core-hero__label {
	color: #ff6a00;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 12px;
}

.jum-core-btn {
	display: inline-block;
	background: #ff6a00;
	color: #fff !important;
	font-weight: 700;
	padding: 12px 26px;
	border-radius: 8px;
	text-decoration: none;
}

.jum-core-btn:hover {
	background: #e85f00;
}

.jum-core-trust {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
	margin: 24px 0;
}

.jum-core-trust__item {
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 12px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.jum-core-trust__item span {
	color: #6b7280;
	font-size: 13px;
}

.jum-core-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 24px 0;
}

.jum-core-cats a {
	display: inline-block;
	background: #f8f9fb;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 8px 18px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

.jum-core-cats a:hover {
	border-color: #ff6a00;
	color: #ff6a00;
}

.jum-core-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin: 24px 0;
}

.jum-core-features__card {
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 12px;
	padding: 20px;
}

.jum-core-features__card h3 {
	margin: 0 0 6px;
	font-size: 16px;
}

.jum-core-features__card p {
	margin: 0;
	color: #6b7280;
	font-size: 14px;
}

.jum-core-card {
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 12px;
	padding: 14px;
	text-align: center;
}

.jum-core-card h3 {
	font-size: 15px;
	margin: 10px 0 6px;
}

.jum-core-card .price {
	color: #ff6a00;
	font-weight: 800;
}

.jum-core-onsale {
	background: #ef4444 !important;
	border-radius: 999px !important;
	font-weight: 700 !important;
}

/*--------------------------------------------------------------
Header layout variants (driven by Jumstore → Settings → Header
Builder). The theme outputs .jum-header--{layout}; these rules
give the "centered" and "minimal" options their visual effect.
Desktop only — below 900px the theme's mobile header takes over.
--------------------------------------------------------------*/
@media (min-width: 901px) {
	/* Center Logo Header: logo centered on its own row, then search + actions. */
	.jum-header--centered .jum-header__inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px 28px;
		padding: 14px 0;
	}
	.jum-header--centered .jum-header__brand {
		order: 1;
		flex: 1 1 100%;
		display: flex;
		justify-content: center;
	}
	.jum-header--centered .jum-header__search {
		order: 2;
		flex: 1 1 auto;
		max-width: 620px;
		margin: 0 auto;
	}
	.jum-header--centered .jum-header__actions {
		order: 3;
		margin-left: 0;
	}

	/* Minimal Header: logo left, actions right, no inline search, compact. */
	.jum-header--minimal .jum-header__search {
		display: none;
	}
	.jum-header--minimal .jum-header__inner {
		min-height: calc(var(--jum-logo-size, 40px) + 20px);
		gap: 20px;
	}
	.jum-header--minimal .jum-header__actions {
		margin-left: auto;
	}
}

/*--------------------------------------------------------------
Floating widgets: scroll-to-top button + floating cart.
Per-widget values (size, offset, color) arrive as element-scoped
custom properties (--fw-*) set inline by the render class.
--------------------------------------------------------------*/
.jum-scrolltop,
.jum-fcart__btn {
	position: fixed;
	z-index: 95;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--fw-size, 44px);
	height: var(--fw-size, 44px);
	bottom: var(--fw-bottom, 24px);
	background: var(--fw-bg, var(--jum-primary, #FF6A00));
	color: #fff;
	border: 0;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.18s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.jum-scrolltop--right { right: var(--fw-offset, 24px); }
.jum-scrolltop--left  { left:  var(--fw-offset, 24px); }
.jum-scrolltop--circle  { border-radius: 50%; }
.jum-scrolltop--rounded { border-radius: 14px; }
.jum-scrolltop--square  { border-radius: 6px; }

.jum-scrolltop {
	opacity: 0;
	visibility: hidden;
}

.jum-scrolltop.is-visible {
	opacity: 1;
	visibility: visible;
}

.jum-scrolltop:hover,
.jum-fcart__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
}

.jum-fw-icon {
	width: 50%;
	height: 50%;
}

/* Floating cart */
.jum-fcart {
	position: fixed;
	z-index: 95;
	bottom: var(--fw-bottom, 24px);
}

.jum-fcart--right { right: var(--fw-offset, 24px); }
.jum-fcart--left  { left:  var(--fw-offset, 24px); }
.jum-fcart.jum-is-hidden { display: none; }

.jum-fcart__btn {
	position: static;
	border-radius: 50%;
	flex-direction: column;
	gap: 1px;
	text-decoration: none;
	line-height: 1;
}

.jum-fcart__btn .jum-fw-icon {
	width: 42%;
	height: 42%;
}

.jum-fcart__count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--fw-bg, var(--jum-primary, #FF6A00));
	font-size: 11px;
	font-weight: 800;
	border-radius: 999px;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
}

.jum-fcart__total {
	font-size: 10px;
	font-weight: 700;
	opacity: 0.95;
}

.jum-fcart__total .amount,
.jum-fcart__total .woocommerce-Price-amount {
	color: #fff;
}

/* Lift both above the theme's mobile bottom navigation on phones. */
@media (max-width: 768px) {
	.jum-theme .jum-scrolltop,
	.jum-theme .jum-fcart {
		bottom: calc(var(--fw-bottom, 24px) + 64px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.jum-scrolltop,
	.jum-fcart__btn {
		transition: opacity 0.2s ease, visibility 0.2s ease;
	}
	.jum-scrolltop:hover,
	.jum-fcart__btn:hover {
		transform: none;
	}
}

/* ==========================================================================
   Slide-in cart drawer (side cart)
   ========================================================================== */
.jum-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 100050;
}

.jum-cart-drawer[hidden] {
	display: none;
}

/* Scroll lock while the drawer is open (toggled by JS; always released). */
body.jum-drawer-lock {
	overflow: hidden;
}

.jum-cart-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(9, 11, 16, 0.5);
	opacity: 0;
	transition: opacity 0.28s ease;
	cursor: pointer;
}

.jum-cart-drawer.is-open .jum-cart-drawer__overlay {
	opacity: 1;
}

.jum-cart-drawer__panel {
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(410px, 92vw);
	background: #fff;
	color: var(--jum-text, #111827);
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 60px rgba(9, 11, 16, 0.28);
	transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.jum-cart-drawer--right .jum-cart-drawer__panel {
	right: 0;
	transform: translateX(103%);
}

.jum-cart-drawer--left .jum-cart-drawer__panel {
	left: 0;
	transform: translateX(-103%);
}

.jum-cart-drawer.is-open .jum-cart-drawer__panel {
	transform: none;
}

/* Head */
.jum-cart-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--jum-border-soft, #eef0f3);
	flex: 0 0 auto;
}

.jum-cart-drawer__title {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.jum-cart-drawer__title .jum-fw-icon {
	width: 22px;
	height: 22px;
	color: var(--jum-primary, #FF6A00);
}

.jum-cart-drawer__count {
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--jum-primary, #FF6A00);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	border-radius: 999px;
}

.jum-cart-drawer__close {
	appearance: none;
	border: 0;
	background: var(--jum-bg-soft, #f3f4f6);
	color: var(--jum-text, #111827);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex: 0 0 auto;
	transition: background 0.15s ease, transform 0.15s ease;
}

.jum-cart-drawer__close:hover {
	background: #e5e7eb;
	transform: rotate(90deg);
}

.jum-cart-drawer__close .jum-fw-icon {
	width: 18px;
	height: 18px;
}

/* Body (scrolls) */
.jum-cart-drawer__body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.jum-cart-drawer__items {
	list-style: none;
	margin: 0;
	padding: 6px 18px;
	overflow-y: auto;
	flex: 1 1 auto;
}

.jum-cart-drawer__item {
	display: grid;
	grid-template-columns: 62px 1fr auto;
	grid-template-areas: "thumb info line" "thumb info remove";
	align-items: center;
	gap: 4px 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--jum-border-soft, #eef0f3);
	position: relative;
	transition: opacity 0.2s ease;
}

.jum-cart-drawer__item.is-busy {
	opacity: 0.45;
	pointer-events: none;
}

.jum-cart-drawer__thumb {
	grid-area: thumb;
	width: 62px;
	height: 62px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--jum-bg-soft, #f6f7f9);
}

.jum-cart-drawer__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 4px;
}

.jum-cart-drawer__info {
	grid-area: info;
	min-width: 0;
}

.jum-cart-drawer__name {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.jum-cart-drawer__name a {
	color: inherit;
	text-decoration: none;
}

.jum-cart-drawer__name a:hover {
	color: var(--jum-primary, #FF6A00);
}

.jum-cart-drawer__qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--jum-border, #e3e6ea);
	border-radius: 8px;
	overflow: hidden;
}

.jum-cart-drawer__qty button {
	appearance: none;
	border: 0;
	background: transparent;
	width: 28px;
	height: 28px;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	color: var(--jum-text, #111827);
	transition: background 0.15s ease;
}

.jum-cart-drawer__qty button:hover {
	background: var(--jum-bg-soft, #f3f4f6);
	color: var(--jum-primary, #FF6A00);
}

.jum-cart-drawer__qty-val {
	min-width: 30px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
}

.jum-cart-drawer__line {
	grid-area: line;
	align-self: start;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

.jum-cart-drawer__line .amount,
.jum-cart-drawer__line .woocommerce-Price-amount {
	color: var(--jum-text, #111827);
}

.jum-cart-drawer__remove {
	grid-area: remove;
	align-self: end;
	justify-self: end;
	appearance: none;
	border: 0;
	background: transparent;
	color: var(--jum-muted, #9aa1ab);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease;
}

.jum-cart-drawer__remove:hover {
	color: #e5484d;
	background: rgba(229, 72, 77, 0.1);
}

.jum-cart-drawer__remove .jum-fw-icon {
	width: 15px;
	height: 15px;
}

/* Empty state */
.jum-cart-drawer__empty {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 14px;
	padding: 40px 24px;
	color: var(--jum-muted, #6b7280);
}

.jum-cart-drawer__empty-icon .jum-fw-icon {
	width: 52px;
	height: 52px;
	color: var(--jum-border, #d7dbe0);
}

.jum-cart-drawer__empty p {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
}

/* Footer */
.jum-cart-drawer__foot {
	flex: 0 0 auto;
	padding: 16px 18px calc(16px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--jum-border-soft, #eef0f3);
	background: #fff;
	box-shadow: 0 -8px 24px rgba(9, 11, 16, 0.05);
}

.jum-cart-drawer__ship {
	margin-bottom: 14px;
}

.jum-cart-drawer__ship-text {
	display: block;
	font-size: 12.5px;
	margin-bottom: 7px;
	color: var(--jum-muted, #6b7280);
}

.jum-cart-drawer__ship-text strong {
	color: var(--jum-primary, #FF6A00);
}

.jum-cart-drawer__ship-track {
	display: block;
	height: 6px;
	border-radius: 999px;
	background: var(--jum-bg-soft, #eef0f3);
	overflow: hidden;
}

.jum-cart-drawer__ship-fill {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--jum-primary, #FF6A00), var(--jum-primary-600, #e85f00));
	transition: width 0.4s ease;
}

.jum-cart-drawer__subtotal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
}

.jum-cart-drawer__subtotal strong {
	font-size: 18px;
	font-weight: 800;
}

.jum-cart-drawer__note {
	margin: 0 0 14px;
	font-size: 11.5px;
	color: var(--jum-muted, #9aa1ab);
}

.jum-cart-drawer__actions {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.jum-cart-drawer__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	border-radius: 12px;
	font-size: 14.5px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.12s ease, filter 0.15s ease, background 0.15s ease;
}

.jum-cart-drawer__btn--primary {
	background: var(--jum-primary, #FF6A00);
	color: #fff;
}

.jum-cart-drawer__btn--primary:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.jum-cart-drawer__btn--ghost {
	background: var(--jum-bg-soft, #f3f4f6);
	color: var(--jum-text, #111827);
}

.jum-cart-drawer__btn--ghost:hover {
	background: #e5e7eb;
}

@media (prefers-reduced-motion: reduce) {
	.jum-cart-drawer__panel,
	.jum-cart-drawer__overlay,
	.jum-cart-drawer__ship-fill {
		transition: none;
	}
}

/* ==========================================================================
   Reviews wall (auto-scrolling "wall of love")
   ========================================================================== */
.jum-reviews {
	padding: 46px 0;
	overflow: hidden;
}

.jum-reviews__head {
	text-align: center;
	margin-bottom: 26px;
}

.jum-reviews__title {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--jum-text, #111827);
}

.jum-reviews__sub {
	margin: 8px 0 0;
	color: var(--jum-muted, #6b7280);
	font-size: 15px;
}

/* Rating summary bar ------------------------------------------------------ */
.jum-reviews__summary {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px 26px;
	margin: 0 auto 30px;
	padding: 16px 26px;
	max-width: 640px;
	background: var(--jum-card-bg, #fff);
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 16px;
	box-shadow: 0 10px 30px -18px rgba(17, 24, 39, 0.35);
}

.jum-reviews__score {
	display: flex;
	align-items: center;
	gap: 14px;
}

.jum-reviews__avg {
	font-size: 44px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--jum-text, #111827);
}

.jum-reviews__scoremeta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
}

.jum-reviews__count {
	font-size: 13.5px;
	color: var(--jum-muted, #6b7280);
}

.jum-reviews__count strong {
	color: var(--jum-text, #111827);
}

/* Fractional star bar (gold fill clipped to --pct). */
.jum-stars {
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 2px;
	white-space: nowrap;
}

.jum-stars__base {
	color: rgba(17, 24, 39, 0.16);
}

.jum-stars__fill {
	position: absolute;
	inset: 0;
	width: var(--pct, 100%);
	overflow: hidden;
	color: #f5a623;
}

.jum-reviews__sources {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-left: 26px;
	border-left: 1px solid rgba(17, 24, 39, 0.1);
}

.jum-reviews__srcchip {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: var(--src, #6b7280);
	padding: 4px 11px;
	border-radius: 999px;
	letter-spacing: 0.01em;
}

@media (max-width: 560px) {
	.jum-reviews__summary {
		gap: 12px;
		padding: 14px 18px;
	}

	.jum-reviews__avg {
		font-size: 36px;
	}

	.jum-reviews__sources {
		padding-left: 0;
		border-left: 0;
		justify-content: center;
		width: 100%;
	}
}

.jum-reviews__rowwrap {
	overflow: hidden;
	margin-bottom: 18px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.jum-reviews__row {
	display: flex;
	gap: 18px;
	width: max-content;
	animation: jum-rev-scroll var(--jum-rev-speed, 45s) linear infinite;
	will-change: transform;
}

.jum-reviews__row--reverse {
	animation-direction: reverse;
}

.jum-reviews:hover .jum-reviews__row {
	animation-play-state: paused;
}

@keyframes jum-rev-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.jum-review-card {
	flex: 0 0 340px;
	width: 340px;
	box-sizing: border-box;
	background: var(--jum-card, #fff);
	border: 1px solid var(--jum-border-soft, #eef0f3);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.jum-review-card__top {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 12px;
}

.jum-review-card__avatar {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--jum-primary, #FF6A00);
	color: #fff;
	font-weight: 800;
	font-size: 16px;
}

.jum-review-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jum-review-card__meta {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.jum-review-card__name {
	font-weight: 700;
	font-size: 14px;
	color: var(--jum-text, #111827);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.jum-review-card__stars {
	color: #f5a623;
	font-size: 13px;
	letter-spacing: 1px;
}

.jum-review-card__badge {
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 800;
	color: var(--src, var(--jum-primary, #FF6A00));
	background: var(--jum-soft, #f6f7f9);
	border: 1px solid var(--jum-border-soft, #eef0f3);
	border-radius: 999px;
	padding: 3px 9px;
	white-space: nowrap;
}

.jum-review-card__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--jum-text, #374151);
}

.jum-review-card__link {
	display: inline-block;
	margin-top: 10px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--jum-primary, #FF6A00);
	text-decoration: none;
}

.jum-review-card__link:hover {
	text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
	.jum-reviews__row {
		animation: none;
	}
	.jum-reviews__rowwrap {
		overflow-x: auto;
	}
}

@media (max-width: 480px) {
	.jum-review-card {
		flex-basis: 280px;
		width: 280px;
	}
}

/* Cookie-consent banner (tracking) */
.jum-consent {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 99999;
	max-width: 560px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
	padding: 16px 20px;
	background: #111827;
	color: #f3f4f6;
	border-radius: 14px;
	box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.55);
	font-size: 13.5px;
	line-height: 1.5;
}

.jum-consent__text {
	margin: 0;
	flex: 1 1 240px;
}

.jum-consent__btns {
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.jum-consent__accept,
.jum-consent__decline {
	border: 0;
	border-radius: 9px;
	padding: 9px 18px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.jum-consent__accept {
	background: var(--jum-primary, #ff6a00);
	color: #fff;
}

.jum-consent__decline {
	background: rgba(255, 255, 255, 0.14);
	color: #f3f4f6;
}

.jum-consent__accept:hover {
	filter: brightness(1.06);
}

.jum-consent__decline:hover {
	background: rgba(255, 255, 255, 0.24);
}

/* Email capture popup */
body.jum-popup-lock { overflow: hidden; }

.jum-popup {
	position: fixed;
	inset: 0;
	z-index: 99998;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(15, 18, 24, 0.6);
}

.jum-popup.is-open { display: flex; }

.jum-popup__box {
	position: relative;
	width: 100%;
	max-width: 440px;
	background: #fff;
	border-radius: 18px;
	padding: 38px 34px 30px;
	text-align: center;
	box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.5);
}

.jum-popup__close {
	position: absolute;
	top: 12px;
	right: 14px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	color: #9ca3af;
	cursor: pointer;
}

.jum-popup__close:hover { color: #111827; }

.jum-popup__title {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #111827;
}

.jum-popup__text {
	margin: 0 0 18px;
	color: #6b7280;
	font-size: 15px;
	line-height: 1.55;
}

.jum-popup__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.jum-popup__form input[type="email"] {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	border: 1.5px solid #e5e7eb;
	border-radius: 12px;
	font-size: 15px;
}

.jum-popup__form input[type="email"]:focus {
	outline: none;
	border-color: var(--jum-primary, #ff6a00);
}

.jum-popup__form button {
	height: 50px;
	border: 0;
	border-radius: 12px;
	background: var(--jum-primary, #ff6a00);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.jum-popup__form button:hover { filter: brightness(1.05); }
.jum-popup__form button:disabled { opacity: 0.6; cursor: default; }

.jum-popup__dismiss {
	margin-top: 12px;
	border: 0;
	background: transparent;
	color: #9ca3af;
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
}

.jum-popup__tick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: #e7f6ec;
	color: #1a7f37;
	font-size: 28px;
	font-weight: 800;
}

.jum-popup__coupon {
	margin-top: 6px;
	padding: 12px;
	border: 2px dashed var(--jum-primary, #ff6a00);
	border-radius: 12px;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--jum-primary, #ff6a00);
	background: #fff7f0;
}

/* Social share bar */
.jum-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 4px 0;
}

.jum-share__label {
	font-size: 13px;
	font-weight: 700;
	color: #6b7280;
	margin-right: 2px;
}

.jum-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
	background: var(--sc, #374151);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	transition: transform 0.05s ease, filter 0.15s ease;
}

.jum-share__btn--copy {
	background: #374151;
}

.jum-share__btn:hover {
	filter: brightness(1.08);
}

.jum-share__btn:active {
	transform: scale(0.96);
}

.jum-share__ico {
	display: inline-flex;
}

.jum-share__ico svg {
	width: 17px;
	height: 17px;
	display: block;
}

/* Icon-only: square/round chips */
.jum-share--icon .jum-share__btn {
	width: 38px;
	height: 38px;
	justify-content: center;
	padding: 0;
}

.jum-share--icon .jum-share__txt {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* Text / both: pills */
.jum-share--text .jum-share__btn,
.jum-share--both .jum-share__btn {
	padding: 9px 15px;
}

.jum-share--text .jum-share__ico {
	display: none;
}

/* Shapes */
.jum-share--round.jum-share--icon .jum-share__btn {
	border-radius: 50%;
}

.jum-share--round .jum-share__btn {
	border-radius: 999px;
}

.jum-share--square .jum-share__btn {
	border-radius: 8px;
}

.jum-share__btn--copy.is-copied {
	background: #1a7f37;
}
