/*--------------------------------------------------------------
NovaCommerce – main stylesheet
1.  Tokens & reset
2.  Utilities (container, buttons, badges, icons, forms)
3.  Announcement bar
4.  Main header (logo, search, actions)
5.  Navigation bar (categories mega, menu, flash)
6.  Hero slider
7.  Trust bar
8.  Category carousel
9.  Home grid (deals / best sellers / promo)
10. Product card
11. Feature cards
12. Blog, entries, comments, pagination
13. Footer
14. Mobile bottom nav & off-canvas
15. Modal, toast, search suggestions
16. WordPress core classes
--------------------------------------------------------------*/

/* 1. Tokens & reset
--------------------------------------------------------------*/
:root {
	--nova-primary: #FF6A00;
	--nova-primary-dark: #E85F00;
	--nova-primary-soft: #FFF3EA;
	--nova-dark: #05070B;
	--nova-dark-2: #101217;
	--nova-text: #111827;
	--nova-muted: #6B7280;
	--nova-border: #E5E7EB;
	--nova-border-soft: #EEF0F3;
	--nova-soft: #F8F9FB;
	--nova-white: #FFFFFF;
	--nova-green: #16A34A;
	--nova-red: #EF4444;
	--nova-amber: #F59E0B;

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

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

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

	--nova-header-h: 78px;
}

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

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

body {
	margin: 0;
	font-family: var(--nova-font);
	font-size: 15px;
	line-height: 1.6;
	color: var(--nova-text);
	background: var(--nova-white);
	-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(--nova-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(--nova-text);
}

p {
	margin: 0 0 1em;
}

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

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

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

.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(--nova-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;
}

.nova-section {
	padding: 48px 0 0;
}

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

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

/* Icons */
.nova-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	vertical-align: middle;
}

/* Buttons */
.nova-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(--nova-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;
}

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

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

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

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

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

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

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

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

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

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

/* Count bubbles (cart / wishlist) */
.nova-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(--nova-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	border-radius: var(--nova-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(--nova-text);
	background: #fff;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

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

.nova-section-head__title {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
}

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

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

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

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

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

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

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

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

.nova-breadcrumbs__sep {
	opacity: 0.5;
}

/* 3. Announcement bar
--------------------------------------------------------------*/
.nova-topbar {
	background: var(--nova-dark);
	color: #D1D5DB;
	font-size: 13px;
}

.nova-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 40px;
}

.nova-topbar__announce {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #E5E7EB;
}

.nova-topbar__announce strong {
	color: var(--nova-primary);
	font-weight: 700;
}

.nova-topbar__announce .nova-icon {
	width: 15px;
	height: 15px;
	color: var(--nova-primary);
	transition: transform 0.18s ease;
}

.nova-topbar__announce:hover .nova-icon {
	transform: translateX(3px);
}

.nova-topbar__right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.nova-topbar__shipping {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.nova-topbar__shipping .nova-icon {
	width: 16px;
	height: 16px;
	color: var(--nova-primary);
}

.nova-topbar__help:hover {
	color: #fff;
}

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

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

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

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

.nova-dropdown__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 60;
	min-width: 120px;
	background: #fff;
	color: var(--nova-text);
	border: 1px solid var(--nova-border-soft);
	border-radius: var(--nova-radius-sm);
	box-shadow: var(--nova-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;
}

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

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

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

/* 4. Main header
--------------------------------------------------------------*/
.nova-header {
	background: #fff;
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: var(--nova-header-h);
}

.nova-header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 90;
	box-shadow: var(--nova-shadow);
	animation: nova-slide-down 0.28s ease;
}

@keyframes nova-slide-down {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

.nova-header__burger {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: var(--nova-radius-sm);
	border: 1px solid var(--nova-border);
}

/* Logo */
.nova-logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.nova-logo__icon {
	position: relative;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--nova-primary), var(--nova-primary-dark));
	border-radius: 12px;
	color: #fff;
	box-shadow: 0 6px 16px rgba(255, 106, 0, 0.35);
}

.nova-logo__icon .nova-icon {
	width: 24px;
	height: 24px;
	opacity: 0.4;
}

.nova-logo__letter {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	font-weight: 800;
	padding-top: 4px;
}

.nova-logo__text {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.4px;
	line-height: 1;
}

.nova-logo__a { color: var(--nova-text); }
.nova-logo__b { color: var(--nova-primary); }

/* Search */
.nova-header__search {
	flex: 1;
	max-width: 580px;
	position: relative;
}

.nova-search__form {
	display: flex;
	align-items: stretch;
	border: 1.5px solid var(--nova-border);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.nova-search__form:focus-within {
	border-color: var(--nova-primary);
	box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.14);
}

.nova-search__cat {
	display: flex;
	align-items: center;
	border-right: 1px solid var(--nova-border-soft);
	background: var(--nova-soft);
}

.nova-search__cat select {
	border: 0;
	background: transparent;
	box-shadow: none;
	font-size: 13px;
	font-weight: 600;
	color: var(--nova-muted);
	padding: 0 12px;
	height: 100%;
	max-width: 150px;
	border-radius: 0;
	cursor: pointer;
}

.nova-search__cat select:focus {
	box-shadow: none;
}

.nova-search__field {
	flex: 1;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 12px 16px;
	font-size: 14px;
	min-width: 0;
}

.nova-search__field:focus {
	box-shadow: none !important;
}

.nova-search__submit {
	width: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--nova-primary);
	color: #fff;
	transition: background-color 0.18s ease;
}

.nova-search__submit:hover {
	background: var(--nova-primary-dark);
}

/* Live search results */
.nova-search__results {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 80;
	background: #fff;
	border: 1px solid var(--nova-border-soft);
	border-radius: var(--nova-radius-md);
	box-shadow: var(--nova-shadow-lg);
	padding: 8px;
	max-height: 420px;
	overflow: auto;
}

.nova-search__result {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 10px;
	border-radius: var(--nova-radius-sm);
}

.nova-search__result:hover {
	background: var(--nova-soft);
}

.nova-search__result img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: var(--nova-radius-sm);
	background: var(--nova-soft);
}

.nova-search__result-title {
	font-size: 14px;
	font-weight: 600;
	display: block;
}

.nova-search__result-price {
	font-size: 13px;
	color: var(--nova-primary);
	font-weight: 700;
}

.nova-search__empty {
	padding: 14px;
	font-size: 13px;
	color: var(--nova-muted);
	text-align: center;
}

/* Header actions */
.nova-header__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
}

.nova-header__action {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	font-size: 12px;
	color: var(--nova-muted);
	font-weight: 600;
}

.nova-header__action:hover {
	color: var(--nova-primary);
}

.nova-header__action .nova-icon {
	width: 23px;
	height: 23px;
	color: var(--nova-text);
	transition: color 0.18s ease;
}

.nova-header__action:hover .nova-icon {
	color: var(--nova-primary);
}

.nova-header__action .nova-count {
	top: -4px;
	right: auto;
	left: calc(50% + 6px);
}

.nova-header__action--wishlist.is-active .nova-icon {
	color: var(--nova-red);
}

/* 5. Navigation bar
--------------------------------------------------------------*/
.nova-navbar {
	background: #fff;
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-navbar__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 56px;
}

/* Browse categories */
.nova-cats {
	position: relative;
}

.nova-cats__toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 44px;
	padding: 0 18px;
	background: var(--nova-primary);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border-radius: var(--nova-radius-sm);
	transition: background-color 0.18s ease;
}

.nova-cats__toggle:hover {
	background: var(--nova-primary-dark);
}

.nova-cats__toggle .nova-icon {
	width: 17px;
	height: 17px;
}

.nova-cats__panel {
	left: 0;
	right: auto;
	min-width: 280px;
	padding: 8px;
}

.nova-cats__list {
	list-style: none;
}

.nova-cats__list a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 10px;
	border-radius: var(--nova-radius-sm);
	font-size: 14px;
	font-weight: 600;
}

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

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

.nova-cats__list .nova-icon {
	width: 15px;
	height: 15px;
	margin-left: auto;
	color: var(--nova-muted);
}

.nova-cats__all a {
	color: var(--nova-primary);
	border-top: 1px solid var(--nova-border-soft);
	border-radius: 0 0 var(--nova-radius-sm) var(--nova-radius-sm);
	margin-top: 4px;
}

/* Primary menu */
.nova-nav {
	flex: 1;
}

.nova-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
}

.nova-nav__list > li {
	position: relative;
}

.nova-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 16px 0;
	font-size: 15px;
	font-weight: 600;
}

.nova-nav__list > li > a:hover,
.nova-nav__list > li.current-menu-item > a {
	color: var(--nova-primary);
}

.nova-nav__badge {
	display: inline-block;
	background: var(--nova-red);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	padding: 2px 7px;
	border-radius: var(--nova-radius-pill);
	transform: translateY(-7px);
}

/* Submenus */
.nova-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: -14px;
	z-index: 70;
	min-width: 210px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--nova-border-soft);
	border-radius: var(--nova-radius-sm);
	box-shadow: var(--nova-shadow-lg);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.nova-nav__list li:hover > .sub-menu,
.nova-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nova-nav__list .sub-menu a {
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	border-radius: 6px;
}

.nova-nav__list .sub-menu a:hover {
	background: var(--nova-soft);
	color: var(--nova-primary);
}

.nova-nav__list .sub-menu .sub-menu {
	top: -8px;
	left: 100%;
}

/* Flash sale */
.nova-navbar__flash {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 700;
	color: var(--nova-primary);
}

.nova-navbar__flash .nova-icon {
	width: 17px;
	height: 17px;
	animation: nova-flash-pulse 1.6s ease infinite;
}

@keyframes nova-flash-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.18); }
}

/* 6. Hero slider
--------------------------------------------------------------*/
.nova-hero {
	position: relative;
	background:
		radial-gradient(680px 340px at 78% 40%, rgba(255, 106, 0, 0.16), transparent 65%),
		linear-gradient(135deg, var(--nova-dark) 0%, var(--nova-dark-2) 100%);
	color: #fff;
	overflow: hidden;
}

.nova-hero__slide {
	display: none;
}

.nova-hero__slide.is-active {
	display: block;
	animation: nova-fade-in 0.5s ease;
}

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

.nova-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 44px;
	min-height: 500px;
	padding-top: 48px;
	padding-bottom: 72px;
}

.nova-hero__label {
	display: inline-block;
	color: var(--nova-primary);
	background: rgba(255, 106, 0, 0.12);
	border: 1px solid rgba(255, 106, 0, 0.35);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: var(--nova-radius-pill);
	margin-bottom: 22px;
}

.nova-hero__title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #fff;
	margin-bottom: 18px;
}

.nova-hero__accent {
	color: var(--nova-primary);
}

.nova-hero__text {
	color: #9CA3AF;
	font-size: 16px;
	max-width: 460px;
	margin-bottom: 28px;
}

.nova-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.nova-hero__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nova-hero__media img {
	max-height: 400px;
	width: auto;
	filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

.nova-hero__badge {
	position: absolute;
	top: 4%;
	right: 6%;
	width: 98px;
	height: 98px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, var(--nova-primary), #FF8E3C);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	border-radius: 50%;
	padding: 12px;
	transform: rotate(8deg);
	box-shadow: 0 14px 30px rgba(255, 106, 0, 0.45);
	animation: nova-float 3.5s ease-in-out infinite;
}

@keyframes nova-float {
	0%, 100% { transform: rotate(8deg) translateY(0); }
	50% { transform: rotate(8deg) translateY(-9px); }
}

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

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

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

/* 7. Trust bar
--------------------------------------------------------------*/
.nova-trust {
	position: relative;
	z-index: 6;
	margin-top: -44px;
	background: #fff;
	border-radius: var(--nova-radius-lg);
	box-shadow: var(--nova-shadow-lg);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	padding: 24px 18px;
	gap: 12px;
}

.nova-trust__item {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 4px 10px;
}

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

.nova-trust__icon .nova-icon {
	width: 21px;
	height: 21px;
}

.nova-trust__body {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.nova-trust__body strong {
	font-size: 14px;
	font-weight: 700;
}

.nova-trust__body span {
	font-size: 12.5px;
	color: var(--nova-muted);
}

/* 8. Category carousel
--------------------------------------------------------------*/
.nova-catrow__wrap {
	position: relative;
}

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

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

.nova-catrow__item {
	flex: 0 0 auto;
	width: 112px;
	text-align: center;
}

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

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

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

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

.nova-catrow__circle--more .nova-icon {
	width: 30px;
	height: 30px;
}

.nova-catrow__name {
	display: block;
	margin-top: 11px;
	font-size: 13.5px;
	font-weight: 600;
}

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

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

.nova-catrow__nav:hover {
	color: var(--nova-primary);
	transform: scale(1.07);
}

.nova-catrow__nav--prev { left: -12px; }
.nova-catrow__nav--next { right: -12px; }

.nova-catrow__wrap.is-scrollable .nova-catrow__nav {
	display: flex;
}

/* 9. Home grid: deals / best sellers / promo
--------------------------------------------------------------*/
.nova-home-grid {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr) 300px;
	gap: 24px;
	align-items: stretch;
}

.nova-home-grid--flex {
	display: flex;
	flex-wrap: wrap;
}

.nova-home-grid--flex > * {
	flex: 1 1 300px;
}

/* Deals card */
.nova-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(--nova-dark-2), var(--nova-dark));
	color: #fff;
	border-radius: var(--nova-radius-lg);
	padding: 28px 24px;
}

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

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

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

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

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

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

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

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

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

/* Best sellers panel */
.nova-best {
	min-width: 0;
}

.nova-product-grid {
	display: grid;
	gap: 18px;
}

.nova-product-grid--home {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Promo banner */
.nova-promo {
	position: relative;
	display: flex;
	flex-direction: column;
	background: linear-gradient(165deg, #FFE9D8 0%, #FFD9BB 60%, #FFCBA0 100%);
	border-radius: var(--nova-radius-lg);
	padding: 28px 24px;
	overflow: hidden;
}

.nova-promo__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--nova-primary-dark);
	margin-bottom: 10px;
}

.nova-promo__title {
	font-size: 25px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 18px;
}

.nova-promo__btn {
	align-self: flex-start;
}

.nova-promo__media {
	margin-top: auto;
	padding-top: 18px;
	display: flex;
	justify-content: center;
}

.nova-promo__media img {
	max-height: 210px;
	filter: drop-shadow(0 20px 30px rgba(180, 83, 9, 0.28));
	transition: transform 0.3s ease;
}

.nova-promo:hover .nova-promo__media img {
	transform: translateY(-6px) rotate(-2deg);
}

/* 10. Product card
--------------------------------------------------------------*/
.nova-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--nova-border-soft);
	border-radius: var(--nova-radius-md);
	overflow: hidden;
	transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
	display: flex;
	flex-direction: column;
}

.nova-card:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: var(--nova-shadow-lg);
}

.nova-card__media {
	position: relative;
	background: var(--nova-soft);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.nova-card__media > a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.nova-card__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.nova-card:hover .nova-card__img {
	transform: scale(1.05);
}

.nova-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.nova-card__actions {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateX(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.nova-card:hover .nova-card__actions,
.nova-card:focus-within .nova-card__actions {
	opacity: 1;
	transform: translateX(0);
}

.nova-card__action {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: var(--nova-shadow);
	color: var(--nova-text);
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nova-card__action:hover {
	background: var(--nova-primary);
	color: #fff;
	transform: scale(1.08);
}

.nova-card__action .nova-icon {
	width: 17px;
	height: 17px;
}

.nova-card__action.is-active {
	background: var(--nova-red);
	color: #fff;
}

.nova-card__cta {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 3;
	transform: translateY(140%);
	transition: transform 0.24s ease;
}

.nova-card:hover .nova-card__cta,
.nova-card:focus-within .nova-card__cta {
	transform: translateY(0);
}

.nova-card__cta .nova-btn {
	width: 100%;
	height: 42px;
	font-size: 13px;
}

.nova-card__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 14px 16px 18px;
}

.nova-card__title {
	margin: 0;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
}

.nova-card__title a:hover {
	color: var(--nova-primary);
}

.nova-card__rating {
	display: flex;
	align-items: center;
}

.nova-card__price {
	display: flex;
	align-items: baseline;
	gap: 9px;
	flex-wrap: wrap;
	font-size: 17px;
	font-weight: 800;
}

.nova-card__price ins {
	text-decoration: none;
	color: var(--nova-text);
}

.nova-card__price del {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--nova-muted);
}

.nova-card__price .amount {
	color: inherit;
}

/* 11. Feature cards
--------------------------------------------------------------*/
.nova-features {
	padding-bottom: 64px;
}

.nova-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.nova-features__card {
	background: #fff;
	border: 1px solid var(--nova-border-soft);
	border-radius: var(--nova-radius-md);
	padding: 26px 24px;
	transition: box-shadow 0.22s ease, transform 0.22s ease;
}

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

.nova-features__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--nova-primary-soft);
	color: var(--nova-primary);
	border-radius: 12px;
	margin-bottom: 16px;
}

.nova-features__icon .nova-icon {
	width: 23px;
	height: 23px;
}

.nova-features__title {
	font-size: 15.5px;
	font-weight: 700;
	margin-bottom: 5px;
}

.nova-features__text {
	font-size: 13.5px;
	color: var(--nova-muted);
	margin: 0;
}

/* 12. Blog, entries, comments, pagination
--------------------------------------------------------------*/
.nova-page-head {
	margin-bottom: 30px;
}

.nova-page-head__title {
	font-size: 32px;
	font-weight: 800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nova-post-card__more .nova-icon {
	width: 15px;
	height: 15px;
	transition: transform 0.18s ease;
}

.nova-post-card__more:hover .nova-icon {
	transform: translateX(3px);
}

/* Single entry */
.nova-entry__meta {
	display: flex;
	gap: 14px;
	font-size: 13px;
	color: var(--nova-muted);
	margin-bottom: 10px;
}

.nova-entry__title {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-reply-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--nova-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(--nova-primary);
	color: #fff;
	border: 0;
	height: 46px;
	padding: 0 26px;
	font-weight: 700;
	border-radius: var(--nova-radius-sm);
	cursor: pointer;
	transition: background-color 0.18s ease;
}

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

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

.nova-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;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	font-size: 14px;
	font-weight: 600;
	transition: all 0.18s ease;
}

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

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

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

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

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

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

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

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

/* Search form */
.nova-searchform {
	display: flex;
	border: 1.5px solid var(--nova-border);
	border-radius: 10px;
	overflow: hidden;
}

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

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

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

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

/* 13. Footer
--------------------------------------------------------------*/
.nova-footer {
	margin-top: 72px;
	background: #0B0D12;
	color: #9CA3AF;
	font-size: 14px;
	padding-top: 60px;
}

.nova-home + .nova-footer,
.nova-footer:first-child {
	margin-top: 0;
}

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

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

.nova-footer__title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

.nova-footer .widget-title {
	color: #fff;
}

.nova-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 44px;
	padding: 20px 0;
	font-size: 13px;
}

.nova-footer__copy {
	margin: 0;
}

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

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

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

/* 14. Mobile bottom nav & off-canvas
--------------------------------------------------------------*/
.nova-mobile-nav {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 95;
	background: #fff;
	border-top: 1px solid var(--nova-border-soft);
	box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.08);
	padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}

.nova-mobile-nav__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	flex: 1;
	font-size: 11px;
	font-weight: 600;
	color: var(--nova-muted);
	padding: 4px 0;
}

.nova-mobile-nav__item .nova-icon {
	width: 21px;
	height: 21px;
}

.nova-mobile-nav__item.is-active,
.nova-mobile-nav__item:hover {
	color: var(--nova-primary);
}

.nova-mobile-nav__item .nova-count {
	top: -2px;
	right: auto;
	left: calc(50% + 5px);
}

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

.nova-offcanvas__overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 7, 11, 0.55);
	opacity: 0;
	transition: opacity 0.22s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nova-offcanvas[hidden],
.nova-modal[hidden] {
	display: none;
}

/* 15. Modal, toast, misc overlays
--------------------------------------------------------------*/
.nova-modal {
	position: fixed;
	inset: 0;
	z-index: 130;
	display: grid;
	place-items: center;
	padding: 18px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 16. 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(--nova-muted);
	text-align: center;
	padding: 6px 0;
}

.sticky {
	display: block;
}

.bypostauthor {
	display: block;
}

.gallery-caption {
	display: block;
}
