:root {
	--ns-max: 1280px;
	--ns-announcement-bg: #f3f3f3;
	--ns-rose: #5c1a2e;
	--ns-dust: #c4a4a4;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

body.novashop-storefront {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: var(--ns-color-bg, #fff);
	color: var(--ns-color-text, #1a1a1a);
	font-family: var(--ns-font-body, Ovo, Georgia, serif);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

.ns-container {
	width: min(100% - 2rem, var(--ns-max));
	margin-inline: auto;
}

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

.ns-main {
	overflow-x: clip;
	flex: 1 0 auto;
	width: 100%;
}

/* Announcement marquee */
.ns-announcement {
	background: var(--ns-announcement-bg);
	overflow: hidden;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ns-announcement__track {
	display: flex;
	gap: 3rem;
	width: max-content;
	padding: 0.55rem 0;
	animation: ns-marquee 40s linear infinite;
}

.ns-announcement__item {
	white-space: nowrap;
	opacity: 0.85;
}

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

/* Header */
.ns-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	color: var(--ns-color-text, #1a1a1a);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.admin-bar .ns-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .ns-header {
		top: 46px;
	}
}

.ns-header__inner {
	width: min(100% - 1.25rem, var(--ns-max));
	margin-inline: auto;
	min-height: 4.5rem;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem 1rem;
}

.ns-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	background: none;
	border: 0;
	padding: 0.5rem;
	margin: 0;
	cursor: pointer;
	color: inherit;
	z-index: 130;
}

.ns-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 1.5px;
	background: currentColor;
}

.ns-nav-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 110;
	background: rgba(0, 0, 0, 0.35);
	border: 0;
	padding: 0;
	cursor: pointer;
}

.ns-nav-backdrop.is-visible {
	display: block;
}

body.ns-nav-open {
	overflow: hidden;
}

.ns-logo {
	font-family: "Great Vibes", cursive;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	color: var(--ns-color-primary, var(--ns-rose));
	text-decoration: none;
	line-height: 1.1;
	z-index: 2;
	max-width: 14rem;
}

.ns-logo-img {
	max-height: 42px;
	width: auto;
	display: block;
}

.ns-nav {
	justify-self: center;
}

.ns-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.15rem 1.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ns-nav__list a {
	text-decoration: none;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: var(--ns-font-heading, Ovo, Georgia, serif);
	color: var(--ns-color-text, #1a1a1a);
}

.ns-nav__list a:hover {
	color: var(--ns-color-primary, var(--ns-rose));
}

.ns-nav__list .sub-menu {
	display: none;
}

.ns-header__utils {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	justify-self: end;
}

.ns-header .ns-header__search-wrap,
.ns-header .ns-search {
	max-width: 14rem;
	flex: 0 1 14rem;
}

.ns-icon-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	border: 0;
	background: none;
	cursor: pointer;
	color: var(--ns-color-text, #1a1a1a);
	text-decoration: none;
	font: inherit;
}

/* Ricerca Prodotti overlay */
.ns-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 100070;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 4.5rem 1rem 2rem;
}

.ns-search-overlay[hidden] {
	display: none !important;
}

.ns-search-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 14, 16, 0.55);
	backdrop-filter: blur(3px);
}

.ns-search-overlay__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 40rem);
	margin-top: 1rem;
	background: #fff;
	border: 1px solid #ececec;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
	padding: 1.5rem 1.25rem 1.25rem;
}

.ns-search-overlay__close {
	position: absolute;
	top: 0.45rem;
	right: 0.55rem;
	width: 2rem;
	height: 2rem;
	border: 0;
	background: transparent;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	color: #1a1a1a;
}

.ns-search-overlay__inner .rp-search,
.ns-search-overlay__inner .ns-search {
	max-width: 100% !important;
	width: 100%;
	z-index: 2;
}

.ns-search-overlay__inner .rp-search__form,
.ns-search-overlay__inner .ns-search__form {
	border-radius: 0;
	border-color: #1a1a1a;
}

.ns-search-overlay__inner .rp-dropdown,
.ns-search-overlay__inner .ns-search__dropdown {
	border-radius: 0;
	max-height: min(60vh, 420px);
}

body.ns-search-open {
	overflow: hidden;
}

.ns-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 1rem;
	height: 1rem;
	padding: 0 0.25rem;
	border-radius: 999px;
	background: var(--ns-color-primary, var(--ns-rose));
	color: #fff;
	font-size: 0.65rem;
	line-height: 1rem;
	text-align: center;
}

.ns-cart-count[hidden] {
	display: none !important;
}

button.ns-cart-link {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	font: inherit;
}

/* Hide WC "View cart" inline link under loop buttons */
.novashop-storefront a.added_to_cart {
	display: none !important;
}

/* —— Side cart drawer —— */
.ns-side-cart {
	position: fixed;
	inset: 0;
	z-index: 10000;
	pointer-events: none;
	visibility: hidden;
}

.ns-side-cart.is-open {
	pointer-events: auto;
	visibility: visible;
}

.ns-side-cart__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	padding: 0;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: opacity 0.28s ease;
	cursor: pointer;
}

.ns-side-cart.is-open .ns-side-cart__backdrop {
	opacity: 1;
}

.ns-side-cart__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(26rem, 100%);
	display: flex;
	flex-direction: column;
	background: #fff;
	color: #1a1a1a;
	box-shadow: -8px 0 28px rgba(0, 0, 0, 0.12);
	transform: translateX(105%);
	transition: transform 0.3s ease;
}

.ns-side-cart.is-open .ns-side-cart__panel {
	transform: translateX(0);
}

.ns-side-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.25rem;
	border-bottom: 1px solid #ececec;
}

.ns-side-cart__title {
	margin: 0;
	font-family: var(--ns-font-heading, Georgia, serif);
	font-size: 1.35rem;
	font-weight: 400;
}

.ns-side-cart__close {
	border: 0;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	color: inherit;
}

.ns-side-cart__body {
	flex: 1;
	overflow-y: auto;
	padding: 1rem 1.25rem;
	-webkit-overflow-scrolling: touch;
}

.ns-side-cart__empty {
	margin: 2rem 0;
	text-align: center;
	opacity: 0.7;
}

.ns-side-cart__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
}

.ns-side-cart__item {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
}

.ns-side-cart__media {
	display: block;
	background: #f3f3f3;
	overflow: hidden;
}

.ns-side-cart__thumb,
.ns-side-cart__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}

.ns-side-cart__info {
	min-width: 0;
	display: grid;
	gap: 0.35rem;
}

.ns-side-cart__name {
	font-size: 0.82rem;
	line-height: 1.4;
	text-decoration: none;
	color: inherit;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ns-side-cart__price {
	font-size: 0.9rem;
}

.ns-side-cart__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.25rem;
}

.ns-side-cart__qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid #1a1a1a;
}

.ns-side-cart__qty-btn {
	width: 2rem;
	height: 2rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
}

.ns-side-cart__qty-val {
	min-width: 1.5rem;
	text-align: center;
	font-size: 0.85rem;
}

.ns-side-cart__remove {
	border: 0;
	background: transparent;
	padding: 0.25rem;
	cursor: pointer;
	color: #666;
}

.ns-side-cart__footer {
	padding: 1rem 1.25rem 1.35rem;
	border-top: 1px solid #ececec;
	display: grid;
	gap: 0.75rem;
}

.ns-side-cart__subtotal {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 1rem;
}

.ns-side-cart__note {
	margin: 0;
	font-size: 0.78rem;
	opacity: 0.7;
}

.ns-side-cart__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.72rem;
	font-weight: 600;
}

.ns-side-cart__btn--ghost {
	color: #1a1a1a;
	background: #fff;
	border: 1px solid #1a1a1a;
}

.ns-side-cart__btn--primary {
	color: #fff;
	background: var(--ns-color-primary, #5c1a2e);
	border: 1px solid var(--ns-color-primary, #5c1a2e);
}

body.ns-side-cart-open {
	overflow: hidden;
}

/* Hero — 16:9 desktop so landscape photos are not cropped top/bottom */
.ns-hero {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 320px;
	max-height: min(90vh, 900px);
	display: grid;
	place-items: center;
	color: #fff;
	overflow: hidden;
	background: #2a2a2a;
}

.ns-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.ns-hero__media img,
.ns-hero__media video,
.ns-hero__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Subject often on the left (fashion shoots); keep headroom when cropped */
	object-position: left center;
	display: block;
}

.ns-hero__placeholder {
	background: linear-gradient(135deg, #3a2a30, #1a1216 60%);
}

.ns-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.12));
	pointer-events: none;
}

.ns-hero-slider {
	position: absolute;
	inset: 0;
}

.ns-hero-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s ease;
	z-index: 0;
	pointer-events: none;
}

.ns-hero-slider__slide.is-active {
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}

.ns-hero-slider__slide img,
.ns-hero-slider__slide video,
.ns-hero-slider__slide .ns-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.ns-hero-slider__slide .ns-video,
.ns-hero-slider__slide .ns-video video {
	display: block;
}

.ns-hero-slider__nav {
	position: absolute;
	top: 50%;
	z-index: 4;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(4px);
}

.ns-hero-slider__nav:hover {
	background: rgba(255, 255, 255, 0.4);
}

.ns-hero-slider__nav--prev {
	left: 1rem;
}

.ns-hero-slider__nav--next {
	right: 1rem;
}

.ns-hero-slider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1.5rem;
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.55rem;
	pointer-events: auto;
}

.ns-hero-slider__dot {
	width: 0.6rem;
	height: 0.6rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.ns-hero-slider__dot.is-active {
	background: #fff;
	transform: scale(1.15);
}

.ns-hero--slider .ns-hero__content {
	padding-bottom: 5rem;
	z-index: 3;
}

.ns-video,
.ns-hero .ns-video--embed {
	width: 100%;
	height: 100%;
	padding: 0;
}

.ns-video--embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.ns-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 6rem 1.5rem 4rem;
	max-width: 42rem;
}

.ns-hero__title {
	margin: 0 0 1rem;
	font-family: var(--ns-font-heading, Ovo, Georgia, serif);
	font-weight: 400;
	font-size: clamp(2.4rem, 6vw, 4.5rem);
	letter-spacing: 0.04em;
	line-height: 1.05;
}

.ns-hero__subtitle {
	margin: 0 auto 1.75rem;
	max-width: 36ch;
	font-size: 0.95rem;
	opacity: 0.92;
}

.ns-btn {
	display: inline-block;
	padding: 0.95rem 1.6rem;
	background: var(--ns-color-secondary, var(--ns-dust));
	color: #1a1a1a;
	text-decoration: none;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 0;
	cursor: pointer;
}

.ns-btn--ghost {
	background: transparent;
	border: 1px solid currentColor;
	color: inherit;
}

.ns-btn:hover {
	filter: brightness(1.04);
}

/* Sections */
.ns-section-title {
	margin: 0 0 1.5rem;
	font-weight: 400;
	font-size: 1.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
}

.ns-eyebrow {
	margin: 0 0 0.35rem;
	text-align: center;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.65;
}

.ns-usp {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding-block: 3rem;
	text-align: center;
}

.ns-usp__item h2 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ns-banner {
	padding-bottom: 2rem;
}

.ns-banner__image {
	width: 100%;
	height: auto;
	display: block;
}

.ns-categories,
.ns-featured,
.ns-social,
.ns-archive,
.ns-single-product,
.ns-checkout,
.ns-account {
	padding-block: 3.5rem;
}

.ns-categories__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.25rem;
}

.ns-cat {
	position: relative;
	display: block;
	text-decoration: none;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: #f4f0f1;
}

.ns-cat img,
.ns-cat__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ns-cat__ph {
	background: #e8dfe2;
}

.ns-cat__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
	color: #fff;
	text-align: center;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.8rem;
}

.ns-featured__cta {
	margin-top: 2rem;
	text-align: center;
}

.ns-social {
	text-align: center;
}

.ns-social__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.75rem;
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.ns-social__links a {
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-bottom: 1px solid currentColor;
	padding-bottom: 0.15rem;
}

.ns-social__links a:hover {
	color: var(--ns-color-primary, var(--ns-rose));
}

.ns-social__text {
	max-width: 36rem;
	margin-inline: auto;
	opacity: 0.8;
}

.ns-page-title,
.ns-archive__title {
	margin: 0 0 1.5rem;
	font-weight: 400;
	font-size: 2rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
}

/* Shop filters — Label Rose */
.ns-archive__layout {
	display: grid;
	grid-template-columns: minmax(11.5rem, 14rem) minmax(0, 1fr);
	gap: 2.5rem 2.75rem;
	align-items: start;
}

.ns-archive__toolbar:empty {
	display: none;
}

.ns-shop-filters {
	position: sticky;
	top: 1.25rem;
	font-family: var(--ns-font-body, inherit);
	font-size: 0.88rem;
	color: var(--ns-color-text, #1a1a1a);
}

.ns-shop-filters__block {
	margin: 0 0 2rem;
}

.ns-shop-filters__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.ns-shop-filters__title {
	margin: 0;
	font-family: var(--ns-font-body, inherit);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.ns-shop-filters__reset {
	font-size: 0.78rem;
	text-decoration: underline;
	color: inherit;
	opacity: 0.7;
}

.ns-shop-filters__chips {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.ns-shop-filters__chips a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.55rem;
	border: 1px solid #ddd;
	background: #fff;
	text-decoration: none;
	color: inherit;
	font-size: 0.75rem;
}

.ns-shop-filter__slider {
	position: relative;
	height: 1.75rem;
	margin: 0 0 0.85rem;
}

.ns-shop-filter__range {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	appearance: none;
	background: transparent;
	pointer-events: none;
	height: 1.75rem;
}

.ns-shop-filter__range::-webkit-slider-runnable-track {
	height: 3px;
	background: #ddd;
}

.ns-shop-filter__range::-webkit-slider-thumb {
	appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #1a1a1a;
	margin-top: -5.5px;
	pointer-events: auto;
	cursor: pointer;
}

.ns-shop-filter__range::-moz-range-track {
	height: 3px;
	background: #ddd;
}

.ns-shop-filter__range::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border: 0;
	border-radius: 50%;
	background: #1a1a1a;
	pointer-events: auto;
	cursor: pointer;
}

.ns-shop-filter__swatches {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.ns-shop-filter__swatches a {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
	color: inherit;
	font-size: 0.88rem;
}

.ns-shop-filter__swatch {
	width: 1.1rem;
	height: 1.1rem;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	flex: 0 0 auto;
}

.ns-shop-filter__swatches li.is-active .ns-shop-filter__swatch {
	outline: 2px solid #1a1a1a;
	outline-offset: 2px;
}

.ns-shop-filter__ratings .ns-shop-filter__stars {
	letter-spacing: 0.05em;
	color: #c4a000;
	font-size: 0.95rem;
}

.ns-archive__count {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	opacity: 0.75;
}

.ns-archive__layout.is-filtering {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

.ns-archive__layout.is-filtering::after {
	content: attr(data-loading-label);
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 50;
	padding: 0.65rem 1rem;
	background: #1a1a1a;
	color: #fff;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	pointer-events: none;
	opacity: 1;
}

.ns-shop-filter {
	border-bottom: 1px solid #e6e6e6;
	padding: 0;
}

.ns-shop-filter__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.7rem 0;
	cursor: pointer;
	list-style: none;
	font-family: var(--ns-font-body, inherit);
	font-size: 0.88rem;
	font-weight: 400;
	user-select: none;
}

.ns-shop-filter__summary::-webkit-details-marker {
	display: none;
}

.ns-shop-filter__summary::after {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.7;
	flex: 0 0 auto;
	margin-top: -0.2rem;
	transition: transform 0.2s ease;
}

.ns-shop-filter[open] > .ns-shop-filter__summary::after {
	transform: rotate(-135deg);
	margin-top: 0.15rem;
}

.ns-shop-filter__panel {
	padding: 0 0 1rem;
}

.ns-shop-filter__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
	max-height: 14rem;
	overflow-y: auto;
}

.ns-shop-filter__list a {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
	font-family: var(--ns-font-body, inherit);
	font-size: 0.84rem;
	padding: 0.15rem 0;
}

.ns-shop-filter__list li.is-active a,
.ns-shop-filter__list a:hover {
	opacity: 0.7;
}

.ns-shop-filter__list li.is-active .ns-shop-filter__term {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.ns-shop-filter__count {
	opacity: 0.55;
	font-size: 0.82em;
}

.ns-shop-filter__price-row {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.ns-shop-filter__currency,
.ns-shop-filter__dash {
	font-size: 0.85rem;
	opacity: 0.7;
}

.ns-shop-filter__price input[type="number"] {
	width: 3.75rem;
	min-height: 2rem;
	padding: 0.25rem 0.35rem;
	border: 1px solid #d8d8d8;
	border-radius: 0.2rem;
	background: #fff;
	font-family: var(--ns-font-body, inherit);
	font-size: 0.82rem;
}

.ns-shop-filter__apply {
	margin-top: 0.65rem;
	min-height: 2rem;
	padding: 0.3rem 0.75rem;
	border: 1px solid #1a1a1a;
	background: #fff;
	font-family: var(--ns-font-body, inherit);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.ns-shop-ordering {
	margin: 0;
	display: grid;
	gap: 0.45rem;
}

.ns-shop-ordering__label {
	display: block;
	font-size: 0.88rem;
	font-weight: 400;
	font-family: var(--ns-font-body, inherit);
}

.ns-shop-ordering__control {
	position: relative;
}

.ns-shop-ordering__control::after {
	content: "";
	position: absolute;
	right: 0.9rem;
	top: 50%;
	width: 0.45rem;
	height: 0.45rem;
	border-right: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.ns-shop-ordering__select,
.ns-shop-filters .woocommerce-ordering select.orderby {
	width: 100%;
	min-height: 2.25rem;
	padding: 0.4rem 2rem 0.4rem 0.7rem;
	border: 1px solid #d8d8d8;
	border-radius: 0.25rem;
	background: #fff;
	color: inherit;
	font-family: var(--ns-font-body, inherit);
	font-size: 0.84rem;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
	cursor: pointer;
}

@media (max-width: 900px) {
	.ns-archive__layout {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.ns-shop-filters {
		position: static;
	}
}

/* Products — Label Rose card grid */
.novashop-storefront .ns-products,
.novashop-storefront ul.products,
.novashop-storefront .woocommerce ul.products,
.novashop-storefront .woocommerce-page ul.products,
.ns-featured .ns-products,
.ns-archive ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2.75rem 1.35rem;
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	float: none !important;
	clear: both !important;
}

.ns-archive__layout .ns-archive__main ul.products,
.novashop-storefront .ns-archive__main ul.products {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
	.ns-archive__layout .ns-archive__main ul.products,
	.novashop-storefront .ns-archive__main ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 380px) {
	.ns-archive__layout .ns-archive__main ul.products,
	.novashop-storefront .ns-archive__main ul.products {
		grid-template-columns: minmax(0, 1fr) !important;
	}
}

.novashop-storefront .ns-products::before,
.novashop-storefront .ns-products::after,
.novashop-storefront ul.products::before,
.novashop-storefront ul.products::after,
.novashop-storefront .woocommerce ul.products::before,
.novashop-storefront .woocommerce ul.products::after {
	display: none !important;
	content: none !important;
}

.novashop-storefront ul.products li.product,
.novashop-storefront .woocommerce ul.products li.product,
.novashop-storefront .woocommerce-page ul.products li.product,
.novashop-storefront .ns-products li.product,
.novashop-storefront .ns-product-card,
.ns-featured .ns-product-card {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	position: relative !important;
	left: auto !important;
	right: auto !important;
	display: flex !important;
	flex-direction: column;
	box-sizing: border-box;
	text-align: left;
}

.novashop-storefront ul.products li.product.first,
.novashop-storefront ul.products li.product.last,
.novashop-storefront ul.products li.first,
.novashop-storefront ul.products li.last {
	clear: none !important;
}

/* —— Product card (Label Rose) —— */
.novashop-storefront .ns-product-card,
.ns-featured .ns-product-card {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.novashop-storefront .ns-product-card > a:not([class]),
.novashop-storefront .ns-product-card .woocommerce-loop-product__link,
.novashop-storefront .ns-product-card .star-rating,
.novashop-storefront .ns-product-card .woocommerce-loop-product__title {
	display: none !important;
}

.ns-product-card__media-wrap {
	position: relative;
	background: #ededed;
	aspect-ratio: 1 / 1;
	width: 100%;
}

.ns-product-card[data-product-url] {
	cursor: pointer;
}

.ns-product-card__media {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.ns-product-card__image,
.ns-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	box-shadow: none;
}

.ns-product-card__image {
	padding: 1.35rem 1.15rem 3.85rem;
	box-sizing: border-box;
}

.ns-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.35s ease;
}

.ns-product-card:hover .ns-product-card__image img {
	transform: scale(1.02);
}

.ns-product-card__quick {
	position: absolute;
	top: 0.55rem;
	right: 0.55rem;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 50%;
	background: var(--ns-color-primary, var(--ns-rose));
	color: #fff;
	text-decoration: none;
	opacity: 0;
	transform: scale(0.92);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.ns-product-card:hover .ns-product-card__quick,
.ns-product-card:focus-within .ns-product-card__quick {
	opacity: 1;
	transform: scale(1);
}

.ns-product-card__quick:hover {
	filter: brightness(1.08);
	color: #fff;
}

.ns-product-card__add,
.novashop-storefront a.ns-product-card__add,
.novashop-storefront a.ns-product-card__add.button,
.ns-product-card__soldout {
	position: absolute;
	left: 50%;
	bottom: 0.7rem;
	z-index: 3;
	display: block;
	width: calc(100% - 1.4rem);
	max-width: none;
	margin: 0;
	padding: 0.72rem 0.45rem;
	transform: translateX(-50%);
	font-family: var(--ns-font-body, Ovo, Georgia, serif);
	font-size: 0.66rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	color: #1a1a1a;
	background: #ededed;
	border: 1px solid #1a1a1a;
	border-radius: 0;
	box-shadow: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.ns-product-card__soldout {
	cursor: default;
	pointer-events: none;
	opacity: 0.85;
}

.ns-product-card__add:hover,
.novashop-storefront a.ns-product-card__add:hover {
	color: #fff !important;
	background: #1a1a1a !important;
	border-color: #1a1a1a !important;
}

.ns-product-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 0.65rem 1rem;
	padding-top: 0.8rem;
}

.ns-product-card__title {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	font-family: var(--ns-font-body, Ovo, Georgia, serif);
	font-size: 0.68rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ns-product-card__title a {
	text-decoration: none;
	color: inherit;
}

.ns-product-card__title a:hover {
	color: var(--ns-color-primary, var(--ns-rose));
}

.ns-product-card__price {
	flex: 0 0 auto;
	margin: 0;
	font-family: var(--ns-font-body, Ovo, Georgia, serif);
	font-size: 0.68rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: right;
	white-space: nowrap;
}

.ns-product-card__price .amount,
.ns-product-card__price bdi,
.ns-product-card__price ins,
.ns-product-card__price del {
	font-weight: 400;
}

.ns-product-card__price del {
	opacity: 0.45;
	text-decoration: line-through;
	margin-right: 0.25rem;
}

.ns-product-card__price ins {
	text-decoration: none;
}

.ns-product-card__price .woocommerce-Price-currencySymbol {
	margin-right: 0.05rem;
}

/* Hide theme/WC sale flash if still injected */
.novashop-storefront .ns-product-card .onsale,
.novashop-storefront .ns-products .onsale {
	display: none !important;
}

@media (max-width: 1200px) {
	.novashop-storefront .ns-products,
	.novashop-storefront ul.products,
	.ns-featured .ns-products,
	.ns-archive ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2.25rem 1.15rem;
	}
}

@media (max-width: 900px) {
	.novashop-storefront .ns-products,
	.novashop-storefront ul.products,
	.ns-featured .ns-products,
	.ns-archive ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem 1rem;
	}
}

@media (max-width: 560px) {
	.novashop-storefront .ns-products,
	.novashop-storefront ul.products,
	.ns-featured .ns-products,
	.ns-archive ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem 0.75rem;
	}

	.ns-product-card__title,
	.ns-product-card__price {
		font-size: 0.62rem;
	}

	.ns-product-card__add,
	.novashop-storefront a.ns-product-card__add,
	.ns-product-card__soldout {
		font-size: 0.56rem;
		padding: 0.58rem 0.3rem;
		letter-spacing: 0.12em;
		width: calc(100% - 1rem);
	}

	.ns-product-card__image {
		padding: 1rem 0.85rem 3.5rem;
	}
}

/* Single product — Zalando-inspired */
.ns-single-product .product,
.ns-product-page {
	margin: 0;
}

.ns-product-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
	gap: 3rem;
	align-items: start;
}

.ns-product-page__gallery {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
	width: 100%;
	min-width: 0;
}

.ns-product-page__gallery:has(.ns-product-page__thumbs) {
	grid-template-columns: 5rem minmax(0, 1fr);
}

.ns-product-page__thumbs {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.ns-product-page__thumb {
	padding: 0;
	border: 1px solid #e3e3e3;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
}

.ns-product-page__thumb.is-active {
	border-color: #1a1a1a;
}

.ns-product-page__stage {
	position: sticky;
	top: 1.5rem;
	width: 100%;
	min-width: 0;
}

.ns-product-page__main-image {
	width: 100%;
	background: #f7f7f7;
	overflow: hidden;
}

.ns-product-page__image,
.ns-product-page__main-image img,
.ns-product-page__main-image video,
.ns-product-page__video {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	aspect-ratio: auto;
	object-fit: contain;
	object-position: center;
	margin: 0;
}

.ns-product-page__video {
	background: #111;
}

.ns-product-page__thumb--video {
	position: relative;
}

.ns-product-page__thumb--video::after {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
	pointer-events: none;
}

.ns-product-page__thumb--video::before {
	content: '';
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	margin: -0.28rem 0 0 -0.12rem;
	border-style: solid;
	border-width: 0.28rem 0 0.28rem 0.45rem;
	border-color: transparent transparent transparent #fff;
	pointer-events: none;
}

.ns-product-page__thumb-image,
.ns-product-page__thumb img,
.ns-product-page__thumb-video-poster {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.ns-product-page__badges {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 0.76rem;
}

.ns-product-page__badge {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	padding: 0.35rem 0.7rem;
	border-radius: 0.55rem;
	background: #6c717a;
	color: #fff;
}

.ns-product-page__badge--sale {
	background: #ff1744;
}

.ns-product-page__summary {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ns-product-page__kicker {
	font-size: 0.88rem;
	color: #666;
}

.ns-product-page__title {
	margin: 0;
	font-family: var(--ns-font-heading, var(--ns-font-body, Ovo, Georgia, serif));
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: none;
}

.ns-product-page__price,
.ns-product-page__price .price {
	font-size: 1.85rem;
	font-weight: 700;
	line-height: 1.1;
}

.ns-product-page__price ins {
	text-decoration: none;
}

.ns-product-page__price del {
	margin-right: 0.45rem;
	opacity: 0.45;
	font-weight: 400;
	font-size: 1.1rem;
}

.ns-product-page__sale-note {
	margin: -0.4rem 0 0;
	font-size: 0.92rem;
	color: #9b3a30;
}

.ns-product-page__excerpt {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #444;
}

.ns-product-page__purchase form.cart {
	display: grid;
	gap: 0.9rem;
	margin: 0;
}

.ns-product-page__purchase .variations {
	width: 100%;
	margin: 0;
}

.ns-product-page__purchase .variations tbody,
.ns-product-page__purchase .variations tr,
.ns-product-page__purchase .variations td {
	display: block;
	width: 100%;
}

.ns-product-page__purchase .variations td.label {
	padding: 0 0 0.4rem;
	font-size: 0.82rem;
	font-weight: 600;
}

.ns-product-page__purchase .variations td.value {
	padding: 0;
}

.ns-product-page__purchase .variations select {
	width: 100%;
	min-height: 3rem;
	padding: 0 1rem;
	border: 1px solid #1a1a1a;
	border-radius: 0.25rem;
	background: #fff;
	font-size: 0.96rem;
}

.ns-product-page__purchase .quantity {
	display: none !important;
}

.ns-product-page__purchase .single_variation_wrap,
.ns-product-page__purchase .woocommerce-variation-add-to-cart,
.ns-product-page__purchase .cart {
	display: grid;
	gap: 0.9rem;
}

.ns-product-page__purchase .reset_variations {
	font-size: 0.82rem;
}

.ns-product-page .single_add_to_cart_button {
	width: 100%;
	min-height: 3.4rem;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #111 !important;
	color: #fff !important;
	letter-spacing: 0 !important;
	text-transform: none;
	font-size: 1rem !important;
	font-weight: 700 !important;
	padding: 0.95rem 1.4rem !important;
	box-shadow: none !important;
}

.ns-product-page__highlight {
	padding: 1rem 1.1rem;
	border-radius: 0.25rem;
	background: #f3f3f3;
	font-size: 0.95rem;
}

.ns-product-page__delivery {
	border: 1px solid #ddd;
	border-radius: 0.75rem;
	overflow: hidden;
	background: #fff;
}

.ns-product-page__delivery-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.05rem 1.15rem;
	border-bottom: 1px solid #ececec;
}

.ns-product-page__delivery-row:last-child {
	border-bottom: 0;
}

.ns-product-page__delivery-row div {
	display: grid;
	gap: 0.25rem;
}

.ns-product-page__delivery-row span {
	color: #555;
	font-size: 0.92rem;
}

.ns-product-page__accordions {
	display: grid;
	gap: 0;
	border-top: 1px solid #e6e6e6;
}

.ns-product-page__accordion {
	border-bottom: 1px solid #e6e6e6;
}

.ns-product-page__accordion summary {
	position: relative;
	padding: 1.2rem 2rem 1.2rem 0;
	list-style: none;
	cursor: pointer;
	font-weight: 600;
}

.ns-product-page__accordion summary::-webkit-details-marker {
	display: none;
}

.ns-product-page__accordion summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.25rem;
	line-height: 1;
}

.ns-product-page__accordion[open] summary::after {
	content: "−";
}

.ns-product-page__accordion-body {
	padding: 0 0 1.2rem;
	color: #444;
}

.ns-product-page__accordion-body p:first-child {
	margin-top: 0;
}

.ns-product-page__accordion-body table {
	width: 100%;
	border-collapse: collapse;
}

.ns-product-page__accordion-body th,
.ns-product-page__accordion-body td {
	padding: 0.55rem 0;
	border-bottom: 1px solid #eee;
	text-align: left;
	vertical-align: top;
}

.ns-product-page__accordion-body th {
	width: 38%;
	color: #666;
	font-weight: 500;
}

/* Footer */
.ns-footer {
	background: var(--ns-footer-bg, #ffeaf4);
	color: var(--ns-footer-text, #1a1a1a);
	padding: 3.5rem 0 1.5rem;
	margin-top: auto;
	flex: 0 0 auto;
	width: 100%;
}

.ns-footer,
.ns-footer h1,
.ns-footer h2,
.ns-footer h3,
.ns-footer h4,
.ns-footer h5,
.ns-footer h6,
.ns-footer p,
.ns-footer li,
.ns-footer span,
.ns-footer strong,
.ns-footer em,
.ns-footer a {
	color: inherit;
}

.ns-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.ns-footer__heading {
	margin: 0 0 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ns-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ns-footer__links a {
	text-decoration: none;
	color: inherit;
	font-size: 0.9rem;
	line-height: 1.9;
	opacity: 0.85;
}

.ns-footer__links a:hover {
	opacity: 1;
}

.ns-footer__extra {
	margin-top: 2rem;
	font-size: 0.9rem;
	opacity: 0.8;
}

.ns-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid currentColor;
	border-top-color: color-mix(in srgb, currentColor 12%, transparent);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.ns-footer__copy {
	margin: 0;
	font-size: 0.8rem;
	opacity: 0.65;
}

.ns-back-top {
	width: 2rem;
	height: 2rem;
	border: 1px solid currentColor;
	background: transparent;
	color: inherit;
	border-radius: 999px;
	cursor: pointer;
}

.ns-page {
	padding-block: 3.5rem;
	max-width: 48rem;
}

.ns-page__title {
	margin: 0 0 1.5rem;
	font-family: var(--ns-font-heading, Georgia, serif);
	font-weight: 400;
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	letter-spacing: 0.02em;
	color: var(--ns-page-title-color, var(--ns-color-primary, var(--ns-rose)));
}

.ns-page__content {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--ns-page-text-color, var(--ns-color-text, #1a1a1a));
}

.ns-page__content h2,
.ns-page__content h3 {
	font-family: var(--ns-font-heading, Georgia, serif);
	font-weight: 400;
	margin: 2rem 0 0.75rem;
	color: var(--ns-page-heading-color, var(--ns-color-primary, var(--ns-rose)));
}

.ns-page__content p {
	margin: 0 0 1rem;
}

.ns-page__content ul,
.ns-page__content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
}

.ns-page__content a {
	color: var(--ns-page-link-color, var(--ns-color-primary, var(--ns-rose)));
	text-decoration: underline;
}

/* Forms / cart / checkout — Label Rose inspired */
.ns-cart .woocommerce,
.ns-checkout .woocommerce,
.ns-account .woocommerce {
	max-width: none;
	margin-inline: 0;
}

.ns-cart {
	padding-block: 2.5rem 3rem;
}

.ns-cart__title,
.ns-checkout__title,
.ns-account__title {
	text-align: left;
	color: var(--ns-color-primary, var(--ns-rose));
	font-family: var(--ns-font-heading, Georgia, serif);
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: none;
	margin: 0 0 1.75rem;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.ns-cart--empty {
	max-width: 40rem;
	margin-inline: auto;
	text-align: center;
	padding-block: 3.5rem 4rem;
}

.ns-cart--empty .ns-cart__title {
	text-align: center;
	margin-bottom: 1rem;
}

.ns-cart-empty {
	text-align: center;
	padding: 0;
}

.ns-cart-empty__text {
	margin: 0 0 1.5rem;
	font-size: 1rem;
	color: #555;
}

.ns-cart-empty .ns-btn,
.ns-cart-empty .button,
.ns-cart-empty .return-to-shop .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 16rem;
	min-height: 3.1rem;
	padding: 0.85rem 1.5rem;
	background: var(--ns-color-primary, var(--ns-rose)) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
	text-decoration: none;
}

.ns-cart .woocommerce-notices-wrapper:empty,
.ns-cart .cart-empty.woocommerce-info {
	display: none !important;
}

.ns-cart-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
	gap: 2rem 2.5rem;
	align-items: start;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.ns-cart-form,
.ns-cart-lines {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

/* Kill WooCommerce float/width that collapses the summary panel */
.novashop-storefront .ns-cart .cart-collaterals,
.novashop-storefront .ns-cart .cart-collaterals .cart_totals,
.novashop-storefront .ns-cart .ns-cart-aside,
.novashop-storefront .ns-cart .ns-cart-totals,
.novashop-storefront .ns-cart .cart_totals {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	clear: none !important;
}

.ns-cart-aside {
	position: sticky;
	top: 1.25rem;
	min-width: 0;
	background: #f7f2f4;
	border: 1px solid #eddfe6;
	padding: 1.35rem 1.25rem 1.5rem;
	box-sizing: border-box;
}

.ns-cart-totals {
	background: transparent;
	border: 0;
	padding: 0;
	font-size: 0.85rem;
}

.ns-cart-totals__title {
	margin: 0 0 1.1rem;
	font-family: var(--ns-font-heading, Georgia, serif);
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--ns-color-primary, var(--ns-rose));
}

.ns-cart-totals table,
.ns-cart-totals table.shop_table,
.ns-cart-totals table.shop_table_responsive,
.ns-cart-totals table.ns-cart-totals__table {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	border-collapse: collapse;
	margin: 0 0 1rem !important;
	border: 0 !important;
}

.ns-cart-totals table tbody {
	display: block !important;
	width: 100% !important;
}

.ns-cart-totals table tr {
	display: flex !important;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	width: 100% !important;
	margin: 0 !important;
	padding: 0.85rem 0 !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
	background: transparent !important;
}

.ns-cart-totals table th,
.ns-cart-totals table td {
	display: block !important;
	float: none !important;
	width: auto !important;
	max-width: 100% !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	text-align: left !important;
	font-weight: 400;
	vertical-align: top;
}

.ns-cart-totals table td {
	text-align: right !important;
	margin-left: auto;
}

.ns-cart-totals table td::before {
	content: none !important;
	display: none !important;
}

.ns-cart-totals table tr.shipping,
.ns-cart-totals table tr.woocommerce-shipping-totals {
	flex-direction: column;
	align-items: stretch;
}

.ns-cart-totals table tr.shipping th,
.ns-cart-totals table tr.woocommerce-shipping-totals th {
	width: 100% !important;
	margin: 0 0 0.65rem;
	font-weight: 600;
}

.ns-cart-totals table tr.shipping td,
.ns-cart-totals table tr.woocommerce-shipping-totals td {
	width: 100% !important;
	margin: 0 !important;
	text-align: left !important;
}

.ns-cart-totals ul#shipping_method,
.ns-cart-totals ul.woocommerce-shipping-methods {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid;
	gap: 0.55rem;
}

.ns-cart-totals ul#shipping_method li,
.ns-cart-totals ul.woocommerce-shipping-methods li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin: 0 !important;
	padding: 0.7rem 0.8rem;
	border: 1px solid #ddd;
	background: #fff;
	list-style: none !important;
}

.ns-cart-totals ul#shipping_method li input,
.ns-cart-totals ul.woocommerce-shipping-methods li input {
	margin-top: 0.2rem;
	flex: 0 0 auto;
}

.ns-cart-totals ul#shipping_method li label,
.ns-cart-totals ul.woocommerce-shipping-methods li label {
	flex: 1 1 auto;
	line-height: 1.4;
	cursor: pointer;
}

.ns-cart-totals .woocommerce-shipping-destination {
	margin: 0.75rem 0 0;
	font-size: 0.7rem;
	opacity: 0.75;
}

.ns-cart-totals .order-total th,
.ns-cart-totals .order-total td {
	font-size: 0.94rem;
	font-weight: 700;
	border-bottom: 0 !important;
}

.ns-cart-totals__note {
	margin: 0 0 1.15rem;
	font-size: 0.66rem;
	opacity: 0.7;
}

.ns-cart-totals .wc-proceed-to-checkout {
	padding: 0;
	display: block;
}

.ns-cart-totals .checkout-button,
.ns-cart-totals .ns-btn--solid {
	display: flex !important;
	width: 100%;
	align-items: center;
	justify-content: center;
	min-height: 3.2rem;
	background: var(--ns-color-primary, var(--ns-rose)) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.61rem !important;
	text-decoration: none;
	margin: 0 !important;
}

.ns-cart-lines {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid #ececec;
}

.ns-cart-line {
	display: grid;
	grid-template-columns: 6.5rem minmax(0, 1fr);
	gap: 1.15rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid #ececec;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.ns-cart-line__media {
	background: #f5f5f5;
	overflow: hidden;
	align-self: start;
}

.ns-cart-line__media a {
	display: block;
}

.ns-cart-line__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}

.ns-cart-line__body {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	min-width: 0;
}

.ns-cart-line__top {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
}

.ns-cart-line__name {
	display: block;
	font-size: 0.82rem;
	line-height: 1.45;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	color: inherit;
}

.ns-cart-line__unit {
	margin-top: 0.35rem;
	font-size: 0.92rem;
	color: #444;
}

.ns-cart-line__remove {
	flex: 0 0 auto;
	width: 1.75rem;
	height: 1.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 50%;
	color: #666 !important;
	text-decoration: none !important;
	font-size: 1.1rem;
	line-height: 1;
	background: #fff;
}

.ns-cart-line__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.ns-cart-line__qty .quantity {
	display: inline-flex;
	align-items: center;
	margin: 0;
	border: 1px solid #1a1a1a;
	background: #fff;
}

.ns-cart-line__qty .qty {
	width: 3rem !important;
	min-height: 2.35rem;
	margin: 0;
	border: 0 !important;
	border-radius: 0 !important;
	text-align: center;
	background: transparent;
	box-shadow: none !important;
}

.ns-cart-line__subtotal {
	font-weight: 600;
	font-size: 1rem;
	white-space: nowrap;
}

.ns-cart-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.25rem;
}

.ns-cart-coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	flex: 1 1 auto;
	align-items: center;
}

.ns-cart-coupon .input-text {
	min-height: 2.75rem;
	min-width: 12rem;
	padding: 0.55rem 0.85rem;
	border: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
}

.ns-cart-coupon__btn,
.ns-cart-update {
	min-height: 2.75rem !important;
	padding: 0.55rem 1.1rem !important;
	border-radius: 0 !important;
	background: #fff !important;
	color: #1a1a1a !important;
	border: 1px solid #1a1a1a !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.7rem !important;
	cursor: pointer;
}

.ns-cart-continue {
	margin: 1.5rem 0 2rem;
}

.ns-cart-continue a {
	text-decoration: none;
	font-size: 0.9rem;
	border-bottom: 1px solid currentColor;
}

.ns-cart .cross-sells {
	margin-top: 1rem;
	padding-top: 2rem;
	border-top: 1px solid #ececec;
	clear: both;
}

.ns-cart .cross-sells > h2 {
	font-family: var(--ns-font-heading, Georgia, serif);
	font-weight: 400;
	color: var(--ns-color-primary, var(--ns-rose));
	font-size: 1.5rem;
	margin: 0 0 1.25rem;
}

/* Prevent WC default table styles from breaking custom cart lines */
.ns-cart .shop_table_responsive thead {
	display: none;
}

.ns-cart-line .variation {
	margin: 0.35rem 0 0;
	font-size: 0.8rem;
	opacity: 0.75;
}

.ns-cart-line .variation dt,
.ns-cart-line .variation dd {
	display: inline;
	margin: 0;
}

.ns-cart-line .variation dd {
	margin-right: 0.75rem;
}

/* Checkout */
.ns-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	gap: 2.5rem 3rem;
	align-items: start;
}

.ns-checkout-section {
	padding: 0 0 1.75rem;
	margin: 0 0 1.75rem;
	border-bottom: 1px solid #ececec;
}

.ns-checkout-section:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.ns-checkout-section h3,
.ns-checkout .woocommerce-billing-fields h3,
.ns-checkout .woocommerce-shipping-fields h3,
.ns-checkout .woocommerce-additional-fields h3 {
	margin: 0 0 1rem;
	font-family: var(--ns-font-heading, Georgia, serif);
	font-size: 1.35rem;
	font-weight: 400;
	color: var(--ns-color-primary, var(--ns-rose));
}

.ns-checkout .form-row {
	margin: 0 0 0.95rem;
}

.ns-checkout .form-row label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
}

.ns-checkout .input-text,
.ns-checkout select,
.ns-checkout textarea {
	width: 100%;
	min-height: 2.85rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid #cfcfcf;
	border-radius: 0.35rem;
	background: #fff;
	box-shadow: none;
	line-height: 1.35;
	box-sizing: border-box;
}

/* Native select: padding + min-height pushes text to the bottom on Windows. */
.ns-checkout select {
	height: 2.85rem;
	padding-top: 0;
	padding-bottom: 0;
	line-height: 2.85rem;
}

.ns-checkout .select2-container {
	width: 100% !important;
	max-width: 100%;
}

.novashop-storefront .ns-checkout .select2-container .select2-selection--single,
.novashop-storefront .ns-checkout .select2-container--default .select2-selection--single {
	display: flex !important;
	align-items: center !important;
	height: 2.85rem !important;
	min-height: 2.85rem !important;
	max-height: 2.85rem !important;
	padding: 0 2.25rem 0 0.85rem !important;
	margin: 0 !important;
	border: 1px solid #cfcfcf !important;
	border-radius: 0.35rem !important;
	background: #fff !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
	overflow: hidden;
}

.novashop-storefront .ns-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	display: block !important;
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1.25 !important;
	color: inherit !important;
}

.novashop-storefront .ns-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	position: absolute !important;
	top: 0 !important;
	right: 0.35rem !important;
	width: 1.5rem !important;
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.novashop-storefront .ns-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
	margin: 0 !important;
	position: static !important;
}

.novashop-storefront .ns-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
	line-height: 1.25 !important;
}

.ns-checkout textarea.input-text {
	min-height: 6rem;
	line-height: 1.45;
	padding: 0.65rem 0.85rem;
}

.ns-checkout-aside {
	position: sticky;
	top: 1.25rem;
	background: #f7f2f4;
	border: 1px solid #eddfe6;
	padding: 1.25rem 1.15rem;
	font-size: 0.86rem;
	line-height: 1.4;
	color: #1a1a1a;
}

.ns-checkout-aside__title {
	margin: 0 0 0.85rem;
	font-family: var(--ns-font-heading, Georgia, serif);
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--ns-color-primary, var(--ns-rose));
}

.ns-checkout-review .shop_table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1rem;
	font-size: 0.84rem;
}

.ns-checkout-review .shop_table th,
.ns-checkout-review .shop_table td {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	text-align: left;
	vertical-align: top;
	font-weight: 400;
}

.ns-checkout-review .shop_table td {
	text-align: right;
}

.ns-checkout-review .product-name {
	text-align: left !important;
}

.ns-checkout-review .order-total th,
.ns-checkout-review .order-total td {
	font-size: 1.05rem;
	font-weight: 700;
	border-bottom: 0;
}

/* —— Payment methods (Stripe / PayPal / COD) —— */
.novashop-storefront .ns-checkout #payment {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

.novashop-storefront .ns-checkout #payment ul.payment_methods {
	list-style: none !important;
	margin: 0 0 0.75rem !important;
	padding: 0 !important;
	border: 0 !important;
}

.novashop-storefront .ns-checkout #payment ul.payment_methods > li {
	list-style: none !important;
	margin: 0 0 0.5rem !important;
	padding: 0.65rem 0.8rem !important;
	border: 1px solid #e9e0e4 !important;
	border-radius: 6px !important;
	background: #fff !important;
	box-shadow: none !important;
}

.novashop-storefront .ns-checkout #payment ul.payment_methods > li:last-child {
	margin-bottom: 0 !important;
}

.novashop-storefront .ns-checkout #payment ul.payment_methods > li > input.input-radio {
	margin: 0.12rem 0.4rem 0 0;
	transform: scale(0.9);
	accent-color: var(--ns-color-primary, var(--ns-rose));
	vertical-align: top;
}

.novashop-storefront .ns-checkout #payment ul.payment_methods > li > label {
	display: inline-flex !important;
	align-items: center;
	gap: 0.35rem;
	margin: 0 !important;
	padding: 0 !important;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	font-size: 0.78rem !important;
	font-weight: 550 !important;
	letter-spacing: 0.01em !important;
	line-height: 1.25 !important;
	color: #2a2a2a !important;
	cursor: pointer;
}

.novashop-storefront .ns-checkout #payment ul.payment_methods > li > label img {
	max-height: 1.1rem;
	width: auto;
	margin: 0 !important;
}

/* Flatten payment_box — no second nested frame */
.novashop-storefront .ns-checkout #payment div.payment_box {
	position: relative;
	margin: 0.55rem 0 0 !important;
	padding: 0.15rem 0 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #444 !important;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	font-size: 0.75rem !important;
	line-height: 1.4 !important;
	box-shadow: none !important;
	width: auto !important;
}

.novashop-storefront .ns-checkout #payment div.payment_box::before,
.novashop-storefront .ns-checkout #payment div.payment_box::after {
	display: none !important;
	content: none !important;
	border: 0 !important;
}

.novashop-storefront .ns-checkout #payment div.payment_box p {
	margin: 0 0 0.45rem;
	font-family: inherit !important;
	font-size: 0.74rem !important;
	font-weight: 400 !important;
	color: #666;
	line-height: 1.4;
}

.novashop-storefront .ns-checkout #payment div.payment_box p:last-child {
	margin-bottom: 0;
}

.novashop-storefront .ns-checkout #payment div.form-row {
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.novashop-storefront .ns-checkout #payment .payment_method_stripe .payment_box,
.novashop-storefront .ns-checkout #payment .payment_method_woocommerce_payments .payment_box,
.novashop-storefront .ns-checkout #payment [class*="payment_method_ppcp"] .payment_box,
.novashop-storefront .ns-checkout #payment [class*="payment_method_paypal"] .payment_box {
	background: transparent !important;
	border: 0 !important;
	padding: 0.2rem 0 0 !important;
}

/* Stripe UPE / Payment Element — compact, no extra chrome */
.novashop-storefront .ns-checkout #payment .wc-stripe-upe-element,
.novashop-storefront .ns-checkout #payment .wc-stripe-payment-request-wrapper,
.novashop-storefront .ns-checkout #payment #wc-stripe-upe-form,
.novashop-storefront .ns-checkout #payment .StripeElement,
.novashop-storefront .ns-checkout #payment .woocommerce-SavedPaymentMethods,
.novashop-storefront .ns-checkout #payment .wc-payment-form {
	margin: 0 !important;
	max-width: 100%;
}

.novashop-storefront .ns-checkout #payment .StripeElement,
.novashop-storefront .ns-checkout #payment .wc-stripe-elements-field,
.novashop-storefront .ns-checkout #payment .wc-stripe-elements-field-no-icon {
	padding: 0.45rem 0.55rem !important;
	border: 1px solid #ddd2d7 !important;
	border-radius: 4px !important;
	background: #fff !important;
	box-shadow: none !important;
}

.novashop-storefront .ns-checkout #payment iframe {
	max-width: 100% !important;
	border: 0 !important;
	background: transparent !important;
}

.novashop-storefront .ns-checkout #payment label,
.novashop-storefront .ns-checkout #payment .woocommerce-SavedPaymentMethods-tokenInput + label,
.novashop-storefront .ns-checkout #payment .form-row label {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	font-size: 0.72rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.01em !important;
	color: #555 !important;
}

.novashop-storefront .ns-checkout #payment .woocommerce-SavedPaymentMethods {
	list-style: none !important;
	margin: 0 0 0.5rem !important;
	padding: 0 !important;
}

.novashop-storefront .ns-checkout #payment .woocommerce-SavedPaymentMethods li {
	margin: 0 0 0.3rem !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.novashop-storefront .ns-checkout #payment .woocommerce-SavedPaymentMethods-saveNew,
.novashop-storefront .ns-checkout #payment .woocommerce-SavedPaymentMethods-saveNew label,
.novashop-storefront .ns-checkout #payment label[for*="save"],
.novashop-storefront .ns-checkout #payment .wc-stripe-save-source,
.novashop-storefront .ns-checkout #payment .form-row.woocommerce-SavedPaymentMethods-saveNew {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	font-size: 0.7rem !important;
	font-weight: 400 !important;
	color: #666 !important;
	line-height: 1.35 !important;
}

.novashop-storefront .ns-checkout #payment input[type="checkbox"] {
	accent-color: var(--ns-color-primary, var(--ns-rose));
	margin-right: 0.35rem;
	transform: scale(0.88);
	transform-origin: left center;
}

/* PayPal */
.novashop-storefront .ns-checkout #payment [id*="paypal"],
.novashop-storefront .ns-checkout #payment [class*="paypal"],
.novashop-storefront .ns-checkout #payment .paypal-buttons,
.novashop-storefront .ns-checkout #payment .wc-ppcp,
.novashop-storefront .ns-checkout #payment .ppcp {
	max-width: 100% !important;
}

.novashop-storefront .ns-checkout #payment .ppcp-credit-card-gateway,
.novashop-storefront .ns-checkout #payment .ppcp-dcc-order-button,
.novashop-storefront .ns-checkout #payment #ppc-button,
.novashop-storefront .ns-checkout #payment .paypal-buttons-context-iframe {
	width: 100% !important;
}

.novashop-storefront .ns-checkout .woocommerce-privacy-policy-text,
.novashop-storefront .ns-checkout .woocommerce-terms-and-conditions-wrapper {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 0.72rem;
	color: #777;
	line-height: 1.4;
}

.novashop-storefront .ns-checkout #place_order,
.novashop-storefront .ns-checkout .woocommerce-checkout-payment button#place_order {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-height: 2.65rem !important;
	margin-top: 0.75rem;
	padding: 0.7rem 1rem !important;
	background: var(--ns-color-primary, var(--ns-rose)) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-family: var(--ns-font-body, Ovo, Georgia, serif) !important;
	font-size: 0.68rem !important;
	font-weight: 600 !important;
	cursor: pointer;
	box-sizing: border-box;
}

.novashop-storefront .ns-checkout #place_order:hover {
	filter: brightness(0.95);
}

/* Order received / thank you */
.ns-checkout--thankyou {
	max-width: 52rem;
	margin-inline: auto;
	padding-block: 2.5rem 3.5rem;
}

.ns-checkout--thankyou .ns-checkout__title {
	text-align: center;
	margin-bottom: 0.75rem;
}

.ns-thankyou {
	display: grid;
	gap: 1.75rem;
}

.ns-thankyou__hero {
	text-align: center;
	padding: 0.5rem 0 0.25rem;
}

.ns-thankyou__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.65;
}

.ns-thankyou .woocommerce-thankyou-order-received,
.ns-thankyou__hero .woocommerce-notice--success {
	margin: 0;
	font-family: var(--ns-font-heading, Georgia, serif);
	font-size: clamp(1.15rem, 2.4vw, 1.55rem);
	font-weight: 400;
	color: var(--ns-color-primary, var(--ns-rose));
	line-height: 1.35;
}

.ns-thankyou__subtitle {
	margin: 0.75rem 0 0;
	font-size: 0.92rem;
	color: #666;
}

.ns-thankyou__meta {
	list-style: none !important;
	margin: 0 !important;
	padding: 1.25rem 1.35rem !important;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
	gap: 1rem 1.25rem;
	background: #f7f2f4;
	border: 1px solid #eddfe6;
}

.ns-thankyou__meta > li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	float: none !important;
	width: auto !important;
	list-style: none !important;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.ns-thankyou__meta-label {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.65;
	font-weight: 600;
}

.ns-thankyou__meta-value {
	font-size: 0.95rem;
	font-weight: 600;
	word-break: break-word;
	line-height: 1.35;
}

.ns-thankyou__body {
	display: grid;
	gap: 1.5rem;
}

.ns-thankyou__body > p,
.ns-thankyou .woocommerce-bacs-bank-details,
.ns-thankyou .woocommerce-info {
	margin: 0;
	padding: 1rem 1.15rem;
	background: #fafafa;
	border: 1px solid #ececec;
	font-size: 0.9rem;
	line-height: 1.5;
}

.ns-thankyou .woocommerce-order-details,
.ns-thankyou .woocommerce-customer-details {
	background: #fff;
	border: 1px solid #ececec;
	padding: 1.35rem 1.25rem 1.5rem;
}

.ns-thankyou .woocommerce-order-details__title,
.ns-thankyou .woocommerce-column__title,
.ns-thankyou .woocommerce-order-downloads__title {
	margin: 0 0 1rem;
	font-family: var(--ns-font-heading, Georgia, serif);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--ns-color-primary, var(--ns-rose));
}

.ns-thankyou table.shop_table,
.ns-thankyou table.woocommerce-table--order-details {
	width: 100% !important;
	border-collapse: collapse;
	margin: 0 !important;
	border: 0 !important;
}

.ns-thankyou table.shop_table th,
.ns-thankyou table.shop_table td,
.ns-thankyou table.woocommerce-table--order-details th,
.ns-thankyou table.woocommerce-table--order-details td {
	padding: 0.8rem 0 !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
	background: transparent !important;
	text-align: left;
	vertical-align: top;
	font-size: 0.9rem;
	font-weight: 400;
}

.ns-thankyou table.shop_table td,
.ns-thankyou table.woocommerce-table--order-details td {
	text-align: right;
}

.ns-thankyou table.shop_table .product-name,
.ns-thankyou table.woocommerce-table--order-details .product-name {
	text-align: left !important;
}

.ns-thankyou table.shop_table tfoot th,
.ns-thankyou table.woocommerce-table--order-details tfoot th {
	font-weight: 600;
}

.ns-thankyou table.shop_table a,
.ns-thankyou table.woocommerce-table--order-details a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.ns-thankyou table.shop_table a:hover,
.ns-thankyou table.woocommerce-table--order-details a:hover {
	border-bottom-color: currentColor;
}

.ns-thankyou .woocommerce-table--order-details tfoot tr:last-child th,
.ns-thankyou .woocommerce-table--order-details tfoot tr:last-child td {
	font-size: 1.05rem;
	font-weight: 700;
	border-bottom: 0 !important;
	padding-top: 1rem !important;
}

.ns-thankyou .woocommerce-columns--addresses,
.ns-thankyou .col2-set.addresses {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.ns-thankyou .woocommerce-column,
.ns-thankyou .col2-set .col-1,
.ns-thankyou .col2-set .col-2 {
	float: none !important;
	width: 100% !important;
}

.ns-thankyou address {
	font-style: normal;
	line-height: 1.55;
	font-size: 0.9rem;
	color: #444;
}

.ns-thankyou__continue {
	margin: 0.5rem 0 0;
	text-align: center;
}

.ns-thankyou__continue .ns-btn,
.ns-thankyou__actions .ns-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 14rem;
	min-height: 3rem;
	padding: 0.85rem 1.35rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
	border-radius: 0;
}

.ns-thankyou__continue .ns-btn--solid,
.ns-thankyou__actions .ns-btn--solid {
	background: var(--ns-color-primary, var(--ns-rose));
	color: #fff;
	border: 0;
}

.ns-thankyou__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin: 1rem 0 0;
}

.ns-thankyou__panel--error {
	text-align: center;
	padding: 1.5rem;
	border: 1px solid #eddfe6;
	background: #f7f2f4;
}

@media (max-width: 720px) {
	.ns-thankyou__meta {
		grid-template-columns: 1fr 1fr;
	}

	.ns-thankyou .woocommerce-columns--addresses,
	.ns-thankyou .col2-set.addresses {
		grid-template-columns: 1fr;
	}
}

.novashop-storefront .woocommerce table.shop_table {
	width: 100%;
}

.novashop-storefront .woocommerce .col2-set {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.novashop-storefront .woocommerce .col2-set .col-1,
.novashop-storefront .woocommerce .col2-set .col-2 {
	float: none !important;
	width: 100% !important;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
	.ns-cart-layout {
		grid-template-columns: 1fr !important;
		gap: 1.75rem;
	}

	.ns-cart-aside {
		position: static;
	}

	.ns-categories__grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	}
}

@media (max-width: 980px) {
	.ns-nav-toggle {
		display: inline-flex;
	}

	.ns-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		min-height: 3.75rem;
	}

	.ns-logo {
		justify-self: center;
		text-align: center;
		max-width: min(58vw, 12rem);
		font-size: clamp(1.35rem, 5vw, 1.85rem);
	}

	.ns-logo-img {
		max-height: 36px;
		margin-inline: auto;
	}

	.ns-header__utils {
		gap: 0.65rem;
	}

	.ns-nav {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(20rem, 86vw);
		max-width: 100%;
		background: #fff;
		color: #1a1a1a;
		padding: 5rem 1.5rem 2rem;
		transform: translateX(-105%);
		transition: transform 0.3s ease;
		z-index: 120;
		justify-self: start;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		box-shadow: 8px 0 24px rgba(0, 0, 0, 0.08);
	}

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

	.ns-nav__list {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: 0.35rem;
	}

	.ns-nav__list > li {
		width: 100%;
	}

	.ns-nav__list a {
		display: block;
		padding: 0.65rem 0;
		font-size: 0.85rem;
	}

	.ns-nav__list .sub-menu {
		display: block;
		list-style: none;
		margin: 0 0 0.5rem 0.75rem;
		padding: 0;
	}

	.ns-nav__list .sub-menu a {
		font-size: 0.78rem;
		opacity: 0.75;
		padding: 0.4rem 0;
	}

	.ns-hero {
		aspect-ratio: 4 / 5;
		max-height: min(85vh, 720px);
		min-height: 360px;
	}

	.ns-hero__media img,
	.ns-hero__media video,
	.ns-hero-slider__slide img,
	.ns-hero-slider__slide video {
		object-position: center top;
	}

	.ns-hero__content {
		padding: 4.5rem 1.25rem 3.5rem;
		width: min(100% - 1.5rem, 42rem);
	}

	.ns-hero__title {
		font-size: clamp(1.85rem, 8vw, 3.2rem);
	}

	.ns-hero-slider__nav {
		width: 2.15rem;
		height: 2.15rem;
		font-size: 1.25rem;
	}

	.ns-hero-slider__nav--prev {
		left: 0.5rem;
	}

	.ns-hero-slider__nav--next {
		right: 0.5rem;
	}

	.ns-hero-slider__dots {
		bottom: 1rem;
	}

	.ns-hero-slider__dot {
		width: 0.7rem;
		height: 0.7rem;
	}

	.ns-usp {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding-block: 2rem;
	}

	.ns-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.75rem 1.25rem;
	}

	.ns-product-page__layout {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.ns-product-page__stage {
		position: static;
	}

	.ns-cart-layout,
	.ns-checkout-layout {
		grid-template-columns: 1fr !important;
		gap: 1.75rem;
	}

	.ns-cart-aside,
	.ns-checkout-aside {
		position: static;
		width: 100% !important;
		max-width: 100% !important;
	}

	.ns-cart {
		padding-block: 1.75rem 2.5rem;
	}

	.ns-cart__title {
		font-size: clamp(1.5rem, 5vw, 2rem);
		margin-bottom: 1.25rem;
	}

	.ns-cart-aside {
		padding: 1.15rem 1rem 1.25rem;
	}

	.ns-cart-totals ul#shipping_method li,
	.ns-cart-totals ul.woocommerce-shipping-methods li {
		padding: 0.65rem 0.7rem;
	}

	.ns-categories,
	.ns-featured,
	.ns-social,
	.ns-archive,
	.ns-single-product,
	.ns-checkout,
	.ns-account,
	.ns-page {
		padding-block: 2.5rem;
	}

	.novashop-storefront .woocommerce .col2-set {
		grid-template-columns: 1fr;
	}

	.ns-archive__toolbar {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 640px) {
	.ns-container {
		width: min(100% - 1.25rem, var(--ns-max));
	}

	/* Override desktop :has() two-column gallery — order alone would put stage in the 5rem track. */
	.ns-product-page__gallery,
	.ns-product-page__gallery:has(.ns-product-page__thumbs) {
		grid-template-columns: 1fr;
	}

	.ns-product-page__stage {
		order: 1;
		width: 100%;
	}

	.ns-product-page__main-image {
		width: 100%;
		min-height: min(72vw, 22rem);
	}

	.ns-product-page__image,
	.ns-product-page__main-image img,
	.ns-product-page__main-image video,
	.ns-product-page__video {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		min-height: min(72vw, 22rem);
		object-fit: contain;
		background: #f7f7f7;
	}

	.ns-product-page__thumbs {
		order: 2;
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 0.35rem;
		-webkit-overflow-scrolling: touch;
	}

	.ns-product-page__thumb {
		flex: 0 0 4.25rem;
	}

	.ns-product-page__title {
		font-size: 1.8rem;
	}

	.ns-product-page__price,
	.ns-product-page__price .price {
		font-size: 1.45rem;
	}

	.ns-product-page__delivery-row {
		flex-direction: column;
	}

	.ns-cart-line {
		grid-template-columns: 5.25rem minmax(0, 1fr);
		gap: 0.85rem;
		padding: 1rem 0;
	}

	.ns-cart-line__name {
		font-size: 0.75rem;
		letter-spacing: 0.04em;
	}

	.ns-cart-line__bottom {
		flex-wrap: wrap;
		gap: 0.65rem;
	}

	.ns-cart-line__qty .qty {
		width: 3.25rem;
		min-height: 2.35rem;
	}

	.ns-cart-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}

	.ns-cart-coupon {
		width: 100%;
		flex-wrap: wrap;
	}

	.ns-cart-coupon .input-text {
		flex: 1 1 auto;
		min-width: 0;
		width: 100%;
	}

	.ns-cart-coupon__btn,
	.ns-cart-update {
		width: 100%;
	}

	.ns-cart-totals {
		font-size: 0.9rem;
	}

	.ns-cart-totals__title {
		font-size: 1.15rem;
	}

	.ns-cart-totals .checkout-button,
	.ns-cart-totals .ns-btn--solid {
		min-height: 3rem;
		font-size: 0.7rem !important;
	}

	.ns-cart-continue {
		margin: 1.25rem 0 1.5rem;
		text-align: center;
	}

	.ns-hero {
		aspect-ratio: 9 / 16;
		max-height: min(82vh, 680px);
		min-height: 420px;
	}

	.ns-hero__content {
		padding: 3.5rem 1rem 3.25rem;
	}

	.ns-hero--slider .ns-hero__content {
		padding-bottom: 4.25rem;
	}

	.ns-hero__subtitle {
		font-size: 0.88rem;
		max-width: 32ch;
	}

	.ns-btn {
		padding: 0.85rem 1.25rem;
		font-size: 0.68rem;
	}

	.ns-section-title {
		font-size: 1.35rem;
	}

	.ns-page-title,
	.ns-archive__title {
		font-size: 1.45rem;
	}

	.ns-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.ns-footer__grid {
		grid-template-columns: 1fr;
	}

	.ns-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.ns-header__utils .ns-icon-link:first-child {
		display: inline-flex;
	}
}

@media (max-width: 380px) {
	.novashop-storefront .ns-products,
	.novashop-storefront ul.products,
	.ns-featured .ns-products,
	.ns-archive ul.products {
		grid-template-columns: minmax(0, 1fr);
	}

	.ns-categories__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* WooCommerce tables on small screens */
@media (max-width: 768px) {
	.novashop-storefront .woocommerce table.shop_table_responsive thead,
	.novashop-storefront .woocommerce table.shop_table.shop_table_responsive thead {
		display: none;
	}

	.novashop-storefront .woocommerce table.shop_table_responsive tr,
	.novashop-storefront .woocommerce table.shop_table.shop_table_responsive tr {
		display: block;
		margin-bottom: 1rem;
		border: 1px solid rgba(0, 0, 0, 0.08);
	}

	.novashop-storefront .woocommerce table.shop_table_responsive td,
	.novashop-storefront .woocommerce table.shop_table.shop_table_responsive td {
		display: block;
		text-align: right !important;
		width: 100% !important;
		padding: 0.65rem 0.85rem !important;
	}

	.novashop-storefront .woocommerce table.shop_table_responsive td::before,
	.novashop-storefront .woocommerce table.shop_table.shop_table_responsive td::before {
		content: attr(data-title);
		float: left;
		font-weight: 600;
		text-align: left;
	}

	.novashop-storefront .ns-cart .ns-cart-totals table td::before,
	.novashop-storefront .ns-cart .ns-cart-totals table.shop_table td::before {
		content: none !important;
		display: none !important;
	}

	.novashop-storefront .woocommerce-cart-form,
	.novashop-storefront form.checkout {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.novashop-storefront .ns-cart .cart-collaterals,
	.novashop-storefront .ns-cart .ns-cart-aside {
		overflow: visible;
	}
}

@media (hover: none) {
	.ns-product-card:hover .ns-product-card__image img {
		transform: none;
	}

	.ns-product-card__quick {
		opacity: 1;
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ns-announcement__track {
		animation: none;
	}

	.ns-hero-slider__slide,
	.ns-nav,
	.ns-product-card__media img,
	.ns-product-card__quick {
		transition: none;
	}
}

/* ——— My Account ——— */
.ns-account {
	padding-block: 2.5rem 3.5rem;
}

.ns-account__head {
	margin: 0 0 0.25rem;
}

.ns-account-layout {
	display: grid;
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	gap: 2.5rem 3rem;
	align-items: start;
}

.ns-account--guest .ns-account-layout,
.ns-account--guest .woocommerce {
	display: block;
}

.ns-account-nav {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0;
	border-right: 1px solid #ececec;
	padding-right: 1.5rem;
}

.ns-account-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.ns-account-nav li {
	margin: 0;
	padding: 0;
}

.ns-account-nav a {
	display: block;
	padding: 0.65rem 0;
	color: var(--ns-color-text, #1a1a1a);
	text-decoration: none;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.ns-account-nav a:hover,
.ns-account-nav .is-active a {
	color: var(--ns-color-primary, var(--ns-rose));
	border-bottom-color: var(--ns-color-primary, var(--ns-rose));
}

.ns-account-content {
	float: none !important;
	width: 100% !important;
	min-width: 0;
}

.ns-account-content > h2,
.ns-account-content .woocommerce-Address-title h3,
.ns-account-content .woocommerce-order-details__title,
.ns-account .woocommerce-EditAccountForm fieldset legend {
	font-family: var(--ns-font-heading, Georgia, serif);
	font-weight: 400;
	font-size: 1.35rem;
	color: var(--ns-color-primary, var(--ns-rose));
	margin: 0 0 1rem;
}

.ns-account .woocommerce-MyAccount-content p,
.ns-account-content p {
	margin: 0 0 1rem;
	line-height: 1.6;
}

.ns-account .woocommerce-MyAccount-content a {
	color: var(--ns-color-primary, var(--ns-rose));
}

.ns-account table.shop_table,
.ns-account table.my_account_orders {
	width: 100%;
	border-collapse: collapse;
	border: 0;
	margin: 0 0 1.5rem;
}

.ns-account table.shop_table th,
.ns-account table.shop_table td,
.ns-account table.my_account_orders th,
.ns-account table.my_account_orders td {
	padding: 0.85rem 0.65rem;
	border: 0;
	border-bottom: 1px solid #ececec;
	text-align: left;
	vertical-align: middle;
	font-size: 0.92rem;
}

.ns-account table.shop_table thead th,
.ns-account table.my_account_orders thead th {
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 500;
	color: #666;
}

.ns-account .woocommerce-orders-table__cell-order-actions .button,
.ns-account .woocommerce-button,
.ns-account .button,
.ns-account button.button,
.ns-account input.button,
.ns-account .woocommerce-Button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.6rem;
	padding: 0.55rem 1.15rem;
	background: var(--ns-color-primary, var(--ns-rose)) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.7rem !important;
	text-decoration: none !important;
	cursor: pointer;
	line-height: 1.2;
}

.ns-account .woocommerce-button--view,
.ns-account a.button.view {
	background: #fff !important;
	color: #1a1a1a !important;
	border: 1px solid #1a1a1a !important;
}

.ns-account .woocommerce-Addresses,
.ns-account .u-columns.woocommerce-Addresses,
.ns-account .col2-set.addresses {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem 2rem;
}

.ns-account .woocommerce-Address,
.ns-account .u-column,
.ns-account .col2-set .col-1,
.ns-account .col2-set .col-2 {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.ns-account .woocommerce-Address address,
.ns-account address {
	font-style: normal;
	line-height: 1.55;
	padding: 1.15rem 1.25rem;
	background: #faf8f8;
	border: 1px solid #ececec;
}

.ns-account .woocommerce-form-row,
.ns-account .form-row {
	margin: 0 0 1rem;
}

.ns-account .woocommerce-form-row label,
.ns-account .form-row label {
	display: block;
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ns-account .woocommerce-Input,
.ns-account input.input-text,
.ns-account textarea,
.ns-account select {
	width: 100%;
	max-width: 100%;
	min-height: 2.75rem;
	padding: 0.55rem 0.85rem;
	border: 1px solid #ccc;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	font: inherit;
	color: inherit;
	box-sizing: border-box;
}

.ns-account--guest .u-columns,
.ns-account--guest .woocommerce .u-columns,
.ns-account .woocommerce-form-login-toggle + .u-columns,
.ns-account .col2-set#customer_login,
.ns-account #customer_login.u-columns {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem 3rem;
	align-items: start;
}

.ns-account #customer_login .u-column,
.ns-account #customer_login .col-1,
.ns-account #customer_login .col-2 {
	float: none !important;
	width: 100% !important;
}

.ns-account #customer_login h2 {
	font-family: var(--ns-font-heading, Georgia, serif);
	font-weight: 400;
	font-size: 1.35rem;
	color: var(--ns-color-primary, var(--ns-rose));
	margin: 0 0 1.25rem;
}

.ns-account .lost_password {
	margin: 0.75rem 0 0;
	font-size: 0.88rem;
}

.ns-account .novashop-gls-tracking {
	margin: 1.75rem 0 0;
	padding: 1.25rem 1.35rem;
	border: 1px solid #ececec;
	background: #faf8f8;
}

.ns-account .novashop-gls-tracking h2 {
	font-family: var(--ns-font-heading, Georgia, serif);
	font-weight: 400;
	font-size: 1.2rem;
	color: var(--ns-color-primary, var(--ns-rose));
	margin: 0 0 0.65rem;
}

.ns-account .novashop-gls-tracking .button {
	margin-top: 0.35rem;
}

@media (max-width: 860px) {
	.ns-account-layout {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ns-account-nav {
		border-right: 0;
		padding-right: 0;
		border-bottom: 1px solid #ececec;
		padding-bottom: 0.75rem;
	}

	.ns-account-nav ul {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.35rem 1.1rem;
	}

	.ns-account-nav a {
		padding: 0.4rem 0;
		font-size: 0.74rem;
	}

	.ns-account .woocommerce-Addresses,
	.ns-account .u-columns.woocommerce-Addresses,
	.ns-account .col2-set.addresses,
	.ns-account #customer_login.u-columns,
	.ns-account--guest .u-columns {
		grid-template-columns: 1fr !important;
	}
}

