:root {
	--rsw-bg: #0d0d0d;
	--rsw-panel: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
	--rsw-border: rgba(200, 169, 107, 0.18);
	--rsw-text: #f5efe6;
	--rsw-muted: rgba(245, 239, 230, 0.72);
	--rsw-accent: #c8a96b;
	--rsw-accent-strong: #e0bf84;
	--rsw-radius: 24px;
	--rsw-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
	--rsw-product-title-size: 1.2rem;
	--rsw-product-title-color: #ffffff;
	--rsw-price-size: 1.15rem;
	--rsw-price-color: #e0bf84;
	--rsw-button-size: 0.92rem;
	--rsw-button-text-color: #f5efe6;
	--rsw-button-background: transparent;
	--rsw-button-border-color: rgba(200, 169, 107, 0.18);
}

.rsw-category-slider {
	position: relative;
	color: var(--rsw-text);
	margin: clamp(28px, 5vw, 64px) 0;
}

.rsw-category-slider-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.rsw-category-slider-title {
	margin: 0;
	font-family: "Bodoni MT", "Didot", Georgia, serif;
	font-size: clamp(1.9rem, 3vw, 3.2rem);
	line-height: 1;
	color: #fff;
}

.rsw-category-slider-description {
	max-width: 620px;
	margin: 8px 0 0;
	color: var(--rsw-muted);
	font-size: 1rem;
	line-height: 1.55;
}

.rsw-category-slider-controls {
	display: inline-flex;
	gap: 8px;
	flex: 0 0 auto;
}

.rsw-category-slider .rsw-category-slider-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px !important;
	height: 42px !important;
	border: 1px solid var(--rsw-border) !important;
	border-radius: 999px !important;
	background: rgba(255,255,255,.04) !important;
	color: var(--rsw-text) !important;
	cursor: pointer !important;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease !important;
}

.rsw-category-slider-control svg {
	width: 18px;
	height: 18px;
	display: block;
}

.rsw-category-slider .rsw-category-slider-control:hover:not(:disabled) {
	border-color: rgba(224, 191, 132, .8);
	background: rgba(200, 169, 107, .14);
	color: #fff;
}

.rsw-category-slider .rsw-category-slider-control:disabled {
	opacity: .35;
	cursor: default;
}

.rsw-category-slider-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 34%);
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 2px 14px;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 2px;
	scrollbar-width: thin;
	scrollbar-color: rgba(200,169,107,.42) rgba(255,255,255,.06);
}

.rsw-category-slide {
	scroll-snap-align: start;
	min-width: 0;
}

.rsw-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 430px;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--rsw-border);
	border-radius: 8px;
	background: #151311;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.rsw-category-card:hover {
	color: #fff;
}

.rsw-category-card-media {
	position: relative;
	z-index: 0;
	display: block;
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 16 / 11;
	overflow: hidden;
}

.rsw-category-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease, filter .4s ease;
}

.rsw-category-card:hover .rsw-category-card-media img {
	transform: scale(1.04);
	filter: saturate(1.08);
}

.rsw-category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(10,9,8,.02) 0%, rgba(10,9,8,.18) 28%, rgba(10,9,8,.78) 100%);
	pointer-events: none;
}

.rsw-category-card > * {
	position: relative;
	z-index: 1;
}

.rsw-category-card-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex: 1 1 auto;
	align-self: end;
	padding: 22px;
}

.rsw-category-card-title {
	margin: 0;
	font-family: "Bodoni MT", "Didot", Georgia, serif;
	font-size: clamp(1.55rem, 2.1vw, 2.25rem);
	line-height: 1;
	color: #fff;
}

.rsw-category-card-description {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 10px 0 0;
	color: rgba(255,255,255,.78);
	font-size: .95rem;
	line-height: 1.45;
}

.rsw-category-slider .rsw-category-card-cta.fr-service-booking-loop-btn {
	align-self: flex-start;
	margin-top: 18px;
	font-size: .9rem;
	font-weight: 700;
}

.rsw-category-slider-empty {
	padding: 18px;
	border: 1px solid var(--rsw-border);
	border-radius: 8px;
	color: var(--rsw-muted);
	background: rgba(255,255,255,.03);
}

.rsw-product-slider {
	position: relative;
	color: var(--rsw-text);
	margin: clamp(28px, 5vw, 64px) 0;
}

.rsw-product-slider-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.rsw-product-slider-title {
	margin: 0;
	font-family: "Bodoni MT", "Didot", Georgia, serif;
	font-size: clamp(1.9rem, 3vw, 3.2rem);
	line-height: 1;
	color: #fff;
}

.rsw-product-slider-description {
	max-width: 620px;
	margin: 8px 0 0;
	color: var(--rsw-muted);
	font-size: 1rem;
	line-height: 1.55;
}

.rsw-product-slider-controls {
	display: inline-flex;
	gap: 8px;
	flex: 0 0 auto;
}

.rsw-product-slider .rsw-product-slider-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px !important;
	height: 42px !important;
	border: 1px solid var(--rsw-border) !important;
	border-radius: 999px !important;
	background: rgba(255,255,255,.04) !important;
	color: var(--rsw-text) !important;
	cursor: pointer !important;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease !important;
}

.rsw-product-slider-control svg {
	width: 18px;
	height: 18px;
	display: block;
}

.rsw-product-slider .rsw-product-slider-control:hover:not(:disabled) {
	border-color: rgba(224, 191, 132, .8);
	background: rgba(200, 169, 107, .14);
	color: #fff;
}

.rsw-product-slider .rsw-product-slider-control:disabled {
	opacity: .35;
	cursor: default;
}

.rsw-product-slider-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 2px 14px;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 2px;
	scrollbar-width: thin;
	scrollbar-color: rgba(200,169,107,.42) rgba(255,255,255,.06);
}

.rsw-product-slide {
	scroll-snap-align: start;
	min-width: 0;
	flex: 0 0 clamp(280px, 30vw, 360px);
}

.rsw-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--rsw-border);
	border-radius: 8px;
	background: #151311;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.rsw-product-card:hover {
	color: #fff;
}

.rsw-product-card-media {
	position: relative;
	z-index: 0;
	display: block;
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: rgba(255,255,255,.03);
}

.rsw-product-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease, filter .4s ease;
}

.rsw-product-card:hover .rsw-product-card-media img {
	transform: scale(1.04);
	filter: saturate(1.08);
}

.rsw-product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(10,9,8,.02) 0%, rgba(10,9,8,.18) 28%, rgba(10,9,8,.78) 100%);
	pointer-events: none;
}

.rsw-product-card > * {
	position: relative;
	z-index: 1;
}

.rsw-product-card-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex: 1 1 auto;
	align-self: end;
	padding: 22px;
}

.rsw-product-card-title {
	margin: 0;
	font-family: "Bodoni MT", "Didot", Georgia, serif;
	font-size: clamp(1.45rem, 2vw, 2.05rem);
	line-height: 1.02;
	color: #fff;
}

.rsw-product-card-price {
	display: block;
	margin-top: 10px;
	color: var(--rsw-price-color);
	font-size: clamp(1.05rem, 1.35vw, 1.15rem);
	font-weight: 700;
	line-height: 1.2;
}

.rsw-product-card-description {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 10px 0 0;
	color: rgba(255,255,255,.78);
	font-size: .95rem;
	line-height: 1.45;
}

.rsw-product-card-cta {
	align-self: flex-start;
	margin-top: 18px;
	font-size: .9rem;
	font-weight: 700;
}

.rsw-product-slider-empty {
	padding: 18px;
	border: 1px solid var(--rsw-border);
	border-radius: 8px;
	color: var(--rsw-muted);
	background: rgba(255,255,255,.03);
}

.gss-shop-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.7fr);
	gap: 32px;
	align-items: start;
	color: var(--rsw-text);
}

.gss-shop-filter-card,
.gss-shop-current-term,
.gss-shop-active-summary,
.gss-empty-shop {
	background: var(--rsw-panel);
	border: 1px solid var(--rsw-border);
	border-radius: var(--rsw-radius);
	box-shadow: var(--rsw-shadow);
	padding: 24px;
}

.gss-shop-sidebar {
	position: sticky;
	top: 110px;
}

.gss-shop-filter-card {
	max-height: calc(100vh - 140px);
	overflow-y: auto;
	padding-right: 10px;
}

.gss-shop-filter-toggle {
	display: none;
	margin-bottom: 16px;
	padding: 12px 16px;
	border: 1px solid var(--rsw-border);
	border-radius: 999px;
	background: rgba(255,255,255,.03);
	color: var(--rsw-text);
}

.gss-shop-filter-head,
.gss-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.gss-shop-toolbar {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto auto;
	margin-bottom: 16px;
}

.gss-shop-filter-group + .gss-shop-filter-group {
	margin-top: 24px;
}

.gss-shop-active-summary {
	margin-bottom: 20px;
	font-size: var(--rsw-active-filters-text-size, 0.95rem);
}

.gss-shop-active-summary-title {
	margin: 0 0 10px;
	color: var(--rsw-accent);
	font-size: 0.9em;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gss-shop-active-summary-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gss-shop-active-summary-list li {
	margin: 0;
}

.gss-shop-active-summary-list li a {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(255,255,255,.03);
	color: var(--rsw-text);
	text-decoration: none;
	line-height: 1.45;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.gss-shop-active-summary-list li a:hover {
	background: rgba(200, 169, 107, 0.12);
	color: #fff;
}

.gss-shop-active-summary-remove-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--rsw-accent-strong);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.gss-shop-active-summary-list strong {
	color: var(--rsw-accent-strong);
	font-weight: 700;
}

.gss-shop-active-summary-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 12px;
}

.gss-shop-active-summary-actions a {
	color: var(--rsw-accent);
	text-decoration: none;
	font-weight: 600;
}

.gss-shop-active-summary-actions a:hover {
	color: var(--rsw-accent-strong);
}

.gss-shop-filter-group ul {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gss-shop-filter-group li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 14px;
	border-radius: 14px;
	background: rgba(255,255,255,.03);
	color: var(--rsw-text);
	text-decoration: none;
}

.rsw-category-tree-root,
.rsw-category-tree-level {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rsw-category-tree-level {
	padding-left: 14px;
	margin-top: 8px;
	border-left: 1px dashed rgba(200, 169, 107, 0.22);
}

.rsw-category-tree-item .rsw-category-tree-row {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 8px;
	align-items: center;
}

.rsw-cat-branch-toggle {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border: 1px solid var(--rsw-border);
	border-radius: 999px;
	background: rgba(255,255,255,.04);
	color: var(--rsw-accent);
	cursor: pointer;
	padding: 0;
	position: relative;
}

.rsw-cat-branch-toggle::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 4px;
	width: 5px;
	height: 5px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform .18s ease;
}

.rsw-cat-branch-toggle.is-open::before {
	transform: rotate(45deg);
	top: 5px;
}

.rsw-cat-branch-spacer {
	display: inline-block;
	width: 18px;
	height: 18px;
}

.rsw-cat-children[hidden] {
	display: none !important;
}

.gss-shop-filter-group li.is-active a,
.gss-shop-main .page-numbers .current {
	background: rgba(200, 169, 107, 0.14);
	border-color: rgba(200, 169, 107, 0.4);
	color: #fff;
}

.gss-shop-search input,
.gss-shop-sort select,
.rsw-category-select,
.gss-price-row input {
	width: 100%;
	border: 1px solid var(--rsw-border);
	border-radius: 16px;
	background: rgba(255,255,255,.04);
	color: var(--rsw-text);
	padding: 14px 16px;
}

.select2-container--default .select2-selection--single,
.selectWoo-container--default .select2-selection--single {
	height: 48px;
	border-radius: 16px;
	border: 1px solid var(--rsw-border);
	background: rgba(255,255,255,.04);
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.selectWoo-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--rsw-text);
	line-height: 46px;
	padding-left: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.selectWoo-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--rsw-accent) transparent transparent transparent;
}

.select2-dropdown,
.selectWoo-dropdown {
	background: #131313;
	border: 1px solid var(--rsw-border);
	border-radius: 14px;
	box-shadow: var(--rsw-shadow);
}

.select2-search--dropdown .select2-search__field,
.selectWoo-search--dropdown .select2-search__field {
	background: rgba(255,255,255,.06);
	border: 1px solid var(--rsw-border);
	border-radius: 10px;
	color: var(--rsw-text);
}

.select2-results__option,
.selectWoo-results__option {
	color: var(--rsw-text);
}

.select2-results__option--highlighted[aria-selected],
.selectWoo-results__option--highlighted[aria-selected] {
	background: rgba(200, 169, 107, 0.24);
	color: #fff;
}

.select2-results__option[aria-selected="true"],
.selectWoo-results__option[aria-selected="true"] {
	background: rgba(200, 169, 107, 0.16);
	color: #fff;
}

.gss-price-row,
.gss-price-values {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.gss-price-visual {
	position: relative;
	padding-top: 14px;
}

.gss-price-visual input[type="range"] {
	position: absolute;
	inset: 0 0 auto 0;
	width: 100%;
	background: transparent;
	pointer-events: none;
}

.gss-price-visual input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var(--rsw-accent);
	pointer-events: auto;
}

.gss-price-track {
	position: relative;
	height: 6px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
}

.gss-price-track span {
	position: absolute;
	top: 0;
	bottom: 0;
	border-radius: 999px;
	background: var(--rsw-accent);
}

.gss-button,
.gss-shop-main a.button,
.gss-shop-main button.button,
.gss-shop-main input.button,
.gss-shop-main #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border: 1px solid var(--rsw-border);
	border-radius: 999px;
	background: transparent;
	color: var(--rsw-text);
	text-decoration: none;
}

.gss-button-secondary:hover,
.gss-shop-main a.button:hover,
.gss-shop-main button.button:hover,
.gss-shop-main input.button:hover,
.gss-shop-main #respond input#submit:hover {
	background: rgba(200, 169, 107, 0.14);
	border-color: rgba(200, 169, 107, 0.4);
	color: #fff;
}

.gss-shop-main ul.products {
	display: grid;
	grid-template-columns: repeat(var(--rsw-columns-desktop, 4), minmax(0, 1fr));
	gap: 18px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.gss-shop-main ul.products::before,
.gss-shop-main ul.products::after {
	display: none !important;
}

.gss-shop-main ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	clear: none !important;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: visible !important;
	padding: 18px;
	border: 1px solid var(--rsw-border);
	border-radius: 22px;
	background: rgba(255,255,255,.03);
}

.gss-shop-main ul.products li.product > a:not(.button),
.gss-shop-main ul.products li.product > a.woocommerce-LoopProduct-link,
.gss-shop-main ul.products li.product > a.woocommerce-loop-product__link,
.gss-shop-main ul.products li.product > a.gss-product-card-link {
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
	text-decoration: none;
}

.gss-shop-main ul.products li.product a img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 16px;
}

.gss-shop-layout.rsw-free-image-ratio .gss-shop-main ul.products li.product a img {
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
}

.gss-shop-main ul.products li.product .woocommerce-loop-product__title {
	margin: 0;
	font-family: "Bodoni MT", "Didot", Georgia, serif;
	font-size: var(--rsw-product-title-size);
	line-height: 1.15;
	color: var(--rsw-product-title-color);
}

.gss-shop-main ul.products li.product .price {
	margin-top: auto;
	font-size: var(--rsw-price-size);
	font-weight: 700;
	color: var(--rsw-price-color);
}

.gss-shop-main a.button.add_to_cart_button,
.gss-shop-main a.button.product_type_simple,
.gss-shop-main a.button.product_type_grouped {
	width: 100%;
	font-size: var(--rsw-button-size);
	padding: 10px 14px;
	color: var(--rsw-button-text-color);
	background: var(--rsw-button-background);
	border-color: var(--rsw-button-border-color);
	height: auto;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: var(--rsw-button-icon-gap, 0.45em);
}

.gss-shop-main .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
}

.gss-shop-main .page-numbers a,
.gss-shop-main .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--rsw-border);
	border-radius: 999px;
	color: var(--rsw-text);
	text-decoration: none;
}

.gss-shop-intro,
.gss-shop-results {
	margin-bottom: 16px;
	color: var(--rsw-muted);
}

.gss-shop-main .gss-shop-current-term {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin: 0 0 14px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--rsw-muted);
	font-size: .92rem;
	line-height: 1.4;
}

.gss-shop-main .gss-shop-current-term-label {
	color: var(--rsw-accent);
	font-size: .75em;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.gss-shop-main .gss-shop-current-term-value {
	color: var(--rsw-text);
	font-size: 1rem;
	font-weight: 600;
}

.gss-shop-toolbar .gss-button {
	width: auto;
}

@media (max-width: 980px) {
	.rsw-category-slider-head {
		align-items: start;
	}

	.rsw-category-slider-track {
		grid-auto-columns: minmax(240px, 54%);
	}

	.rsw-category-card {
		min-height: 380px;
	}

	.rsw-product-slider-head {
		align-items: start;
	}

	.rsw-product-slider-track {
		gap: 18px;
	}

	.rsw-product-slide {
		flex-basis: clamp(240px, 54vw, 360px);
	}

	.rsw-product-card {
		min-height: 380px;
	}

	.gss-shop-layout {
		grid-template-columns: 1fr;
	}

	.gss-shop-sidebar {
		position: static;
	}

	.gss-shop-filter-toggle {
		display: inline-flex;
	}

	.gss-shop-filter-card {
		display: none;
	}

	.gss-shop-filter-card.is-open {
		display: block;
	}

	.gss-shop-filter-card {
		max-height: none;
		overflow: visible;
		padding-right: 24px;
	}

	.gss-shop-main ul.products {
		grid-template-columns: repeat(var(--rsw-columns-tablet, 2), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.rsw-category-slider-head {
		display: grid;
	}

	.rsw-category-slider-controls {
		justify-self: end;
	}

	.rsw-category-slider-track {
		grid-auto-columns: minmax(235px, 86%);
	}

	.rsw-category-card {
		min-height: 350px;
	}

	.rsw-product-slider-head {
		display: grid;
	}

	.rsw-product-slider-controls {
		justify-self: end;
	}

	.rsw-product-slider-track {
		gap: 18px;
	}

	.rsw-product-slide {
		flex-basis: clamp(235px, 86vw, 360px);
	}

	.rsw-product-card {
		min-height: 350px;
	}

	.gss-shop-toolbar,
	.gss-price-row,
	.gss-price-values,
	.gss-shop-main ul.products {
		grid-template-columns: 1fr;
	}

	.gss-shop-main ul.products {
		grid-template-columns: repeat(var(--rsw-columns-mobile, 1), minmax(0, 1fr));
	}
}

/* Custom Category Grid Layout */
.rsw-category-grid-container,
.rsw-product-grid-container {
	position: relative;
	color: var(--rsw-text);
	margin: clamp(28px, 5vw, 64px) 0;
}

.rsw-category-grid-head,
.rsw-product-grid-head {
	margin-bottom: 24px;
}

.rsw-category-grid-title,
.rsw-product-grid-title {
	margin: 0;
	font-family: "Bodoni MT", "Didot", Georgia, serif;
	font-size: clamp(1.9rem, 3vw, 3.2rem);
	line-height: 1;
	color: #fff;
}

.rsw-category-grid-description,
.rsw-product-grid-description {
	max-width: 620px;
	margin: 8px 0 0;
	color: var(--rsw-muted);
	font-size: 1rem;
	line-height: 1.55;
}

.rsw-category-grid,
.rsw-product-grid {
	display: grid;
	grid-template-columns: repeat(var(--rsw-grid-cols, 4), minmax(0, 1fr));
	gap: 18px;
}

.rsw-category-grid-item,
.rsw-product-grid-item {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Premium CTA card */
.rsw-category-card--cta {
	background: linear-gradient(135deg, rgba(200, 169, 107, 0.12) 0%, rgba(21, 19, 17, 0.98) 100%) !important;
	border: 1px dashed var(--rsw-accent) !important;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.rsw-category-card--cta:hover {
	border-style: solid !important;
	border-color: var(--rsw-accent-strong) !important;
	box-shadow: 0 10px 30px rgba(200, 169, 107, 0.1);
}

.rsw-category-card--cta .rsw-category-card-title,
.rsw-category-card--cta .rsw-product-card-title {
	color: var(--rsw-accent-strong);
}

.rsw-category-card--cta .rsw-category-card-cta.button,
.rsw-category-card--cta .rsw-product-card-cta.button {
	align-self: flex-start;
	margin-top: 18px;
	font-size: .9rem;
	font-weight: 700;
	background: var(--rsw-accent) !important;
	color: #151311 !important;
	border: 1px solid var(--rsw-accent) !important;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease !important;
}

.rsw-category-card--cta .rsw-category-card-cta.button:hover,
.rsw-category-card--cta .rsw-product-card-cta.button:hover {
	background: var(--rsw-accent-strong) !important;
	border-color: var(--rsw-accent-strong) !important;
	color: #0d0d0d !important;
}

/* Responsive grid overrides */
@media (max-width: 980px) {
	.rsw-category-grid,
	.rsw-product-grid {
		grid-template-columns: repeat(var(--rsw-grid-cols-tablet, 3), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.rsw-category-grid,
	.rsw-product-grid {
		grid-template-columns: repeat(var(--rsw-grid-cols-mobile, 2), minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.rsw-category-grid,
	.rsw-product-grid {
		grid-template-columns: repeat(var(--rsw-grid-cols-mobile, 1), minmax(0, 1fr));
	}
}

