:root {
	--shopiora-primary: #2874f0;
	--shopiora-accent: #ff6161;
	--shopiora-bg: #f1f3f6;
	--shopiora-surface: #ffffff;
	--shopiora-text: #212121;
	--shopiora-muted: #878787;
	--shopiora-border: #dfe3ea;
	--shopiora-success: #16883f;
	--shopiora-warning: #f4a100;
	--shopiora-dark: #101828;
	--shopiora-shadow: 0 12px 32px rgba(16, 24, 40, 0.1);
	--shopiora-radius: 8px;
	--shopiora-radius-sm: 6px;
	--shopiora-container: 1240px;
	--shopiora-font-heading: "DM Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--shopiora-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--shopiora-font-number: "Barlow Semi Condensed", "Inter", system-ui, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--shopiora-bg);
	color: var(--shopiora-text);
	font-family: var(--shopiora-font-body);
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.no-scroll {
	overflow: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

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

button,
input,
select,
textarea {
	font: inherit;
	letter-spacing: 0;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid rgba(40, 116, 240, 0.35);
	outline-offset: 3px;
}

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

.skip-link:focus {
	clip: auto;
	clip-path: none;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	z-index: 9999;
	background: var(--shopiora-surface);
	color: var(--shopiora-primary);
	padding: 10px 14px;
	border-radius: var(--shopiora-radius-sm);
	box-shadow: var(--shopiora-shadow);
}

.shopiora-container {
	width: min(100% - 32px, var(--shopiora-container));
	margin-inline: auto;
}

.shopiora-site-main {
	min-height: 60vh;
}

.shopiora-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
}

.shopiora-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--shopiora-primary);
	border-radius: var(--shopiora-radius-sm);
	background: var(--shopiora-primary);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.shopiora-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	color: #fff;
	background: #1d64d8;
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(40, 116, 240, 0.22);
}

.shopiora-button-secondary {
	background: #fff;
	color: var(--shopiora-primary);
	border-color: rgba(40, 116, 240, 0.25);
}

.shopiora-button-secondary:hover {
	color: var(--shopiora-primary);
	background: #eef5ff;
	box-shadow: none;
}

.shopiora-button-small {
	min-height: 36px;
	padding-inline: 14px;
	font-size: 13px;
}

.shopiora-announcement {
	background: var(--shopiora-accent);
	color: #fff;
	overflow: hidden;
	font-size: 13px;
	font-weight: 700;
}

.shopiora-announcement__track {
	display: flex;
	width: max-content;
	gap: 48px;
	padding: 8px 0;
	animation: shopiora-marquee 26s linear infinite;
}

.shopiora-announcement__track span {
	white-space: nowrap;
}

@keyframes shopiora-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.shopiora-topbar {
	background: #0f172a;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
}

.shopiora-topbar .shopiora-container,
.shopiora-main-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.shopiora-topbar p {
	margin: 0;
}

.shopiora-topbar nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.shopiora-topbar a {
	color: rgba(255, 255, 255, 0.88);
}

.shopiora-main-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: var(--shopiora-surface);
	border-bottom: 1px solid var(--shopiora-border);
	box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
}

.shopiora-main-header__inner {
	min-height: 74px;
}

.shopiora-brand a,
.shopiora-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	color: var(--shopiora-primary);
	font-family: var(--shopiora-font-heading);
	font-weight: 900;
	font-size: 28px;
	line-height: 1;
}

.shopiora-brand img {
	max-height: 54px;
	width: auto;
}

.shopiora-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius-sm);
	background: #fff;
	color: var(--shopiora-text);
}

.shopiora-mega-nav {
	flex: 0 1 auto;
}

.shopiora-menu,
.shopiora-mega-fallback {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.shopiora-menu li,
.shopiora-mega-fallback li {
	position: relative;
}

.shopiora-menu a,
.shopiora-mega-fallback > li > a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 10px;
	border-radius: var(--shopiora-radius-sm);
	font-size: 14px;
	font-weight: 700;
	color: var(--shopiora-text);
}

.shopiora-menu a:hover,
.shopiora-mega-fallback > li > a:hover {
	background: #eef5ff;
	color: var(--shopiora-primary);
}

.shopiora-mega-panel {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 90;
	display: grid;
	grid-template-columns: repeat(2, minmax(150px, 1fr));
	gap: 4px;
	min-width: 340px;
	padding: 14px;
	background: #fff;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	box-shadow: var(--shopiora-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 150ms ease, transform 150ms ease;
}

.shopiora-mega-fallback li:hover .shopiora-mega-panel,
.shopiora-mega-fallback li:focus-within .shopiora-mega-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.shopiora-header-search {
	flex: 1 1 440px;
	max-width: 540px;
	position: relative;
}

.shopiora-search-form {
	display: flex;
	align-items: center;
	width: 100%;
	height: 46px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius-sm);
	background: #fff;
	overflow: hidden;
}

.shopiora-search-form input {
	flex: 1;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0 14px;
	color: var(--shopiora-text);
	background: transparent;
}

.shopiora-search-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 100%;
	border: 0;
	background: var(--shopiora-primary);
	color: #fff;
}

.shopiora-search-suggestions {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 100;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	box-shadow: var(--shopiora-shadow);
}

.shopiora-search-suggestions a {
	display: block;
	padding: 10px;
	border-radius: var(--shopiora-radius-sm);
	color: var(--shopiora-text);
}

.shopiora-search-suggestions a:hover {
	background: #f7f9fc;
}

.shopiora-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shopiora-icon-link,
.shopiora-card-icon,
.shopiora-icon-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius-sm);
	background: #fff;
	color: var(--shopiora-text);
}

.shopiora-icon-link:hover,
.shopiora-card-icon:hover,
.shopiora-icon-button:hover {
	color: var(--shopiora-primary);
	border-color: rgba(40, 116, 240, 0.35);
	background: #eef5ff;
}

.shopiora-cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--shopiora-accent);
	color: #fff;
	font-family: var(--shopiora-font-number);
	font-size: 12px;
	font-weight: 800;
}

.shopiora-hero {
	position: relative;
	padding: 34px 0 20px;
	background: linear-gradient(180deg, #fff 0%, var(--shopiora-bg) 100%);
	overflow: hidden;
}

.shopiora-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
	align-items: center;
	gap: 38px;
	min-height: 440px;
}

.shopiora-hero__copy h1 {
	margin: 0 0 16px;
	max-width: 620px;
	font-family: var(--shopiora-font-heading);
	font-size: clamp(40px, 6vw, 72px);
	line-height: 0.98;
	letter-spacing: 0;
	color: var(--shopiora-dark);
}

.shopiora-hero__copy p {
	max-width: 560px;
	margin: 0 0 24px;
	color: #475467;
	font-size: 18px;
}

.shopiora-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 22px;
}

.shopiora-countdown-strip {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
	color: #475467;
	font-size: 13px;
}

.shopiora-countdown-strip strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 30px;
	border-radius: var(--shopiora-radius-sm);
	background: var(--shopiora-dark);
	color: #fff;
	font-family: var(--shopiora-font-number);
	font-size: 18px;
}

.shopiora-hero__showcase {
	display: grid;
	grid-template-columns: 1.2fr 0.85fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	align-items: stretch;
}

.shopiora-hero-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 170px;
	padding: 20px;
	border-radius: var(--shopiora-radius);
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: var(--shopiora-shadow);
	overflow: hidden;
}

.shopiora-hero-card.is-main {
	grid-row: span 2;
	min-height: 390px;
	background: radial-gradient(circle at 75% 20%, #d7e8ff, #fff 44%);
}

.shopiora-hero-card.is-main img {
	width: min(86%, 380px);
	margin: auto;
	filter: drop-shadow(0 20px 30px rgba(40, 116, 240, 0.22));
}

.shopiora-hero-card.is-small img {
	max-height: 110px;
	margin-inline: auto;
}

.shopiora-hero-card span {
	color: var(--shopiora-muted);
	font-size: 14px;
	font-weight: 700;
}

.shopiora-hero-card strong {
	font-family: var(--shopiora-font-number);
	font-size: 32px;
	line-height: 1;
	color: var(--shopiora-primary);
}

.shopiora-hero__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 4px;
}

.shopiora-hero__dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #c8d2e3;
}

.shopiora-hero__dots .is-active {
	width: 30px;
	background: var(--shopiora-primary);
}

.shopiora-section {
	padding: 34px 0;
}

.shopiora-section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.shopiora-section__header h2,
.shopiora-page-header h1 {
	margin: 0;
	font-family: var(--shopiora-font-heading);
	color: var(--shopiora-dark);
	letter-spacing: 0;
}

.shopiora-section__header h2 {
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1.05;
}

.shopiora-section__header p,
.shopiora-page-header p {
	margin: 6px 0 0;
	color: var(--shopiora-muted);
}

.shopiora-section__header > a {
	color: var(--shopiora-primary);
	font-weight: 800;
}

.shopiora-product-rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(210px, 1fr);
	gap: 16px;
	overflow-x: auto;
	padding: 2px 2px 14px;
	scroll-snap-type: x proximity;
}

.shopiora-product-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shopiora-product-card,
.woocommerce ul.products li.product.shopiora-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	background: #fff;
	overflow: hidden;
	box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
	scroll-snap-align: start;
}

.shopiora-product-card:hover {
	transform: translateY(-2px);
	border-color: rgba(40, 116, 240, 0.2);
	box-shadow: var(--shopiora-shadow);
}

.shopiora-product-card__media {
	position: relative;
	aspect-ratio: 1 / 1.08;
	background: #f7f9fc;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.shopiora-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 16px;
	transition: transform 220ms ease;
}

.shopiora-product-card:hover .shopiora-product-card__media img {
	transform: scale(1.045);
}

.shopiora-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	border-radius: var(--shopiora-radius-sm);
	background: var(--shopiora-accent);
	color: #fff;
	font-family: var(--shopiora-font-number);
	font-size: 13px;
	font-weight: 900;
}

.shopiora-badge.is-hot {
	background: var(--shopiora-dark);
}

.shopiora-card-icon {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
}

.shopiora-card-icon.is-active,
.shopiora-compare.is-active {
	color: var(--shopiora-accent);
	border-color: rgba(255, 97, 97, 0.35);
	background: #fff3f3;
}

.shopiora-quick-view-button {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	height: 38px;
	border: 0;
	border-radius: var(--shopiora-radius-sm);
	background: rgba(16, 24, 40, 0.88);
	color: #fff;
	font-weight: 800;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.shopiora-product-card:hover .shopiora-quick-view-button,
.shopiora-product-card:focus-within .shopiora-quick-view-button {
	opacity: 1;
	transform: translateY(0);
}

.shopiora-product-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 14px;
	flex: 1;
}

.shopiora-product-kicker {
	margin: 0;
	color: var(--shopiora-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.shopiora-product-card h2,
.shopiora-product-card h3 {
	margin: 0;
	font-family: var(--shopiora-font-heading);
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0;
}

.shopiora-rating,
.shopiora-rating-line {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #0f7a35;
	font-size: 13px;
	font-weight: 800;
}

.shopiora-rating svg,
.shopiora-rating-line svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
	stroke: currentColor;
}

.shopiora-rating span,
.shopiora-rating-line span {
	color: var(--shopiora-muted);
	font-weight: 600;
}

.shopiora-price,
.price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	font-family: var(--shopiora-font-number);
	font-weight: 900;
	color: var(--shopiora-dark);
	font-size: 21px;
	line-height: 1.1;
}

.shopiora-price del,
.price del {
	color: var(--shopiora-muted);
	font-size: 15px;
	font-weight: 700;
	opacity: 1;
}

.shopiora-price ins,
.price ins {
	text-decoration: none;
}

.shopiora-product-card p,
.shopiora-stock {
	margin: 0;
	color: var(--shopiora-muted);
	font-size: 13px;
}

.shopiora-card-actions {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	margin-top: auto;
}

.shopiora-card-actions .button {
	min-height: 38px;
	padding-inline: 12px;
	font-size: 13px;
}

.shopiora-compare {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 38px;
	padding: 0 10px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius-sm);
	background: #fff;
	color: var(--shopiora-text);
	font-size: 12px;
	font-weight: 800;
}

.shopiora-category-band {
	background: #fff;
	border-block: 1px solid var(--shopiora-border);
}

.shopiora-category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.shopiora-category-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 124px;
	gap: 10px;
	padding: 16px 10px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	background: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 800;
}

.shopiora-category-tile img {
	width: 54px;
	height: 54px;
	object-fit: contain;
}

.shopiora-tabs {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	background: #eaf0f8;
	border-radius: var(--shopiora-radius);
}

.shopiora-tabs button {
	min-height: 36px;
	border: 0;
	border-radius: var(--shopiora-radius-sm);
	background: transparent;
	color: #475467;
	padding: 0 12px;
	font-size: 13px;
	font-weight: 800;
}

.shopiora-tabs button.is-active {
	background: #fff;
	color: var(--shopiora-primary);
	box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
}

.shopiora-brand-marquee {
	padding: 22px 0;
	background: #fff;
	border-block: 1px solid var(--shopiora-border);
	overflow: hidden;
}

.shopiora-brand-marquee__track {
	display: flex;
	gap: 34px;
	white-space: nowrap;
	animation: shopiora-marquee 32s linear infinite;
}

.shopiora-brand-marquee span {
	color: #667085;
	font-family: var(--shopiora-font-heading);
	font-size: 22px;
	font-weight: 900;
}

.shopiora-promo-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr 0.9fr;
	gap: 16px;
}

.shopiora-promo-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 230px;
	padding: 24px;
	border-radius: var(--shopiora-radius);
	color: #fff;
	overflow: hidden;
}

.shopiora-promo-card.is-blue {
	background: linear-gradient(135deg, #2874f0, #133c91);
}

.shopiora-promo-card.is-red {
	background: linear-gradient(135deg, #ff6161, #a5122c);
}

.shopiora-promo-card.is-dark {
	background: linear-gradient(135deg, #111827, #334155);
}

.shopiora-promo-card span,
.shopiora-promo-card em {
	font-size: 14px;
	font-weight: 800;
	font-style: normal;
	opacity: 0.86;
}

.shopiora-promo-card strong {
	display: block;
	max-width: 360px;
	font-family: var(--shopiora-font-heading);
	font-size: clamp(24px, 4vw, 38px);
	line-height: 1.05;
	letter-spacing: 0;
}

.shopiora-testimonials,
.shopiora-post-grid,
.shopiora-account-stats,
.shopiora-security-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.shopiora-testimonials figure,
.shopiora-post-card,
.shopiora-security-grid article,
.shopiora-account-stats a {
	margin: 0;
	padding: 18px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	background: #fff;
	box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
}

.shopiora-testimonials blockquote {
	margin: 12px 0;
	font-family: var(--shopiora-font-heading);
	font-size: 20px;
	line-height: 1.25;
	color: var(--shopiora-dark);
}

.shopiora-testimonials figcaption {
	color: var(--shopiora-muted);
	font-size: 13px;
	font-weight: 800;
}

.shopiora-post-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shopiora-post-card img {
	aspect-ratio: 16 / 10;
	width: 100%;
	object-fit: cover;
	border-radius: var(--shopiora-radius-sm);
	background: #eef2f7;
}

.shopiora-post-card h2,
.shopiora-post-card h3 {
	margin: 0;
	font-family: var(--shopiora-font-heading);
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0;
}

.shopiora-post-card p {
	margin: 0;
	color: var(--shopiora-muted);
}

.shopiora-app-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px;
	border-radius: var(--shopiora-radius);
	background: var(--shopiora-dark);
	color: #fff;
}

.shopiora-app-banner h2 {
	margin: 0 0 6px;
	font-family: var(--shopiora-font-heading);
	font-size: clamp(26px, 4vw, 42px);
	line-height: 1.05;
	letter-spacing: 0;
}

.shopiora-app-banner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.shopiora-app-banner__actions {
	display: flex;
	gap: 10px;
}

.shopiora-app-banner__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	min-width: 138px;
	padding: 0 16px;
	border-radius: var(--shopiora-radius-sm);
	background: #fff;
	color: var(--shopiora-dark);
	font-weight: 900;
}

.shopiora-footer {
	margin-top: 34px;
	background: #0f172a;
	color: rgba(255, 255, 255, 0.78);
}

.shopiora-footer__top {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 24px;
	padding: 44px 0;
}

.shopiora-footer__brand a {
	color: #fff;
	font-family: var(--shopiora-font-heading);
	font-size: 28px;
	font-weight: 900;
}

.shopiora-footer h2,
.shopiora-footer .widget-title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
}

.shopiora-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.shopiora-footer a {
	color: rgba(255, 255, 255, 0.78);
}

.shopiora-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 13px;
}

.shopiora-footer-menu {
	display: flex;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.shopiora-page {
	padding-block: 42px;
}

.shopiora-page-header {
	margin-bottom: 24px;
}

.shopiora-page-header h1 {
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.02;
}

.shopiora-entry-content {
	padding: 24px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	background: #fff;
}

.shopiora-entry-content > *:first-child {
	margin-top: 0;
}

.shopiora-entry-content > *:last-child {
	margin-bottom: 0;
}

.shopiora-content-layout {
	padding-block: 42px;
}

.shopiora-post-list {
	display: grid;
	gap: 16px;
}

.shopiora-single-image {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: var(--shopiora-radius);
	margin-bottom: 18px;
}

.shopiora-empty-state {
	display: grid;
	place-items: center;
	text-align: center;
	min-height: 420px;
	padding-block: 54px;
}

.shopiora-empty-state h1,
.shopiora-empty-state h2 {
	margin: 0;
	font-family: var(--shopiora-font-heading);
	font-size: clamp(34px, 6vw, 64px);
	letter-spacing: 0;
}

.shopiora-auth-page {
	padding-block: 42px;
}

.shopiora-auth {
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
	min-height: 620px;
	border-radius: var(--shopiora-radius);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--shopiora-border);
	box-shadow: var(--shopiora-shadow);
}

.shopiora-auth__visual {
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 42px;
	background: linear-gradient(135deg, #2874f0, #0f2a68);
	color: #fff;
}

.shopiora-auth__visual h1 {
	margin: 0 0 12px;
	font-family: var(--shopiora-font-heading);
	font-size: clamp(32px, 5vw, 54px);
	line-height: 1.02;
	letter-spacing: 0;
}

.shopiora-auth__visual p {
	margin: 0;
	max-width: 420px;
	color: rgba(255, 255, 255, 0.82);
}

.shopiora-auth__form,
.shopiora-otp {
	display: grid;
	gap: 14px;
	padding: 34px;
	align-content: center;
}

.shopiora-auth__form label,
.shopiora-otp label,
.shopiora-delivery-check label {
	display: grid;
	gap: 6px;
	color: #344054;
	font-size: 13px;
	font-weight: 800;
}

.shopiora-auth__form input,
.shopiora-auth__form select,
.shopiora-otp input,
.shopiora-delivery-check input,
.shopiora-filter-form input,
.shopiora-filter-form select {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius-sm);
	background: #fff;
	padding: 0 12px;
	color: var(--shopiora-text);
}

.shopiora-phone-row {
	display: grid;
	grid-template-columns: 86px 1fr;
	gap: 8px;
}

.shopiora-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.shopiora-check {
	display: flex !important;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 8px !important;
}

.shopiora-check input {
	width: 18px;
	min-height: 18px;
	margin-top: 2px;
}

.shopiora-strength {
	min-height: 18px;
	color: var(--shopiora-muted);
	font-size: 12px;
}

.shopiora-form-message {
	min-height: 20px;
	margin: 0;
	color: var(--shopiora-muted);
	font-size: 13px;
	font-weight: 700;
}

.shopiora-form-message.is-error {
	color: #b42318;
}

.shopiora-form-message.is-success {
	color: var(--shopiora-success);
}

.shopiora-social-login {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 10px;
	border-top: 1px solid var(--shopiora-border);
}

.shopiora-social-login p {
	width: 100%;
	margin: 0;
	color: var(--shopiora-muted);
	font-size: 13px;
	font-weight: 800;
}

.shopiora-social-login a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius-sm);
	font-weight: 800;
}

.shopiora-otp {
	max-width: 560px;
	margin-inline: auto;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	background: #fff;
	box-shadow: var(--shopiora-shadow);
	text-align: center;
}

.shopiora-otp h1 {
	margin: 0;
	font-family: var(--shopiora-font-heading);
	font-size: 42px;
	letter-spacing: 0;
}

.shopiora-otp-boxes {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
}

.shopiora-otp-boxes input {
	min-height: 58px;
	text-align: center;
	font-family: var(--shopiora-font-number);
	font-size: 28px;
	font-weight: 900;
}

.shopiora-countdown {
	color: var(--shopiora-muted);
	font-size: 13px;
	font-weight: 800;
}

.shopiora-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid var(--shopiora-border);
	border-radius: var(--shopiora-radius);
	overflow: hidden;
}

.shopiora-table th,
.shopiora-table td {
	padding: 12px;
	border-bottom: 1px solid var(--shopiora-border);
	text-align: left;
}

.shopiora-cookie {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 120;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 420px;
	padding: 14px;
	border-radius: var(--shopiora-radius);
	background: #fff;
	border: 1px solid var(--shopiora-border);
	box-shadow: var(--shopiora-shadow);
}

.shopiora-cookie p {
	margin: 0;
	color: #475467;
	font-size: 13px;
}

.shopiora-modal[hidden],
[hidden] {
	display: none !important;
}

.shopiora-modal {
	position: fixed;
	inset: 0;
	z-index: 140;
	display: grid;
	place-items: center;
	padding: 18px;
}

.shopiora-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.56);
}

.shopiora-modal__panel {
	position: relative;
	width: min(920px, 100%);
	max-height: min(720px, 90vh);
	overflow: auto;
	background: #fff;
	border-radius: var(--shopiora-radius);
	box-shadow: var(--shopiora-shadow);
}

.shopiora-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: var(--shopiora-radius-sm);
	background: #fff;
	color: var(--shopiora-text);
	font-size: 26px;
}

.shopiora-quick-view {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
	gap: 24px;
	padding: 26px;
}

.shopiora-quick-view__media {
	display: grid;
	place-items: center;
	background: #f7f9fc;
	border-radius: var(--shopiora-radius);
}

.shopiora-quick-view__content {
	display: grid;
	align-content: center;
	gap: 14px;
}

.shopiora-quick-view__content h2 {
	margin: 0;
	font-family: var(--shopiora-font-heading);
	font-size: 32px;
	line-height: 1.1;
	letter-spacing: 0;
}

.shopiora-quick-view__content p {
	margin: 0;
	color: #475467;
}

.shopiora-quick-view__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.shopiora-mobile-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: none;
	grid-template-columns: repeat(5, 1fr);
	background: #fff;
	border-top: 1px solid var(--shopiora-border);
	box-shadow: 0 -8px 24px rgba(16, 24, 40, 0.08);
}

.shopiora-mobile-nav a,
.shopiora-mobile-nav button {
	display: grid;
	place-items: center;
	gap: 3px;
	min-height: 58px;
	border: 0;
	background: #fff;
	color: #475467;
	font-size: 11px;
	font-weight: 800;
}

.shopiora-mobile-nav svg {
	width: 20px;
	height: 20px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 1100px) {
	.shopiora-menu-toggle {
		display: inline-flex;
	}

	.shopiora-mega-nav {
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 130;
		width: min(360px, 86vw);
		padding: 18px;
		background: #fff;
		border-right: 1px solid var(--shopiora-border);
		box-shadow: var(--shopiora-shadow);
		transform: translateX(-105%);
		transition: transform 180ms ease;
		overflow-y: auto;
	}

	.shopiora-mega-nav.is-open {
		transform: translateX(0);
	}

	.shopiora-menu,
	.shopiora-mega-fallback {
		display: grid;
		align-items: stretch;
	}

	.shopiora-mega-panel {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		min-width: 0;
		box-shadow: none;
		margin: 6px 0 10px;
	}

	.shopiora-header-search {
		max-width: none;
	}

	.shopiora-hero__inner {
		grid-template-columns: 1fr;
	}

	.shopiora-hero__showcase {
		max-width: 720px;
	}

	.shopiora-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.shopiora-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	body {
		padding-bottom: 62px;
	}

	.shopiora-container {
		width: min(100% - 24px, var(--shopiora-container));
	}

	.shopiora-topbar {
		display: none;
	}

	.shopiora-main-header__inner {
		min-height: 64px;
		gap: 10px;
	}

	.shopiora-brand a {
		font-size: 22px;
	}

	.shopiora-header-search {
		order: 5;
		flex-basis: 100%;
		max-width: none;
	}

	.shopiora-main-header__inner {
		flex-wrap: wrap;
		padding-block: 10px;
	}

	.shopiora-header-actions {
		margin-left: auto;
	}

	.shopiora-header-actions .shopiora-icon-link:not(:nth-last-child(-n+2)) {
		display: none;
	}

	.shopiora-hero {
		padding-top: 18px;
	}

	.shopiora-hero__inner {
		gap: 22px;
		min-height: 0;
	}

	.shopiora-hero__copy h1 {
		font-size: 42px;
	}

	.shopiora-hero__copy p {
		font-size: 16px;
	}

	.shopiora-hero__showcase {
		grid-template-columns: 1fr 1fr;
	}

	.shopiora-hero-card.is-main {
		grid-column: span 2;
		min-height: 280px;
	}

	.shopiora-section__header {
		align-items: start;
		flex-direction: column;
	}

	.shopiora-product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.shopiora-product-card__body {
		padding: 12px;
	}

	.shopiora-card-actions {
		grid-template-columns: 1fr;
	}

	.shopiora-compare {
		justify-content: center;
	}

	.shopiora-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.shopiora-category-tile {
		min-height: 106px;
		font-size: 12px;
	}

	.shopiora-promo-grid,
	.shopiora-testimonials,
	.shopiora-post-grid,
	.shopiora-account-stats,
	.shopiora-security-grid,
	.shopiora-auth,
	.shopiora-quick-view {
		grid-template-columns: 1fr;
	}

	.shopiora-app-banner,
	.shopiora-footer__bottom {
		align-items: start;
		flex-direction: column;
	}

	.shopiora-footer__top {
		grid-template-columns: 1fr;
	}

	.shopiora-auth__visual,
	.shopiora-auth__form,
	.shopiora-otp {
		padding: 24px;
	}

	.shopiora-form-grid {
		grid-template-columns: 1fr;
	}

	.shopiora-mobile-nav {
		display: grid;
	}

	.shopiora-cookie {
		left: 12px;
		right: 12px;
		bottom: 74px;
	}
}

@media (max-width: 480px) {
	.shopiora-product-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.shopiora-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shopiora-otp-boxes {
		gap: 6px;
	}

	.shopiora-otp-boxes input {
		min-height: 48px;
		font-size: 22px;
		padding-inline: 4px;
	}
}
