/*--------------------------------------------------------------
Jumstore – homepage stylesheet
Hero grid, promo strip, categories, deal bands, tabs, banners,
flash sale, best sellers, brands, vendors, newsletter, services.
--------------------------------------------------------------*/

/* Hero: cats | slider | offers
--------------------------------------------------------------*/
.jum-hero-wrap {
	padding-top: 22px;
}

.jum-hero-grid {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr) 264px;
	gap: 18px;
	align-items: stretch;
}

/* Left category card */
.jum-hero-cats {
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	padding: 14px 10px;
	overflow: hidden;
}

.jum-hero-cats__title {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	font-weight: 700;
	padding: 4px 10px 10px;
	margin: 0;
	border-bottom: 1px solid var(--jum-border-soft);
}

.jum-hero-cats__title .jum-icon {
	width: 17px;
	height: 17px;
	color: var(--jum-primary);
}

.jum-hero-cats__list {
	list-style: none;
	margin-top: 6px;
}

.jum-hero-cats__list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 10px;
	font-size: 13.5px;
	font-weight: 600;
	border-radius: var(--jum-radius-sm);
}

.jum-hero-cats__list a:hover {
	background: var(--jum-soft);
	color: var(--jum-primary);
}

.jum-hero-cats__list img {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--jum-soft);
}

.jum-hero-cats__list span {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.jum-hero-cats__list .jum-icon {
	width: 14px;
	height: 14px;
	color: var(--jum-muted);
}

.jum-hero-cats__more a {
	color: var(--jum-primary);
	border-top: 1px solid var(--jum-border-soft);
	border-radius: 0;
	margin-top: 4px;
	padding-top: 10px;
}

/* Center slider */
.jum-hero {
	position: relative;
	border-radius: var(--jum-radius-md);
	overflow: hidden;
	background:
		radial-gradient(560px 300px at 80% 35%, rgba(255, 106, 0, 0.18), transparent 65%),
		linear-gradient(135deg, var(--jum-dark) 0%, var(--jum-dark-2) 100%);
	color: #fff;
	min-height: 440px;
	display: flex;
}

.jum-hero__slides {
	flex: 1;
	display: flex;
}

.jum-hero__slide {
	display: none;
	flex: 1;
}

.jum-hero__slide.is-active {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 20px;
	padding: 40px 44px 56px;
	animation: jum-fade-in 0.5s ease;
}

.jum-hero__label {
	display: inline-block;
	color: var(--jum-primary);
	background: rgba(255, 106, 0, 0.12);
	border: 1px solid rgba(255, 106, 0, 0.35);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	padding: 6px 13px;
	border-radius: var(--jum-radius-pill);
	margin-bottom: 18px;
}

.jum-hero__title {
	font-size: 38px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.8px;
	color: #fff;
	margin-bottom: 14px;
}

.jum-hero__text {
	color: #9CA3AF;
	font-size: 15px;
	max-width: 430px;
	margin-bottom: 24px;
}

.jum-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.jum-hero__media {
	display: flex;
	align-items: center;
	justify-content: center;
}

.jum-hero__media img {
	max-height: 330px;
	width: auto;
	filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.5));
	transform: scale(var(--hero-img-scale, 1));
	transition: transform 0.25s ease;
}

/* Custom uploaded hero image: honour fit / position / scale controls. */
.jum-hero__media--custom {
	width: 100%;
	max-width: 460px;
	aspect-ratio: 4 / 3;
}

.jum-hero__media--custom img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: var(--hero-img-fit, contain);
	object-position: var(--hero-img-pos, center);
}

/* Hero button style presets. */
.jum-hero__actions--pill .jum-btn {
	border-radius: 999px;
}

.jum-hero__actions--square .jum-btn {
	border-radius: 0;
}

.jum-hero__actions--soft .jum-btn {
	border-radius: 14px;
}

.jum-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}

.jum-hero__dot {
	width: 9px;
	height: 9px;
	border-radius: var(--jum-radius-pill);
	background: rgba(255, 255, 255, 0.35);
	transition: width 0.22s ease, background-color 0.22s ease;
}

.jum-hero__dot.is-active {
	width: 26px;
	background: var(--jum-primary);
}

/* Right offer cards */
.jum-hero-offers {
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	gap: 18px;
}

.jum-offer {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-radius: var(--jum-radius-md);
	padding: 18px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jum-offer:hover {
	transform: translateY(-3px);
	box-shadow: var(--jum-shadow);
}

.jum-offer--dark {
	background: linear-gradient(150deg, var(--jum-dark-2), var(--jum-dark));
	color: #fff;
}

.jum-offer--soft {
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
}

.jum-offer--orange {
	background: linear-gradient(150deg, var(--jum-primary), var(--jum-primary-dark));
	color: #fff;
}

.jum-offer__body {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.jum-offer__label {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	opacity: 0.75;
}

.jum-offer--soft .jum-offer__label {
	color: var(--jum-primary-dark);
	opacity: 1;
}

.jum-offer__title {
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: inherit;
}

.jum-offer__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	margin-top: 4px;
	color: inherit;
}

.jum-offer--soft .jum-offer__btn {
	color: var(--jum-primary);
}

.jum-offer__btn .jum-icon {
	width: 14px;
	height: 14px;
	transition: transform 0.18s ease;
}

.jum-offer:hover .jum-offer__btn .jum-icon {
	transform: translateX(3px);
}

.jum-offer__img {
	max-height: 84px;
	width: auto;
	flex: 0 0 auto;
}

.jum-offer__icon {
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}

.jum-offer--soft .jum-offer__icon {
	background: var(--jum-primary-soft);
	color: var(--jum-primary);
}

.jum-offer__icon .jum-icon {
	width: 24px;
	height: 24px;
}

/* Promo strip
--------------------------------------------------------------*/
.jum-promo-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	padding: 18px;
}

.jum-promo-strip__item {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 4px 8px;
}

.jum-promo-strip__icon {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--jum-primary-soft);
	color: var(--jum-primary);
	border-radius: 50%;
}

.jum-promo-strip__icon .jum-icon {
	width: 20px;
	height: 20px;
}

.jum-promo-strip__body {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.jum-promo-strip__body strong {
	font-size: 14px;
	font-weight: 700;
}

.jum-promo-strip__body span {
	font-size: 12.5px;
	color: var(--jum-muted);
}

/* Top categories grid
--------------------------------------------------------------*/
.jum-topcats {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px;
	scrollbar-width: thin;
	scrollbar-color: var(--jum-border) transparent;
}

.jum-topcats::-webkit-scrollbar {
	height: 6px;
}

.jum-topcats::-webkit-scrollbar-thumb {
	background: var(--jum-border);
	border-radius: 999px;
}

.jum-topcats__card {
	flex: 0 0 auto;
	width: 150px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	padding: 18px 12px 16px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.jum-topcats__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--jum-shadow);
	border-color: var(--jum-primary);
}

.jum-topcats__media {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--jum-soft);
	margin-bottom: 8px;
}

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

.jum-topcats__name {
	font-size: 13.5px;
	font-weight: 700;
}

.jum-topcats__count {
	font-size: 12px;
	color: var(--jum-muted);
}

/* Category circle carousel
--------------------------------------------------------------*/
.jum-catrow__wrap {
	position: relative;
}

.jum-catrow__track {
	display: flex;
	gap: 20px;
	list-style: none;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 6px 2px 10px;
	scrollbar-width: none;
}

.jum-catrow__track::-webkit-scrollbar {
	display: none;
}

.jum-catrow__item {
	flex: 0 0 auto;
	width: 110px;
	text-align: center;
}

.jum-catrow__circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 94px;
	height: 94px;
	margin: 0 auto;
	background: var(--jum-card);
	border: 1.5px solid var(--jum-border-soft);
	border-radius: 50%;
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.jum-catrow__item a:hover .jum-catrow__circle {
	border-color: var(--jum-primary);
	transform: translateY(-4px);
	box-shadow: var(--jum-shadow);
}

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

.jum-catrow__circle--more {
	background: var(--jum-primary-soft);
	border-style: dashed;
	border-color: var(--jum-primary);
	color: var(--jum-primary);
}

.jum-catrow__circle--more .jum-icon {
	width: 28px;
	height: 28px;
}

.jum-catrow__name {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
}

.jum-catrow__item a:hover .jum-catrow__name {
	color: var(--jum-primary);
}

.jum-catrow__wrap .jum-carousel__nav {
	top: 28px;
}

/* Daily deals band
--------------------------------------------------------------*/
.jum-deals-band {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 20px;
	align-items: stretch;
}

.jum-deals {
	display: flex;
	flex-direction: column;
	text-align: center;
	background:
		radial-gradient(220px 160px at 50% 0%, rgba(255, 106, 0, 0.22), transparent 70%),
		linear-gradient(160deg, var(--jum-dark-2), var(--jum-dark));
	color: #fff;
	border-radius: var(--jum-radius-md);
	padding: 28px 24px;
}

.jum-deals__media img {
	max-height: 170px;
	margin: 0 auto 14px;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.jum-deals__title {
	color: #fff;
	font-size: 23px;
	font-weight: 800;
	margin-bottom: 6px;
}

.jum-deals__subtitle {
	color: #9CA3AF;
	font-size: 13.5px;
	margin-bottom: 4px;
}

.jum-deals__btn {
	margin-top: auto;
	width: 100%;
}

/* Countdown */
.jum-countdown {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 18px 0 22px;
}

.jum-countdown__cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 60px;
	padding: 10px 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 10px;
}

.jum-countdown__cell strong {
	font-size: 21px;
	font-weight: 800;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}

.jum-countdown__cell span {
	font-size: 10px;
	letter-spacing: 1.2px;
	color: #9CA3AF;
	margin-top: 3px;
}

.jum-countdown__sep {
	color: var(--jum-primary);
	font-weight: 800;
	font-size: 18px;
}

/* Category tabs
--------------------------------------------------------------*/
.jum-cattabs__nav {
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.jum-cattabs__tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 22px;
	font-size: 14px;
	font-weight: 600;
	color: var(--jum-muted);
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-sm);
	transition: all 0.18s ease;
}

.jum-cattabs__tab:hover {
	color: var(--jum-primary);
	border-color: var(--jum-primary);
}

.jum-cattabs__tab.is-active {
	background: var(--jum-primary);
	border-color: var(--jum-primary);
	color: #fff;
}

.jum-cattabs__count {
	font-size: 12px;
	opacity: 0.75;
}

.jum-cattabs__panel {
	background: var(--jum-card);
	border: 1.5px solid var(--jum-primary);
	border-radius: var(--jum-radius-md);
	padding: 18px;
}

.jum-cattabs__panel.is-loading {
	opacity: 0.5;
}

.jum-cattabs__banner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) 1fr;
	gap: 20px;
	align-items: center;
	background: var(--jum-soft);
	border-radius: var(--jum-radius-sm);
	overflow: hidden;
	margin-bottom: 18px;
}

.jum-cattabs__banner-img {
	width: 100%;
	max-height: 220px;
	object-fit: cover;
}

.jum-cattabs__banner-body {
	padding: 20px 24px 20px 0;
}

.jum-cattabs__banner-body h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 6px;
}

.jum-cattabs__banner-body p {
	font-size: 14px;
	color: var(--jum-muted);
	margin-bottom: 12px;
}

/* Double banner row
--------------------------------------------------------------*/
.jum-banner-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.jum-banner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	align-items: center;
	gap: 16px;
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jum-banner:hover {
	transform: translateY(-3px);
	box-shadow: var(--jum-shadow);
}

.jum-banner__media img {
	width: 100%;
	height: 100%;
	min-height: 200px;
	object-fit: cover;
}

.jum-banner__body {
	padding: 22px 22px 22px 4px;
}

.jum-banner__title {
	font-size: 19px;
	font-weight: 800;
	margin-bottom: 6px;
}

.jum-banner__text {
	font-size: 13.5px;
	color: var(--jum-muted);
	margin-bottom: 12px;
}

/* Flash sale band
--------------------------------------------------------------*/
.jum-flash {
	margin-top: 44px;
	background:
		radial-gradient(700px 300px at 15% 30%, rgba(255, 142, 60, 0.35), transparent 60%),
		linear-gradient(120deg, var(--jum-primary-dark) 0%, #B34400 35%, var(--jum-dark) 100%);
	color: #fff;
	padding: 44px 0;
}

.jum-flash__inner {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 30px;
	align-items: center;
}

.jum-flash__icon {
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	margin-bottom: 14px;
}

.jum-flash__icon .jum-icon {
	width: 26px;
	height: 26px;
}

.jum-flash__title {
	color: #fff;
	font-size: 27px;
	font-weight: 800;
	letter-spacing: -0.4px;
	margin-bottom: 8px;
}

.jum-flash__text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.jum-countdown--flash {
	justify-content: flex-start;
	margin: 16px 0 20px;
}

.jum-countdown--flash .jum-countdown__cell {
	background: rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.15);
}

.jum-countdown--flash .jum-countdown__sep {
	color: #fff;
}

.jum-flash__products .jum-card {
	border: 0;
}

/* Best sellers band
--------------------------------------------------------------*/
.jum-best-band {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
}

.jum-best-rail {
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	overflow: hidden;
}

.jum-best-rail__list {
	list-style: none;
	padding: 8px;
}

.jum-best-rail__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 600;
	border-radius: var(--jum-radius-sm);
}

.jum-best-rail__list a:hover {
	background: var(--jum-soft);
	color: var(--jum-primary);
}

.jum-best-rail__list .jum-icon {
	width: 14px;
	height: 14px;
	color: var(--jum-muted);
}

.jum-best-rail__promo {
	background: linear-gradient(160deg, var(--jum-primary-soft), #FFE4CC);
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.jum-best-rail__promo-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--jum-primary-dark);
}

.jum-best-rail__promo p {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 4px;
}

/* Brands
--------------------------------------------------------------*/
.jum-brands {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 4px 2px 10px;
	scrollbar-width: none;
}

.jum-brands::-webkit-scrollbar {
	display: none;
}

.jum-brands__card {
	flex: 0 0 auto;
	width: 168px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	padding: 22px 16px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.jum-brands__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--jum-shadow);
	border-color: var(--jum-primary);
}

.jum-brands__mark {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--jum-primary), var(--jum-primary-dark));
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	border-radius: 14px;
	margin-bottom: 8px;
}

/* Real brand logo instead of the letter monogram. */
.jum-brands__mark--logo {
	background: #fff;
	border: 1px solid var(--jum-border-soft);
	padding: 7px;
	overflow: hidden;
}

.jum-brands__mark--logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.jum-brands__name {
	font-size: 15px;
	font-weight: 800;
}

.jum-brands__tagline {
	font-size: 12px;
	color: var(--jum-muted);
}

/* Vendors
--------------------------------------------------------------*/
.jum-vendors {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.jum-vendors__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	padding: 26px 18px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jum-vendors__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--jum-shadow);
}

.jum-vendors__avatar {
	width: 62px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--jum-dark-2), var(--jum-dark));
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	border-radius: 50%;
	margin-bottom: 6px;
}

.jum-vendors__name {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.jum-vendors__rating {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
}

.jum-vendors__count {
	font-size: 13px;
	color: var(--jum-muted);
	margin: 0 0 8px;
}

/* Newsletter (homepage)
--------------------------------------------------------------*/
.jum-newsletter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	background:
		radial-gradient(320px 200px at 90% 20%, rgba(255, 106, 0, 0.25), transparent 70%),
		linear-gradient(140deg, var(--jum-dark), var(--jum-dark-2));
	color: #fff;
	border-radius: var(--jum-radius-lg);
	padding: 34px 36px;
}

.jum-newsletter__body {
	display: flex;
	align-items: center;
	gap: 18px;
}

.jum-newsletter__icon {
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 106, 0, 0.18);
	color: var(--jum-primary);
	border-radius: 50%;
}

.jum-newsletter__icon .jum-icon {
	width: 26px;
	height: 26px;
}

.jum-newsletter__title {
	color: #fff;
	font-size: 21px;
	margin: 0 0 3px;
}

.jum-newsletter__text {
	color: #9CA3AF;
	font-size: 13.5px;
	margin: 0;
}

/* Services
--------------------------------------------------------------*/
.jum-services {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.jum-services__card {
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	padding: 22px 18px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jum-services__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--jum-shadow);
}

.jum-services__icon {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	background: var(--jum-primary-soft);
	color: var(--jum-primary);
	border-radius: 12px;
	margin-bottom: 12px;
}

.jum-services__icon .jum-icon {
	width: 22px;
	height: 22px;
}

.jum-services__title {
	font-size: 14.5px;
	font-weight: 700;
	margin-bottom: 3px;
}

.jum-services__text {
	font-size: 12.5px;
	color: var(--jum-muted);
	margin: 0;
}

/* Marketplaces trust strip (eBay / Amazon / Mercari)
--------------------------------------------------------------*/
.jum-markets {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 22px;
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-lg);
	padding: 16px 24px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.jum-markets__lead {
	font-weight: 800;
	font-size: 15px;
	color: var(--jum-text);
	margin-right: 4px;
}

.jum-markets__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 14px;
	flex: 0 1 auto;
}

.jum-markets__item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;
	border: 1px solid var(--jum-border-soft);
	border-radius: 999px;
	background: #fff;
	text-decoration: none;
	transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

a.jum-markets__item:hover {
	transform: translateY(-2px);
	border-color: var(--jum-border);
	box-shadow: var(--jum-shadow);
}

.jum-markets__item--static {
	opacity: 0.7;
	cursor: default;
}

.jum-market-logo {
	height: 22px;
	width: auto;
	display: block;
}

.jum-market-logo--img {
	max-width: 132px;
	object-fit: contain;
}

.jum-markets__cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--jum-muted);
	white-space: nowrap;
}

.jum-markets__cta svg {
	width: 13px;
	height: 13px;
}

@media (max-width: 640px) {
	.jum-markets {
		justify-content: center;
		padding: 16px;
	}
	.jum-markets__lead {
		width: 100%;
		text-align: center;
		margin: 0 0 6px;
	}
	.jum-markets__row {
		justify-content: center;
	}
}
