.swts-root {
	--swts-background-color: #0D1113;
	--swts-text: #ffffff;
	--swts-accent: #d8b36a;
	box-sizing: border-box;
	max-width: 100%;
	width: 100%;
	color: var(--swts-text);
	font-family: inherit;
	overflow: hidden;
}

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

.swts-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px clamp(20px, 4vw, 56px);
	background: #ffffff;
	color: #111619;
}

.swts-heading {
	margin: 0;
	color: inherit;
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 600;
	line-height: 1.2;
}

.swts-browse {
	flex: 0 0 auto;
	color: #111619;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.swts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, 1.1fr);
	gap: 0;
	min-width: 0;
	background: var(--swts-background-color);
}

.swts-product,
.swts-promo {
	min-width: 0;
	padding: clamp(20px, 3vw, 38px);
}

.swts-product {
	display: flex;
	flex-direction: column;
	border-right: 1px solid color-mix(in srgb, var(--swts-text) 14%, transparent);
}

.swts-image-link {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 22px;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: color-mix(in srgb, var(--swts-text) 5%, transparent);
}

.swts-image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.swts-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	padding: 7px 10px;
	background: var(--swts-accent);
	color: #111619;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
}

.swts-product-title {
	margin: 0 0 8px;
	color: var(--swts-text);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

.swts-product-title a {
	color: inherit;
	text-decoration: none;
}

.swts-price {
	min-height: 1.6em;
	margin-bottom: 10px;
	color: var(--swts-text);
	font-size: 0.98rem;
	font-weight: 700;
}

.swts-price del {
	opacity: 0.55;
	font-weight: 400;
}

.swts-price ins {
	color: var(--swts-accent);
	text-decoration: none;
}

.swts-rating {
	min-height: 20px;
	margin-bottom: 16px;
	color: var(--swts-accent);
}

.swts-rating .star-rating {
	float: none;
	margin: 0;
}

.swts-button,
.swts-promo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 11px 18px;
	border: 1px solid var(--swts-text);
	border-radius: 0;
	background: transparent;
	color: var(--swts-text);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.swts-product .swts-button {
	align-self: flex-start;
	margin-top: auto;
}

.swts-button:hover,
.swts-promo-button:hover {
	border-color: var(--swts-accent);
	background: var(--swts-accent);
	color: #111619;
}

.swts-browse:focus-visible,
.swts-image-link:focus-visible,
.swts-product-title a:focus-visible,
.swts-button:focus-visible,
.swts-promo-button:focus-visible {
	outline: 3px solid var(--swts-accent);
	outline-offset: 3px;
}

.swts-promo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	background: transparent;
}

.swts-promo-eyebrow {
	margin: 0 0 14px;
	color: var(--swts-accent);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.swts-promo-title {
	margin: 0 0 18px;
	color: var(--swts-text);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(2.8rem, 5vw, 5.5rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 0.92;
}

.swts-promo-description {
	margin: 0 0 28px;
	color: color-mix(in srgb, var(--swts-text) 78%, transparent);
	font-size: 0.95rem;
	line-height: 1.7;
}

.swts-promo-description p {
	margin: 0 0 0.8em;
}

.swts-product--unavailable {
	align-items: center;
	justify-content: center;
	min-height: 320px;
	color: color-mix(in srgb, var(--swts-text) 62%, transparent);
	text-align: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
	.swts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.swts-product:nth-child(2) {
		border-right: 0;
	}

	.swts-product:nth-child(-n+2) {
		border-bottom: 1px solid color-mix(in srgb, var(--swts-text) 14%, transparent);
	}
}

@media (max-width: 767px) {
	.swts-header {
		padding: 18px 20px;
	}

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

	.swts-product {
		border-right: 0;
		border-bottom: 1px solid color-mix(in srgb, var(--swts-text) 14%, transparent);
	}

	.swts-product,
	.swts-promo {
		width: 100%;
		padding: 24px 20px;
	}

	.swts-product--unavailable {
		min-height: 180px;
	}

	.swts-promo {
		min-height: 360px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.swts-button,
	.swts-promo-button {
		transition: none;
	}
}
