/*--------------------------------------------------------------
Jumstore – base stylesheet
Tokens, reset, utilities, buttons, forms, dropdowns, sections,
footer, blog, comments, pagination, modal, toast, off-canvas.
Header/homepage/product-card/woocommerce live in their own files.
--------------------------------------------------------------*/

/* Tokens & reset
--------------------------------------------------------------*/
:root {
	--jum-primary: #FF6A00;
	--jum-primary-dark: #EA580C;
	--jum-primary-soft: #FFF3EA;
	--jum-dark: #090B10;
	--jum-dark-2: #101217;
	--jum-text: #111827;
	--jum-muted: #6B7280;
	--jum-border: #E5E7EB;
	--jum-border-soft: #EEF0F3;
	--jum-body: #F5F6F8;
	--jum-card: #FFFFFF;
	--jum-soft: #F8F9FB;
	--jum-red: #EF4444;
	--jum-green: #16A34A;
	--jum-amber: #F59E0B;

	--jum-radius-sm: 8px;
	--jum-radius-md: 14px;
	--jum-radius-lg: 20px;
	--jum-radius-pill: 999px;

	--jum-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	--jum-shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.14);

	--jum-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--jum-font);
	font-size: 15px;
	line-height: 1.6;
	color: var(--jum-text);
	background: var(--jum-body);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.18s ease;
}

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

ul,
ol {
	margin: 0;
	padding: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: 0;
	color: inherit;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em;
	line-height: 1.25;
	font-weight: 700;
	color: var(--jum-text);
}

p {
	margin: 0 0 1em;
}

:focus-visible {
	outline: 2px solid var(--jum-primary);
	outline-offset: 2px;
	border-radius: 3px;
}

/* Utilities
--------------------------------------------------------------*/
.container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container--narrow {
	max-width: 880px;
}

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	left: -9999px;
	position: absolute;
	top: 0;
	z-index: 999;
	background: var(--jum-primary);
	color: #fff;
	padding: 10px 18px;
	border-radius: 0 0 8px 0;
}

.skip-link:focus {
	left: 0;
	clip-path: none;
	width: auto;
	height: auto;
	color: #fff;
}

.jum-section {
	padding: 44px 0 0;
}

.jum-section--tight {
	padding-top: 24px;
}

.jum-section--last {
	padding-bottom: 56px;
}

.site-main {
	min-height: 40vh;
}

.site-main.jum-section {
	padding-bottom: 72px;
}

.jum-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	vertical-align: middle;
}

.jum-empty {
	color: var(--jum-muted);
	font-size: 14px;
	grid-column: 1 / -1;
}

/* Section heading */
.jum-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.jum-section-head--center {
	justify-content: center;
	text-align: center;
}

.jum-section-head__title {
	margin: 0;
	font-size: 23px;
	font-weight: 800;
	letter-spacing: -0.3px;
}

.jum-section-head__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--jum-primary);
}

.jum-section-head__link .jum-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.18s ease;
}

.jum-section-head__link:hover .jum-icon {
	transform: translateX(3px);
}

/* Buttons
--------------------------------------------------------------*/
.jum-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	height: 46px;
	padding: 0 24px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	border-radius: var(--jum-radius-sm);
	border: 1px solid transparent;
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
	white-space: nowrap;
}

.jum-btn .jum-icon {
	width: 17px;
	height: 17px;
}

.jum-btn--sm {
	height: 38px;
	padding: 0 16px;
	font-size: 13px;
}

.jum-btn--primary {
	background: var(--jum-primary);
	color: #fff;
}

.jum-btn--primary:hover {
	background: var(--jum-primary-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(255, 106, 0, 0.35);
}

.jum-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

.jum-btn--outline:hover {
	color: #fff;
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.jum-btn--ghost {
	background: var(--jum-soft);
	color: var(--jum-text);
	border-color: var(--jum-border);
}

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

.jum-btn--light {
	background: #fff;
	color: var(--jum-primary-dark);
}

.jum-btn--light:hover {
	background: var(--jum-dark);
	color: #fff;
}

.jum-btn.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.jum-link-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 700;
	color: var(--jum-primary);
}

.jum-link-cta .jum-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.18s ease;
}

.jum-link-cta:hover .jum-icon {
	transform: translateX(3px);
}

/* Badges & counts
--------------------------------------------------------------*/
.jum-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: var(--jum-radius-pill);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	background: var(--jum-primary);
}

.jum-badge--sale { background: var(--jum-red); }
.jum-badge--hot { background: var(--jum-primary); }
.jum-badge--new { background: var(--jum-green); }
.jum-badge--out { background: var(--jum-muted); }

.jum-count {
	position: absolute;
	top: -7px;
	right: -9px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--jum-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	border-radius: var(--jum-radius-pill);
	line-height: 1;
}

/* Forms
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
	width: 100%;
	padding: 10px 14px;
	font-family: inherit;
	font-size: 14px;
	color: var(--jum-text);
	background: #fff;
	border: 1px solid var(--jum-border);
	border-radius: var(--jum-radius-sm);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--jum-primary);
	box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

/* Stars
--------------------------------------------------------------*/
.jum-stars {
	display: inline-flex;
	gap: 1px;
	color: var(--jum-amber);
}

.jum-stars .jum-icon {
	width: 14px;
	height: 14px;
}

.jum-stars__count {
	font-size: 12px;
	color: var(--jum-muted);
	margin-left: 5px;
}

/* Breadcrumbs
--------------------------------------------------------------*/
.jum-breadcrumbs {
	font-size: 13px;
	color: var(--jum-muted);
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

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

.jum-breadcrumbs__sep {
	opacity: 0.5;
}

/* Generic dropdown
--------------------------------------------------------------*/
.jum-dropdown {
	position: relative;
}

.jum-dropdown__toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: inherit;
	font-weight: 600;
}

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

.jum-dropdown.is-open .jum-dropdown__toggle > .jum-icon:last-child {
	transform: rotate(180deg);
}

.jum-dropdown__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 60;
	min-width: 130px;
	background: #fff;
	color: var(--jum-text);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-sm);
	box-shadow: var(--jum-shadow-lg);
	padding: 6px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.jum-dropdown.is-open .jum-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.jum-dropdown__menu li button {
	display: block;
	width: 100%;
	text-align: left;
	padding: 8px 12px;
	font-size: 13px;
	border-radius: 6px;
}

.jum-dropdown__menu li button:hover {
	background: var(--jum-soft);
	color: var(--jum-primary);
}

/* Carousel shell
--------------------------------------------------------------*/
.jum-carousel {
	position: relative;
}

.jum-carousel__track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 4px 2px 10px;
	scrollbar-width: none;
}

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

.jum-carousel__nav {
	position: absolute;
	top: 42%;
	z-index: 5;
	width: 40px;
	height: 40px;
	display: none;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: var(--jum-shadow-lg);
	color: var(--jum-text);
	transition: color 0.18s ease, transform 0.18s ease;
}

.jum-carousel__nav:hover {
	color: var(--jum-primary);
	transform: scale(1.07);
}

.jum-carousel__nav--prev { left: -14px; }
.jum-carousel__nav--next { right: -14px; }

.jum-carousel.is-scrollable .jum-carousel__nav,
[data-jum-carousel].is-scrollable .jum-carousel__nav {
	display: flex;
}

/* Footer
--------------------------------------------------------------*/
.jum-footer {
	margin-top: 64px;
	background: #0B0D12;
	color: #9CA3AF;
	font-size: 14px;
}

.jum-home ~ * .jum-footer,
.jum-footer:first-child {
	margin-top: 0;
}

.jum-footer__newsletter {
	background: linear-gradient(120deg, var(--jum-primary), var(--jum-primary-dark));
	color: #fff;
	padding: 30px 0;
}

.jum-footer__newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.jum-footer__newsletter-text {
	display: flex;
	align-items: center;
	gap: 16px;
}

.jum-footer__newsletter-text p {
	margin: 0;
	opacity: 0.9;
	font-size: 13.5px;
}

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

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

.jum-footer__newsletter-title {
	color: #fff;
	font-size: 19px;
	margin: 0 0 2px;
}

.jum-newsletter-form {
	display: flex;
	gap: 10px;
	min-width: min(440px, 100%);
}

.jum-newsletter-form input {
	flex: 1;
	border: 0;
	height: 46px;
}

.jum-footer__newsletter .jum-newsletter-form .jum-btn--primary {
	background: var(--jum-dark);
}

.jum-footer__newsletter .jum-newsletter-form .jum-btn--primary:hover {
	background: #000;
	box-shadow: none;
}

.jum-footer__main {
	padding: 54px 0 0;
}

.jum-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 36px;
}

.jum-footer__brand {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}

.jum-footer__title,
.jum-footer .widget-title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.jum-footer__menu {
	list-style: none;
}

.jum-footer__menu li {
	margin-bottom: 10px;
}

.jum-footer__menu a {
	color: #9CA3AF;
}

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

.jum-footer__menu--contact li {
	display: flex;
	align-items: center;
	gap: 9px;
}

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

.jum-footer__menu--inline {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.jum-footer__menu--inline li {
	margin: 0;
}

.jum-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 44px;
	padding: 20px 0;
	font-size: 13px;
}

.jum-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.jum-footer__copy {
	margin: 0;
}

.jum-footer__social {
	display: flex;
	gap: 16px;
	list-style: none;
}

.jum-footer__secure {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.jum-footer__secure .jum-icon {
	width: 19px;
	height: 19px;
	color: #6B7280;
}

.jum-footer__secure .jum-icon--shield {
	color: var(--jum-green);
}

/* Blog & entries
--------------------------------------------------------------*/
.jum-page-head {
	margin-bottom: 30px;
}

.jum-page-head__title {
	font-size: 30px;
	font-weight: 800;
}

.jum-page-head__title span {
	color: var(--jum-primary);
}

.jum-page-head__desc {
	color: var(--jum-muted);
	max-width: 640px;
}

.jum-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.jum-post-card {
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	overflow: hidden;
	transition: box-shadow 0.22s ease, transform 0.22s ease;
	display: flex;
	flex-direction: column;
}

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

.jum-post-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--jum-soft);
	overflow: hidden;
}

.jum-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.jum-post-card:hover .jum-post-card__media img {
	transform: scale(1.04);
}

.jum-post-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	flex: 1;
}

.jum-post-card__meta {
	display: flex;
	gap: 12px;
	font-size: 12.5px;
	color: var(--jum-muted);
}

.jum-post-card__meta a {
	color: var(--jum-primary);
}

.jum-post-card__title {
	font-size: 17px;
	font-weight: 700;
	margin: 0;
}

.jum-post-card__excerpt {
	font-size: 14px;
	color: var(--jum-muted);
}

.jum-post-card__excerpt p {
	margin: 0;
}

.jum-post-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--jum-primary);
}

.jum-entry__meta {
	display: flex;
	gap: 14px;
	font-size: 13px;
	color: var(--jum-muted);
	margin-bottom: 10px;
}

.jum-entry__title {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.jum-entry__media {
	margin: 22px 0;
	border-radius: var(--jum-radius-md);
	overflow: hidden;
}

.jum-entry__content {
	font-size: 16px;
	line-height: 1.75;
}

.jum-entry__content a {
	color: var(--jum-primary);
	text-decoration: underline;
}

.jum-entry__tags a {
	display: inline-block;
	background: var(--jum-soft);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-pill);
	font-size: 12.5px;
	padding: 4px 12px;
	margin: 4px 6px 0 0;
}

.post-navigation {
	margin: 34px 0;
	border-top: 1px solid var(--jum-border-soft);
	padding-top: 22px;
}

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

.jum-post-nav__label {
	display: block;
	font-size: 12px;
	color: var(--jum-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Comments
--------------------------------------------------------------*/
.jum-comments {
	margin-top: 44px;
}

.jum-comments__title {
	font-size: 22px;
	font-weight: 800;
}

.jum-comments__list {
	list-style: none;
	margin: 20px 0;
}

.jum-comments__list .comment-body {
	background: var(--jum-card);
	border: 1px solid var(--jum-border-soft);
	border-radius: var(--jum-radius-md);
	padding: 18px;
	margin-bottom: 16px;
}

.jum-comments__list .children {
	list-style: none;
	padding-left: 30px;
}

.jum-comments__list .avatar {
	border-radius: 50%;
	margin-right: 10px;
}

.comment-reply-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--jum-primary);
}

.comment-form label {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 5px;
}

.comment-form p {
	margin-bottom: 16px;
}

.comment-form .submit {
	background: var(--jum-primary);
	color: #fff;
	border: 0;
	height: 46px;
	padding: 0 26px;
	font-weight: 700;
	border-radius: var(--jum-radius-sm);
	cursor: pointer;
	transition: background-color 0.18s ease;
}

.comment-form .submit:hover {
	background: var(--jum-primary-dark);
}

/* Pagination
--------------------------------------------------------------*/
.jum-pagination,
.navigation.pagination {
	margin-top: 38px;
}

.jum-pagination .nav-links,
.navigation.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 8px;
	background: #fff;
	border: 1px solid var(--jum-border);
	border-radius: var(--jum-radius-sm);
	font-size: 14px;
	font-weight: 600;
	transition: all 0.18s ease;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--jum-primary);
	border-color: var(--jum-primary);
	color: #fff;
}

.page-numbers.dots {
	border: 0;
	background: transparent;
}

/* Nothing found / 404
--------------------------------------------------------------*/
.jum-none,
.jum-404 {
	text-align: center;
	padding: 60px 20px;
	max-width: 560px;
	margin: 0 auto;
}

.jum-404__code {
	font-size: 96px;
	font-weight: 800;
	line-height: 1;
	color: var(--jum-primary);
	margin: 0 0 10px;
	letter-spacing: -4px;
}

.jum-404__title {
	font-size: 26px;
}

.jum-404__text {
	color: var(--jum-muted);
}

.jum-404__search {
	margin: 26px auto;
	max-width: 380px;
}

.jum-404__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.jum-searchform {
	display: flex;
	border: 1.5px solid var(--jum-border);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.jum-searchform:focus-within {
	border-color: var(--jum-primary);
}

.jum-searchform__field {
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.jum-searchform__submit {
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--jum-primary);
	color: #fff;
}

.jum-searchform__submit:hover {
	background: var(--jum-primary-dark);
}

/* Modal & toast
--------------------------------------------------------------*/
.jum-modal {
	position: fixed;
	inset: 0;
	z-index: 130;
	display: grid;
	place-items: center;
	padding: 18px;
}

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

.jum-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(9, 11, 16, 0.6);
	animation: jum-fade-in 0.2s ease;
}

@keyframes jum-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

.jum-modal__dialog {
	position: relative;
	z-index: 2;
	background: #fff;
	border-radius: var(--jum-radius-lg);
	box-shadow: var(--jum-shadow-lg);
	width: min(880px, 100%);
	max-height: 86vh;
	overflow-y: auto;
	padding: 30px;
	animation: jum-modal-in 0.24s ease;
}

@keyframes jum-modal-in {
	from { opacity: 0; transform: translateY(14px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.jum-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--jum-soft);
	border-radius: 50%;
	z-index: 3;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.jum-modal__close:hover {
	background: var(--jum-primary);
	color: #fff;
}

.jum-modal__body[aria-busy="true"]::after {
	content: "";
	display: block;
	width: 38px;
	height: 38px;
	margin: 60px auto;
	border: 3px solid var(--jum-border);
	border-top-color: var(--jum-primary);
	border-radius: 50%;
	animation: jum-spin 0.8s linear infinite;
}

@keyframes jum-spin {
	to { transform: rotate(360deg); }
}

/* Quick view content */
.jum-qv {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 30px;
}

.jum-qv__media {
	background: var(--jum-soft);
	border-radius: var(--jum-radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
}

.jum-qv__title {
	font-size: 24px;
	font-weight: 800;
}

.jum-qv__price {
	font-size: 24px;
	font-weight: 800;
	margin: 12px 0;
}

.jum-qv__price del {
	font-size: 16px;
	color: var(--jum-muted);
	font-weight: 500;
	margin-left: 8px;
}

.jum-qv__price ins {
	text-decoration: none;
}

.jum-qv__excerpt {
	color: var(--jum-muted);
	font-size: 14.5px;
}

.jum-qv__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 20px 0;
}

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

.jum-qv__meta span {
	font-weight: 700;
	color: var(--jum-text);
}

/* Toast */
.jum-toast-region {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 140;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.jum-toast {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--jum-dark-2);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 13px 18px;
	border-radius: 10px;
	border-left: 3px solid var(--jum-green);
	box-shadow: var(--jum-shadow-lg);
	animation: jum-toast-in 0.28s ease;
}

.jum-toast--error {
	border-left-color: var(--jum-red);
}

.jum-toast .jum-icon {
	width: 18px;
	height: 18px;
	color: var(--jum-green);
}

.jum-toast--error .jum-icon {
	color: var(--jum-red);
}

@keyframes jum-toast-in {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.jum-toast.is-leaving {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Off-canvas
--------------------------------------------------------------*/
.jum-offcanvas {
	position: fixed;
	inset: 0;
	z-index: 120;
}

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

.jum-offcanvas__overlay {
	position: absolute;
	inset: 0;
	background: rgba(9, 11, 16, 0.55);
	opacity: 0;
	transition: opacity 0.22s ease;
}

.jum-offcanvas.is-open .jum-offcanvas__overlay {
	opacity: 1;
}

.jum-offcanvas__panel {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: min(340px, 88vw);
	background: #fff;
	padding: 20px;
	overflow-y: auto;
	transform: translateX(-102%);
	transition: transform 0.26s ease;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.jum-offcanvas.is-open .jum-offcanvas__panel {
	transform: translateX(0);
}

.jum-offcanvas__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.jum-offcanvas__brand {
	font-size: 20px;
	font-weight: 800;
}

.jum-offcanvas__close {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--jum-soft);
}

.jum-offcanvas__search {
	display: flex;
	border: 1.5px solid var(--jum-border);
	border-radius: 10px;
	overflow: hidden;
}

.jum-offcanvas__search input {
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.jum-offcanvas__search button {
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--jum-primary);
	color: #fff;
}

.jum-offcanvas__list {
	list-style: none;
}

.jum-offcanvas__list > li {
	border-bottom: 1px solid var(--jum-border-soft);
}

.jum-offcanvas__list a {
	display: block;
	padding: 13px 2px;
	font-size: 15px;
	font-weight: 600;
}

.jum-offcanvas__list .sub-menu {
	list-style: none;
	padding-left: 16px;
}

.jum-offcanvas__list .sub-menu a {
	font-weight: 500;
	font-size: 14px;
	color: var(--jum-muted);
	padding: 9px 2px;
}

.jum-offcanvas__links {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border-top: 1px solid var(--jum-border-soft);
	padding-top: 14px;
}

.jum-offcanvas__links a {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 2px;
	font-weight: 600;
}

/* Loader
--------------------------------------------------------------*/
.jum-loader {
	position: fixed;
	inset: 0;
	z-index: 150;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.7);
}

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

.jum-loader__spinner {
	width: 44px;
	height: 44px;
	border: 4px solid var(--jum-border);
	border-top-color: var(--jum-primary);
	border-radius: 50%;
	animation: jum-spin 0.8s linear infinite;
}

/* WordPress core classes
--------------------------------------------------------------*/
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { margin-left: -60px; margin-right: -60px; max-width: none; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--jum-muted); text-align: center; padding: 6px 0; }
.sticky { display: block; }
.bypostauthor { display: block; }
.gallery-caption { display: block; }
