:root {
	--ns-max: 1280px;
	--ns-footer-bg: #ffeaf4;
	--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;
	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;
}

/* 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: 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-icon-link {
	position: relative;
	display: inline-flex;
	color: var(--ns-color-text, #1a1a1a);
	text-decoration: none;
}

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

/* Hero */
.ns-hero {
	position: relative;
	min-height: min(88vh, 820px);
	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;
	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;
}

.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-cart,
.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;
}

/* Products — grid kills theme/WC floats */
.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(3, minmax(0, 1fr));
	gap: 2rem 1.5rem;
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	float: none !important;
	clear: both !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;
}

.ns-product-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: #f7f3f4;
	aspect-ratio: 3 / 4;
	width: 100%;
}

.ns-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.ns-product-card:hover .ns-product-card__media img {
	transform: scale(1.04);
}

.ns-product-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	padding: 0.25rem 0.5rem;
	background: #fff;
	color: #1a1a1a;
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ns-product-card__quick {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 0.65rem;
	background: rgba(255, 255, 255, 0.92);
	text-align: center;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.ns-product-card:hover .ns-product-card__quick {
	transform: translateY(0);
}

.ns-product-card__body {
	padding-top: 0.85rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.ns-product-card__title {
	margin: 0 0 0.35rem;
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1.35;
}

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

.ns-product-card__price {
	font-size: 0.9rem;
	margin-bottom: 0.65rem;
}

.ns-product-card__add,
.novashop-storefront a.ns-product-card__add,
.novashop-storefront a.ns-product-card__add.button {
	display: inline-block;
	align-self: flex-start;
	max-width: 100%;
	margin: 0;
	padding: 0 0 0.1rem;
	font-size: 0.7rem;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: left;
	white-space: normal;
	color: inherit !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid currentColor !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.ns-product-card__add:hover,
.novashop-storefront a.ns-product-card__add:hover {
	color: var(--ns-color-primary, var(--ns-rose)) !important;
	background: transparent !important;
}

.ns-product-card__soldout {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.55;
}

/* 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: 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 {
		font-size: 0.82rem;
	}

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

	.ns-product-card__add,
	.novashop-storefront a.ns-product-card__add {
		font-size: 0.62rem;
	}
}

/* Single product polish */
.ns-single-product .product {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2.5rem;
	align-items: start;
}

.ns-single-product .woocommerce-product-gallery {
	margin: 0;
}

.ns-single-product .summary {
	margin: 0;
}

.ns-single-product .product_title {
	font-weight: 400;
	letter-spacing: 0.04em;
}

.ns-single-product .single_add_to_cart_button {
	background: var(--ns-color-primary, var(--ns-rose)) !important;
	color: #fff !important;
	border-radius: 0 !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.75rem !important;
	padding: 0.95rem 1.4rem !important;
}

/* Footer */
.ns-footer {
	background: var(--ns-footer-bg);
	padding: 3.5rem 0 1.5rem;
	margin-top: 2rem;
}

.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;
	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 rgba(0, 0, 0, 0.06);
	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: 0;
	background: #3a3a3a;
	color: #fff;
	cursor: pointer;
}

/* Forms / cart */
.ns-cart .woocommerce,
.ns-checkout .woocommerce,
.ns-account .woocommerce {
	max-width: 960px;
	margin-inline: auto;
}

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

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

.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-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 {
		min-height: min(78vh, 640px);
	}

	.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-single-product .product {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.ns-categories,
	.ns-featured,
	.ns-social,
	.ns-archive,
	.ns-single-product,
	.ns-cart,
	.ns-checkout,
	.ns-account {
		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));
	}

	.ns-hero {
		min-height: min(70vh, 560px);
	}

	.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: none;
	}

	.ns-product-card__quick {
		transform: none;
		opacity: 0.92;
		font-size: 0.62rem;
		padding: 0.45rem;
	}

	.ns-product-card:hover .ns-product-card__media img {
		transform: none;
	}
}

@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 .woocommerce-cart-form,
	.novashop-storefront .cart-collaterals,
	.novashop-storefront form.checkout {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (hover: none) {
	.ns-product-card__quick {
		transform: none;
	}
}

@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;
	}
}
