/**
 * 9rang Store: shop, product tile, single product, wishlist, basket, checkout.
 *
 * @package ninerang
 */

/* ------------------------------------------------------- 1. Shop layout */

.nr-shophero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 300px;
	overflow: hidden;
}

.nr-shophero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nr-shophero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba( 0, 0, 0, 0.55 ) 0%,
		rgba( 0, 0, 0, 0.15 ) 60%,
		rgba( 0, 0, 0, 0.05 ) 100%
	);
}

.nr-shophero__inner {
	position: relative;
	padding-block: 40px;
	color: #fff;
}

.nr-shophero__title {
	margin: 0;
	color: #fff;
	text-transform: var( --nr-heading-transform );
}

.nr-shophero__text {
	max-width: 60ch;
	margin-top: 10px;
	color: rgba( 255, 255, 255, 0.85 );
	font-size: 0.95rem;
}

.nr-shop {
	display: grid;
	gap: clamp( 24px, 3vw, 52px );
	align-items: start;
	padding-bottom: var( --nr-section-gap );
}

.nr-shop--sidebar-left {
	grid-template-columns: 280px minmax( 0, 1fr );
}

.nr-shop--sidebar-right {
	grid-template-columns: minmax( 0, 1fr ) 280px;
}

.nr-shop--sidebar-right .nr-shop__sidebar {
	order: 2;
}

.nr-shop--sidebar-none {
	grid-template-columns: minmax( 0, 1fr );
}

.nr-shop__sidebar {
	position: sticky;
	top: 108px;
	max-height: calc( 100vh - 130px );
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-right: 4px;
}

.nr-shop__results {
	position: relative;
	min-height: 240px;
	transition: opacity 0.2s ease;
}

.nr-shop__results.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.nr-shop__loader {
	position: absolute;
	top: 60px;
	left: 50%;
	display: none;
	gap: 6px;
	transform: translateX( -50% );
}

.nr-shop__results.is-loading .nr-shop__loader {
	display: flex;
}

.nr-shop__loader span {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var( --nr-primary );
	animation: nr-bounce 0.9s infinite ease-in-out;
}

.nr-shop__loader span:nth-child( 2 ) {
	animation-delay: 0.15s;
}

.nr-shop__loader span:nth-child( 3 ) {
	animation-delay: 0.3s;
}

@keyframes nr-bounce {
	0%,
	80%,
	100% {
		transform: scale( 0.6 );
		opacity: 0.4;
	}
	40% {
		transform: scale( 1 );
		opacity: 1;
	}
}

/* ------------------------------------------------------------ 2. Toolbar */

.nr-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 18px;
	margin-bottom: 8px;
	border-bottom: 1px solid var( --nr-border );
}

.nr-toolbar__left,
.nr-toolbar__right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nr-toolbar__count,
.woocommerce-result-count {
	margin: 0;
	font-size: 0.85rem;
	color: var( --nr-muted );
}

/* With the filter rail on screen the toolbar button would be a second door to
   the same room, so it only appears once the rail collapses. */
.nr-filters-toggle {
	position: relative;
	display: none;
	padding: 10px 18px;
	font-size: 0.85rem;
}

.nr-shop--sidebar-none .nr-filters-toggle {
	display: inline-flex;
}

.nr-filters-toggle__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding-inline: 6px;
	border-radius: 999px;
	background: var( --nr-primary );
	color: #fff;
	font-size: 0.7rem;
}

.nr-density {
	display: flex;
	gap: 2px;
	padding: 3px;
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius-button );
}

.nr-density__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 32px;
	border-radius: calc( var( --nr-radius-button ) - 1px );
	color: var( --nr-muted );
	transition: background 0.16s ease, color 0.16s ease;
}

.nr-density__btn.is-active {
	background: var( --nr-heading );
	color: var( --nr-surface );
}

.nr-ordering select,
.woocommerce-ordering select {
	width: auto;
	min-width: 200px;
	padding: 10px 14px;
	font-size: 0.85rem;
}

.woocommerce-ordering {
	margin: 0;
}

/* -------------------------------------------------------------- 3. Chips */

.nr-chips:empty {
	display: none;
}

.nr-chips__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding-block: 16px;
}

.nr-chips__label {
	font-size: 0.8rem;
	color: var( --nr-muted );
	margin-right: 4px;
}

.nr-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	border: 1px solid var( --nr-border-strong );
	border-radius: 999px;
	background: var( --nr-surface );
	font-size: 0.8rem;
}

.nr-chip:hover {
	border-color: var( --nr-primary );
	color: var( --nr-primary );
}

.nr-chips__clear {
	margin-left: 6px;
	font-size: 0.8rem;
	text-decoration: underline;
	color: var( --nr-muted );
}

/* ------------------------------------------------------------ 4. Filters */

.nr-filters {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nr-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	margin-bottom: 6px;
	border-bottom: 1px solid var( --nr-border );
}

.nr-filters__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nr-filters__clear {
	font-size: 0.8rem;
	color: var( --nr-muted );
	text-decoration: underline;
}

.nr-filters__group {
	padding-block: 16px;
	border-bottom: 1px solid var( --nr-border );
}

.nr-filters__label {
	margin-bottom: 10px;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}

.nr-filters__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	list-style: none;
	font-size: 0.9rem;
	font-weight: 500;
	color: var( --nr-heading );
}

.nr-filters__summary::-webkit-details-marker {
	display: none;
}

.nr-filters__summary svg {
	transition: transform 0.22s ease;
}

.nr-filters__group[open] > .nr-filters__summary svg {
	transform: rotate( 180deg );
}

.nr-filters__list {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 3px;
	max-height: 260px;
	overflow-y: auto;
}

.nr-filters__list--swatches {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
	max-height: none;
}

.nr-filters__search {
	position: relative;
	display: flex;
	align-items: center;
}

.nr-filters__search input {
	padding-right: 42px;
}

.nr-filters__search svg {
	position: absolute;
	right: 14px;
	color: var( --nr-muted );
	pointer-events: none;
}

.nr-filters__actions {
	padding-top: 18px;
}

.nr-filters__apply {
	width: 100%;
}

.nr-filters__widgets {
	padding-top: 24px;
}

/* Checkbox rows */

.nr-check {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 2px;
	margin: 0;
	font-size: 0.88rem;
	font-weight: 400;
	color: var( --nr-text );
	cursor: pointer;
}

.nr-check input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.nr-check__box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 18px;
	height: 18px;
	border: 1px solid var( --nr-border-strong );
	border-radius: 3px;
	background: var( --nr-surface );
	color: transparent;
	transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.nr-check input:checked + .nr-check__box {
	background: var( --nr-primary );
	border-color: var( --nr-primary );
	color: #fff;
}

.nr-check input:focus-visible + .nr-check__box {
	outline: 2px solid var( --nr-primary );
	outline-offset: 2px;
}

.nr-check__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	min-width: 0;
}

.nr-check__count {
	flex: none;
	font-size: 0.78rem;
	color: var( --nr-muted );
}

/* Colour swatches */

.nr-swatch {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	margin: 0;
	font-size: 0.72rem;
	font-weight: 400;
	color: var( --nr-muted );
	cursor: pointer;
}

.nr-swatch input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.nr-swatch__dot {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: var( --nr-swatch );
	box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.12 );
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.nr-swatch input:checked + .nr-swatch__dot {
	transform: scale( 1.08 );
	box-shadow: 0 0 0 2px var( --nr-surface ), 0 0 0 4px var( --nr-primary );
}

/* Toggles */

.nr-filters__group--toggles {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.nr-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-size: 0.88rem;
	font-weight: 400;
	cursor: pointer;
}

.nr-toggle input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.nr-toggle__track {
	position: relative;
	flex: none;
	width: 38px;
	height: 22px;
	border-radius: 999px;
	background: var( --nr-border-strong );
	transition: background 0.2s ease;
}

.nr-toggle__thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: #fff;
	transition: transform 0.2s ease;
}

.nr-toggle input:checked + .nr-toggle__track {
	background: var( --nr-primary );
}

.nr-toggle input:checked + .nr-toggle__track .nr-toggle__thumb {
	transform: translateX( 16px );
}

/* Price rail */

.nr-price-filter {
	position: relative;
	margin-top: 24px;
	padding-top: 4px;
}

.nr-price-filter__track {
	position: relative;
	height: 4px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: var( --nr-border );
}

.nr-price-filter__fill {
	position: absolute;
	top: 0;
	bottom: 0;
	background: var( --nr-primary );
	border-radius: 999px;
}

.nr-price-filter__range {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	pointer-events: none;
	appearance: none;
	-webkit-appearance: none;
}

.nr-price-filter__range::-webkit-slider-thumb {
	pointer-events: auto;
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid var( --nr-primary );
	border-radius: 999px;
	background: var( --nr-surface );
	box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.18 );
	cursor: grab;
}

.nr-price-filter__range::-moz-range-thumb {
	pointer-events: auto;
	width: 18px;
	height: 18px;
	border: 2px solid var( --nr-primary );
	border-radius: 999px;
	background: var( --nr-surface );
	box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.18 );
	cursor: grab;
}

.nr-price-filter__inputs {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nr-price-filter__inputs label {
	flex: 1;
	margin: 0;
}

.nr-price-filter__inputs input {
	padding: 9px 12px;
	font-size: 0.85rem;
}

.nr-price-filter__dash {
	color: var( --nr-muted );
}

.nr-price-filter__readout {
	margin: 10px 0 0;
	font-size: 0.82rem;
	color: var( --nr-muted );
}

/* Mobile filter drawer */

.nr-filter-drawer__panel {
	padding-bottom: 24px;
	overflow-y: auto;
}

.nr-filter-drawer__panel .nr-filters {
	padding: 0 24px 24px;
}

/* ---------------------------------------------------- 5. Product tile */

.nr-grid--products {
	grid-template-columns: repeat( var( --nr-cols, 4 ), minmax( 0, 1fr ) );
	gap: clamp( 14px, 1.8vw, 30px ) clamp( 14px, 1.6vw, 26px );
}

.nr-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
}

.nr-card--boxed {
	padding: 14px;
	background: var( --nr-surface );
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
	transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.nr-card--boxed:hover {
	box-shadow: var( --nr-shadow-lift );
	transform: translateY( -3px );
}

/* The image well is the fixed-width part: a max-width plus a locked aspect
   ratio, so a mixed-size catalogue still lines up in a clean matrix. */
.nr-card__media {
	position: relative;
	width: 100%;
	max-width: var( --nr-card-width );
	margin-inline: auto;
	aspect-ratio: var( --nr-card-ratio );
	overflow: hidden;
	border-radius: var( --nr-radius-sm );
	background: var( --nr-surface );
}

.nr-card__image-link {
	position: absolute;
	inset: 0;
	display: block;
}

.nr-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.45s ease, transform 0.7s cubic-bezier( 0.2, 0, 0.2, 1 );
}

.nr-card__image--secondary {
	opacity: 0;
}

.nr-card:hover .nr-card__image--primary {
	transform: scale( 1.04 );
}

.nr-card.has-swap:hover .nr-card__image--primary {
	opacity: 0;
}

.nr-card.has-swap:hover .nr-card__image--secondary {
	opacity: 1;
	transform: scale( 1.04 );
}

.nr-card.is-out-of-stock .nr-card__image {
	filter: grayscale( 0.4 );
	opacity: 0.85;
}

.nr-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	pointer-events: none;
}

.nr-badge {
	padding: 4px 10px;
	border-radius: var( --nr-radius-button );
	background: var( --nr-heading );
	color: var( --nr-surface );
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nr-badge--sale {
	background: var( --nr-sale );
	color: var( --nr-sale-text );
}

.nr-badge--oos {
	background: rgba( 0, 0, 0, 0.7 );
	color: #fff;
}

.nr-badge--new {
	background: var( --nr-secondary );
	color: #fff;
}

.nr-badge--backorder {
	background: var( --nr-accent );
	color: #1a1614;
}

.nr-card__tools {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 6px;
	opacity: 0;
	transform: translateX( 8px );
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.nr-card:hover .nr-card__tools,
.nr-card:focus-within .nr-card__tools {
	opacity: 1;
	transform: translateX( 0 );
}

.nr-card__tools .nr-iconbtn,
.nr-wishlist-btn--floating {
	width: 38px;
	height: 38px;
	background: rgba( var( --nr-surface-rgb ), 0.94 );
	color: var( --nr-heading );
	box-shadow: var( --nr-shadow );
}

.nr-card__cart {
	position: absolute;
	inset: auto 10px 10px 10px;
	z-index: 4;
	opacity: 0;
	transform: translateY( 10px );
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.nr-card:hover .nr-card__cart,
.nr-card:focus-within .nr-card__cart {
	opacity: 1;
	transform: translateY( 0 );
}

.nr-button--cart {
	width: 100%;
	padding: 11px 16px;
	background: var( --nr-heading );
	color: var( --nr-surface );
	font-size: 0.82rem;
}

.nr-button--cart:hover {
	background: var( --nr-primary );
	color: #fff;
}

.nr-card__body {
	padding-top: 16px;
	text-align: left;
}

.nr-card--overlay .nr-card__body {
	position: absolute;
	inset: auto 0 0 0;
	padding: 20px 18px;
	background: linear-gradient( to top, rgba( 0, 0, 0, 0.75 ), transparent );
	color: #fff;
}

.nr-card--overlay .nr-card__title a,
.nr-card--overlay .nr-card__price {
	color: #fff;
}

.nr-card__title {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.35;
}

.nr-card__rating {
	margin-bottom: 6px;
}

.nr-card__price,
.nr-card__price .price {
	font-size: 0.95rem;
	font-weight: 600;
	color: var( --nr-heading );
}

.nr-card__price del,
.price del {
	margin-right: 7px;
	color: var( --nr-muted );
	font-weight: 400;
	text-decoration: line-through;
}

.nr-card__price ins,
.price ins {
	text-decoration: none;
	color: var( --nr-sale );
}

/* Stars */

.nr-stars {
	position: relative;
	display: inline-flex;
	vertical-align: middle;
	line-height: 1;
}

.nr-stars__base,
.nr-stars__fill {
	display: flex;
	gap: 2px;
}

.nr-stars__base {
	color: var( --nr-border-strong );
}

.nr-stars__fill {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: var( --nr-star );
}

.nr-stars__count {
	margin-left: 7px;
	font-size: 0.78rem;
	color: var( --nr-muted );
}

/* Wishlist button */

.nr-wishlist-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	color: var( --nr-heading );
	transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.nr-wishlist-btn--floating {
	border-radius: 999px;
}

.nr-wishlist-btn--inline,
.nr-wishlist-btn--outline {
	padding: 12px 20px;
	border: 1px solid var( --nr-border-strong );
	border-radius: var( --nr-radius-button );
	font-size: 0.85rem;
}

.nr-wishlist-btn__icon {
	position: relative;
	display: inline-flex;
	width: 1em;
	height: 1em;
	line-height: 0;
}

.nr-wishlist-btn__icon svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.nr-wishlist-btn__fill {
	opacity: 0;
	transform: scale( 0.6 );
	color: var( --nr-wishlist-active );
}

.nr-wishlist-btn.is-saved .nr-wishlist-btn__outline {
	opacity: 0;
}

.nr-wishlist-btn.is-saved .nr-wishlist-btn__fill {
	opacity: 1;
	transform: scale( 1 );
}

.nr-wishlist-btn.is-saved {
	color: var( --nr-wishlist-active );
	border-color: var( --nr-wishlist-active );
}

.nr-wishlist-btn:hover {
	color: var( --nr-wishlist-active );
}

.nr-wishlist-btn.is-busy {
	opacity: 0.6;
	pointer-events: none;
}

/* Wishlist button sizing inside the icon wrapper */
.nr-wishlist-btn--floating .nr-wishlist-btn__icon {
	width: 18px;
	height: 18px;
}

.nr-wishlist-btn--inline .nr-wishlist-btn__icon,
.nr-wishlist-btn--outline .nr-wishlist-btn__icon {
	width: 18px;
	height: 18px;
}

/* --------------------------------------------------------- 6. Wishlist */

.nr-page--wishlist {
	padding-bottom: var( --nr-section-gap );
}

.nr-wishlist__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	padding-block: 16px 28px;
	border-bottom: 1px solid var( --nr-border );
}

.nr-wishlist__title {
	margin: 0;
}

.nr-wishlist__count {
	margin: 6px 0 0;
	color: var( --nr-muted );
	font-size: 0.9rem;
}

.nr-wishlist__actions {
	display: flex;
	gap: 10px;
}

.nr-wishlist__notice {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0 0;
	padding: 14px 18px;
	border-radius: var( --nr-radius );
	background: rgba( var( --nr-accent-rgb ), 0.12 );
	font-size: 0.88rem;
}

.nr-wishlist__grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 260px, 1fr ) );
	gap: 28px;
	padding-top: 32px;
}

.nr-wishlist__item {
	display: flex;
	flex-direction: column;
	background: var( --nr-surface );
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
	overflow: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.nr-wishlist__item.is-removing {
	opacity: 0;
	transform: scale( 0.96 );
}

.nr-wishlist__media {
	position: relative;
	display: block;
	aspect-ratio: var( --nr-card-ratio );
	overflow: hidden;
}

.nr-wishlist__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nr-wishlist__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px;
}

.nr-wishlist__name {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
}

.nr-wishlist__price {
	font-weight: 600;
	color: var( --nr-heading );
}

.nr-wishlist__stock {
	margin: 0;
	font-size: 0.8rem;
}

.nr-wishlist__stock.is-in {
	color: var( --nr-success );
}

.nr-wishlist__stock.is-out {
	color: var( --nr-muted );
}

.nr-wishlist__buttons {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.nr-wishlist__buttons .nr-button--cart {
	flex: 1;
	position: static;
	opacity: 1;
	transform: none;
}

.nr-wishlist__remove {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.78rem;
	color: var( --nr-muted );
	white-space: nowrap;
}

.nr-wishlist__remove:hover {
	color: var( --nr-error );
}

/* --------------------------------------------------- 7. Single product */

.nr-single {
	padding-bottom: var( --nr-section-gap );
}

.nr-product__top {
	display: grid;
	grid-template-columns: minmax( 0, 1.1fr ) minmax( 0, 0.9fr );
	gap: clamp( 24px, 4vw, 72px );
	align-items: start;
	padding-block: 16px 56px;
}

.nr-product__summary {
	position: sticky;
	top: 110px;
}

.nr-gallery {
	position: relative;
	display: grid;
	gap: 14px;
}

.nr-gallery--thumbs-left {
	grid-template-columns: 88px minmax( 0, 1fr );
}

.nr-gallery--thumbs-below {
	grid-template-rows: auto auto;
}

.nr-gallery--thumbs-left .nr-gallery__thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 620px;
	overflow-y: auto;
}

.nr-gallery--thumbs-below .nr-gallery__thumbs {
	order: 2;
	display: grid;
	grid-template-columns: repeat( 5, minmax( 0, 1fr ) );
	gap: 10px;
}

.nr-gallery__thumb {
	overflow: hidden;
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius-sm );
	aspect-ratio: 1 / 1;
	transition: border-color 0.18s ease, opacity 0.18s ease;
	opacity: 0.7;
}

.nr-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nr-gallery__thumb.is-active,
.nr-gallery__thumb:hover {
	border-color: var( --nr-heading );
	opacity: 1;
}

.nr-gallery__stage {
	position: relative;
	overflow: hidden;
	border-radius: var( --nr-radius );
	background: var( --nr-surface );
}

.nr-gallery--stacked .nr-gallery__stage {
	display: grid;
	gap: 14px;
	overflow: visible;
}

.nr-gallery__slide {
	margin: 0;
	display: none;
}

.nr-gallery__slide.is-active,
.nr-gallery--stacked .nr-gallery__slide {
	display: block;
}

.nr-gallery__open {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: var( --nr-radius );
	cursor: zoom-in;
}

.nr-gallery__image {
	width: 100%;
	transition: transform 0.4s ease;
}

.nr-gallery__image.is-zoomed {
	transform: scale( 1.8 );
}

.nr-gallery__zoomhint {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba( var( --nr-surface-rgb ), 0.9 );
	color: var( --nr-heading );
	opacity: 0;
	transition: opacity 0.2s ease;
}

.nr-gallery__open:hover .nr-gallery__zoomhint {
	opacity: 1;
}

.nr-gallery__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	transform: translateY( -50% );
	border-radius: 999px;
	background: rgba( var( --nr-surface-rgb ), 0.92 );
	color: var( --nr-heading );
	box-shadow: var( --nr-shadow );
	opacity: 0;
	transition: opacity 0.2s ease;
}

.nr-gallery:hover .nr-gallery__arrow {
	opacity: 1;
}

.nr-gallery__arrow--prev {
	left: 14px;
}

.nr-gallery__arrow--next {
	right: 14px;
}

.nr-gallery--stacked .nr-gallery__arrow {
	display: none;
}

/* Summary column */

.nr-product__summary .product_title {
	margin-bottom: 12px;
}

.nr-product__summary .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.85rem;
}

.nr-product__summary .price {
	display: block;
	margin-bottom: 18px;
	font-family: var( --nr-font-heading );
	font-size: 1.6rem;
	color: var( --nr-heading );
}

.woocommerce-product-details__short-description {
	margin-bottom: 24px;
	color: var( --nr-text );
}

.nr-product__summary form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.nr-product__summary form.variations_form {
	display: block;
}

.single_add_to_cart_button {
	flex: 1;
	min-width: 200px;
	padding: 16px 30px;
	background: var( --nr-primary );
	color: #fff;
	font-size: 0.95rem;
}

.single_add_to_cart_button:hover {
	background: var( --nr-primary-dark );
}

.nr-qty {
	display: inline-flex;
	align-items: center;
	flex: none;
	border: 1px solid var( --nr-border-strong );
	border-radius: var( --nr-radius-button );
	overflow: hidden;
}

.nr-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 48px;
	color: var( --nr-heading );
	transition: background 0.16s ease;
}

.nr-qty__btn:hover {
	background: rgba( var( --nr-primary-rgb ), 0.08 );
}

.nr-qty__input {
	width: 52px;
	height: 48px;
	padding: 0;
	border: 0;
	border-inline: 1px solid var( --nr-border );
	border-radius: 0;
	text-align: center;
	-moz-appearance: textfield;
}

.nr-qty__input::-webkit-outer-spin-button,
.nr-qty__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.nr-single__wishlist {
	margin-bottom: 20px;
}

.nr-single__wishlist .nr-wishlist-btn {
	width: 100%;
}

.nr-trust {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 24px 0;
	padding: 20px;
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
	background: var( --nr-surface );
}

.nr-trust__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.85rem;
	color: var( --nr-text );
}

.nr-trust__item svg {
	flex: none;
	color: var( --nr-primary );
}

.product_meta {
	padding-top: 18px;
	border-top: 1px solid var( --nr-border );
	font-size: 0.83rem;
	color: var( --nr-muted );
}

.product_meta > span {
	display: block;
	margin-bottom: 5px;
}

.nr-share {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
}

.nr-share__label {
	font-size: 0.8rem;
	color: var( --nr-muted );
}

.nr-share__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var( --nr-border );
	border-radius: 999px;
	color: var( --nr-muted );
}

.nr-share__link:hover {
	border-color: var( --nr-primary );
	color: var( --nr-primary );
}

/* Tabs */

.woocommerce-tabs {
	padding-block: 24px 56px;
	border-top: 1px solid var( --nr-border );
}

.woocommerce-tabs .wc-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 32px;
	border-bottom: 1px solid var( --nr-border );
}

.woocommerce-tabs .wc-tabs li a {
	display: block;
	padding: 16px 22px;
	font-size: 0.92rem;
	font-weight: 500;
	color: var( --nr-muted );
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}

.woocommerce-tabs .wc-tabs li.active a {
	color: var( --nr-heading );
	border-bottom-color: var( --nr-primary );
}

.woocommerce-Tabs-panel {
	max-width: 80ch;
}

.woocommerce-Tabs-panel--reviews {
	max-width: none;
}

/* Sticky add to basket */

.nr-stickybar {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 95;
	background: var( --nr-surface );
	border-top: 1px solid var( --nr-border );
	box-shadow: 0 -4px 20px rgba( 0, 0, 0, 0.07 );
	transform: translateY( 100% );
	transition: transform 0.3s ease;
}

.nr-stickybar.is-visible {
	transform: translateY( 0 );
}

.nr-stickybar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 12px;
}

.nr-stickybar__product {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.nr-stickybar__image {
	width: 52px;
	height: 52px;
	border-radius: var( --nr-radius-sm );
	object-fit: cover;
}

.nr-stickybar__title {
	margin: 0;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 40ch;
}

.nr-stickybar__price {
	font-size: 0.9rem;
	color: var( --nr-muted );
}

.nr-stickybar__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: none;
}

/* Editorial product page — Figma 781:3388 "product-hero-section".

   The section is a tinted, top-rounded slab holding two columns: a gallery
   that runs the height of the page and a 480px summary panel. Measurements
   below are the frame's own — 20px slab padding, 8px between gallery images,
   20px between the columns, 32px between summary groups. */

.nr-product--editorial {
	background: var( --nr-pdp-bg );
	border-radius: 20px 20px 0 0;
	padding: 20px 20px 60px;
}

.nr-gallery--editorial .nr-badges {
	right: 12px;
	left: auto;
	align-items: flex-end;
}

.nr-product--editorial .nr-product__top {
	grid-template-columns: minmax( 0, 1fr ) 480px;
	gap: 20px;
	padding-block: 0;
}

.nr-product--editorial .nr-product__summary {
	display: flex;
	flex-direction: column;
	gap: 32px;
	top: 96px;
}

/* Gallery: lead image sticks, the rest scroll past it */

.nr-gallery--editorial {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.nr-gallery__lead,
.nr-gallery__flow {
	flex: 1 1 0;
	min-width: 0;
}

.nr-gallery__lead {
	position: sticky;
	top: 20px;
}

.nr-gallery__flow {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* A product with one image has no second column, so the lead takes the slab. */
.nr-gallery--editorial.nr-gallery--single .nr-gallery__lead {
	position: static;
	flex-basis: 100%;
}

.nr-gallery--editorial .nr-gallery__slide {
	position: relative;
	display: block;
	overflow: hidden;
}

.nr-gallery--editorial .nr-gallery__open {
	display: block;
	height: 100%;
	border-radius: 0;
}

.nr-gallery--editorial .nr-gallery__image {
	display: block;
	width: 100%;
	aspect-ratio: 446 / 700;
	object-fit: cover;
}

/* Flags layered on the gallery */

.nr-pdp__drop {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 6px 12px;
	border-radius: 10px;
	background: linear-gradient(
		118.49deg,
		#c13584 10%,
		#e1306c 34%,
		#f77737 70%,
		#fcaf45 90%
	);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.2;
}

.nr-pdp__hot {
	position: absolute;
	left: 0;
	bottom: 12%;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px;
	border-radius: 0 12px 12px 0;
	background: rgba( 255, 255, 255, 0.2 );
	backdrop-filter: blur( 10px );
	-webkit-backdrop-filter: blur( 10px );
	color: #fff;
}

.nr-pdp__hot svg {
	flex: none;
	width: 24px;
	height: 24px;
}

.nr-pdp__hot-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.2;
}

.nr-pdp__hot-text strong {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.nr-pdp__hot-text span {
	font-size: 12px;
	color: rgba( 255, 255, 255, 0.7 );
}

/* Summary: title block */

.nr-pdp__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 16px;
	border-bottom: 0.8px solid #cfcfcf;
}

.nr-pdp__eyebrow {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: var( --nr-ink );
}

.nr-product--editorial .nr-pdp__title {
	margin: 0;
	font-family: var( --nr-font-body );
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
	color: var( --nr-heading );
}

.nr-product--editorial .nr-pdp__rating {
	gap: 6px;
	margin: 0;
}

.nr-product--editorial .nr-pdp__rating .nr-stars svg {
	width: 20px;
	height: 20px;
}

/* Summary: price */

.nr-pdp__pricebox {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nr-pdp__pricerow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.nr-product--editorial .nr-pdp__price {
	margin: 0;
	font-family: var( --nr-font-body );
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var( --nr-heading );
}

.nr-pdp__compare {
	font-size: 18px;
	color: var( --nr-muted );
	text-decoration: line-through;
}

.nr-pdp__off {
	padding: 4px 10px;
	border-radius: 4px;
	background: #fff0f0;
	color: var( --nr-primary );
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

.nr-pdp__tax {
	margin: 0;
	font-size: 12px;
	color: #666;
}

/* Summary: variation swatches and size tiles.

   The native select is the control until the enhancement script confirms it
   can drive it, so the page keeps working with scripting off rather than
   showing tiles that do nothing. */

.nr-attr__options {
	display: none;
}

.nr-attr.is-enhanced .nr-attr__options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nr-attr.is-enhanced .nr-attr__select {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip-path: inset( 50% );
}

.nr-attr {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nr-attr__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}

.nr-attr__label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var( --nr-ink );
}

.nr-attr__sep {
	margin-inline: 2px;
}

.nr-attr__guide {
	font-size: 13px;
	color: #666;
	text-decoration: underline;
}

.nr-attr__guide:hover {
	color: var( --nr-ink );
}

/* Colour swatch: 30px hit area, 24px dot, ring on the chosen one. */

.nr-attr--swatch .nr-attr__option {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	transition: border-color 0.16s ease;
}

.nr-attr--swatch .nr-attr__option.is-active,
.nr-attr--swatch .nr-attr__option:hover {
	border-color: var( --nr-ink );
}

.nr-attr__dot {
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var( --nr-swatch, var( --nr-border ) );
}

/* Size tile: three to a row, a short last row stretching to fill. */

.nr-attr--tile .nr-attr__option {
	flex: 1 1 calc( 33.333% - 6px );
	min-width: 72px;
	padding: 12px 16px;
	border: 1px solid #eee;
	background: transparent;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	color: var( --nr-ink );
	transition: border-color 0.16s ease, background 0.16s ease;
}

.nr-attr--tile .nr-attr__option:hover {
	border-color: var( --nr-border-strong );
}

.nr-attr--tile .nr-attr__option.is-active {
	border-color: var( --nr-ink );
	background: var( --nr-surface );
}

.nr-attr__option[disabled] {
	opacity: 0.3;
	cursor: not-allowed;
}

.nr-attr--tile .nr-attr__option[disabled]:hover {
	border-color: #eee;
}

/* WooCommerce wraps each attribute in a table row; the swatch block carries
   its own label, so the table is flattened and the label cell dropped. */

.nr-product--editorial table.variations,
.nr-product--editorial table.variations tbody,
.nr-product--editorial table.variations tr,
.nr-product--editorial table.variations td {
	display: block;
	width: auto;
	padding: 0;
	border: 0;
}

.nr-product--editorial table.variations {
	margin: 0;
}

.nr-product--editorial table.variations tbody {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.nr-product--editorial .single_variation_wrap {
	margin-top: 32px;
}

.nr-product--editorial table.variations th.label {
	display: none;
}

.nr-product--editorial .reset_variations {
	font-size: 13px;
	color: #666;
	text-decoration: underline;
}

/* Summary: quantity, basket and wishlist */

.nr-product--editorial form.variations_form {
	display: block;
}

.nr-product--editorial form.cart:not( .variations_form ),
.nr-product--editorial .woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-columns: minmax( 0, 1fr ) 55px;
	align-items: stretch;
	gap: 12px;
	margin: 0;
}

.nr-product--editorial .quantity {
	grid-column: 1 / -1;
	justify-self: start;
	margin-bottom: 20px;
}

.nr-product--editorial .nr-qty {
	gap: 12px;
	padding: 12px 16px;
	border: 1px solid #e4ded4;
	border-radius: 6px;
	background: transparent;
}

.nr-product--editorial .nr-qty__btn {
	width: 24px;
	height: 24px;
	color: var( --nr-heading );
}

.nr-product--editorial .nr-qty__btn:hover {
	background: transparent;
	opacity: 0.6;
}

.nr-product--editorial .nr-qty__btn svg {
	width: 24px;
	height: 24px;
}

.nr-product--editorial .nr-qty__input {
	width: 32px;
	height: auto;
	padding: 0;
	border-inline: 0;
	background: transparent;
	font-size: 16px;
	font-weight: 600;
	color: var( --nr-heading );
}

.nr-product--editorial .single_add_to_cart_button {
	grid-column: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	padding: 16px;
	border-radius: 0;
	background: var( --nr-ink );
	color: var( --nr-button-text );
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.nr-product--editorial .single_add_to_cart_button::after {
	content: "";
	width: 24px;
	height: 24px;
	background: currentColor;
	-webkit-mask: url( "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%205v14M5%2012h14%22%2F%3E%3C%2Fsvg%3E" ) center / 24px 24px no-repeat;
	mask: url( "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%205v14M5%2012h14%22%2F%3E%3C%2Fsvg%3E" ) center / 24px 24px no-repeat;
}

.nr-product--editorial .single_add_to_cart_button:hover {
	background: var( --nr-button-hover );
}

.nr-product--editorial .single_add_to_cart_button.disabled {
	opacity: 0.4;
}

.nr-pdp__wishlist {
	grid-column: 2;
	display: flex;
}

.nr-pdp__wishlist .nr-wishlist-btn {
	width: 55px;
	height: 100%;
	border: 1px solid #eee;
	border-radius: 0;
	background: transparent;
	color: var( --nr-ink );
}

.nr-pdp__wishlist .nr-wishlist-btn:hover {
	border-color: var( --nr-ink );
}

.nr-pdp__wishlist .nr-wishlist-btn.is-active {
	color: var( --nr-wishlist-active );
}

.nr-pdp__wishlist .nr-wishlist-btn svg {
	width: 21px;
	height: 21px;
}

/* A sibling of the form, so it lands on the column's 32px rhythm; the
   design sits it 16px under the actions. */
.nr-pdp__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: -16px 0 0;
	padding-block: 6px;
	background: var( --nr-surface );
	font-size: 11px;
	color: var( --nr-ink );
}

.nr-pdp__secure svg {
	flex: none;
	width: 12px;
	height: 12px;
}

/* Summary: accordions */

.nr-pdp__accordions {
	display: flex;
	flex-direction: column;
}

.nr-acc {
	border-bottom: 1px solid #eaeaea;
}

.nr-acc__heading {
	margin: 0;
}

.nr-acc__toggle {
	transition: opacity 0.16s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding-block: 16px;
	font-family: var( --nr-font-body );
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	text-transform: uppercase;
	color: var( --nr-ink );
}

.nr-acc__toggle:hover {
	opacity: 0.7;
}

.nr-acc__icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 16px;
	height: 16px;
}

.nr-acc__icon svg {
	grid-area: 1 / 1;
	width: 16px;
	height: 16px;
}

.nr-acc__toggle[aria-expanded="true"] .nr-acc__icon svg:last-child,
.nr-acc__toggle[aria-expanded="false"] .nr-acc__icon svg:first-child {
	display: none;
}

.nr-acc__body {
	padding-bottom: 16px;
	font-size: 14px;
	line-height: 1.5;
	color: #7a7a7a;
}

.nr-acc__body > :first-child {
	margin-top: 0;
	padding-top: 12px;
}

.nr-acc__body > :last-child {
	margin-bottom: 0;
}

/* ---------------------------------------------------------- 8. Reviews */

.nr-reviews__summary {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 40px;
	align-items: center;
	padding: 32px;
	margin-bottom: 36px;
	background: var( --nr-surface );
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
}

.nr-reviews__score {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding-right: 40px;
	border-right: 1px solid var( --nr-border );
}

.nr-reviews__average {
	font-family: var( --nr-font-heading );
	font-size: 3rem;
	line-height: 1;
	color: var( --nr-heading );
}

.nr-reviews__total {
	font-size: 0.8rem;
	color: var( --nr-muted );
}

.nr-reviews__bars {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.nr-reviews__bar {
	display: grid;
	grid-template-columns: 62px 1fr 34px;
	gap: 12px;
	align-items: center;
	font-size: 0.8rem;
	color: var( --nr-muted );
}

.nr-reviews__bar-track {
	height: 7px;
	border-radius: 999px;
	background: var( --nr-border );
	overflow: hidden;
}

.nr-reviews__bar-fill {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: var( --nr-star );
}

.nr-reviews__bar-count {
	text-align: right;
}

.nr-reviews__gallery {
	margin-bottom: 40px;
}

.nr-reviews__gallery-title,
.nr-reviews__list-title,
.nr-reviews__form-title {
	margin-bottom: 16px;
	font-size: 1.05rem;
}

.nr-reviews__gallery-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 108px, 1fr ) );
	gap: 10px;
}

.nr-reviews__gallery-item button {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var( --nr-radius-sm );
	cursor: zoom-in;
}

.nr-reviews__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.nr-reviews__gallery-item button:hover img {
	transform: scale( 1.06 );
}

.nr-reviews__gallery-more {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba( 0, 0, 0, 0.58 );
	color: #fff;
	font-family: var( --nr-font-heading );
	font-size: 1.3rem;
}

.nr-reviews__items {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nr-review {
	padding: 24px 0;
	border-bottom: 1px solid var( --nr-border );
	transition: background 0.4s ease;
}

.nr-review.is-highlighted {
	background: rgba( var( --nr-accent-rgb ), 0.14 );
	border-radius: var( --nr-radius );
	padding-inline: 18px;
}

.nr-review__head {
	display: flex;
	gap: 14px;
	margin-bottom: 12px;
}

.nr-review__avatar img {
	border-radius: 999px;
}

.nr-review__author {
	margin: 0 0 4px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: var( --nr-heading );
}

.nr-review__verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba( 63, 125, 91, 0.12 );
	color: var( --nr-success );
	font-size: 0.7rem;
	font-weight: 500;
}

.nr-review__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.8rem;
	color: var( --nr-muted );
}

.nr-review__body {
	padding-left: 62px;
}

.nr-review__pending {
	font-style: italic;
	color: var( --nr-muted );
}

.nr-review__photos {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.nr-review__photo button {
	display: block;
	width: 84px;
	height: 84px;
	overflow: hidden;
	border-radius: var( --nr-radius-sm );
	cursor: zoom-in;
}

.nr-review__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.nr-review__photo button:hover img {
	transform: scale( 1.08 );
}

.nr-reviews__form {
	margin-top: 44px;
	padding: 32px;
	background: var( --nr-surface );
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
}

.nr-reviews__form .comment-form {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 18px;
}

.nr-reviews__form .comment-form-comment,
.nr-reviews__form .comment-form-photos,
.nr-reviews__form .form-submit,
.nr-reviews__form .comment-form-cookies-consent {
	grid-column: 1 / -1;
}

.nr-rating-input {
	grid-column: 1 / -1;
}

.nr-rating-input select {
	max-width: 260px;
}

.nr-reviews__form .form-submit {
	margin: 0;
}

/* Photo uploader */

.nr-review-upload__hint {
	display: block;
	margin-top: 3px;
	font-size: 0.78rem;
	font-weight: 400;
	color: var( --nr-muted );
}

.nr-review-upload__field {
	position: relative;
	display: inline-flex;
}

.nr-review-upload__field input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.nr-review-upload__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border: 1px dashed var( --nr-border-strong );
	border-radius: var( --nr-radius-button );
	color: var( --nr-muted );
	font-size: 0.85rem;
	transition: border-color 0.18s ease, color 0.18s ease;
}

.nr-review-upload__field:hover .nr-review-upload__button {
	border-color: var( --nr-primary );
	color: var( --nr-primary );
}

.nr-review-upload__preview {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 14px;
}

.nr-review-upload__thumb {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 96px;
}

.nr-review-upload__thumb img {
	width: 96px;
	height: 96px;
	object-fit: cover;
	border-radius: var( --nr-radius-sm );
	border: 1px solid var( --nr-border );
}

.nr-review-upload__name {
	font-size: 0.7rem;
	color: var( --nr-muted );
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nr-review-upload__error {
	margin: 10px 0 0;
	color: var( --nr-error );
	font-size: 0.83rem;
}

.nr-review-upload.has-error .nr-review-upload__button {
	border-color: var( --nr-error );
	color: var( --nr-error );
}

.nr-reviews__gate,
.nr-reviews__empty {
	padding: 20px;
	border-radius: var( --nr-radius );
	background: var( --nr-surface );
	color: var( --nr-muted );
}

/* -------------------------------------------------------- 9. Quick view */

.nr-quickview__panel {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min( 900px, 92vw );
	max-height: 88vh;
	overflow-y: auto;
	transform: translate( -50%, -48% );
	background: var( --nr-surface );
	border-radius: var( --nr-radius );
	box-shadow: var( --nr-shadow-lift );
	opacity: 0;
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.nr-quickview.is-open .nr-quickview__panel {
	opacity: 1;
	transform: translate( -50%, -50% );
}

.nr-quickview__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	font-size: 1.4rem;
	line-height: 1;
}

.nr-quickview__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	padding: 32px;
}

.nr-quickview__media {
	position: relative;
	aspect-ratio: var( --nr-card-ratio );
	overflow: hidden;
	border-radius: var( --nr-radius-sm );
}

.nr-quickview__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
}

.nr-quickview__image.is-active {
	opacity: 1;
}

.nr-quickview__price {
	margin-block: 12px;
	font-size: 1.3rem;
	font-weight: 600;
	color: var( --nr-heading );
}

.nr-quickview__actions {
	margin-top: 20px;
}

.nr-quickview__actions .nr-button {
	width: 100%;
}

.nr-quickview__full {
	display: inline-block;
	margin-top: 14px;
	font-size: 0.85rem;
	text-decoration: underline;
	color: var( --nr-muted );
}

.nr-quickview__loading {
	grid-column: 1 / -1;
	padding: 60px;
	text-align: center;
	color: var( --nr-muted );
}

/* ------------------------------------------------------------ 10. Basket */

.nr-steps {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-block: 28px;
	font-size: 0.85rem;
}

.nr-steps__item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var( --nr-muted );
}

.nr-steps__item + .nr-steps__item::before {
	content: "";
	width: clamp( 20px, 6vw, 70px );
	height: 1px;
	background: var( --nr-border-strong );
	margin-right: 8px;
}

.nr-steps__marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 1px solid var( --nr-border-strong );
	border-radius: 999px;
	font-size: 0.75rem;
}

.nr-steps__item.is-current {
	color: var( --nr-heading );
	font-weight: 600;
}

.nr-steps__item.is-current .nr-steps__marker {
	background: var( --nr-heading );
	border-color: var( --nr-heading );
	color: var( --nr-surface );
}

.nr-steps__item.is-done {
	color: var( --nr-success );
}

.nr-steps__item.is-done .nr-steps__marker {
	background: var( --nr-success );
	border-color: var( --nr-success );
	color: #fff;
}

.nr-cart {
	padding-bottom: var( --nr-section-gap );
}

.nr-cart__head,
.nr-cart__row {
	display: grid;
	grid-template-columns: minmax( 0, 1fr ) 160px 120px;
	gap: 20px;
	align-items: center;
}

.nr-cart__head {
	padding-bottom: 12px;
	border-bottom: 1px solid var( --nr-border );
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var( --nr-muted );
}

.nr-cart__head span:nth-child( 2 ),
.nr-cart__head span:nth-child( 3 ) {
	text-align: center;
}

.nr-cart__row {
	padding-block: 22px;
	border-bottom: 1px solid var( --nr-border );
}

.nr-cart__product {
	display: flex;
	gap: 18px;
	min-width: 0;
}

.nr-cart__thumb img {
	width: 96px;
	height: 120px;
	object-fit: cover;
	border-radius: var( --nr-radius-sm );
}

.nr-cart__name {
	margin: 0 0 4px;
	font-size: 1rem;
	font-weight: 500;
}

.nr-cart__meta,
.nr-cart__unit {
	font-size: 0.82rem;
	color: var( --nr-muted );
}

.nr-cart__remove {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	font-size: 0.78rem;
	color: var( --nr-muted );
}

.nr-cart__remove:hover {
	color: var( --nr-error );
}

.nr-cart__qty {
	display: flex;
	justify-content: center;
}

.nr-cart__subtotal {
	text-align: center;
	font-weight: 600;
	color: var( --nr-heading );
}

.nr-cart__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 22px;
}

.nr-cart__coupon {
	display: flex;
	gap: 10px;
	max-width: 380px;
	flex: 1;
}

.nr-cart__collaterals {
	display: grid;
	grid-template-columns: minmax( 0, 1fr ) 400px;
	gap: 48px;
	align-items: start;
	padding-top: 24px;
}

.cart_totals {
	padding: 28px;
	background: var( --nr-surface );
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
}

.cart_totals h2 {
	margin-top: 0;
	font-size: 1.15rem;
}

.cart_totals table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 18px;
}

.cart_totals th,
.cart_totals td {
	padding: 11px 0;
	border-bottom: 1px solid var( --nr-border );
	font-size: 0.9rem;
	text-align: left;
}

.cart_totals td {
	text-align: right;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
	border-bottom: 0;
	padding-top: 16px;
	font-size: 1.1rem;
	font-weight: 600;
	color: var( --nr-heading );
}

.wc-proceed-to-checkout .checkout-button {
	display: flex;
	width: 100%;
	background: var( --nr-primary );
	color: #fff;
	padding: 16px;
}

.cross-sells {
	grid-column: 1 / -1;
}

/* ---------------------------------------------------------- 11. Checkout */

.nr-checkout {
	padding-bottom: var( --nr-section-gap );
}

.woocommerce-cart .nr-page__content {
	max-width: none;
}

.woocommerce-checkout .nr-page__content {
	max-width: none;
}

.nr-checkout__grid {
	display: grid;
	grid-template-columns: minmax( 0, 1.3fr ) minmax( 360px, 0.9fr );
	gap: clamp( 28px, 4vw, 64px );
	align-items: start;
}

.nr-checkout-stacked .nr-checkout__grid {
	grid-template-columns: minmax( 0, 1fr );
	max-width: 780px;
	margin-inline: auto;
}

.nr-checkout__panel {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.nr-checkout__section h3 {
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var( --nr-border );
	font-size: 1.1rem;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 16px;
}

.form-row {
	margin: 0;
	display: flex;
	flex-direction: column;
}

.form-row-wide,
#billing_address_1_field,
#billing_address_2_field,
#shipping_address_1_field,
#shipping_address_2_field,
.woocommerce-additional-fields .form-row,
#order_comments_field {
	grid-column: 1 / -1;
}

.form-row label {
	margin-bottom: 6px;
}

.select2-container .select2-selection--single {
	height: 48px;
	border-color: var( --nr-border );
	border-radius: var( --nr-radius-button );
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 46px;
	padding-left: 16px;
	color: var( --nr-heading );
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 46px;
}

.nr-checkout__section--shipping .shipping_address {
	display: none;
}

.nr-checkout__section--shipping.is-expanded .shipping_address {
	display: block;
	padding-top: 20px;
}

#ship-to-different-address {
	font-size: 1rem;
}

#ship-to-different-address label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	cursor: pointer;
}

.nr-checkout__aside.is-sticky {
	position: sticky;
	top: 110px;
}

.nr-checkout__summary {
	padding: 28px;
	background: var( --nr-surface );
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
}

.nr-checkout__summary-title {
	margin: 0 0 18px;
	font-size: 1.15rem;
}

.woocommerce-checkout-review-order-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table thead {
	display: none;
}

.woocommerce-checkout-review-order-table td {
	padding: 11px 0;
	border-bottom: 1px solid var( --nr-border );
	font-size: 0.9rem;
	vertical-align: top;
}

.woocommerce-checkout-review-order-table .product-name {
	width: 68%;
	min-width: 0;
	overflow-wrap: break-word;
}

.woocommerce-checkout-review-order-table .nr-checkout-item__image {
	display: inline-block;
	width: 56px;
	height: 70px;
	margin-right: 10px;
	vertical-align: top;
}

.woocommerce-checkout-review-order-table .nr-checkout-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var( --nr-radius-sm );
}

.woocommerce-checkout-review-order-table .product-total {
	width: 32%;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
	white-space: nowrap;
}

.woocommerce-checkout-review-order-table tfoot th {
	padding: 11px 0;
	border-bottom: 1px solid var( --nr-border );
	font-size: 0.9rem;
	font-weight: 400;
	text-align: left;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	padding-top: 16px;
	border-bottom: 0;
	font-size: 1.15rem;
	font-weight: 600;
	color: var( --nr-heading );
}

.nr-coupon {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var( --nr-border );
}

.nr-coupon__toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	font-size: 0.88rem;
	color: var( --nr-heading );
}

.nr-coupon__toggle svg:last-child {
	margin-left: auto;
	transition: transform 0.2s ease;
}

.nr-coupon__toggle[aria-expanded="true"] svg:last-child {
	transform: rotate( 180deg );
}

.nr-coupon__form {
	display: flex;
	gap: 10px;
	margin-top: 14px;
}

.nr-coupon__form input {
	flex: 1;
}

#payment {
	background: transparent;
}

#payment ul.payment_methods {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin-bottom: 20px;
	border: 0;
}

#payment ul.payment_methods li {
	padding: 16px;
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
	transition: border-color 0.18s ease, background 0.18s ease;
}

#payment ul.payment_methods li:has( input:checked ) {
	border-color: var( --nr-primary );
	background: rgba( var( --nr-primary-rgb ), 0.04 );
}

#payment ul.payment_methods li label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 0.92rem;
	cursor: pointer;
}

#payment .payment_box {
	margin-top: 12px;
	padding: 14px;
	border-radius: var( --nr-radius-sm );
	background: var( --nr-bg );
	font-size: 0.85rem;
	color: var( --nr-muted );
}

#place_order {
	width: 100%;
	padding: 17px;
	background: var( --nr-primary );
	color: #fff;
	font-size: 1rem;
}

#place_order:hover {
	background: var( --nr-primary-dark );
}

.nr-checkout__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 14px 0 0;
	font-size: 0.78rem;
	color: var( --nr-muted );
}

.nr-checkout__back {
	margin: 20px 0 0;
	text-align: center;
	font-size: 0.85rem;
}

.nr-checkout__back a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var( --nr-muted );
}

.woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 16px;
	font-size: 0.82rem;
	color: var( --nr-muted );
}

.nr-focus-mode .nr-header__inner {
	min-height: 68px;
}

/* -------------------------------------------------------- 12. Notices */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 24px;
	padding: 16px 20px;
	border-radius: var( --nr-radius );
	border-left: 3px solid var( --nr-primary );
	background: var( --nr-surface );
	font-size: 0.9rem;
	list-style: none;
}

.woocommerce-message {
	border-left-color: var( --nr-success );
}

.woocommerce-error {
	border-left-color: var( --nr-error );
	flex-direction: column;
	align-items: flex-start;
}

.woocommerce-message .button,
.woocommerce-info .button {
	margin-left: auto;
	padding: 9px 18px;
	font-size: 0.82rem;
}

/* Mini cart */

.nr-minicart__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	padding: 20px 24px;
}

.woocommerce-mini-cart {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* WooCommerce emits four children here once a product has variations —
   the remove link, one anchor holding the thumbnail and the name, a
   dl.variation, then the quantity — so a three-column grid drops the price
   onto its own row under the remove link. The row is laid out as a block with
   the remove link taken out of flow, and the anchor supplies its own two
   columns, which holds for two children or four. */

.woocommerce-mini-cart-item {
	position: relative;
	padding: 14px 26px 14px 0;
	border-bottom: 1px solid var( --nr-border );
}

.woocommerce-mini-cart-item > a:not( .remove ) {
	display: grid;
	grid-template-columns: 64px minmax( 0, 1fr );
	gap: 14px;
	align-items: start;
	font-size: 0.92rem;
	font-weight: 500;
	color: var( --nr-heading );
}

.woocommerce-mini-cart-item img {
	width: 64px;
	height: 80px;
	object-fit: cover;
	border-radius: var( --nr-radius-sm );
}

.woocommerce-mini-cart-item .variation,
.woocommerce-mini-cart-item .quantity {
	margin: 4px 0 0 78px;
	font-size: 0.82rem;
	color: var( --nr-muted );
}

.woocommerce-mini-cart-item .variation {
	display: flex;
	flex-wrap: wrap;
	gap: 0 6px;
}

.woocommerce-mini-cart-item .variation dt,
.woocommerce-mini-cart-item .variation dd,
.woocommerce-mini-cart-item .variation p {
	margin: 0;
	font-weight: 400;
}

.woocommerce-mini-cart-item .variation dd {
	margin-right: 8px;
}

.woocommerce-mini-cart-item .quantity {
	display: block;
}

.woocommerce-mini-cart-item .remove {
	position: absolute;
	top: 14px;
	right: 0;
	font-size: 1.2rem;
	line-height: 1;
	color: var( --nr-muted );
}

.woocommerce-mini-cart-item .remove:hover {
	color: var( --nr-error );
}

.woocommerce-mini-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 18px;
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: var( --nr-heading );
}

.woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0;
}

.woocommerce-mini-cart__buttons .button {
	width: 100%;
}

.woocommerce-mini-cart__buttons .checkout {
	background: var( --nr-primary );
	color: #fff;
}

.woocommerce-mini-cart__empty-message {
	padding-block: 40px;
	text-align: center;
	color: var( --nr-muted );
}

/* Related and upsells */

.related.products,
.upsells.products,
.cross-sells {
	padding-top: 48px;
	border-top: 1px solid var( --nr-border );
}

.related.products > h2,
.upsells.products > h2,
.cross-sells > h2 {
	margin-bottom: 28px;
	font-size: var( --nr-h3 );
}

.related.products .products,
.upsells.products .products,
.cross-sells .products {
	display: grid;
	grid-template-columns: repeat( var( --nr-cols, 4 ), minmax( 0, 1fr ) );
	gap: clamp( 14px, 1.8vw, 30px );
}

/* My account */

.woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 12px 16px;
	border-radius: var( --nr-radius-sm );
	font-size: 0.92rem;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
	background: rgba( var( --nr-primary-rgb ), 0.08 );
	color: var( --nr-primary );
}

.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 240px minmax( 0, 1fr );
	gap: 48px;
	padding-block: 48px var( --nr-section-gap );
}

.woocommerce-account .woocommerce > .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

/* ------------------------------------------- 13. WooCommerce fallbacks */

/* WooCommerce's own stylesheet is dequeued, and with it the icon font behind
   .star-rating. Anything the plugin or another extension renders with that
   markup is rebuilt here from plain characters. */
.star-rating {
	position: relative;
	overflow: hidden;
	width: 5.4em;
	height: 1.1em;
	line-height: 1.1;
	font-size: 0.95em;
	letter-spacing: 0.08em;
}

.star-rating::before {
	content: "\2605\2605\2605\2605\2605";
	position: absolute;
	top: 0;
	left: 0;
	color: var( --nr-border-strong );
}

.star-rating span {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	padding-top: 1.6em;
}

.star-rating span::before {
	content: "\2605\2605\2605\2605\2605";
	position: absolute;
	top: 0;
	left: 0;
	color: var( --nr-star );
}

.woocommerce-product-rating .woocommerce-review-link {
	color: var( --nr-muted );
}

/* Order confirmation and account tables. */
.woocommerce-order,
.woocommerce-MyAccount-content {
	padding-block: 8px;
}

.woocommerce-thankyou-order-received {
	margin-bottom: 24px;
	font-family: var( --nr-font-heading );
	font-size: var( --nr-h3 );
	color: var( --nr-heading );
}

.woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	margin: 0 0 32px;
	padding: 24px;
	background: var( --nr-surface );
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
}

.woocommerce-order-overview li {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 1rem;
	font-weight: 600;
	color: var( --nr-heading );
}

.woocommerce-order-overview li strong {
	order: 2;
}

.woocommerce-table,
.woocommerce-orders-table,
.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 28px;
	font-size: 0.9rem;
}

.woocommerce-table th,
.woocommerce-orders-table th,
.shop_table th {
	padding: 12px 10px;
	border-bottom: 1px solid var( --nr-border-strong );
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: left;
	color: var( --nr-muted );
}

.woocommerce-table td,
.woocommerce-orders-table td,
.shop_table td {
	padding: 14px 10px;
	border-bottom: 1px solid var( --nr-border );
	vertical-align: top;
}

.woocommerce-table tfoot th {
	border-bottom: 1px solid var( --nr-border );
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.9rem;
	color: var( --nr-heading );
}

/* Account and login forms. */
.woocommerce-form-login,
.woocommerce-form-register,
.woocommerce-ResetPassword,
.woocommerce-EditAccountForm,
.woocommerce-address-fields {
	max-width: 520px;
	padding: 28px;
	background: var( --nr-surface );
	border: 1px solid var( --nr-border );
	border-radius: var( --nr-radius );
}

.woocommerce-form-login .form-row,
.woocommerce-form-register .form-row,
.woocommerce-EditAccountForm .form-row {
	margin-bottom: 16px;
}

.woocommerce-form-login__rememberme,
.woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
}

.woocommerce-form-login__rememberme input,
.woocommerce-form__label-for-checkbox input {
	width: auto;
}

.woocommerce-privacy-policy-text {
	font-size: 0.82rem;
	color: var( --nr-muted );
}

.password-input {
	position: relative;
	display: block;
}

.show-password-input {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY( -50% );
	cursor: pointer;
	color: var( --nr-muted );
}

.woocommerce-password-strength {
	margin-top: 6px;
	padding: 6px 10px;
	border-radius: var( --nr-radius-sm );
	font-size: 0.78rem;
	background: var( --nr-bg );
}

.woocommerce-password-strength.strong {
	color: var( --nr-success );
}

.woocommerce-password-strength.bad,
.woocommerce-password-strength.short {
	color: var( --nr-error );
}

/* Variations. */
.variations {
	width: 100%;
	margin-bottom: 18px;
	border-collapse: collapse;
}

.variations th,
.variations td {
	padding: 6px 0;
	text-align: left;
	vertical-align: middle;
}

.variations .label {
	width: 110px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var( --nr-heading );
}

.reset_variations {
	display: inline-block;
	margin-top: 6px;
	font-size: 0.8rem;
	color: var( --nr-muted );
	text-decoration: underline;
}

.woocommerce-variation-price {
	margin-bottom: 14px;
	font-size: 1.2rem;
	font-weight: 600;
	color: var( --nr-heading );
}

.stock.out-of-stock {
	color: var( --nr-error );
}

.stock.in-stock {
	color: var( --nr-success );
}

/* Utility classes WooCommerce emits. */
.clear {
	clear: both;
}

.woocommerce-breadcrumb {
	margin: 0;
}
