/**
 * Theme Name: Nirvrity Shop Theme
 * Theme URI: http://example.com/nirvrity-shop-theme
 * Author: Your Name
 * Author URI: http://example.com
 * Description: WooCommerce-focused Nirvrity theme variant with only the necessary custom storefront overrides.
 * Version: 1.0.0
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: nirvrity
 */

:root {
	--nir-shop-accent: #b33a28;
	--nir-shop-accent-dark: #722315;
	--nir-shop-surface: #fff8f2;
	--nir-shop-surface-strong: #f5e4d8;
	--nir-shop-ink: #211812;
	--nir-shop-muted: #6f5d53;
	--nir-shop-border: #ead7ca;
	--nir-shop-border-strong: #dcc1ae;
	--nir-shop-shadow: 0 18px 40px rgba(40, 24, 13, 0.08);
	/* Color similar to btn-warning in Bootstrap 5.3 with reddish outline */
	--nir-shop-warning: #ffc107;
	--nir-shop-warning-outline: #b33a28;
	--nir-shop-warning-dark: #d39e00;
	--nir-shop-warning-dark-outline: #722315;
	--nir-shop-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.wp-theme-nirvrity-shop-theme {
	font-family: var(--nir-shop-font-family);
	color: var(--nir-shop-ink);
}

.nir-shop-chrome {
	padding: 0;
	background:
		radial-gradient(circle at top left, rgba(179, 58, 40, 0.08), transparent 22rem),
		linear-gradient(180deg, rgba(255, 248, 242, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.nir-shop-chrome__inner {
	min-height: 100vh;
}

.nir-page-entry__title {
	margin: 0;
	font-size: clamp(2rem, 1.35rem + 1.5vw, 3.5rem);
	line-height: 1.02;
}

.nir-shop-landing {
	padding: 2.5rem 0 0;
	background:
		radial-gradient(circle at top right, rgba(179, 58, 40, 0.08), transparent 24rem),
		linear-gradient(180deg, rgba(255, 248, 242, 0.95) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.nir-shop-section {
	margin-bottom: 3.5rem;
}

.nir-shop-section__header {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.nir-shop-section__eyebrow {
	margin: 0 0 0.35rem;
	color: var(--nir-shop-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.nir-shop-section__title {
	margin: 0;
	color: var(--nir-shop-ink);
	font-size: clamp(1.9rem, 1.2rem + 1.6vw, 3rem);
	line-height: 1.05;
}

.nir-shop-section__description {
	max-width: 32rem;
	margin: 0;
	color: var(--nir-shop-muted);
	font-size: 1rem;
}

.nir-shop-products ul.products {
	margin: 0;
}

.nir-shop-landing ul.products,
.nir-product-loop-shell ul.products,
.nir-single-product__details ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nir-shop-landing ul.products::before,
.nir-shop-landing ul.products::after,
.nir-product-loop-shell ul.products::before,
.nir-product-loop-shell ul.products::after,
.nir-single-product__details ul.products::before,
.nir-single-product__details ul.products::after {
	display: none;
}

.nir-shop-landing ul.products li.product,
.nir-product-loop-shell ul.products li.product,
.nir-single-product__details ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	transition: none;
}

.nir-shop-landing ul.products li.product:hover,
.nir-product-loop-shell ul.products li.product:hover,
.nir-single-product__details ul.products li.product:hover {
	transform: none;
	box-shadow: none;
}

.nir-shop-landing ul.products li.product a,
.nir-product-loop-shell ul.products li.product a,
.nir-single-product__details ul.products li.product a {
	color: var(--nir-shop-ink);
	text-decoration: none;
}

.nir-shop-landing ul.products li.product a img,
.nir-product-loop-shell ul.products li.product a img,
.nir-single-product__details ul.products li.product a img {
	width: 100%;
	margin: 0;
	border-radius: 0;
	object-fit: cover;
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
}

.nir-shop-landing ul.products li.product .woocommerce-loop-product__title,
.nir-product-loop-shell ul.products li.product .woocommerce-loop-product__title,
.nir-single-product__details ul.products li.product .woocommerce-loop-product__title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	line-height: 1.35;
}

.nir-shop-landing ul.products li.product .price,
.nir-product-loop-shell ul.products li.product .price,
.nir-single-product__details ul.products li.product .price {
	display: block;
	margin: 0.25rem 0 0.9rem;
	color: var(--nir-shop-accent-dark);
	font-weight: 700;
}

.nir-shop-landing ul.products li.product .button,
.nir-product-loop-shell ul.products li.product .button,
.nir-single-product__details ul.products li.product .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	background: var(--nir-shop-accent);
	color: #fff;
	font-weight: 700;
	line-height: 1;
}

.nir-product-search {
	flex-grow: 1;
}

.nir-product-search__input {
	color: var(--nir-shop-ink);
}

.nir-product-search__input::placeholder {
	color: var(--nir-shop-muted);
}

.nir-product-card__shell {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nir-product-card__shell:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 42px rgba(40, 24, 13, 0.14);
}

.nir-product-card__link {
	color: var(--nir-shop-ink);
}

.nir-product-card__media {
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
}

.nir-product-card__media .onsale {
	position: absolute;
	top: 0.9rem;
	left: 0.9rem;
	min-width: auto;
	min-height: auto;
	padding: 0.4rem 0.65rem;
	border-radius: 999px;
	background: var(--nir-shop-accent);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	z-index: 1;
}

.nir-product-card__tag {
	background: var(--nir-shop-surface);
	color: var(--nir-shop-accent-dark);
	font-size: 0.75rem;
	letter-spacing: 0.04em;
}

.nir-product-card__excerpt {
	margin: 0 0 0.85rem;
	color: var(--nir-shop-muted);
	font-size: 0.95rem;
	line-height: 1.45;
}

.nir-product-card__pricing {
	margin-top: auto;
}

.nir-product-card__pricing .star-rating {
	margin-bottom: 0.5rem;
	float: none;
}

.nir-product-card__footer .button {
	width: 100%;
	justify-content: center;
}

.nir-shop-home-card,
.nir-best-seller-card,
.nir-shop-banner-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nir-shop-home-card:hover,
.nir-best-seller-card:hover,
.nir-shop-banner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 42px rgba(40, 24, 13, 0.14);
}

.nir-shop-home-card__media,
.nir-best-seller-card__media,
.nir-shop-banner-card__link {
	display: block;
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
}

.nir-shop-home-card__img,
.nir-best-seller-card__img,
.nir-shop-banner-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nir-shop-home-card__img {
	aspect-ratio: 4 / 5;
}

.nir-shop-home-card__title,
.nir-best-seller-card__title {
	line-height: 1.35;
}

.nir-shop-product-rating {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 1.1rem;
	color: var(--nir-shop-muted);
	font-size: 0.9rem;
	line-height: 1;
}

.nir-shop-product-rating .star-rating {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 5.35em;
	height: 1em;
	margin: 0;
	float: none;
	flex: 0 0 auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.07em;
	color: #f4b63d;
	text-indent: -999em;
}

.nir-shop-product-rating .star-rating::before {
	content: "★★★★★";
	position: absolute;
	top: 0;
	left: 0;
	color: rgba(33, 24, 18, 0.18);
	text-indent: 0;
}

.nir-shop-product-rating .star-rating span {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	padding-top: 1.5em;
	height: 0;
	color: #f4b63d;
}

.nir-shop-product-rating .star-rating span::before {
	content: "★★★★★";
	position: absolute;
	top: 0;
	left: 0;
	text-indent: 0;
}

.nir-shop-product-rating__count {
	font-weight: 700;
	white-space: nowrap;
}

.nir-shop-home-card__price,
.nir-best-seller-card__price {
	color: var(--nir-shop-accent-dark);
}

.nir-shop-home-card__price del,
.nir-best-seller-card__price del {
	opacity: 0.6;
}

.nir-shop-home-card__actions .button,
.nir-best-seller-card__actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: var(--nir-shop-accent);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.nir-site-footer {
	background:
		radial-gradient(circle at top right, rgba(42, 90, 62, 0.18), transparent 24rem),
		linear-gradient(180deg, rgb(8, 27, 18) 0%, rgb(0, 13, 7) 100%);
	color: #f6efe8;
	font-size: 0.85rem;
}

.nir-site-footer a {
	color: inherit;
	text-decoration: none;
}

/* .nir-footer-widget,
.nir-footer-brand {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
} */

.nir-footer-widget__title,
.nir-site-footer .widget-title {
	margin: 0 0 1rem;
	color: rgba(246, 239, 232, 0.72);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.nir-site-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.nir-site-footer li + li {
	margin-top: 0.15rem;
}

.nir-site-footer p:last-child,
.nir-site-footer .textwidget p:last-child {
	margin-bottom: 0;
}

.nir-footer-widget a:hover,
.nir-footer-widget a:focus-visible,
.nir-footer-brand__contact-item:hover,
.nir-footer-brand__contact-item:focus-visible,
.nir-footer-social__link:hover,
.nir-footer-social__link:focus-visible {
	color: #ffffff;
}

.nir-site-footer .widget,
.nir-site-footer .textwidget,
.nir-site-footer .menu,
.nir-footer-brand__copy,
.nir-footer-brand__address {
	color: rgba(252, 245, 238, 0.92);
	line-height: 1.6;
}

.nir-footer-social__link {
	/* width: 2.9rem;
	height: 2.9rem;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.14); */
	font-size: 1rem;
	color: inherit;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.nir-footer-social__link:hover,
.nir-footer-social__link:focus-visible {
	/* background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.22); */
	transform: scale(1.1);
}

.nir-footer-social__link.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.nir-footer-brand__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.nir-footer-brand__logo .custom-logo {
	max-width: 13rem;
	height: auto;
}

.nir-footer-brand__copy p,
.nir-footer-brand__address p {
	margin: 0;
}

/* .nir-footer-brand__contact-icon {
	width: 2.25rem;
	height: 2.25rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
} */

/* Header logo */
.nir-header-logo a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.nir-header-logo a img {
	max-height: 4rem;
	width: auto;
}
/* End of Header logo */

/* Header Actions menu */
.nir-header-actions ul {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.nir-header-actions ul li {
	list-style: none;
}

.nir-header-actions ul li a {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.45rem 0.4rem;
	/* border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 24px rgba(40, 24, 13, 0.08); */
	color: var(--nir-shop-ink);
	text-decoration: none;
	font-weight: 700;
}
/* End of Header Actions menu */

.nir-btn {
	border-width: 1px;
	border-style: solid;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nir-btn.nir-btn--primary {
	background: var(--nir-shop-accent);
	border-color: var(--nir-shop-accent);
	color: #fff;
}

.nir-btn.nir-btn--primary:hover,
.nir-btn.nir-btn--primary:focus-visible {
	background: var(--nir-shop-accent-dark);
	border-color: var(--nir-shop-accent-dark);
	color: #fff;
}

.nir-btn.nir-btn--warning {
	background: var(--nir-shop-warning);
	border-color: var(--nir-shop-warning-outline);
	color: var(--nir-shop-ink);
}

.nir-btn.nir-btn--warning:hover,
.nir-btn.nir-btn--warning:focus-visible {
	background: var(--nir-shop-warning-dark);
	border-color: var(--nir-shop-warning-dark-outline);
	color: var(--nir-shop-ink);
}

.nir-btn.nir-btn--ghost {
	background: var(--nir-shop-surface);
	border-color: var(--nir-shop-border-strong);
	color: var(--nir-shop-accent-dark);
}

.nir-btn.nir-btn--ghost:hover,
.nir-btn.nir-btn--ghost:focus-visible {
	background: #fff;
	border-color: var(--nir-shop-accent);
	color: var(--nir-shop-accent-dark);
}

.nir-commerce-hero__title {
	margin: 0;
	font-size: clamp(2.1rem, 1.4rem + 1.7vw, 3.8rem);
	line-height: 0.98;
}

.nir-commerce-hero__description {
	max-width: 40rem;
	margin-top: 0.9rem;
	color: var(--nir-shop-muted);
}

.nir-commerce-hero__description p:last-child {
	margin-bottom: 0;
}

.nir-stepper__item {
	border: 1px solid var(--nir-shop-border);
	background: linear-gradient(180deg, rgba(255, 248, 242, 0.85) 0%, #fff 100%);
	color: var(--nir-shop-muted);
	font-weight: 700;
}

.nir-stepper__item.is-active {
	border-color: var(--nir-shop-accent);
	background: rgba(179, 58, 40, 0.08);
	color: var(--nir-shop-accent-dark);
}

.nir-stepper__item.is-completed {
	color: var(--nir-shop-ink);
}

.nir-stepper__count {
	width: 2rem;
	height: 2rem;
	background: #fff;
	border: 1px solid var(--nir-shop-border-strong);
	font-size: 0.9rem;
	font-weight: 700;
}

.nir-stepper__item.is-active .nir-stepper__count,
.nir-stepper__item.is-completed .nir-stepper__count {
	background: var(--nir-shop-accent);
	border-color: var(--nir-shop-accent);
	color: #fff;
}

.nir-cart-summary,
.nir-product-loop-shell__toolbar {
	border: 1px solid var(--nir-shop-border);
}

.nir-cart-table {
	margin: 0;
	border: 0;
	background: #fff;
}

.nir-cart-table th,
.nir-cart-table td {
	padding: 1rem;
	vertical-align: middle;
	border-color: var(--nir-shop-border);
}

.nir-cart-table thead th {
	background: var(--nir-shop-surface);
	color: var(--nir-shop-accent-dark);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nir-cart-table .product-thumbnail img {
	width: 5.5rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
}

.nir-cart-table .product-name a {
	color: var(--nir-shop-ink);
	font-weight: 700;
	text-decoration: none;
}

.nir-cart-table .product-price,
.nir-cart-table .product-subtotal {
	color: var(--nir-shop-accent-dark);
	font-weight: 700;
}

.nir-cart-table .remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--nir-shop-surface);
	color: var(--nir-shop-accent-dark) !important;
	text-decoration: none;
}

.nir-cart-table .quantity .qty,
.nir-cart-table .coupon .input-text,
.nir-checkout-view input.input-text,
.nir-checkout-view select,
.nir-checkout-view textarea {
	min-height: 3rem;
	padding: 0.75rem 0.95rem;
	border: 1px solid var(--nir-shop-border-strong);
	border-radius: 1rem;
	background: #fff;
	box-shadow: none;
}

.nir-cart-table .coupon .input-text {
	flex: 1 1 14rem;
}

.nir-cart-table .button,
.nir-cart-summary__checkout .button,
.nir-checkout-view button,
.nir-checkout-view .button,
.nir-order-received .button,
.nir-empty-cart .button {
	padding: 0.85rem 1.2rem;
	border-radius: 999px;
	background: var(--nir-shop-accent);
	color: #fff;
	font-weight: 700;
}

.nir-cart-table .button[name="update_cart"] {
	background: var(--nir-shop-accent-dark);
}

.nir-cart-summary {
	position: sticky;
	top: 1.5rem;
}

.nir-wishlist-hero__summary {
	border: 1px solid rgba(234, 215, 202, 0.9);
	background: rgba(255, 255, 255, 0.86);
	color: var(--nir-shop-muted);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.nir-wishlist-form {
	margin: 0;
}

.nir-wishlist-table .product-stock-status,
.nir-wishlist-table .product-add-to-cart {
	vertical-align: middle;
}

.nir-wishlist-table__actions {
	align-items: center;
	min-width: min(100%, 16rem);
}

.nir-wishlist-table__actions .button,
.nir-wishlist-table__actions .btn {
	margin: 0;
	text-decoration: none;
	justify-content: center;
}

.nir-wishlist-table__actions .added_to_cart {
	display: none;
}

.nir-wishlist-stock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.1rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.nir-wishlist-stock.is-in-stock {
	background: rgba(74, 145, 84, 0.12);
	color: #285d32;
}

.nir-wishlist-stock.is-on-backorder {
	background: rgba(202, 148, 31, 0.14);
	color: #8a5a00;
}

.nir-wishlist-stock.is-out-of-stock {
	background: rgba(179, 58, 40, 0.12);
	color: var(--nir-shop-accent-dark);
}

.nir-cart-summary__title {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.05;
}

.nir-cart-summary__copy {
	margin: 0.7rem 0 0;
	color: var(--nir-shop-muted);
}

.nir-cart-summary__table {
	margin: 0;
	border: 0;
}

.nir-cart-summary__table th,
.nir-cart-summary__table td {
	padding: 0.95rem 0;
	border-top: 1px solid var(--nir-shop-border);
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

.nir-cart-summary__table tr:first-child th,
.nir-cart-summary__table tr:first-child td {
	border-top: 0;
}

.nir-cart-summary__checkout .checkout-button {
	width: 100%;
	justify-content: center;
	text-decoration: none;
}

.nir-cart-collaterals .cross-sells {
	padding: 1.5rem;
	border: 1px solid var(--nir-shop-border);
	border-radius: 2rem;
	background: #fff;
	box-shadow: var(--nir-shop-shadow);
}

.nir-cart-collaterals .cross-sells > h2 {
	margin-top: 0;
	margin-bottom: 1.25rem;
	font-size: clamp(1.6rem, 1.15rem + 1vw, 2.4rem);
	line-height: 1.05;
}

.nir-empty-cart__title {
	margin: 0;
	font-size: clamp(1.8rem, 1.2rem + 1.2vw, 3rem);
	line-height: 1.05;
}

.nir-checkout-card__title,
.nir-checkout-order-card__title {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.05;
}

.nir-checkout-view .form-row {
	margin-bottom: 1rem;
}

.nir-checkout-view label {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--nir-shop-accent-dark);
	font-weight: 700;
}

.nir-checkout-view .select2-container .select2-selection--single,
.nir-checkout-view .select2-container .select2-selection--multiple {
	min-height: 3rem;
	border: 1px solid var(--nir-shop-border-strong);
	border-radius: 1rem;
	padding: 0.4rem 0.75rem;
}

.nir-checkout-review-order .shop_table {
	margin: 0;
	border: 0;
}

.nir-checkout-review-order .shop_table th,
.nir-checkout-review-order .shop_table td {
	padding: 0.95rem 0;
	border-top: 1px solid var(--nir-shop-border);
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

.nir-checkout-review-order .shop_table tr:first-child th,
.nir-checkout-review-order .shop_table tr:first-child td {
	border-top: 0;
}

.nir-checkout-payment {
	padding-top: 1rem;
	border-top: 1px solid var(--nir-shop-border);
}

.nir-checkout-payment__copy {
	margin: 0;
	color: var(--nir-shop-muted);
}

.nir-checkout-payment__methods {
	margin-bottom: 0;
}

.nir-checkout-payment__place-order .button.alt {
	width: 100%;
	justify-content: center;
}

.nir-order-received-message {
	border: 1px solid var(--nir-shop-border);
	background: linear-gradient(180deg, rgba(255, 248, 242, 0.9) 0%, #fff 100%);
}

.nir-order-received-message__title {
	margin: 0;
	font-size: clamp(1.6rem, 1.15rem + 1vw, 2.5rem);
	line-height: 1.05;
}

.nir-order-received-message__copy {
	margin: 0.75rem 0 0;
	color: var(--nir-shop-muted);
}

.nir-order-overview li {
	border: 1px solid var(--nir-shop-border);
	background: #fff;
}

.nir-order-overview__label {
	color: var(--nir-shop-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nir-order-received .woocommerce-order-details,
.nir-order-received .woocommerce-customer-details,
.nir-order-received .woocommerce-order-downloads {
	padding: 1.5rem;
	margin-top: 1.5rem;
	border: 1px solid var(--nir-shop-border);
	border-radius: 1.5rem;
	background: #fff;
}

.nir-order-received .woocommerce-table,
.nir-order-received address {
	margin-bottom: 0;
}

.nir-order-received .woocommerce-table th,
.nir-order-received .woocommerce-table td {
	padding: 0.9rem 0;
	border-top: 1px solid var(--nir-shop-border);
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

.nir-order-received .woocommerce-table tr:first-child th,
.nir-order-received .woocommerce-table tr:first-child td {
	border-top: 0;
}

.nir-checkout-toggle {
	margin-bottom: 1rem;
}

.nir-checkout-toggle__card,
.nir-checkout-inline-card,
.nir-commerce-notice {
	border: 1px solid var(--nir-shop-border);
	border-radius: 1.5rem;
	background: #fff;
	box-shadow: var(--nir-shop-shadow);
}

.nir-checkout-toggle__card,
.nir-checkout-inline-card,
	.nir-mini-cart {
	padding: 1.35rem;
}

.nir-checkout-toggle__copy {
	margin: 0;
	color: var(--nir-shop-muted);
}

.nir-checkout-toggle__copy a,
.nir-inline-login-form .lost_password a,
.nir-auth-card a,
.nir-account-panel a:not(.button),
.nir-account-nav a,
.nir-mini-cart__name,
.nir-mini-cart__buttons a,
.nir-commerce-notice a {
	color: var(--nir-shop-accent-dark);
	font-weight: 700;
	text-decoration: none;
}

.nir-checkout-inline-card {
	margin-bottom: 1rem;
	padding: 1.2rem;
	background: rgba(255, 255, 255, 0.92);
}

.nir-checkout-inline-card__inner,
.nir-inline-login-form__grid,
.nir-inline-login-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: end;
}

.nir-checkout-inline-card .form-row,
.nir-inline-login-form .form-row {
	flex: 1 1 14rem;
	margin: 0;
}

.nir-inline-login-form__actions {
	justify-content: space-between;
	margin-top: 1rem;
}

.nir-inline-login-form__message {
	margin-bottom: 1rem;
	color: var(--nir-shop-muted);
}

.nir-payment-method {
	padding: 0;
	border: 1px solid var(--nir-shop-border);
	border-radius: 1.25rem;
	background: #fff;
	overflow: hidden;
}

.nir-payment-method__heading {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem 1.1rem;
}

.nir-payment-method__radio {
	margin: 0;
	accent-color: var(--nir-shop-accent);
	transform: scale(1.15);
	flex: 0 0 auto;
}

.nir-payment-method__label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	width: 100%;
	color: var(--nir-shop-ink);
	font-weight: 700;
	cursor: pointer;
}

.nir-payment-method__icon img {
	max-height: 1.5rem;
	width: auto;
}

.nir-payment-method__box {
	padding: 0 1.1rem 1.1rem;
	margin: 0;
	background: rgba(255, 248, 242, 0.6);
	border-top: 1px solid var(--nir-shop-border);
}

.nir-mini-cart {
	min-width: 20rem;
}

.nir-mini-cart__item {
	position: relative;
	border-bottom: 1px solid var(--nir-shop-border);
}

.nir-mini-cart__item:last-child {
	border-bottom: 0;
}

.nir-mini-cart__item .remove {
	width: 1.8rem;
	height: 1.8rem;
	background: var(--nir-shop-surface);
	color: var(--nir-shop-accent-dark) !important;
	text-decoration: none;
	font-size: 1rem;
	line-height: 1;
}

.nir-mini-cart__product {
	width: 100%;
}

.nir-mini-cart__thumb {
	flex: 0 0 4.5rem;
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
}

.nir-mini-cart__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nir-mini-cart__details {
	padding-right: 2rem;
}

.nir-mini-cart__name {
	font-size: 0.98rem;
	line-height: 1.35;
}

.nir-mini-cart__details .quantity,
.nir-mini-cart__details .variation {
	color: var(--nir-shop-muted);
	font-size: 0.9rem;
}

.nir-mini-cart__details .variation {
	margin: 0;
	padding: 0;
	border: 0;
}

.nir-mini-cart__details .variation dt,
.nir-mini-cart__details .variation dd {
	margin: 0;
	display: inline;
	font-weight: 600;
}

.nir-mini-cart__details .variation dd::after {
	content: " ";
	white-space: pre;
}

.nir-mini-cart__footer {
	border-top: 1px solid var(--nir-shop-border);
}

.nir-mini-cart__total {
	color: var(--nir-shop-ink);
	font-weight: 700;
}

.nir-mini-cart__buttons .button {
	width: 100%;
	justify-content: center;
	padding: 0.85rem 1rem;
	border-radius: 999px;
	background: var(--nir-shop-accent);
	color: #fff;
	font-weight: 700;
}

.nir-mini-cart__buttons .checkout {
	background: var(--nir-shop-accent-dark);
}

.nir-mini-cart__empty {
	color: var(--nir-shop-muted);
}

.nir-account-hero__title {
	margin: 0;
	font-size: clamp(2rem, 1.35rem + 1.6vw, 3.6rem);
	line-height: 0.98;
}

.nir-account-hero__description {
	max-width: 38rem;
	margin-top: 0.85rem;
	color: var(--nir-shop-muted);
}

.nir-account-hero__description p:last-child {
	margin-bottom: 0;
}

.nir-account-nav__card {
	position: sticky;
	top: 1.5rem;
}

.nir-account-nav__identity strong {
	font-size: 1.1rem;
	line-height: 1.3;
}

.nir-account-nav li a {
	color: var(--nir-shop-ink);
	font-weight: 700;
}

.nir-account-nav li.is-active a,
.nir-account-nav li a:hover,
.nir-account-nav li a:focus-visible {
	background: rgba(179, 58, 40, 0.08);
	color: var(--nir-shop-accent-dark);
}

.nir-account-nav__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--nir-shop-surface);
	color: var(--nir-shop-accent-dark);
	flex: 0 0 auto;
}

.nir-account-panel__title {
	margin: 0;
	font-size: clamp(1.65rem, 1.2rem + 1vw, 2.4rem);
	line-height: 1.05;
}

.nir-account-panel__copy,
.nir-account-panel__hero p,
.nir-auth-card__copy {
	color: var(--nir-shop-muted);
}

.nir-account-tile {
	background: linear-gradient(180deg, rgba(255, 248, 242, 0.88) 0%, #fff 100%);
	color: var(--nir-shop-ink);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nir-account-tile:hover,
.nir-account-tile:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 20px 36px rgba(40, 24, 13, 0.12);
}

.nir-account-tile__icon {
	width: 2.5rem;
	height: 2.5rem;
	background: #fff;
	color: var(--nir-shop-accent-dark);
	border: 1px solid var(--nir-shop-border);
}

.nir-account-tile__title {
	font-size: 1.05rem;
	font-weight: 700;
}

.nir-account-tile__copy {
	color: var(--nir-shop-muted);
	font-size: 0.95rem;
	line-height: 1.45;
}

.nir-account-table {
	margin: 0;
	border: 0;
	background: #fff;
}

.nir-account-table th,
.nir-account-table td {
	padding: 1rem;
	border-color: var(--nir-shop-border);
	vertical-align: middle;
}

.nir-account-table thead th {
	background: var(--nir-shop-surface);
	color: var(--nir-shop-accent-dark);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nir-account-table__actions .button,
.nir-account-panel__actions .button {
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: var(--nir-shop-accent);
	color: #fff;
	font-weight: 700;
}

.nir-account-empty-state {
	border: 1px dashed var(--nir-shop-border-strong);
	background: rgba(255, 255, 255, 0.72);
}

.nir-address-card {
	background: linear-gradient(180deg, rgba(255, 248, 242, 0.88) 0%, #fff 100%);
}

.nir-address-card__header h3 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.2;
}

.nir-address-card__edit {
	font-size: 0.95rem;
	white-space: nowrap;
}

.nir-account-content input.input-text,
.nir-account-content select,
.nir-account-content textarea,
.nir-auth-card input.input-text,
.nir-auth-card input[type="password"],
.nir-auth-card input[type="email"],
.nir-checkout-inline-card input.input-text,
.nir-checkout-inline-card input[type="password"],
.nir-checkout-inline-card input[type="email"],
.nir-inline-login-form input.input-text,
.nir-inline-login-form input[type="password"],
.nir-inline-login-form input[type="email"] {
	width: 100%;
	min-height: 3rem;
	padding: 0.8rem 0.95rem;
	border: 1px solid var(--nir-shop-border-strong);
	border-radius: 1rem;
	background: #fff;
	box-shadow: none;
}

.nir-account-content label,
.nir-auth-card label,
.nir-inline-login-form label,
.nir-checkout-inline-card label {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--nir-shop-accent-dark);
	font-weight: 700;
}

.nir-account-content .form-row,
.nir-auth-card .form-row {
	margin-bottom: 1rem;
}

.nir-account-fieldset {
	padding: 1rem;
	margin: 1rem 0;
	border: 1px solid var(--nir-shop-border);
	border-radius: 1.25rem;
	background: rgba(255, 248, 242, 0.45);
}

.nir-account-fieldset legend {
	padding: 0 0.4rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--nir-shop-ink);
}

.nir-auth-card__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 1.2rem + 1vw, 2.5rem);
	line-height: 1.05;
}

.nir-auth-card button,
.nir-account-content button,
.nir-account-content .button,
.nir-inline-login-form button,
.nir-checkout-inline-card button {
	padding: 0.85rem 1.15rem;
	border-radius: 999px;
	background: var(--nir-shop-accent);
	color: #fff;
	font-weight: 700;
}

.nir-account-pagination {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

.nir-order-status,
.nir-account-panel mark.order-status,
.nir-account-panel mark.order-number,
.nir-account-panel mark.order-date {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	background: var(--nir-shop-surface);
	color: var(--nir-shop-accent-dark);
	font-weight: 700;
}

.nir-order-updates {
	padding: 0;
	margin: 1rem 0 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.nir-order-updates .comment_container {
	padding: 1rem;
	border: 1px solid var(--nir-shop-border);
	border-radius: 1rem;
	background: rgba(255, 248, 242, 0.45);
}

.nir-account-content .woocommerce-order-details,
.nir-account-content .woocommerce-customer-details,
.nir-account-content .woocommerce-order-downloads {
	padding: 1.25rem;
	margin-top: 1rem;
	border: 1px solid var(--nir-shop-border);
	border-radius: 1.25rem;
	background: #fff;
}

.nir-account-content .woocommerce-table,
.nir-account-content .woocommerce-table th,
.nir-account-content .woocommerce-table td {
	border-color: var(--nir-shop-border);
}

.nir-account-content .woocommerce-table th,
.nir-account-content .woocommerce-table td {
	padding: 0.9rem 0;
	border-top: 1px solid var(--nir-shop-border);
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

.nir-account-content .woocommerce-table tr:first-child th,
.nir-account-content .woocommerce-table tr:first-child td {
	border-top: 0;
}

.nir-commerce-notice__icon {
	width: 2rem;
	height: 2rem;
	flex: 0 0 auto;
}

.nir-commerce-notice__content {
	color: var(--nir-shop-ink);
	line-height: 1.5;
}

.nir-commerce-notice.is-success {
	border-color: #b9e1ca;
	background: #f1fbf4;
}

.nir-commerce-notice.is-success .nir-commerce-notice__icon {
	background: #d6f5e0;
	color: #1f7a43;
}

.nir-commerce-notice.is-error {
	border-color: #f3c3bf;
	background: #fff4f3;
}

.nir-commerce-notice.is-error .nir-commerce-notice__icon {
	background: #ffdcd8;
	color: #b33a28;
}

.nir-commerce-notice.is-info {
	border-color: #bfd7f3;
	background: #f5faff;
}

.nir-commerce-notice.is-info .nir-commerce-notice__icon {
	background: #ddeaf8;
	color: #2666a7;
}

.nir-top-category-card {
	color: var(--nir-shop-ink);
	transition: transform 0.2s ease;
}

.nir-top-category-card:hover,
.nir-top-category-card:focus-visible {
	transform: translateY(-4px);
}

.nir-top-category-card__image {
	aspect-ratio: 1 / 1;
}

.nir-top-category-card__image img,
.nir-top-category-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nir-top-category-card__placeholder {
	padding: 1.25rem;
	color: var(--nir-shop-accent-dark);
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
}

.nir-top-category-card__name {
	font-size: 1.05rem;
	font-weight: 700;
	border-bottom: 4px solid #EF451A;
}

.nir-taxonomy-view {
	padding: 2rem 0 4rem;
}

.nir-taxonomy-hero__title {
	margin: 0;
	color: var(--nir-shop-ink);
	font-size: clamp(2.2rem, 1.35rem + 2vw, 4rem);
	line-height: 0.98;
}

.nir-taxonomy-hero__copy {
	max-width: 38rem;
	color: var(--nir-shop-muted);
	font-size: 1rem;
}

.nir-taxonomy-hero__copy p:last-child {
	margin-bottom: 0;
}

.nir-taxonomy-hero__stat {
	border: 1px solid var(--nir-shop-border);
	background: linear-gradient(180deg, rgba(255, 248, 242, 0.9) 0%, #fff 100%);
}

.nir-taxonomy-hero__stat-label {
	color: var(--nir-shop-muted);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nir-taxonomy-hero__stat-value {
	color: var(--nir-shop-ink);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
}

.nir-taxonomy-hero__stat-value--link {
	text-decoration: none;
}

.nir-taxonomy-hero__visual {
	position: relative;
	overflow: hidden;
	min-height: 18rem;
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
}

.nir-taxonomy-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nir-taxonomy-hero__placeholder {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.35rem;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
	background:
		radial-gradient(circle at top right, rgba(179, 58, 40, 0.18), transparent 12rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(114, 35, 21, 0.08) 100%);
	color: var(--nir-shop-accent-dark);
}

.nir-taxonomy-hero__placeholder span {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.nir-taxonomy-hero__placeholder strong {
	font-size: clamp(1.5rem, 1rem + 1vw, 2.5rem);
	line-height: 1.05;
}

.nir-term-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nir-term-card:hover,
.nir-term-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 22px 42px rgba(40, 24, 13, 0.14);
}

.nir-term-card__media {
	aspect-ratio: 1.25 / 1;
}

.nir-term-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nir-term-card__placeholder {
	padding: 1.5rem;
	color: var(--nir-shop-accent-dark);
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
}

.nir-term-card__eyebrow {
	color: var(--nir-shop-muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nir-term-card__name {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
}

.nir-term-card__count {
	color: var(--nir-shop-muted);
	font-size: 0.95rem;
}

.nir-product-loop-shell .woocommerce-result-count {
	margin: 0;
	color: var(--nir-shop-muted);
	font-weight: 600;
}

.nir-product-loop-shell .woocommerce-ordering {
	float: none;
	margin: 0;
}

.nir-product-loop-shell .woocommerce-ordering select {
	padding: 0.7rem 2.5rem 0.7rem 0.95rem;
	border: 1px solid var(--nir-shop-border-strong);
	border-radius: 999px;
	background: #fff;
	color: var(--nir-shop-ink);
}

.nir-product-loop-shell__pagination {
	margin-top: 2rem;
	text-align: center;
}

.nir-product-loop-shell__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	margin: 0 0.2rem;
	border: 1px solid var(--nir-shop-border);
	border-radius: 999px;
	background: #fff;
	color: var(--nir-shop-ink);
	text-decoration: none;
	font-weight: 700;
}

.nir-product-loop-shell__pagination .page-numbers.current,
.nir-product-loop-shell__pagination .page-numbers:hover {
	background: var(--nir-shop-accent);
	border-color: var(--nir-shop-accent);
	color: #fff;
}

.nir-product-loop-shell__empty {
	padding: 1.5rem;
	border: 1px dashed var(--nir-shop-border-strong);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.8);
}

.nir-single-product__media,
.nir-single-product__panel,
.nir-single-product__details .woocommerce-tabs,
.nir-single-product__details .upsells,
.nir-single-product__details .related {
	border: 0;
}

.nir-single-product__pill {
	border: 1px solid var(--nir-shop-border-strong);
	background: var(--nir-shop-surface);
	color: var(--nir-shop-accent-dark);
	font-size: 0.85rem;
}

.nir-single-product__pill--accent {
	background: var(--nir-shop-accent);
	border-color: var(--nir-shop-accent);
	color: #fff;
}

.nir-single-product__summary .product_title {
	margin: 0 0 0.85rem;
	font-size: clamp(2rem, 1.3rem + 1.4vw, 3.4rem);
	line-height: 1;
}

.nir-single-product__summary .price {
	display: block;
	margin-bottom: 1rem;
	color: var(--nir-shop-accent-dark);
	font-size: 1.35rem;
	font-weight: 700;
}

.nir-single-product__summary .woocommerce-product-details__short-description {
	color: var(--nir-shop-muted);
	margin-bottom: 1.25rem;
}

.nir-single-product__summary form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin-bottom: 1rem;
}

.nir-single-product__summary form.cart .quantity .qty {
	min-height: 3rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--nir-shop-border-strong);
	border-radius: 999px;
}

.nir-single-product__summary form.cart .single_add_to_cart_button,
.nir-single-product__summary .yith-wcwl-add-button a,
.nir-single-product__summary .button {
	padding: 0.9rem 1.35rem;
	border-radius: 999px;
	background: var(--nir-shop-accent);
	color: #fff;
	font-weight: 700;
}

.nir-single-product__summary .product_meta {
	padding-top: 1rem;
	border-top: 1px solid var(--nir-shop-border);
	color: var(--nir-shop-muted);
}

.nir-single-product__meta-card {
	border: 1px solid var(--nir-shop-border);
	background: linear-gradient(180deg, rgba(255, 248, 242, 0.9) 0%, #fff 100%);
}

.nir-single-product__meta-label {
	color: var(--nir-shop-muted);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nir-single-product__meta-value {
	color: var(--nir-shop-ink);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.nir-single-product__details .woocommerce-tabs,
.nir-single-product__details .upsells {
	margin-bottom: 2rem;
}

.nir-single-product__details .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 0;
	margin: 0 0 1.5rem;
	border: 0;
	list-style: none;
}

/* .woocommerce div.product .nir-single-product__details .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .nir-single-product__details .woocommerce-tabs ul.tabs::after {
	display: none;
}

.woocommerce div.product .nir-single-product__details .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	border-radius: 0;
	color: inherit;
	list-style: none;
}

.woocommerce div.product .nir-single-product__details .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .nir-single-product__details .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .nir-single-product__details .woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1rem;
	border: 1px solid var(--nir-shop-border);
	border-radius: 999px;
	background: var(--nir-shop-surface);
	color: var(--nir-shop-ink);
	font-weight: 700;
	text-decoration: none;
}

.woocommerce div.product .nir-single-product__details .woocommerce-tabs ul.tabs li.active a {
	background: var(--nir-shop-accent);
	border-color: var(--nir-shop-accent);
	color: #fff;
}

.woocommerce div.product .nir-single-product__details .related > h2,
.woocommerce div.product .nir-single-product__details .upsells > h2 {
	margin-top: 0;
	margin-bottom: 1.25rem;
	font-size: clamp(1.6rem, 1.15rem + 1vw, 2.4rem);
	line-height: 1.05;
}

.woocommerce div.product .nir-single-product__media .woocommerce-product-gallery {
	margin-bottom: 0;
}

.woocommerce div.product .nir-single-product__media .woocommerce-product-gallery__image img {
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
}

.woocommerce div.product .nir-single-product__media .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 0.9rem;
	padding: 0;
	list-style: none;
}

.woocommerce div.product .nir-single-product__media .flex-control-thumbs li {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce div.product .nir-single-product__media .flex-control-thumbs img {
	border-radius: 1rem;
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
} */

.container-fluid {
	max-width: 1600px;
}

@media (max-width: 991.98px) {
	.nir-shop-section__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.nir-term-rail__grid,
	.nir-shop-landing ul.products,
	.nir-product-loop-shell ul.products,
	.nir-single-product__details ul.products,
	.nir-commerce-hero__panel,
	.nir-order-overview,
	.nir-auth-grid,
	.nir-inline-login-form__grid,
	.nir-checkout-inline-card__inner {
		grid-template-columns: 1fr;
	}

	.nir-product-loop-shell__toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.nir-cart-summary {
		position: static;
	}

	.nir-wishlist-table__actions {
		min-width: 0;
	}

	.nir-account-nav__card {
		position: static;
	}
}

@media (max-width: 767.98px) {
	.nir-shop-landing {
		padding: 2rem 0 3rem;
	}

	.nir-shop-landing ul.products,
	.nir-product-loop-shell ul.products,
	.nir-single-product__details ul.products,
	.nir-order-overview {
		grid-template-columns: 1fr;
	}

	.nir-single-product__media,
	.nir-single-product__panel,
	.nir-single-product__details .woocommerce-tabs,
	.nir-single-product__details .upsells,
	.nir-single-product__details .related {
		padding: 1.2rem !important;
		border-radius: 1.5rem !important;
	}

	.nir-taxonomy-view,
	.nir-single-product__hero {
		padding-top: 1.5rem;
	}

	.nir-mini-cart {
		min-width: 0;
	}

	.nir-inline-login-form__actions,
	.nir-auth-card__actions {
		align-items: stretch;
	}

	.nir-cart-table thead {
		display: none;
	}

	.nir-cart-table,
	.nir-cart-table tbody,
	.nir-cart-table tr,
	.nir-cart-table td {
		display: block;
		width: 100%;
	}

	.nir-cart-table tr {
		padding: 1rem;
		border-bottom: 1px solid var(--nir-shop-border);
	}

	.nir-cart-table td {
		padding: 0.45rem 0;
		text-align: left !important;
		border: 0;
	}

	.nir-cart-table td::before {
		content: attr(data-title);
		display: block;
		margin-bottom: 0.25rem;
		color: var(--nir-shop-muted);
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.nir-cart-table td.product-remove::before,
	.nir-cart-table td.product-thumbnail::before,
	.nir-cart-table td.actions::before {
		display: none;
	}
}

.nir-taxonomy-hero__panel {
	background:
		radial-gradient(circle at top right, rgba(179, 58, 40, 0.1), transparent 18rem),
		linear-gradient(180deg, rgba(255, 248, 242, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
	border: 1px solid rgba(234, 215, 202, 0.9);
}

.nir-taxonomy-hero__stats {
	row-gap: 0.75rem;
}

.nir-taxonomy-hero__stat {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.nir-taxonomy-hero__stat-value--link {
	color: var(--nir-shop-accent-dark);
}

.nir-product-catalog {
	display: grid;
	grid-template-columns: minmax(0, 17.5rem) minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
}

.nir-product-catalog__results {
	min-width: 0;
}

.nir-term-rail__panel,
.nir-product-loop-shell__toolbar {
	background:
		linear-gradient(180deg, rgba(255, 248, 242, 0.82) 0%, rgba(255, 255, 255, 0.98) 100%);
	border: 1px solid rgba(234, 215, 202, 0.88);
}

.woocommerce-breadcrumb {
	justify-self: center;
	font-weight: 700;
}

.nir-catalog-sidebar {
	min-width: 0;
}

.nir-catalog-sidebar__panel {
	position: sticky;
	top: 1.5rem;
	z-index: 8;
}

.nir-catalog-sidebar__inner {
	background:
		linear-gradient(180deg, rgba(255, 248, 242, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
	border: 1px solid rgba(234, 215, 202, 0.9);
}

.nir-catalog-sidebar__form {
	margin: 0;
}

.nir-catalog-sidebar__toggle {
	border-color: var(--nir-shop-border-strong);
	color: var(--nir-shop-ink);
	background: rgba(255, 255, 255, 0.9);
	font-weight: 700;
}

.nir-filter-card {
	border: 1px solid var(--nir-shop-border);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 8px 24px rgba(40, 24, 13, 0.04);
}

.nir-filter-card__title {
	margin: 0 0 0.85rem;
	color: var(--nir-shop-ink);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.nir-filter-card__label {
	display: block;
	margin: 0 0 0.35rem;
	color: var(--nir-shop-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.nir-filter-check {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.65rem;
	color: var(--nir-shop-ink);
	font-weight: 600;
	line-height: 1.35;
	cursor: pointer;
}

.nir-filter-check input {
	accent-color: var(--nir-shop-accent);
	margin: 0;
	flex-shrink: 0;
}

.nir-filter-check__copy {
	min-width: 0;
}

.nir-filter-check__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 1.85rem;
	padding: 0 0.55rem;
	border-radius: 999px;
	background: rgba(245, 228, 216, 0.95);
	color: var(--nir-shop-accent-dark);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
}

.nir-filter-link {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 0.85rem;
	border-radius: 1rem;
	background: rgba(255, 248, 242, 0.9);
	color: var(--nir-shop-ink);
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.nir-filter-link:hover,
.nir-filter-link:focus-visible {
	background: rgba(245, 228, 216, 0.95);
	transform: translateX(2px);
	color: var(--nir-shop-accent-dark);
}

.nir-filter-chip,
.nir-catalog-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.35rem;
	padding: 0.55rem 0.9rem;
	border: 1px solid var(--nir-shop-border-strong);
	border-radius: 999px;
	background: #fff;
	color: var(--nir-shop-ink);
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nir-filter-chip:hover,
.nir-filter-chip:focus-visible,
.nir-catalog-chip:hover,
.nir-catalog-chip:focus-visible {
	border-color: var(--nir-shop-accent);
	color: var(--nir-shop-accent-dark);
	transform: translateY(-1px);
}

.nir-product-loop-shell__summary {
	color: var(--nir-shop-ink);
	font-size: 1rem;
	font-weight: 700;
}

.nir-product-loop-shell__toolbar .woocommerce-ordering select,
.nir-catalog-sidebar .form-control,
.nir-catalog-sidebar .form-select {
	border-color: var(--nir-shop-border-strong);
	box-shadow: none;
}

.nir-product-loop-shell__toolbar .woocommerce-ordering select:focus,
.nir-catalog-sidebar .form-control:focus,
.nir-catalog-sidebar .form-select:focus {
	border-color: rgba(179, 58, 40, 0.5);
	box-shadow: 0 0 0 0.22rem rgba(179, 58, 40, 0.12);
}

.nir-product-loop-shell__ordering {
	display: flex;
	justify-content: flex-end;
}

.nir-product-loop-shell__ordering form {
	margin: 0;
}

.nir-product-loop-shell__products {
	min-width: 0;
}

.nir-product-loop-shell__pagination .nav-links {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}

.nir-product-loop-shell__pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

.nir-search-recommendations {
	border-color: rgba(234, 215, 202, 0.85) !important;
}

.nir-search-recommendations__products ul.products {
	margin-bottom: 0;
}

.nir-search-discovery,
.nir-product-search__group {
	min-width: 0;
}

.nir-search-discovery__label,
.nir-product-search__label {
	color: var(--nir-shop-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nir-search-discovery__recent {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.nir-search-discovery__clear {
	align-self: flex-start;
	color: var(--nir-shop-accent-dark);
	font-weight: 700;
}

.nir-product-search {
	position: relative;
	/* min-width: min(100%, 22rem);
	width: min(100%, 22rem); */
	z-index: 20;
}

.nir-product-search__field {
	position: relative;
	z-index: 2;
	border-color: rgba(220, 193, 174, 0.9) !important;
	background: rgba(255, 255, 255, 0.98) !important;
}

.nir-product-search__panel {
	position: absolute;
	top: calc(100% + 0.55rem);
	left: 0;
	right: 0;
	max-height: 28rem;
	overflow: auto;
	padding: 1rem;
	border: 1px solid var(--nir-shop-border-strong);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--nir-shop-shadow);
	backdrop-filter: blur(10px);
	z-index: 25;
}

.nir-product-search__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.nir-product-search__results {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.nir-product-search__group + .nir-product-search__group {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(234, 215, 202, 0.85);
}

.nir-product-search__item {
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr) auto;
	gap: 0.85rem;
	align-items: center;
	padding: 0.65rem 0.7rem;
	border-radius: 1rem;
	color: var(--nir-shop-ink);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.nir-product-search__item:hover,
.nir-product-search__item:focus-visible {
	background: rgba(255, 248, 242, 0.95);
	color: var(--nir-shop-accent-dark);
}

.nir-product-search__item-media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.85rem;
	background: linear-gradient(135deg, var(--nir-shop-surface-strong), #fff);
	overflow: hidden;
}

.nir-product-search__item-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nir-product-search__item-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 0.18rem;
}

.nir-product-search__item-title {
	font-weight: 700;
	line-height: 1.35;
}

.nir-product-search__item-meta {
	color: var(--nir-shop-muted);
	font-size: 0.82rem;
}

.nir-product-search__item-price {
	color: var(--nir-shop-accent-dark);
	font-size: 0.92rem;
	font-weight: 700;
	text-align: right;
}

.nir-product-search__empty {
	color: var(--nir-shop-muted);
	font-size: 0.95rem;
}

.nir-product-search__view-all {
	display: inline-flex;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(234, 215, 202, 0.85);
	color: var(--nir-shop-accent-dark);
	font-weight: 700;
	text-decoration: none;
}

.menu-item .nav-link {
	color: var(--nir-shop-ink);
	font-weight: 600;
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	width: 100%;
}

[data-nir-filter-panel][hidden] {
	display: none !important;
}

@media (min-width: 992px) {
	.nir-catalog-sidebar__panel[hidden] {
		display: block !important;
	}
}

@media (max-width: 991.98px) {
	.nir-product-catalog {
		grid-template-columns: 1fr;
	}

	.nir-term-rail__panel,
	.nir-product-loop-shell__toolbar {
		border-radius: 1.5rem !important;
	}

	.nir-catalog-sidebar__panel {
		position: fixed;
		inset: 1rem;
		top: auto;
		z-index: 999;
		padding-top: 0;
	}

	.nir-catalog-sidebar__inner {
		height: min(100%, calc(100vh - 2rem));
		overflow: auto;
	}

	body.nir-catalog-filters-open::before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(33, 24, 18, 0.35);
		z-index: 998;
	}

	body.nir-catalog-filters-open {
		overflow: hidden;
	}

	.nir-product-search {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 767.98px) {
	.nir-taxonomy-hero__content {
		padding: 1.4rem !important;
	}

	.nir-taxonomy-hero__stats {
		flex-direction: column;
		align-items: stretch;
	}

	.nir-taxonomy-hero__stat {
		justify-content: space-between;
		border-radius: 1rem;
	}

	.nir-filter-check {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.nir-filter-check__count {
		grid-column: 2;
		justify-self: start;
		margin-left: 1.75rem;
	}

	.nir-product-search__item {
		grid-template-columns: 2.6rem minmax(0, 1fr);
	}

	.nir-product-search__item-price {
		grid-column: 2;
		text-align: left;
	}
}