@font-face {
	font-family: "Albert Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("assets/fonts/albert-sans-400.ttf") format("truetype");
}

@font-face {
	font-family: "Albert Sans";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("assets/fonts/albert-sans-500.ttf") format("truetype");
}

@font-face {
	font-family: "Albert Sans";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("assets/fonts/albert-sans-600.ttf") format("truetype");
}

@font-face {
	font-family: "Albert Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("assets/fonts/albert-sans-700.ttf") format("truetype");
}

* {
	box-sizing: border-box;
}

:root {
	--swf-black: #000;
	--swf-text: #080808;
	--swf-muted: #545454;
	--swf-line: #ebebeb;
	--swf-soft: #f7f7f7;
	--swf-container: 1440px;
}

@keyframes swf-shine {
	100% {
		left: -200%;
	}
}

body {
	margin: 0;
	color: var(--swf-text);
	background: #fff;
	font-family: "Albert Sans", Arial, sans-serif;
}

body.swf-modal-open {
	overflow: hidden;
}

body.swf-drawer-open {
	overflow: hidden;
}

body.swf-search-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

img {
	display: block;
	max-width: 100%;
}

svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.swf-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--swf-line);
}

.swf-announcement {
	position: relative;
	height: 40px;
	overflow: hidden;
	background: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 19.2px;
	letter-spacing: .8px;
}

.swf-announcement::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 74px;
	height: 100%;
	background: #000;
}

.swf-announcement-track {
	position: absolute;
	left: 0;
	top: 0;
	right: 74px;
	height: 40px;
	display: flex;
	align-items: center;
	gap: 22px;
	overflow: hidden;
	white-space: nowrap;
	animation: swf-announcement-marquee 7.04479s linear infinite;
}

.swf-announcement-track span {
	width: 34px;
	flex: 0 0 34px;
	height: 1px;
	background: rgba(255, 255, 255, .48);
}

.swf-announcement-track strong {
	font: inherit;
	letter-spacing: inherit;
}

.swf-announcement button {
	position: absolute;
	right: 27px;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	transform: translateY(-50%);
	color: #fff;
	border: 0;
	background: transparent;
	font-size: 0;
	line-height: 1;
	cursor: pointer;
}

.swf-announcement button::before {
	content: "\00d7";
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}

@keyframes swf-announcement-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-718px);
	}
}

.swf-header-tools-row {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 82px;
	max-width: 100%;
	padding: 0 42px;
	border-bottom: 1px solid var(--swf-line);
}

.swf-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.swf-brand img {
	width: auto;
	height: 58px;
	max-width: min(340px, 45vw);
	object-fit: contain;
}

.swf-main-menu {
	display: flex;
	justify-content: center;
	gap: 35px;
	min-height: 58px;
	align-items: center;
	font-size: 15px;
	font-weight: 500;
	border-bottom: 1px solid var(--swf-line);
}

.swf-main-menu a {
	position: relative;
	display: inline-block;
	line-height: 1.7;
	transition: color .4s ease;
}

.swf-main-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .4s ease;
}

.swf-main-menu a:hover::after,
.swf-main-menu a:focus-visible::after,
.swf-main-menu a.is-active::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.swf-header-tools {
	position: absolute;
	right: 42px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 21px;
}

.swf-header-tools button,
.swf-header-tools a,
.swf-mobile-menu {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	color: #000;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: color .2s ease, opacity .2s ease;
}

.swf-header-tools button:hover,
.swf-header-tools a:hover,
.swf-mobile-menu:hover {
	color: #db1215;
}

.swf-header-tools span {
	position: absolute;
	right: -9px;
	top: -8px;
	min-width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 99px;
	background: #000;
	color: #fff;
	font-size: 10px;
	line-height: 1;
}

.swf-mobile-menu {
	position: absolute;
	left: 42px;
	top: 50%;
	transform: translateY(-50%);
	display: none;
}

.swf-hero {
	position: relative;
	height: 700px;
	background-image: url("assets/women-slideshow_1-scaled-1.webp");
	background-size: cover;
	background-position: center top;
}

.swf-hero-inner {
	max-width: var(--swf-container);
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 0 15px;
}

.swf-hero-copy {
	width: 470px;
	margin-left: 3px;
	padding-top: 18px;
}

.swf-hero-copy h2 {
	margin: 0 0 15px;
	font-size: 68px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0;
}

.swf-hero-copy p {
	margin: 0 0 33px;
	color: var(--swf-muted);
	font-size: 18px;
	line-height: 1.45;
}

.swf-button {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 49px;
	padding: 15px 24px 14px;
	border: 1px solid #000;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.swf-button::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 150%;
	width: 200%;
	background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
	transform: skew(-20deg);
}

.swf-button:hover::after {
	animation: swf-shine .75s cubic-bezier(.01, .56, 1, 1);
}

.swf-button-dark {
	color: #fff;
	background: #000;
	border-color: #000;
}

.swf-button-dark:hover {
	color: #fff;
	background: #000;
	border-color: #000;
}

.swf-hero .swf-button {
	min-height: 0;
	padding: 16px 33px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
}

.swf-hero .swf-button svg {
	width: 7px;
	height: 11px;
	padding-top: 1px;
}

.swf-slider-dots {
	position: absolute;
	left: 50%;
	bottom: 57px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	margin: 0 -4px;
}

.swf-slider-dots span {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin: 0 4px;
	border-radius: 50%;
	border: 1px solid transparent;
	background: transparent;
	transition: border-color .35s ease;
}

.swf-slider-dots span::before {
	content: "";
	width: 6px;
	height: 6px;
	display: block;
	border-radius: 50%;
	background: #d4d4d4;
	transition: background-color .35s ease;
}

.swf-slider-dots span:first-child {
	border-color: #000;
}

.swf-slider-dots span:first-child::before {
	background: #000;
}

.swf-section {
	max-width: var(--swf-container);
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.swf-builder-content {
	padding-top: 32px;
	padding-bottom: 32px;
}

.swf-builder-content:empty {
	display: none;
}

.swf-categories {
	padding-top: 74px;
	padding-bottom: 53px;
}

.swf-categories > h2,
.swf-heading-block > h2 {
	margin: 0;
	text-align: center;
	font-size: 42px;
	line-height: 1.16;
	font-weight: 500;
	letter-spacing: 0;
}

.swf-categories > h2 {
	margin-bottom: 68px;
}

.swf-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.swf-category-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #eee;
}

.swf-category-card img {
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
	transition: none;
}

.swf-category-card a {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 0;
	min-height: 46px;
	justify-content: center;
	padding: 16px 30px 15px;
	background: #fff;
	border-radius: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	transition: background-color .25s ease, color .25s ease, gap .25s ease;
}

.swf-category-card a:hover {
	background: #000;
	color: #fff;
	gap: 10px;
}

.swf-category-card svg {
	width: 0;
	height: 9px;
	transform: scale(0);
	transition: transform .3s ease, width .3s ease;
}

.swf-category-card a:hover svg {
	width: 9px;
	transform: scale(1);
}

.swf-heading-block {
	padding-top: 0;
	padding-bottom: 61px;
	text-align: center;
}

.swf-heading-block p {
	margin: 12px 0 0;
	color: var(--swf-muted);
	font-size: 16px;
	line-height: 1.5;
}

.swf-intro {
	padding-bottom: 91px;
}

.swf-intro-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	overflow: hidden;
	border-radius: 10px;
	background: var(--swf-soft);
}

.swf-intro-image {
	display: flex;
	justify-content: flex-end;
	padding-right: 15px;
}

.swf-intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swf-intro-copy {
	align-self: center;
	padding: 65px 75px;
}

.swf-intro-copy h2 {
	margin: 20px 0 24px;
	font-size: 52px;
	line-height: 1.08;
	font-weight: 500;
}

.swf-intro-copy p {
	margin: 0 0 34px;
	color: var(--swf-muted);
	font-size: 16px;
	line-height: 1.55;
}

.swf-products {
	padding-bottom: 85px;
}

.swf-best-sellers {
	padding-bottom: 70px;
}

.swf-best-sellers .swf-heading-block {
	padding-bottom: 61px;
}

.swf-product-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 30px;
}

.swf-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.swf-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 121px;
	min-height: 44px;
	padding: 13px 26px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
}

.swf-product-card {
	min-width: 0;
}

.swf-product-media {
	position: relative;
	overflow: hidden;
	background: #f3f3f3;
}

.swf-product-media img {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	transition: none;
}

.swf-product-icons {
	position: absolute;
	left: 50%;
	bottom: 26px;
	display: flex;
	gap: 6px;
	transform: translateX(-50%);
	opacity: 1;
	visibility: visible;
	pointer-events: none;
}

.swf-product-card:hover .swf-product-icons {
	pointer-events: auto;
}

.swf-product-icons button,
.swf-product-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	color: #000;
	box-shadow: none;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: background-color .25s ease, color .25s ease, transform .4s ease, opacity .4s ease, visibility .4s ease;
}

.swf-product-icons button:hover,
.swf-product-icons a:hover {
	background: #000;
	color: #fff;
}

.swf-product-icons button.is-active {
	background: #000;
	color: #fff;
}

.swf-product-card:hover .swf-product-icons button,
.swf-product-card:hover .swf-product-icons a {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.swf-product-icons > :nth-child(2) {
	transition-delay: 0s, 0s, .2s, 0s, 0s;
}

.swf-product-icons > :nth-child(3) {
	transition-delay: 0s, 0s, .3s, 0s, 0s;
}

.swf-product-icons > :nth-child(4) {
	transition-delay: 0s, 0s, .4s, 0s, 0s;
}

.swf-product-icons .swf-quick-shop {
	width: 42px;
	min-width: 0;
	gap: 0;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.swf-product-icons .swf-quick-shop span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.swf-product-summary {
	padding-top: 22px;
}

.swf-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 9px;
	color: var(--swf-muted);
	font-size: 14px;
	line-height: 22.4px;
}

.swf-rating i {
	width: 14px;
	height: 14px;
	display: block;
	background: #ffd700;
	clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 81% 100%, 50% 74%, 19% 100%, 31% 57%, 0 35%, 38% 35%);
}

.swf-rating span {
	margin-left: 0;
	color: var(--swf-muted);
	font-size: 14px;
	line-height: 22.4px;
}

.swf-product-summary h3 {
	min-height: 38.4px;
	margin: 0;
	font-size: 16px;
	line-height: 19.2px;
	font-weight: 400;
	text-transform: uppercase;
}

.swf-product-summary h3 a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.swf-price {
	margin: 11px 0 0;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	line-height: 16.8px;
}

.swf-product-summary p {
	margin: 5px 0;
	color: #ff5722;
	font-size: 14px;
	line-height: 22.4px;
}

.swf-mobile-quick {
	display: none;
	width: 100%;
	height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid #000;
	background: #fff;
	font-weight: 600;
}

.swf-service-strip {
	max-width: var(--swf-container);
	margin: 0 auto 70px;
	padding: 0 15px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.swf-service-strip div {
	min-height: 126px;
	padding: 26px 20px;
	border: 1px solid var(--swf-line);
	border-radius: 10px;
}

.swf-service-strip strong {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 500;
}

.swf-service-strip span {
	display: block;
	color: var(--swf-muted);
	font-size: 14px;
}

.swf-footer {
	background: #f7f7f7;
	border-top: 1px solid #eee;
}

.swf-footer-inner {
	max-width: var(--swf-container);
	margin: 0 auto;
	padding: 65px 15px 54px;
	display: grid;
	grid-template-columns: minmax(300px, 1.35fr) minmax(145px, .56fr) minmax(160px, .62fr) minmax(360px, 1.15fr);
	gap: 54px;
	align-items: start;
}

.swf-footer-logo {
	width: auto;
	height: 64px;
	max-width: 300px;
	object-fit: contain;
	margin-bottom: 29px;
}

.swf-footer p {
	margin: 0 0 24px;
	color: var(--swf-muted);
	font-size: 14px;
	line-height: 22.4px;
}

.swf-footer-company ul {
	display: grid;
	gap: 9px;
	max-width: 380px;
	margin: 0;
	padding: 0;
	color: #555;
	font-size: 14px;
	line-height: 22.4px;
	list-style: none;
}

.swf-footer-company strong {
	color: #000;
	font-weight: 600;
}

.swf-footer-column {
	display: grid;
	gap: 13px;
	align-content: start;
}

.swf-footer h6 {
	margin: 0 0 7px;
	color: #000;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 600;
}

.swf-footer-column a {
	width: max-content;
	max-width: 100%;
	color: #555;
	font-size: 14px;
	line-height: 19.6px;
	transition: color .2s ease;
}

.swf-footer-column a:hover {
	color: #000;
}

.swf-subscribe {
	display: flex;
	width: 100%;
	height: 52px;
	background: #fff;
	border: 1px solid var(--swf-line);
}

.swf-subscribe input {
	min-width: 0;
	flex: 1;
	padding: 0 16px;
	border: 0;
	outline: 0;
	color: #000;
	font-size: 14px;
}

.swf-subscribe button {
	width: 150px;
	border: 0;
	background: #000;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.swf-subscribe button:disabled {
	background: #777;
	cursor: default;
}

.swf-subscribe-message {
	min-height: 20px;
	margin-top: 10px;
	color: #555;
	font-size: 13px;
	line-height: 18px;
}

.swf-subscribe-message.is-error {
	color: #c00;
}

.swf-footer-bottom {
	max-width: var(--swf-container);
	margin: 0 auto;
	padding: 22px 15px 25px;
	border-top: 1px solid #e5e5e5;
	color: #555;
	font-size: 13px;
	line-height: 18px;
}

.swf-mobile-bar {
	display: none;
}

.swf-drawer-overlay[hidden],
.swf-drawer[hidden],
.swf-search-modal[hidden] {
	display: none;
}

.swf-search-modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	background: #fff;
	animation: swf-search-drop .4s ease-in-out both;
}

.swf-search-close {
	position: absolute;
	top: 37px;
	right: 29px;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	font-size: 0;
	cursor: pointer;
}

.swf-search-close::before {
	content: "\00d7";
	font-size: 34px;
	font-weight: 300;
	line-height: 28px;
}

.swf-search-modal-inner {
	width: 608px;
	max-width: calc(100vw - 40px);
	margin: 59px auto 0;
	text-align: center;
}

.swf-search-modal h2 {
	margin: 0 0 26px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
}

.swf-search-modal form {
	position: relative;
	height: 42px;
	border: 1px solid #000;
}

.swf-search-modal input[type="search"] {
	width: 100%;
	height: 100%;
	padding: 0 14px 0 44px;
	border: 0;
	outline: 0;
	font-size: 18px;
}

.swf-search-form-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	pointer-events: none;
}

@keyframes swf-search-drop {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

@keyframes swf-panel-in {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(0);
	}
}

@keyframes swf-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.swf-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(17, 17, 17, .34);
	cursor: pointer;
	opacity: 0;
	transition: opacity .28s ease;
}

.swf-drawer-overlay.is-open {
	opacity: 1;
}

.swf-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 90;
	width: min(410px, 100vw);
	height: 100vh;
	padding: 0;
	background: #fff;
	box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
	overflow: auto;
	transform: translateX(104%);
	transition: transform .34s cubic-bezier(.22, 1, .36, 1), box-shadow .34s ease;
	will-change: transform;
}

.swf-drawer.is-open {
	transform: translateX(0);
}

.swf-menu-drawer {
	left: 0;
	right: auto;
	width: min(360px, calc(100vw - 34px));
	overflow: hidden;
	transform: translateX(-104%);
}

.swf-filter-drawer {
	left: 0;
	right: auto;
	width: min(410px, 100vw);
	box-shadow: none;
	transform: translateX(-104%);
}

.swf-drawer-close {
	position: absolute;
	top: 18px;
	right: 20px;
	border: 0;
	background: transparent;
	font-size: 0;
	cursor: pointer;
	transition: color .2s ease;
}

.swf-drawer-close::before {
	content: "\00d7";
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
}

.swf-drawer-close:hover {
	color: #db1215;
}

.swf-drawer h2 {
	margin: 0 0 20px;
	padding: 18px 30px;
	border-bottom: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
}

.swf-filter-drawer h2 {
	display: flex;
	align-items: center;
	gap: 11px;
	height: 46.5px;
	margin: 0;
	padding: 14px 36px;
	border-bottom: 1px solid var(--swf-line);
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
}

.swf-filter-drawer-icon {
	display: inline-flex;
	color: #000;
}

.swf-filter-drawer-icon svg {
	width: 19px;
	height: 13px;
}

.swf-filter-drawer .swf-drawer-close {
	top: 12px;
	right: 30px;
}

.swf-filter-content {
	padding: 0 36px 36px;
}

.swf-filter-content section {
	border-bottom: 1px solid var(--swf-line);
	padding-bottom: 34px;
}

.swf-filter-content h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 83px;
	margin: 0;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.2;
}

.swf-filter-content h3::after {
	content: "^";
	width: 7px;
	height: 7px;
	border-top: 1.5px solid #000;
	border-left: 1.5px solid #000;
	font-size: 0;
	line-height: 0;
	transform: rotate(45deg) translateY(2px);
}

.swf-filter-content ul {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0 0 1px;
	list-style: none;
}

.swf-filter-content li a,
.swf-filter-content label {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 32px;
	color: var(--swf-muted);
	font-size: 14px;
	line-height: 1.2;
}

.swf-filter-content li:first-child a,
.swf-filter-content li:last-child a {
	min-height: 23px;
}

.swf-filter-content li.is-active a {
	color: #db1215;
	font-weight: 400;
}

.swf-filter-content em {
	margin-left: 3px;
	font-style: normal;
}

.swf-filter-checkbox {
	position: relative;
	gap: 0;
	cursor: pointer;
}

.swf-filter-checkbox input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.swf-checkmark {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-right: 12px;
	border: 1px solid #ebebeb;
	border-radius: 2px;
	background: #fff;
	transition: border-color .2s ease, background-color .2s ease;
}

.swf-filter-checkbox:hover .swf-checkmark {
	border-color: #000;
}

.swf-checkmark::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	opacity: 0 !important;
	transform: rotate(45deg);
}

.swf-filter-checkbox input:checked + .swf-checkmark {
	border-color: #000;
	background: #000;
}

.swf-filter-checkbox input:checked + .swf-checkmark::after {
	opacity: 1 !important;
}

.swf-filter-checkbox input:checked ~ span:last-child {
	color: #000;
	font-weight: 500;
}

.swf-price-slider {
	position: relative;
	height: 18px;
	margin: 4px 8px 21px;
}

.swf-price-track,
.swf-price-range {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	transform: translateY(-50%);
}

.swf-price-track {
	background: #e5e5e5;
}

.swf-price-range {
	left: var(--swf-price-left, 0%);
	right: var(--swf-price-right, 0%);
	background: #e60012;
}

.swf-price-handle {
	position: absolute;
	top: 50%;
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 0;
	border: 2px solid #e60012;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.swf-price-filter p {
	margin: 0;
	color: var(--swf-muted);
	font-size: 14px;
	line-height: 1.4;
}

.swf-search-drawer form {
	display: grid;
	grid-template-columns: 1fr auto;
	height: 50px;
	border: 1px solid var(--swf-line);
}

.swf-search-drawer input[type="search"] {
	min-width: 0;
	padding: 0 15px;
	border: 0;
	outline: 0;
}

.swf-search-drawer button[type="submit"] {
	width: 110px;
	border: 0;
	background: #000;
	color: #fff;
	font-weight: 600;
}

.swf-menu-drawer {
	display: flex;
	flex-direction: column;
	gap: 0;
	height: 100vh;
	height: 100dvh;
}

.swf-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	padding: 16px 20px 15px;
	border-bottom: 1px solid var(--swf-line);
}

.swf-menu-brand {
	display: inline-flex;
	align-items: center;
	max-width: 232px;
}

.swf-menu-brand img {
	width: auto;
	height: 44px;
	max-width: 218px;
	object-fit: contain;
}

.swf-menu-head .swf-drawer-close {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	background: #fff;
	color: #111;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.swf-menu-head .swf-drawer-close::before {
	font-size: 22px;
}

.swf-menu-head .swf-drawer-close:hover {
	border-color: #111;
	background: #111;
	color: #fff;
	transform: rotate(90deg);
}

.swf-menu-body {
	flex: 1 1 auto;
	overflow: auto;
	padding: 14px 20px 20px;
}

.swf-menu-nav,
.swf-menu-secondary {
	display: grid;
	gap: 0;
}

.swf-menu-nav {
	margin-bottom: 14px;
}

.swf-menu-secondary {
	padding-top: 10px;
	border-top: 1px solid var(--swf-line);
}

.swf-menu-nav a,
.swf-menu-secondary a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
	padding: 0 25px 0 0;
	border-bottom: 1px solid #f0f0f0;
	color: #111;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
}

.swf-menu-nav a::after,
.swf-menu-secondary a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2px;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	opacity: .42;
	transform: translateY(-50%) rotate(45deg);
	transition: opacity .2s ease, transform .2s ease;
}

.swf-menu-nav a:hover,
.swf-menu-nav a:focus-visible,
.swf-menu-secondary a:hover,
.swf-menu-secondary a:focus-visible,
.swf-menu-nav a.is-active,
.swf-menu-secondary a.is-active {
	color: #db1215;
}

.swf-menu-nav a:hover::after,
.swf-menu-nav a:focus-visible::after,
.swf-menu-secondary a:hover::after,
.swf-menu-secondary a:focus-visible::after {
	opacity: 1;
	transform: translate(3px, -50%) rotate(45deg);
}

.swf-menu-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--swf-line);
	background: #fafafa;
}

.swf-menu-actions a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	min-height: 62px;
	padding: 8px 6px;
	border: 1px solid #ebebeb;
	background: #fff;
	color: #111;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.swf-menu-actions a:hover,
.swf-menu-actions a:focus-visible {
	border-color: #111;
	background: #111;
	color: #fff;
}

.swf-menu-actions svg {
	width: 20px;
	height: 20px;
}

.swf-drawer-link {
	display: inline-flex;
	margin-top: 18px;
	color: var(--swf-muted);
	font-size: 14px;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.swf-empty-note {
	margin: 0 30px 22px;
	color: var(--swf-muted);
}

.swf-cart-items,
.swf-wishlist-items {
	display: grid;
	gap: 12px;
	margin: 20px 30px 22px;
}

.swf-cart-drawer .swf-cart-items {
	min-height: calc(100vh - 77px);
	margin: 20px 30px 22px;
	align-content: start;
}

.swf-cart-drawer .swf-cart-items:has(.swf-empty-cart) {
	margin: 0;
	place-items: center;
	align-content: center;
}

.swf-empty-cart {
	width: 100%;
	margin: -102px 0 0;
	padding: 0 50px;
	text-align: center;
	transform: translateY(-19px);
}

.swf-empty-cart h4 {
	margin: 37px 0;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.2;
}

.swf-empty-cart p {
	margin: 14px 0 21px;
	color: var(--swf-muted);
	font-size: 14px;
	line-height: 1.6;
}

.swf-empty-cart .swf-button {
	min-height: 45px;
	padding: 15px 22.4px 14px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.swf-empty-cart .swf-button span {
	width: 8px;
	height: 8px;
	font-size: 8px;
	line-height: 8px;
}

.swf-cart-line {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 12px;
	align-items: start;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--swf-line);
	font-size: 14px;
	text-transform: none;
}

.swf-cart-thumb img {
	width: 64px;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	background: #f3f3f3;
}

.swf-cart-title {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	line-height: 1.35;
	text-transform: uppercase;
}

.swf-cart-meta {
	display: block;
	color: var(--swf-muted);
	font-size: 13px;
	line-height: 1.4;
}

.swf-cart-line button {
	border: 0;
	background: transparent;
	color: var(--swf-muted);
	cursor: pointer;
}

.swf-cart-drawer > .swf-button {
	width: calc(100% - 60px);
	margin: 0 30px 30px;
}

.swf-cart-checkout {
	width: 100%;
	margin-top: 10px;
}

.swf-modal[hidden] {
	display: none;
}

.swf-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .38);
}

.swf-modal-panel {
	position: relative;
	width: min(510px, calc(100vw - 30px));
	max-height: calc(100vh - 60px);
	padding: 30px;
	background: #fff;
	overflow: auto;
	border-radius: 5px;
	animation: swf-modal-pop .25s ease both;
}

.swf-modal-close {
	position: absolute;
	right: 30px;
	top: 24px;
	z-index: 2;
	width: 18px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 0;
	cursor: pointer;
}

.swf-modal-close::before {
	content: "\00d7";
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
}

.swf-modal-summary {
	min-width: 0;
}

.swf-modal-meta {
	display: none;
	margin: 0 0 16px;
	color: var(--swf-muted);
	font-size: 14px;
	line-height: 22.4px;
}

.swf-modal-meta span {
	color: #db1215;
	font-weight: 600;
}

.swf-modal-panel h2 {
	margin: 0 38px 15px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
	text-transform: uppercase;
}

.swf-modal-stock {
	display: none;
	margin: 0 0 24px;
	color: #000;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.swf-modal-price {
	margin: 0 0 25px;
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
}

.swf-modal-image-wrap {
	display: none;
	background: #f3f3f3;
}

.swf-modal-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swf-modal-gallery {
	display: none;
}

.swf-modal .swf-option-label {
	margin: 0 0 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
}

.swf-modal-option {
	padding-bottom: 22px;
}

.swf-color-choice {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	font-size: 14px;
	cursor: pointer;
}

.swf-color-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.swf-color-choice span {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #c4b9aa;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
}

.swf-modal-cart-row {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: -4px;
}

.swf-modal-cart-row .swf-button {
	flex: 1 1 auto;
	height: 49px;
	min-height: 49px;
	padding: 16px 20px 15px;
	font-size: 16px;
	font-weight: 600;
}

.swf-modal-cart-row .swf-button:disabled {
	opacity: .3;
	cursor: not-allowed;
}

.swf-modal-square {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 49px;
	width: 49px;
	height: 49px;
	padding: 0;
	border: 1px solid var(--swf-line);
	background: #fff;
	color: #000;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.swf-modal-square:hover {
	border-color: #000;
	background: #000;
	color: #fff;
}

.swf-modal-square.is-active {
	border-color: #000;
	background: #000;
	color: #fff;
}

.swf-full-details {
	display: none;
	margin-top: 22px;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.swf-modal.is-quick-view .swf-modal-panel {
	width: min(1069px, calc(100vw - 60px));
	height: min(804px, calc(100vh - 96px));
	max-height: calc(100vh - 96px);
	display: grid;
	grid-template-columns: minmax(320px, 537px) minmax(0, 1fr);
	padding: 0;
	overflow: hidden;
}

.swf-modal.is-quick-view .swf-modal-image-wrap {
	position: relative;
	display: block;
	height: 100%;
}

.swf-modal.is-quick-view .swf-modal-gallery {
	position: absolute;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .86);
	color: #000;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.swf-modal.is-quick-view .swf-modal-gallery-prev {
	left: 22px;
}

.swf-modal.is-quick-view .swf-modal-gallery-next {
	right: 22px;
}

.swf-modal.is-quick-view .swf-modal-summary {
	padding: 56px 40px 40px 37px;
	overflow: auto;
}

.swf-modal.is-quick-view .swf-modal-meta,
.swf-modal.is-quick-view .swf-modal-stock,
.swf-modal.is-quick-view .swf-full-details {
	display: block;
}

.swf-modal.is-quick-view .swf-modal-panel h2 {
	margin-bottom: 18px;
	font-size: 28px;
	line-height: 33.6px;
	font-weight: 400;
}

.swf-modal.is-quick-view .swf-modal-stock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 65px;
	height: 31px;
	margin: 0 0 17px;
	padding: 0 14px;
	border: 1px solid #000;
}

.swf-modal.is-quick-view .swf-modal-price {
	margin-bottom: 27px;
	font-size: 28px;
	line-height: 28px;
	font-weight: 400;
}

.swf-modal.is-quick-view .swf-color-choice {
	min-width: 72px;
	height: 31px;
	justify-content: center;
	gap: 0;
	padding: 0 16px;
	border: 1px solid var(--swf-line);
	border-radius: 999px;
	color: var(--swf-muted);
}

.swf-modal.is-quick-view .swf-color-choice span {
	display: none;
}

.swf-modal.is-quick-view .swf-color-choice.is-active,
.swf-modal.is-quick-view .swf-color-choice.selected,
.swf-modal.is-quick-add .swf-color-choice.is-active,
.swf-modal.is-quick-add .swf-color-choice.selected {
	border-color: #000;
	background: #000;
	color: #000;
}

.swf-modal.is-quick-view .swf-color-choice.is-active,
.swf-modal.is-quick-view .swf-color-choice.selected,
.swf-modal.is-quick-add .swf-color-choice.is-active {
	color: #fff;
}

.swf-modal.is-quick-add .swf-color-choice.selected {
	color: #fff;
}

.swf-modal.is-quick-view .swf-sizes {
	gap: 12px;
}

.swf-modal.is-quick-view .swf-sizes button {
	min-width: 40px;
	height: 31px;
	border-radius: 999px;
	color: var(--swf-muted);
}

.swf-modal.is-quick-view .swf-sizes button.is-active {
	color: #fff;
}

.swf-modal.is-quick-view .swf-modal-quantity {
	display: grid;
}

.swf-modal.is-quick-add .swf-modal-panel {
	width: min(450px, calc(100vw - 30px));
	padding: 40px 20px 36px;
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	column-gap: 18px;
	align-items: start;
}

.swf-modal.is-quick-add .swf-modal-image-wrap {
	display: block;
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 70px;
	height: 104px;
	background: #f5f5f5;
}

.swf-modal.is-quick-add .swf-modal-summary {
	display: contents;
}

.swf-modal.is-quick-add .swf-modal-panel h2 {
	grid-column: 2;
	margin: 14px 28px 8px 0;
	padding-top: 0;
	font-size: 20px;
	line-height: 23px;
	font-weight: 400;
}

.swf-modal.is-quick-add .swf-modal-gallery {
	display: none;
}

.swf-modal.is-quick-add .swf-modal-price {
	grid-column: 2;
	margin: 0;
	font-size: 28px;
	line-height: 31px;
	font-weight: 400;
}

.swf-modal.is-quick-add .swf-modal-option,
.swf-modal.is-quick-add .swf-modal-quantity,
.swf-modal.is-quick-add .swf-modal-cart-row {
	grid-column: 1 / -1;
}

.swf-modal.is-quick-add .swf-modal-option {
	padding-bottom: 24px;
}

.swf-modal.is-quick-add .swf-modal-option:first-of-type {
	margin-top: 20px;
}

.swf-modal.is-quick-add .swf-option-label {
	margin-bottom: 14px;
}

.swf-modal.is-quick-add .swf-color-choice {
	min-width: 64px;
	height: 31px;
	justify-content: center;
	gap: 0;
	padding: 0 16px;
	border: 1px solid var(--swf-line);
	border-radius: 999px;
	color: var(--swf-muted);
}

.swf-modal.is-quick-add .swf-color-choice span {
	display: none;
}

.swf-modal.is-quick-add .swf-sizes {
	gap: 12px;
}

.swf-modal.is-quick-add .swf-sizes button {
	min-width: 40px;
	height: 31px;
	border-radius: 999px;
	color: var(--swf-muted);
}

.swf-modal.is-quick-view .swf-sizes button {
	min-width: 40px;
	height: 31px;
	border-radius: 999px;
	color: var(--swf-muted);
}

.swf-modal.is-quick-add .swf-sizes button.is-active,
.swf-modal.is-quick-add .swf-sizes button.selected {
	color: #fff;
}

.swf-modal.is-quick-view .swf-sizes button.is-active,
.swf-modal.is-quick-view .swf-sizes button.selected {
	color: #fff;
}

.swf-modal-quantity {
	display: none;
	width: 174px;
	height: 49px;
	margin: 0 0 17px;
	background: #f7f7f7;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	text-align: center;
	font-size: 18px;
}

.swf-modal.is-quick-add .swf-modal-quantity {
	display: grid;
}

.swf-modal-quantity button {
	height: 49px;
	border: 0;
	background: transparent;
	font-size: 22px;
	cursor: pointer;
}

.swf-modal.is-quick-add .swf-modal-cart-row .swf-button {
	width: 100%;
	height: 49px;
}

.swf-modal.is-quick-add .swf-full-details,
.swf-modal.is-quick-add .swf-modal-meta,
.swf-modal.is-quick-add .swf-modal-stock {
	display: none;
}

@keyframes swf-modal-pop {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.swf-shop-header {
	max-width: var(--swf-container);
	margin: 0 auto;
	padding: 69px 15px 65px;
	text-align: center;
}

.swf-shop-header h1 {
	margin: 0 0 12px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 500;
}

.swf-shop-header p {
	margin: 0;
	color: var(--swf-muted);
	font-size: 16px;
}

.swf-category-title {
	padding-top: 71px;
	padding-bottom: 94px;
}

.swf-category-title h1 {
	margin: 0;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 400;
	letter-spacing: 0;
}

.swf-shop-products {
	padding-bottom: 85px;
}

.swf-category-products {
	max-width: none;
	padding-left: 50px;
	padding-right: 50px;
}

.swf-catalog-toolbar {
	position: relative;
	display: grid;
	grid-template-columns: 220px 1fr 220px;
	align-items: start;
	min-height: 83px;
	margin: 0 0 0;
}

.swf-filter-toggle {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	width: 95px;
	height: 45px;
	padding: 0 12px;
	border: 1px solid var(--swf-line);
	background: #fff;
	color: #000;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	outline: 0;
	box-shadow: none;
}

.swf-filter-toggle span {
	display: block;
	flex: 0 0 19px;
	width: 18px;
	height: 14px;
	background:
		linear-gradient(#000, #000) 0 2px / 19px 2px no-repeat,
		linear-gradient(#000, #000) 0 7px / 12px 2px no-repeat,
		linear-gradient(#000, #000) 0 12px / 6px 2px no-repeat;
}

.swf-filter-toggle:focus,
.swf-filter-toggle:focus-visible {
	border-color: var(--swf-line);
	outline: 0;
	box-shadow: none;
}

.swf-view-switcher {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	height: 45px;
}

.swf-view-switcher a {
	display: block;
	width: auto;
	height: auto;
	color: #d3d3d3;
	font-size: 13px;
	line-height: 1;
}

.swf-view-switcher svg {
	display: block;
	fill: currentColor;
}

.swf-view-list svg {
	width: 19px;
	height: 13px;
}

.swf-view-grid-2 svg {
	width: 13px;
	height: 13px;
}

.swf-view-grid-3 svg {
	width: 22px;
	height: 13px;
}

.swf-view-grid-4 svg {
	width: 30px;
	height: 13px;
}

.swf-view-grid-5 svg {
	width: 38px;
	height: 13px;
}

.swf-view-switcher .is-active {
	color: #000;
}

.swf-ordering {
	justify-self: end;
	width: 220px;
	height: 45px;
}

.swf-ordering select {
	width: 100%;
	height: 45px;
	padding: 0 43px 0 17px;
	border: 1px solid var(--swf-line);
	border-radius: 0;
	background: #fff;
	color: #545454;
	font-size: 14px;
	appearance: auto;
	outline: 0;
	box-shadow: none;
}

.swf-ordering select:focus,
.swf-ordering select:focus-visible {
	border-color: var(--swf-line);
	outline: 0;
	box-shadow: none;
}

.swf-category-products .swf-product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 42px 30px;
}

.swf-category-products .swf-columns-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.swf-category-products .swf-columns-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.swf-category-products .swf-columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.swf-category-products .swf-columns-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.swf-category-products .swf-columns-1 {
	grid-template-columns: 1fr;
	gap: 28px;
}

.swf-category-products .swf-columns-1 .swf-product-card {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.swf-category-products .swf-columns-1 .swf-product-media img {
	aspect-ratio: 2 / 3;
}

.swf-category-products .swf-columns-1 .swf-product-icons {
	bottom: 18px;
}

.swf-category-products .swf-columns-1 .swf-product-summary {
	padding-top: 4px;
}

.swf-category-products .swf-columns-1 .swf-product-summary h3 {
	min-height: 0;
	font-size: 22px;
	line-height: 1.25;
}

.swf-category-products .swf-product-media img {
	aspect-ratio: 2 / 3;
}

.swf-category-products .swf-product-summary {
	padding-top: 18px;
}

.swf-page-content {
	max-width: 960px;
	margin: 0 auto;
	padding: 68px 15px 90px;
}

.swf-page-content h1 {
	margin: 0 0 28px;
	text-align: center;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 500;
}

.swf-page-body {
	font-size: 15px;
	line-height: 1.6;
}

.swf-page-body .woocommerce {
	width: 100%;
}

.swf-page-body .woocommerce-notices-wrapper:empty {
	display: none;
}

.swf-page-body .woocommerce form.lost_reset_password,
.swf-page-body .woocommerce form.woocommerce-ResetPassword {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 15px;
	line-height: 1.6;
}

.swf-page-body .woocommerce form.lost_reset_password p,
.swf-page-body .woocommerce form.woocommerce-ResetPassword p {
	margin: 0 0 24px;
	padding: 0;
}

.swf-page-body .woocommerce form.lost_reset_password p:first-child,
.swf-page-body .woocommerce form.woocommerce-ResetPassword p:first-child {
	margin-bottom: 23px;
	color: #000;
}

.swf-page-body .woocommerce form.lost_reset_password label,
.swf-page-body .woocommerce form.woocommerce-ResetPassword label {
	display: block;
	margin: 0 0 6px;
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
}

.swf-page-body .woocommerce form.lost_reset_password .required,
.swf-page-body .woocommerce form.woocommerce-ResetPassword .required {
	color: #e60012;
	text-decoration: none;
}

.swf-page-body .woocommerce form.lost_reset_password .required-field-message,
.swf-page-body .woocommerce form.woocommerce-ResetPassword .required-field-message {
	display: none;
}

.swf-page-body .woocommerce form.lost_reset_password input.input-text,
.swf-page-body .woocommerce form.woocommerce-ResetPassword input.input-text {
	display: block;
	width: min(430px, 100%);
	height: 36px;
	margin: 0;
	padding: 0 12px;
	border: 1px solid #3c3c3c;
	border-radius: 3px;
	background: #fff;
	color: #000;
	font-size: 15px;
	line-height: 36px;
	outline: 0;
	box-shadow: none;
}

.swf-page-body .woocommerce form.lost_reset_password input.input-text:focus,
.swf-page-body .woocommerce form.woocommerce-ResetPassword input.input-text:focus {
	border-color: #000;
}

.swf-page-body .woocommerce form.lost_reset_password .woocommerce-Button,
.swf-page-body .woocommerce form.woocommerce-ResetPassword .woocommerce-Button,
.swf-page-body .woocommerce form.lost_reset_password button[type="submit"],
.swf-page-body .woocommerce form.woocommerce-ResetPassword button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	height: 35px;
	margin: -1px 0 0;
	padding: 0 16px;
	border: 0;
	border-radius: 3px;
	background: #e9e7ed;
	color: #3c3c3c;
	font-size: 14px;
	font-weight: 700;
	line-height: 35px;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.swf-page-body .woocommerce form.lost_reset_password .woocommerce-Button:hover,
.swf-page-body .woocommerce form.woocommerce-ResetPassword .woocommerce-Button:hover,
.swf-page-body .woocommerce form.lost_reset_password button[type="submit"]:hover,
.swf-page-body .woocommerce form.woocommerce-ResetPassword button[type="submit"]:hover {
	background: #000;
	color: #fff;
}

.swf-lost-password-page {
	max-width: none;
	padding: 72px 15px 74px;
}

.swf-lost-password-page h1 {
	margin-bottom: 132px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 500;
}

.swf-lost-password-page .swf-page-body {
	width: min(552px, 100%);
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.5;
}

.swf-lost-password-page .woocommerce form.lost_reset_password,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword {
	font-size: 14px;
	line-height: 1.5;
}

.swf-lost-password-page .woocommerce form.lost_reset_password p,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword p {
	float: none;
	clear: both;
	width: 100%;
	margin-bottom: 26px;
}

.swf-lost-password-page .woocommerce form.lost_reset_password .form-row,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword .form-row,
.swf-lost-password-page .woocommerce form.lost_reset_password .form-row-first,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword .form-row-first,
.swf-lost-password-page .woocommerce form.lost_reset_password .form-row-last,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword .form-row-last {
	float: none;
	width: 100%;
}

.swf-lost-password-page .woocommerce form.lost_reset_password p:first-child,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword p:first-child {
	margin-bottom: 24px;
}

.swf-lost-password-page .woocommerce form.lost_reset_password label,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword label {
	margin-bottom: 6px;
	font-size: 14px;
}

.swf-lost-password-page .woocommerce form.lost_reset_password input.input-text,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword input.input-text {
	width: 100%;
	height: 45px;
	border-color: #e5e5e5;
	border-radius: 0;
	line-height: 45px;
	transition: border-color .4s ease;
}

.swf-lost-password-page .woocommerce form.lost_reset_password input.input-text:hover,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword input.input-text:hover,
.swf-lost-password-page .woocommerce form.lost_reset_password input.input-text:active,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword input.input-text:active,
.swf-lost-password-page .woocommerce form.lost_reset_password input.input-text:focus,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword input.input-text:focus {
	border-color: #000;
}

.swf-lost-password-page .woocommerce form.lost_reset_password .woocommerce-Button,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword .woocommerce-Button,
.swf-lost-password-page .woocommerce form.lost_reset_password button[type="submit"],
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword button[type="submit"] {
	width: 100%;
	height: 46px;
	margin-top: -4px;
	border-radius: 0;
	background: #000;
	color: #fff;
	line-height: 46px;
	position: relative;
	overflow: hidden;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.swf-lost-password-page .woocommerce form.lost_reset_password .woocommerce-Button::after,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword .woocommerce-Button::after,
.swf-lost-password-page .woocommerce form.lost_reset_password button[type="submit"]::after,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword button[type="submit"]::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 150%;
	width: 200%;
	background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
	transform: skew(-20deg);
}

.swf-lost-password-page .woocommerce form.lost_reset_password .woocommerce-Button:hover,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword .woocommerce-Button:hover,
.swf-lost-password-page .woocommerce form.lost_reset_password button[type="submit"]:hover,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword button[type="submit"]:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}

.swf-lost-password-page .woocommerce form.lost_reset_password .woocommerce-Button:hover::after,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword .woocommerce-Button:hover::after,
.swf-lost-password-page .woocommerce form.lost_reset_password button[type="submit"]:hover::after,
.swf-lost-password-page .woocommerce form.woocommerce-ResetPassword button[type="submit"]:hover::after {
	animation: swf-shine .75s cubic-bezier(.01, .56, 1, 1);
}

.swf-account-login-page {
	max-width: none;
	padding: 72px 15px 94px;
}

.swf-account-login-page h1 {
	margin-bottom: 48px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 500;
}

.swf-account-login-page .woocommerce {
	width: min(551px, 100%);
	margin: 0 auto;
}

.swf-account-login-page .woocommerce-customer-login h2 {
	margin: 0 0 30px;
	text-align: center;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 600;
}

.swf-account-login-page .woocommerce-form-login {
	max-width: 551px;
	margin: 0 auto;
	padding: 0;
	border: 0;
}

.swf-account-login-page .woocommerce form.woocommerce-form-login.login,
.swf-account-login-page .woocommerce .woocommerce-form-login.login {
	max-width: 551px !important;
	margin: 0 auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.swf-account-login-page .woocommerce-form-login p {
	margin: 0 0 16px;
}

.swf-account-login-page .woocommerce-form-login .woocommerce-form-row {
	position: relative;
}

.swf-account-login-page .woocommerce-form-login .woocommerce-form-row > label {
	position: absolute;
	top: 0;
	left: 15px;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 50px;
	margin: 0;
	color: #545454;
	font-size: 14px;
	line-height: 1;
	pointer-events: none;
	transform-origin: left top;
	transition: transform .2s ease, top .2s ease, color .2s ease;
}

.swf-account-login-page .woocommerce-form-login .woocommerce-form-row.is-focused > label,
.swf-account-login-page .woocommerce-form-login .woocommerce-form-row.focused > label {
	top: 8px;
	color: #545454;
	transform: translateY(-.6rem) scale(.8);
}

.swf-account-login-page .woocommerce-form-login .password-input {
	position: static;
	display: block;
}

.swf-account-login-page .woocommerce-form-login input.input-text {
	width: 100% !important;
	height: 50px !important;
	padding: 13px 15px !important;
	border: 1px solid #ebebeb !important;
	border-radius: 0 !important;
	background: #fff !important;
	color: #545454 !important;
	font-size: 14px !important;
	line-height: normal;
	outline: 0;
	transition: border-color .4s ease;
}

.swf-account-login-page .woocommerce-form-login .woocommerce-form-row.is-focused input.input-text,
.swf-account-login-page .woocommerce-form-login .woocommerce-form-row.focused input.input-text {
	padding-top: 24px !important;
	padding-bottom: 7px !important;
}

.swf-account-login-page .woocommerce-form-login input.input-text:hover,
.swf-account-login-page .woocommerce-form-login input.input-text:active,
.swf-account-login-page .woocommerce-form-login input.input-text:focus {
	border-color: #000;
}

.swf-account-login-page .woocommerce-form-login .required {
	color: #db1215;
	text-decoration: none;
}

.swf-account-login-page .woocommerce-form-login .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.swf-account-login-page .woocommerce-form-login .show-password-input {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	cursor: pointer;
	opacity: .55;
}

.swf-account-login-page .woocommerce-form-login .show-password-input::before,
.swf-account-login-page .woocommerce-form-login .show-password-input::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1.6px solid currentColor;
	transform: translate(-50%, -50%);
}

.swf-account-login-page .woocommerce-form-login .show-password-input::before {
	width: 18px;
	height: 11px;
	border-radius: 50%;
}

.swf-account-login-page .woocommerce-form-login .show-password-input::after {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.swf-account-login-page .woocommerce-form-login .show-password-input:hover {
	opacity: 1;
}

.swf-account-login-page .woocommerce-form-row--remember {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 22px;
}

.swf-account-login-page .woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000;
	font-size: 14px;
	cursor: pointer;
}

.swf-account-login-page .woocommerce-form-login__rememberme input {
	width: 14px;
	height: 14px;
	margin: 0;
	border: 1px solid #cfcfcf;
	border-radius: 2px;
	appearance: none;
	background: #fff;
}

.swf-account-login-page .woocommerce-form-login__rememberme input:checked {
	background: #000;
	box-shadow: inset 0 0 0 3px #fff;
}

.swf-account-login-page .woocommerce-lost-password {
	position: relative;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: .3rem;
}

.swf-account-login-page .woocommerce-form-row--submit {
	margin: 0;
}

.swf-account-login-page .woocommerce-form-login__submit {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50% !important;
	height: 46px !important;
	padding: 0 20px !important;
	border: 1px solid #000 !important;
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 46px !important;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.swf-account-login-page .woocommerce-form-login__submit::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 150%;
	width: 200%;
	background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
	transform: skew(-20deg);
}

.swf-account-login-page .woocommerce-form-login__submit:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.swf-account-login-page .woocommerce-form-login__submit:hover::after {
	animation: swf-shine .75s cubic-bezier(.01, .56, 1, 1);
}

.swf-wishlist-page {
	display: grid;
	justify-items: center;
	gap: 22px;
}

.swf-wishlist-page .swf-wishlist-items {
	width: min(520px, 100%);
}

.swf-info-page {
	max-width: var(--swf-container);
	margin: 0 auto;
	padding: 60px 15px 90px;
}

.swf-about-intro,
.swf-about-contact,
.swf-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 70px;
	align-items: center;
}

.swf-about-intro {
	padding-top: 18px;
}

.swf-about-contact {
	padding-top: 78px;
}

.swf-about-image img,
.swf-about-contact-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.swf-about-image img {
	aspect-ratio: 2 / 3;
}

.swf-about-contact-image img {
	aspect-ratio: 4 / 5;
}

.swf-about-copy,
.swf-about-contact-copy {
	max-width: 560px;
}

.swf-about-copy h1,
.swf-about-contact-copy h2,
.swf-contact-details h1,
.swf-contact-form-panel h2 {
	margin: 0 0 26px;
	font-size: 36px;
	line-height: 1.15;
	font-weight: 500;
}

.swf-about-copy p,
.swf-about-contact-copy p,
.swf-contact-details p,
.swf-contact-form-panel p {
	margin: 0 0 14px;
	color: #555;
	font-size: 15px;
	line-height: 1.65;
}

.swf-contact-map {
	margin: 0 calc(50% - 50vw) 70px;
}

.swf-contact-map iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
	filter: grayscale(.12);
}

.swf-contact-grid {
	align-items: start;
	padding-bottom: 20px;
}

.swf-contact-details h2 {
	margin: 30px 0 10px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.swf-social-icons {
	display: flex;
	gap: 22px;
	margin-top: 30px;
}

.swf-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: #000;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
}

.swf-contact-form-panel {
	max-width: 620px;
	justify-self: end;
}

.swf-contact-form {
	display: grid;
	gap: 16px;
	margin-top: 30px;
}

.swf-contact-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.swf-contact-form input,
.swf-contact-form textarea {
	width: 100%;
	border: 1px solid var(--swf-line);
	border-radius: 0;
	background: #fff;
	color: #000;
	font: inherit;
	outline: 0;
}

.swf-contact-form input {
	height: 48px;
	padding: 0 16px;
}

.swf-contact-form textarea {
	min-height: 180px;
	padding: 14px 16px;
	resize: vertical;
}

.swf-contact-form input:focus,
.swf-contact-form textarea:focus {
	border-color: #000;
}

.swf-contact-form button {
	width: 120px;
	height: 48px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 767px) {
	.swf-info-page {
		padding: 34px 15px 86px;
	}

	.swf-about-intro,
	.swf-about-contact,
	.swf-contact-grid,
	.swf-contact-form-row {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.swf-about-contact {
		padding-top: 42px;
	}

	.swf-about-copy h1,
	.swf-about-contact-copy h2,
	.swf-contact-details h1,
	.swf-contact-form-panel h2 {
		font-size: 28px;
	}

	.swf-contact-map {
		margin-bottom: 38px;
	}

	.swf-contact-map iframe {
		height: 320px;
	}

	.swf-contact-form-panel {
		justify-self: stretch;
	}
}

.swf-product-topline {
	max-width: 1456px;
	margin: 0 auto;
	padding: 36px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.swf-product-breadcrumb {
	color: #545454;
	font-size: 14px;
	line-height: 1.2;
}

.swf-product-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.swf-product-breadcrumb span {
	margin: 0 8px;
}

.swf-product-breadcrumb span:last-child {
	margin-right: 0;
}

.swf-product-nav-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
	color: #000;
}

.swf-product-nav-prev {
	display: block;
	width: 12px;
	height: 12px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.swf-product-nav-grid {
	display: block;
	width: 14px;
	height: 14px;
	background-image: radial-gradient(currentColor 1.8px, transparent 2px);
	background-size: 7px 7px;
}

.swf-single-product {
	max-width: 1456px;
	margin: 0 auto;
	padding: 38px 0 90px;
	display: grid;
	grid-template-columns: 694px minmax(0, 708px);
	gap: 54px;
	align-items: start;
	justify-content: start;
}

.swf-single-gallery {
	position: relative;
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.swf-product-thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 606px;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none;
}

.swf-product-thumbs::-webkit-scrollbar {
	display: none;
}

.swf-product-thumbs button {
	flex: 0 0 144px;
	width: 96px;
	height: 144px;
	padding: 0;
	border: 1px solid transparent;
	background: #f4f2ef;
	cursor: pointer;
	box-sizing: border-box;
}

.swf-product-thumbs button.is-active {
	border-color: #000;
}

.swf-product-thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.swf-product-main-image {
	position: relative;
	overflow: hidden;
	background: #f4f2ef;
	cursor: crosshair;
}

.swf-product-main-image > img {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	display: block;
}

.swf-gallery-expand {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
}

.swf-gallery-expand::before,
.swf-gallery-expand::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
}

.swf-gallery-expand::before {
	width: 18px;
	height: 18px;
	background:
		linear-gradient(#000, #000) left top / 7px 1.5px no-repeat,
		linear-gradient(#000, #000) left top / 1.5px 7px no-repeat,
		linear-gradient(#000, #000) right top / 7px 1.5px no-repeat,
		linear-gradient(#000, #000) right top / 1.5px 7px no-repeat,
		linear-gradient(#000, #000) left bottom / 7px 1.5px no-repeat,
		linear-gradient(#000, #000) left bottom / 1.5px 7px no-repeat,
		linear-gradient(#000, #000) right bottom / 7px 1.5px no-repeat,
		linear-gradient(#000, #000) right bottom / 1.5px 7px no-repeat;
	transform: translate(-50%, -50%);
}

.swf-gallery-expand::after {
	display: none;
}

.swf-gallery-expand:hover {
	background: #000;
}

.swf-gallery-expand:hover::before,
.swf-gallery-expand:hover::after {
	background:
		linear-gradient(#fff, #fff) left top / 7px 1.5px no-repeat,
		linear-gradient(#fff, #fff) left top / 1.5px 7px no-repeat,
		linear-gradient(#fff, #fff) right top / 7px 1.5px no-repeat,
		linear-gradient(#fff, #fff) right top / 1.5px 7px no-repeat,
		linear-gradient(#fff, #fff) left bottom / 7px 1.5px no-repeat,
		linear-gradient(#fff, #fff) left bottom / 1.5px 7px no-repeat,
		linear-gradient(#fff, #fff) right bottom / 7px 1.5px no-repeat,
		linear-gradient(#fff, #fff) right bottom / 1.5px 7px no-repeat;
}

.swf-gallery-arrow {
	position: absolute;
	top: 50%;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .78);
	cursor: pointer;
	transform: translateY(-50%);
}

.swf-gallery-prev {
	left: 22px;
}

.swf-gallery-next {
	right: 22px;
}

.swf-gallery-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-top: 1.5px solid #000;
	border-right: 1.5px solid #000;
}

.swf-zoom-lens {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	display: none;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(0, 0, 0, .35);
	background: rgba(255, 255, 255, .38);
	pointer-events: none;
}

.swf-zoom-preview {
	position: absolute;
	left: calc(100% + 54px);
	top: 0;
	z-index: 20;
	display: none;
	width: 520px;
	height: 520px;
	background-color: #f4f2ef;
	background-repeat: no-repeat;
	border: 0;
	box-shadow: 0 10px 34px rgba(0, 0, 0, .12);
	pointer-events: none;
}

.swf-single-gallery.is-zooming .swf-zoom-lens,
.swf-single-gallery.is-zooming .swf-zoom-preview {
	display: block;
}

.swf-gallery-prev::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.swf-gallery-next::before {
	transform: translate(-65%, -50%) rotate(45deg);
}

.swf-single-summary {
	padding-top: 2px;
}

.swf-single-meta {
	margin: 0 0 20px;
	color: var(--swf-muted);
	font-size: 14px;
	line-height: 20px;
}

.swf-single-meta a {
	color: inherit;
	text-decoration: none;
}

.swf-single-summary h1 {
	margin: 0 0 19px;
	font-size: 29px;
	line-height: 1.18;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0;
}

.swf-stock-badge {
	display: inline-flex;
	min-height: 30px;
	align-items: center;
	margin: 0 0 18px;
	padding: 0 14px;
	border: 1px solid #000;
	color: #000;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.swf-single-price {
	margin: 0 0 14px;
	font-size: 25px;
	line-height: 1.2;
	font-weight: 600;
}

.swf-sold {
	margin: 19px 0 0;
	color: var(--swf-muted);
	font-size: 16px;
}

.swf-sold-top {
	margin: 0 0 10px;
	color: #ff5722;
	font-size: 14px;
	line-height: 22.4px;
}

.swf-variations {
	width: 100%;
	margin: 0 0 18px;
	border: 0;
	border-collapse: collapse;
}

.swf-variations tr,
.swf-variations th,
.swf-variations td {
	display: block;
	padding: 0;
	border: 0;
	text-align: left;
}

.swf-variations th {
	margin: 0 0 13px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: capitalize;
}

.swf-variations td {
	margin: 0 0 22px;
}

.swf-single-choice-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.swf-single-choice-group button {
	min-width: 42px;
	height: 30px;
	padding: 0 15px;
	border: 1px solid #e3e3e3;
	border-radius: 999px;
	background: #fff;
	color: #555;
	font-size: 14px;
	line-height: 28px;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.swf-single-choice-group button:hover,
.swf-single-choice-group button.is-active {
	border-color: #000;
	background: #000;
	color: #fff;
}

.swf-single-atc-row {
	display: grid;
	grid-template-columns: 174px minmax(260px, 1fr) 49px 49px;
	gap: 8px;
	align-items: end;
}

.swf-single-quantity {
	margin-bottom: 0;
}

.swf-quantity-label {
	margin: 0 0 9px;
	font-size: 14px;
	font-weight: 600;
}

.swf-quantity-control {
	display: inline-grid;
	grid-template-columns: repeat(3, 58px);
	width: 174px;
	height: 49px;
	background: #f5f5f5;
}

.swf-quantity-control button,
.swf-quantity-control input {
	width: 100%;
	border: 0;
	background: transparent;
	color: #000;
	text-align: center;
	font-size: 20px;
	line-height: 49px;
}

.swf-quantity-control button {
	cursor: pointer;
}

.swf-quantity-control input {
	appearance: textfield;
	font-size: 18px;
}

.swf-quantity-control input::-webkit-outer-spin-button,
.swf-quantity-control input::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.swf-cart-form .swf-button {
	width: 100%;
	height: 50px;
	margin: 0;
	font-size: 15px;
	font-weight: 700;
}

.swf-cart-form .swf-button:disabled {
	border-color: #b5b5b5;
	background: #b5b5b5;
	color: #fff;
	cursor: default;
}

.swf-single-icon {
	display: flex;
	width: 49px;
	height: 50px;
	align-items: center;
	justify-content: center;
	border: 1px solid #e5e5e5;
	background: #fff;
	color: #000;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease;
}

.swf-single-icon:hover {
	border-color: #000;
}

.swf-single-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.swf-product-extra {
	margin-top: 31px;
	display: grid;
	gap: 17px;
	font-size: 14px;
	line-height: 1.2;
}

.swf-share-button {
	display: inline-flex;
	width: max-content;
	align-items: center;
	gap: 10px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.swf-share-button svg {
	width: 17px;
	height: 20px;
	fill: currentColor;
}

.swf-single-service-content {
	margin-top: 36px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	color: #555;
	font-size: 14px;
	line-height: 1.55;
}

.swf-service-item {
	min-height: 158px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 17px;
	padding: 28px 34px;
	border: 1px solid #e5e5e5;
	text-align: center;
}

.swf-service-item p {
	margin: 0;
}

.swf-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #000;
}

.swf-service-icon svg {
	display: block;
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.swf-safe-checkout {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: max-content minmax(0, 285px);
	justify-content: center;
	gap: 24px;
	align-items: center;
	padding-top: 14px;
}

.swf-safe-title {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.swf-safe-title svg {
	flex: 0 0 21px;
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.swf-safe-checkout img {
	width: 285px;
	max-width: 100%;
	height: auto;
	display: block;
}

.swf-product-tabs {
	max-width: 1456px;
	margin: -16px auto 86px;
	padding: 0;
	border: 1px solid #e5e5e5;
}

.swf-gallery-lightbox[hidden] {
	display: none;
}

.swf-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 180;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 43px 0;
	background: #000;
	color: #fff;
}

.swf-gallery-lightbox img {
	max-width: calc(100vw - 220px);
	max-height: calc(100vh - 86px);
	object-fit: contain;
}

.swf-lightbox-close {
	position: absolute;
	top: 13px;
	right: 16px;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 0;
	cursor: pointer;
	opacity: .86;
}

.swf-lightbox-close::before {
	content: "\00d7";
	font-size: 34px;
	font-weight: 200;
	line-height: 1;
}

.swf-lightbox-count {
	position: absolute;
	left: 8px;
	top: 14px;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
}

.swf-lightbox-arrow {
	position: absolute;
	top: 50%;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	opacity: .92;
	transform: translateY(-50%);
}

.swf-lightbox-prev {
	left: 6px;
}

.swf-lightbox-next {
	right: 6px;
}

.swf-lightbox-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.swf-lightbox-prev::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.swf-lightbox-next::before {
	transform: translate(-65%, -50%) rotate(45deg);
}

.swf-lightbox-tool {
	position: absolute;
	top: 17px;
	width: 22px;
	height: 22px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	opacity: .82;
}

.swf-lightbox-zoom {
	right: 82px;
}

.swf-lightbox-full {
	right: 48px;
}

.swf-lightbox-zoom::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 3px;
	width: 9px;
	height: 9px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
}

.swf-lightbox-zoom::after {
	content: "";
	position: absolute;
	left: 13px;
	top: 13px;
	width: 7px;
	height: 1.5px;
	background: currentColor;
	transform: rotate(45deg);
}

.swf-lightbox-full::before {
	content: "";
	position: absolute;
	inset: 3px;
	background:
		linear-gradient(currentColor, currentColor) left top / 7px 1.5px no-repeat,
		linear-gradient(currentColor, currentColor) left top / 1.5px 7px no-repeat,
		linear-gradient(currentColor, currentColor) right top / 7px 1.5px no-repeat,
		linear-gradient(currentColor, currentColor) right top / 1.5px 7px no-repeat,
		linear-gradient(currentColor, currentColor) left bottom / 7px 1.5px no-repeat,
		linear-gradient(currentColor, currentColor) left bottom / 1.5px 7px no-repeat,
		linear-gradient(currentColor, currentColor) right bottom / 7px 1.5px no-repeat,
		linear-gradient(currentColor, currentColor) right bottom / 1.5px 7px no-repeat;
}

.swf-gallery-lightbox.is-zoomed img {
	max-width: none;
	max-height: none;
	width: auto;
	height: auto;
	transform: scale(1.35);
}

.swf-gallery-lightbox.is-expanded img {
	max-width: calc(100vw - 80px);
	max-height: calc(100vh - 40px);
}

.swf-tabs-nav {
	display: flex;
	gap: 45px;
	padding: 0 36px;
	border-bottom: 1px solid #e5e5e5;
}

.swf-tabs-nav button {
	position: relative;
	padding: 19px 0 18px;
	border: 0;
	background: transparent;
	color: #555;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
}

.swf-tabs-nav button.is-active {
	color: #000;
}

.swf-tabs-nav button.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: #000;
}

.swf-tab-panel {
	display: none;
	min-height: 271px;
	padding: 51px 37px 55px;
	color: #555;
	font-size: 15px;
	line-height: 1.7;
}

.swf-tab-panel.is-active {
	display: block;
}

.swf-tab-panel h2,
.swf-reviews-block h2 {
	margin: 0 0 20px;
	color: #000;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
}

.swf-tab-panel ul {
	margin: 0;
	padding-left: 18px;
}

.swf-reviews-block button {
	min-width: 132px;
	height: 42px;
	margin-top: 12px;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.swf-reviews-block {
	position: relative;
	min-height: 92px;
}

.swf-review-list {
	max-width: 760px;
}

.swf-no-reviews {
	margin: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.swf-write-review {
	position: absolute;
	top: 0;
	right: 0;
}

.swf-review-item {
	padding: 0 0 21px;
	margin: 0 0 21px;
	border-bottom: 1px solid #eee;
}

.swf-review-item:last-child {
	margin-bottom: 0;
}

.swf-review-item-head {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 8px;
}

.swf-review-item-head strong {
	color: #000;
	font-size: 15px;
	font-weight: 600;
}

.swf-review-item-head span {
	color: #777;
	font-size: 13px;
}

.swf-review-stars-display {
	display: flex;
	gap: 3px;
	margin-bottom: 8px;
}

.swf-review-stars-display i {
	width: 14px;
	height: 14px;
	background: #ddd;
	clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 81% 100%, 50% 74%, 19% 100%, 31% 57%, 0 35%, 38% 35%);
}

.swf-review-stars-display i.is-filled {
	background: #ffd700;
}

.swf-review-item p {
	margin: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.swf-review-modal[hidden] {
	display: none;
}

.swf-review-modal {
	position: fixed;
	inset: 0;
	z-index: 170;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgba(0, 0, 0, .42);
}

.swf-review-dialog {
	position: relative;
	width: min(636px, calc(100vw - 40px));
	max-height: calc(100vh - 60px);
	padding: 29px 36px 35px;
	overflow: auto;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .24);
}

.swf-review-close {
	position: absolute;
	top: 17px;
	right: 18px;
	width: 24px;
	height: 24px;
	border: 0;
	background: transparent;
	color: #000;
	font-size: 0;
	cursor: pointer;
}

.swf-review-close::before {
	content: "\00d7";
	font-size: 34px;
	font-weight: 300;
	line-height: 22px;
}

.swf-review-dialog h2 {
	max-width: 510px;
	margin: 0 0 14px;
	font-size: 26px;
	line-height: 1.08;
	font-weight: 500;
	text-transform: none;
}

.swf-review-dialog > p {
	margin: 0 0 37px;
	color: #000;
	font-size: 15px;
	line-height: 1.45;
}

.swf-review-dialog span,
.swf-review-form span {
	color: inherit;
}

.swf-review-form {
	display: grid;
	gap: 16px;
}

.swf-review-form > label {
	display: block;
	margin-bottom: -5px;
	color: #000;
	font-size: 14px;
	line-height: 1.2;
}

.swf-review-fields label {
	display: block;
	color: #000;
	font-size: 14px;
	line-height: 1.2;
}

.swf-review-fields input {
	margin-top: 11px;
}

.swf-review-stars {
	display: flex;
	justify-content: flex-start;
	gap: 8px;
	margin: -4px 0 7px;
}

.swf-review-stars input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.swf-review-stars span {
	display: block;
	width: 25px;
	height: 25px;
	background: #e3e3e3;
	clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 81% 100%, 50% 74%, 19% 100%, 31% 57%, 0 35%, 38% 35%);
	cursor: pointer;
	transition: background-color .18s ease;
}

.swf-review-stars label:hover span,
.swf-review-stars input:checked + span {
	background: #ffd700;
}

.swf-review-stars[data-rating="1"] label:nth-child(-n+1) span,
.swf-review-stars[data-rating="2"] label:nth-child(-n+2) span,
.swf-review-stars[data-rating="3"] label:nth-child(-n+3) span,
.swf-review-stars[data-rating="4"] label:nth-child(-n+4) span,
.swf-review-stars[data-rating="5"] label:nth-child(-n+5) span {
	background: #ffd700;
}

.swf-review-form textarea,
.swf-review-form input[type="text"],
.swf-review-form input[name="email"] {
	width: 100%;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	background: #fff;
	color: #000;
	font: inherit;
	outline: 0;
}

.swf-review-form textarea {
	min-height: 120px;
	padding: 12px;
	resize: vertical;
}

.swf-review-form input[type="text"],
.swf-review-form input[type="email"] {
	height: 45px;
	padding: 0 12px;
}

.swf-review-form textarea:focus,
.swf-review-form input[type="text"]:focus,
.swf-review-form input[name="email"]:focus {
	border-color: #000;
}

.swf-review-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	margin-top: 4px;
}

.swf-review-save {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: center;
	gap: 11px !important;
	margin-top: 2px;
	color: #000;
	font-size: 14px;
}

.swf-review-save input {
	width: 20px;
	height: 20px;
	margin: 0;
	border: 1px solid #e5e5e5;
	appearance: none;
}

.swf-review-save input:checked {
	background: #000;
	box-shadow: inset 0 0 0 4px #fff;
}

.swf-review-message {
	min-height: 18px;
	color: #c00;
	font-size: 13px;
}

.swf-review-message.is-success {
	color: #1f7a2e;
}

.swf-review-form button[type="submit"] {
	width: 100%;
	height: 45px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.swf-review-form button[type="submit"]:disabled {
	background: #b5b5b5;
	border-color: #b5b5b5;
	cursor: default;
}

.swf-related-products {
	max-width: 1456px;
	margin: 0 auto 116px;
}

.swf-related-products h2 {
	margin: 0 0 58px;
	text-align: center;
	font-size: 42px;
	line-height: 1.18;
	font-weight: 500;
	letter-spacing: 0;
}

.swf-related-products .swf-product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.swf-related-products .swf-product-media img {
	aspect-ratio: 2 / 3;
}

.swf-sticky-cart {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 55;
	display: grid;
	grid-template-columns: minmax(300px, 1fr) 183px 123px 190px;
	gap: 12px;
	align-items: center;
	padding: 11px 72px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 -2px 12px rgba(0, 0, 0, .05);
	transform: translateY(110%);
	transition: transform .28s ease;
}

.swf-sticky-cart.is-visible {
	transform: translateY(0);
}

.swf-sticky-product {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.swf-sticky-product img {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	object-fit: cover;
}

.swf-sticky-product strong {
	min-width: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.swf-sticky-cart select {
	width: 183px;
	height: 45px;
	padding: 0 16px;
	border: 1px solid #e5e5e5;
	background: #fff;
	color: #555;
	font-size: 14px;
}

.swf-sticky-cart .swf-quantity-control {
	width: 123px;
	grid-template-columns: repeat(3, 41px);
	height: 45px;
}

.swf-sticky-cart .swf-quantity-control button,
.swf-sticky-cart .swf-quantity-control input {
	line-height: 45px;
}

.swf-sticky-add {
	height: 45px;
	border: 1px solid #b5b5b5;
	background: #b5b5b5;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: default;
}

.swf-sticky-add:not(:disabled) {
	border-color: #000;
	background: #000;
	cursor: pointer;
}

.swf-product-panel-body table {
	width: 100%;
	border-collapse: collapse;
}

.swf-product-panel-body th,
.swf-product-panel-body td {
	padding: 8px 0;
	border-top: 1px solid #eee;
	text-align: left;
	font-weight: 400;
}

.swf-product-panel-body th {
	width: 110px;
	color: #000;
	font-weight: 600;
}

.swf-modal-title {
	margin: 0 0 20px;
	text-transform: uppercase;
}

.swf-sizes {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 0;
}

.swf-sizes button {
	min-width: 30px;
	height: 30px;
	padding: 0 9px;
	border: 1px solid var(--swf-line);
	background: #fff;
	font-size: 14px;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.swf-single-sizes {
	margin-bottom: 0;
}

.swf-sizes button.is-active {
	border-color: #000;
	background: #000;
	color: #fff;
}

@media (max-width: 1199px) {
	.swf-announcement,
	.swf-announcement-track {
		height: 38px;
		font-size: 11px;
	}

	.swf-announcement strong:first-child,
	.swf-announcement-track span {
		display: none;
	}

	.swf-announcement button {
		right: 14px;
	}

	.swf-header-tools-row {
		grid-template-columns: 42px 1fr 84px;
		min-height: 74px;
		padding: 0 18px;
	}

	.swf-mobile-menu {
		display: inline-flex;
		left: 18px;
	}

	.swf-brand {
		justify-self: center;
	}

	.swf-brand img {
		width: auto;
		height: 42px;
		max-width: 196px;
	}

	.swf-main-menu,
	.swf-header-tools button[aria-label="Account"],
	.swf-header-tools button[aria-label="Wishlist"],
	.swf-header-tools a[aria-label="Account"] {
		display: none;
	}

	.swf-header-tools {
		right: 18px;
		gap: 18px;
	}

	.swf-hero {
		background-position: 64% 0;
	}

	.swf-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.swf-hero {
		height: 400px;
		background-position: 65% 0;
	}

	.swf-hero-copy {
		width: 260px;
	}

	.swf-hero-copy h2 {
		font-size: 40px;
	}

	.swf-hero-copy p {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.swf-button {
		min-height: 42px;
		padding: 11px 24px;
	}

	.swf-categories {
		padding-top: 30px;
		padding-bottom: 15px;
	}

	.swf-categories > h2,
	.swf-heading-block > h2 {
		font-size: 22px;
	}

	.swf-categories > h2 {
		margin-bottom: 30px;
	}

	.swf-category-grid,
	.swf-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 15px;
	}

	.swf-category-card {
		border-radius: 6px;
	}

	.swf-category-card a {
		bottom: 15px;
		min-width: 104px;
		min-height: 42px;
		padding: 13px 20px;
	}

	.swf-heading-block {
		padding-bottom: 30px;
	}

	.swf-heading-block p {
		font-size: 14px;
	}

	.swf-intro {
		padding-bottom: 36px;
	}

	.swf-intro-card {
		grid-template-columns: 1fr;
		gap: 20px;
		border-radius: 6px;
	}

	.swf-intro-image {
		padding-right: 0;
	}

	.swf-intro-copy {
		padding: 15px 15px 24px;
		text-align: center;
	}

	.swf-intro-copy h2 {
		margin-top: 0;
		font-size: 24px;
	}

	.swf-products {
		padding-bottom: 30px;
	}

	.swf-product-icons {
		display: none;
	}

	.swf-mobile-quick {
		display: inline-flex;
	}

	.swf-product-summary h3 {
		font-size: 13px;
	}

	.swf-service-strip,
	.swf-footer-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.swf-service-strip {
		margin-bottom: 15px;
	}

	.swf-footer-inner {
		padding: 34px 15px 28px;
	}

	.swf-footer-logo {
		width: auto;
		height: 52px;
		max-width: 240px;
		margin-bottom: 20px;
	}

	.swf-footer-bottom {
		padding-bottom: 88px;
	}

	.swf-subscribe {
		height: auto;
		display: grid;
		grid-template-columns: 1fr;
	}

	.swf-subscribe input,
	.swf-subscribe button {
		width: 100%;
		height: 48px;
	}

	.swf-mobile-bar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 60;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		height: 67px;
		background: #fff;
		border-top: 1px solid var(--swf-line);
	}

	.swf-mobile-bar a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		font-size: 11px;
	}

	.swf-mobile-bar svg {
		width: 20px;
		height: 20px;
	}

	.swf-shop-header {
		padding: 49px 15px 48px;
	}

	.swf-shop-header h1 {
		font-size: 28px;
	}

	.swf-single-product {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 15px 86px;
	}

	.swf-single-summary h1 {
		font-size: 24px;
	}

	.swf-modal.is-quick-view .swf-modal-panel {
		width: min(510px, calc(100vw - 30px));
		height: auto;
		max-height: calc(100vh - 30px);
		display: block;
		overflow: auto;
	}

	.swf-modal.is-quick-view .swf-modal-image-wrap {
		height: auto;
		aspect-ratio: 2 / 3;
	}

	.swf-modal.is-quick-view .swf-modal-summary {
		padding: 26px 22px 24px;
		overflow: visible;
	}

	.swf-modal.is-quick-view .swf-modal-panel h2 {
		font-size: 22px;
		line-height: 1.2;
	}
}

@media (max-width: 767px) {
	html,
	body {
		width: 100%;
		overflow-x: hidden;
	}

	body {
		padding-bottom: 67px;
	}

	.swf-header-tools-row {
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		padding: 0 15px;
	}

	.swf-header-tools {
		right: 15px;
		gap: 0;
	}

	.swf-header-tools .swf-cart-toggle,
	.swf-header-tools a[aria-label="Wishlist"] {
		display: none;
	}

	.swf-brand img {
		width: auto;
		height: 38px;
		max-width: min(186px, 54vw);
	}

	.swf-hero {
		height: 402px;
		background-size: auto 100%;
		background-position: 67% top;
	}

	.swf-hero-inner {
		padding: 0 18px;
		align-items: center;
	}

	.swf-hero-copy {
		width: min(245px, 66vw);
		margin-left: 0;
		padding-top: 14px;
	}

	.swf-hero-copy h2 {
		font-size: 40px;
		line-height: 1.08;
	}

	.swf-hero .swf-button {
		width: 213px;
		max-width: 100%;
		padding: 16px 24px;
		font-size: 17px;
	}

	.swf-section,
	.swf-category-products {
		padding-left: 15px;
		padding-right: 15px;
	}

	.swf-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 15px;
	}

	.swf-shop-header,
	.swf-category-title {
		padding: 50px 15px 48px;
	}

	.swf-catalog-toolbar {
		grid-template-columns: 112px minmax(0, 1fr);
		column-gap: 14px;
		min-height: 76px;
		align-items: start;
	}

	.swf-filter-toggle {
		width: 95px;
	}

	.swf-view-switcher {
		justify-content: center;
		gap: 18px;
		min-width: 0;
	}

	.swf-view-grid-3,
	.swf-view-grid-4,
	.swf-view-grid-5 {
		display: none !important;
	}

	.swf-ordering {
		grid-column: 1 / -1;
		justify-self: stretch;
		width: 100%;
		height: 0;
		overflow: hidden;
		opacity: 0;
		pointer-events: none;
	}

	.swf-category-products .swf-product-grid,
	.swf-category-products .swf-columns-1,
	.swf-category-products .swf-columns-2,
	.swf-category-products .swf-columns-3,
	.swf-category-products .swf-columns-4,
	.swf-category-products .swf-columns-5,
	.swf-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 15px;
	}

	.swf-category-products .swf-columns-1 .swf-product-card {
		display: block;
	}

	.swf-product-card {
		min-width: 0;
	}

	.swf-product-media {
		overflow: hidden;
	}

	.swf-product-icons {
		left: 50%;
		right: auto;
		bottom: 10px;
		display: flex;
		gap: 6px;
		pointer-events: auto;
	}

	.swf-product-icons button,
	.swf-product-icons a,
	.swf-product-card:hover .swf-product-icons button,
	.swf-product-card:hover .swf-product-icons a {
		width: 35px;
		height: 35px;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.swf-product-icons svg {
		width: 16px;
		height: 16px;
	}

	.swf-mobile-quick {
		display: none;
	}

	.swf-product-summary {
		padding-top: 12px;
	}

	.swf-rating {
		gap: 3px;
		margin-bottom: 7px;
		font-size: 13px;
	}

	.swf-rating i {
		width: 12px;
		height: 12px;
	}

	.swf-product-summary h3 {
		min-height: 38px;
		font-size: 14px;
		line-height: 19px;
	}

	.swf-price {
		margin-top: 8px;
		font-size: 14px;
	}

	.swf-product-summary p {
		margin-top: 5px;
		font-size: 13px;
	}

	.swf-product-topline {
		padding: 34px 15px 0;
		display: block;
	}

	.swf-product-breadcrumb {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		font-size: 14px;
		line-height: 1.45;
	}

	.swf-product-breadcrumb span {
		margin: 0;
	}

	.swf-product-nav-buttons {
		display: none;
	}

	.swf-single-product {
		display: block;
		width: 100%;
		max-width: 100%;
		padding: 28px 15px 86px;
	}

	.swf-single-gallery {
		display: flex;
		flex-direction: column-reverse;
		width: 100%;
		gap: 10px;
	}

	.swf-product-main-image {
		width: 100%;
		cursor: default;
	}

	.swf-product-main-image > img {
		width: 100%;
		aspect-ratio: 2 / 3;
		object-fit: cover;
	}

	.swf-product-thumbs {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 64px;
		gap: 8px;
		max-width: 100%;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 2px;
	}

	.swf-product-thumbs button {
		width: 64px;
		height: 96px;
		flex-basis: auto;
	}

	.swf-gallery-expand {
		top: 14px;
		right: 14px;
		width: 42px;
		height: 42px;
	}

	.swf-gallery-arrow {
		width: 44px;
		height: 44px;
	}

	.swf-gallery-prev {
		left: 14px;
	}

	.swf-gallery-next {
		right: 14px;
	}

	.swf-zoom-lens,
	.swf-zoom-preview {
		display: none !important;
	}

	.swf-single-summary {
		padding-top: 24px;
	}

	.swf-single-summary h1 {
		font-size: 24px;
		line-height: 1.24;
	}

	.swf-single-atc-row {
		grid-template-columns: 1fr 49px 49px;
		gap: 8px;
	}

	.swf-single-quantity {
		grid-column: 1 / -1;
	}

	.swf-quantity-control {
		width: 100%;
		grid-template-columns: 49px minmax(0, 1fr) 49px;
	}

	.swf-single-service-content {
		grid-template-columns: 1fr;
	}

	.swf-safe-checkout {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.swf-product-tabs {
		margin: 0 15px 60px;
	}

	.swf-related-products {
		padding-bottom: 25px;
	}

	.swf-drawer {
		width: min(360px, calc(100vw - 28px));
		max-width: calc(100vw - 28px);
	}

	.swf-filter-drawer {
		width: min(330px, calc(100vw - 28px));
	}

	.swf-modal {
		padding: 15px;
	}

	.swf-modal-panel,
	.swf-modal.is-quick-add .swf-modal-panel,
	.swf-modal.is-quick-view .swf-modal-panel {
		width: min(510px, calc(100vw - 30px));
		max-height: calc(100vh - 30px);
		overflow: auto;
	}

	.swf-modal.is-quick-add .swf-modal-panel,
	.swf-modal.is-quick-view .swf-modal-panel {
		display: block;
	}

	.swf-mobile-bar {
		left: 0;
		right: auto;
		width: 100%;
		max-width: 100%;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		box-shadow: 0 -2px 12px rgba(0, 0, 0, .06);
		overflow: hidden;
	}

	.swf-mobile-bar a,
	.swf-mobile-bar button {
		position: relative;
		min-width: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: #fff;
		color: #000;
		font: inherit;
		font-size: 11px;
		line-height: 1;
		text-decoration: none;
		cursor: pointer;
	}

	.swf-mobile-bar svg {
		width: 22px;
		height: 22px;
		fill: currentColor;
	}

	.swf-mobile-count {
		position: absolute;
		top: 10px;
		right: calc(50% - 23px);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 16px;
		height: 16px;
		padding: 0 4px;
		border-radius: 999px;
		background: #e60012;
		color: #fff;
		font-size: 10px;
		line-height: 16px;
	}
}

@media (max-width: 430px) {
	.swf-category-products .swf-product-grid,
	.swf-category-products .swf-columns-1,
	.swf-category-products .swf-columns-2,
	.swf-category-products .swf-columns-3,
	.swf-category-products .swf-columns-4,
	.swf-category-products .swf-columns-5,
	.swf-product-grid {
		gap: 28px 14px;
	}

	.swf-product-icons button,
	.swf-product-icons a,
	.swf-product-card:hover .swf-product-icons button,
	.swf-product-card:hover .swf-product-icons a {
		width: 32px;
		height: 32px;
	}
}
