:root {
	--qly-ink: #171a18;
	--qly-muted: #626962;
	--qly-line: #dfe3de;
	--qly-paper: #ffffff;
	--qly-soft: #f4f6f3;
	--qly-green: #315c47;
	--qly-green-dark: #1e3f31;
	--qly-blush: #f2e4e2;
	--qly-gold: #d9b75c;
	--qly-coral: #d65f45;
	--qly-container: 1440px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--qly-paper);
	color: var(--qly-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
}

body.admin-bar .qly-header {
	top: 32px;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
	letter-spacing: 0;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.screen-reader-text,
.qly-skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.qly-skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	background: #fff;
	padding: 10px 14px;
	border: 2px solid var(--qly-ink);
}

.qly-container {
	width: min(calc(100% - 48px), var(--qly-container));
	margin-inline: auto;
}

.qly-announcement {
	--qly-marquee-duration: 38s;
	position: relative;
	overflow: hidden;
	width: min(calc(100% - 48px), var(--qly-container));
	margin-inline: auto;
	background: #1f2924;
	color: #fff;
	font-size: 11px;
	line-height: 1;
	border: 0;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.qly-announcement-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: qly-marquee var(--qly-marquee-duration) linear infinite;
}

.qly-announcement-group {
	display: flex;
	flex: none;
	align-items: center;
}

.qly-announcement-group span {
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding-left: 30px;
	white-space: nowrap;
}

.qly-announcement-group span::after {
	content: "";
	flex: none;
	width: 4px;
	height: 4px;
	margin-left: 30px;
	background: var(--qly-gold);
}

.qly-announcement:hover .qly-announcement-track {
	animation-play-state: paused;
}

.qly-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgb(255 255 255 / 96%);
	border-bottom: 0;
	backdrop-filter: blur(12px);
}

.qly-header-main {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr) auto;
	align-items: center;
	min-height: 76px;
	gap: 28px;
}

.qly-brand {
	display: inline-flex;
	align-items: center;
	width: 164px;
}

.qly-brand img {
	width: 100%;
	height: 50px;
	object-fit: contain;
	object-position: left center;
}

.qly-primary-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.2vw, 34px);
	min-width: 0;
}

.qly-primary-nav a {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.qly-primary-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -7px;
	height: 1px;
	background: var(--qly-green);
	transition: right 180ms ease;
}

.qly-primary-nav a:hover::after,
.qly-primary-nav a:focus-visible::after {
	right: 0;
}

.qly-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}

.qly-icon-button {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--qly-ink);
	cursor: pointer;
}

.qly-icon-button:hover,
.qly-icon-button:focus-visible {
	background: var(--qly-soft);
}

.qly-icon-button svg {
	width: 21px;
	height: 21px;
}

.qly-cart-count {
	position: absolute;
	top: 2px;
	right: 1px;
	display: grid;
	place-items: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--qly-green);
	color: #fff;
	font-size: 10px;
	line-height: 1;
}

.qly-menu-toggle {
	display: none;
}

.qly-search-panel {
	border-top: 1px solid var(--qly-line);
	background: #fff;
}

.qly-search-panel[hidden],
.qly-mobile-nav[hidden] {
	display: none;
}

.qly-search-panel form {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 18px 0;
}

.qly-search-panel input {
	width: 100%;
	padding: 10px 0;
	border: 0;
	outline: 0;
	font-size: 18px;
}

.qly-search-panel button {
	padding: 10px 20px;
	border: 0;
	background: var(--qly-ink);
	color: #fff;
	cursor: pointer;
}

.qly-mobile-nav {
	display: none;
}

.qly-hero {
	position: relative;
	isolation: isolate;
	width: min(calc(100% - 48px), 1440px);
	height: auto;
	aspect-ratio: 8 / 3;
	min-height: 0;
	margin-inline: auto;
	overflow: hidden;
	background: #d7ded8;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.qly-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 520ms ease, visibility 520ms ease;
	border-radius: 0 !important;
}

.qly-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.qly-hero-slide > picture,
.qly-hero-slide > picture > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 0 !important;
}

.qly-hero-slide > picture > img {
	object-fit: cover;
	object-position: center;
	transform: scale(1.015);
	will-change: transform;
}

.qly-hero-slide.is-active > picture > img {
	animation: qly-hero-ken-burns 7.2s cubic-bezier(0.2, 0.55, 0.35, 1) both;
}

.qly-hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(16 26 21 / 66%) 0%, rgb(16 26 21 / 30%) 42%, transparent 72%);
}

.qly-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	color: #fff;
}

.qly-eyebrow {
	margin: 0 0 12px;
	color: var(--qly-green);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.qly-hero .qly-eyebrow {
	color: #f5d788;
}

.qly-hero h1,
.qly-hero h2 {
	max-width: 700px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 5vw, 72px);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: 0;
}

.qly-hero-content > p:not(.qly-eyebrow) {
	max-width: 560px;
	margin: 22px 0 28px;
	font-size: 18px;
}

.qly-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 700;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.qly-button svg,
.qly-text-link svg,
.qly-collection-copy svg {
	width: 17px;
	height: 17px;
}

.qly-button-dark {
	background: #fff;
	color: var(--qly-ink);
}

.qly-button-dark:hover,
.qly-button-dark:focus-visible {
	background: var(--qly-green);
	color: #fff;
}

.qly-hero-dots {
	position: absolute;
	z-index: 4;
	left: 50%;
	bottom: 24px;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.qly-hero-dots button {
	width: 34px;
	height: 4px;
	padding: 0;
	border: 0;
	background: rgb(255 255 255 / 48%);
	cursor: pointer;
}

.qly-hero-dots button.is-active {
	background: #fff;
}

.qly-section {
	padding: 78px 0;
	scroll-margin-top: 110px;
}

.qly-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 32px;
}

.qly-section-heading h2,
.qly-shop-main h1,
.qly-page h1,
.qly-article h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 3.4vw, 50px);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: 0;
}

.qly-section-heading p:last-child {
	margin: 12px 0 0;
	color: var(--qly-muted);
}

.qly-section-heading-centered {
	justify-content: center;
	text-align: center;
}

.qly-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	font-size: 14px;
	font-weight: 700;
}

.qly-product-grid,
.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px 20px;
	margin: 0 !important;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product,
.qly-product-grid li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	list-style: none;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	margin: 0 0 16px;
	background: var(--qly-soft);
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform 260ms ease;
}

.woocommerce ul.products li.product a:hover img {
	transform: scale(1.015);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 48px;
	padding: 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

.woocommerce ul.products li.product .price {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 26px;
	margin: 7px 0 12px;
	color: var(--qly-green-dark);
	font-size: 16px;
	font-weight: 700;
}

.woocommerce ul.products li.product .price del {
	color: #8a8f8b;
	font-size: 13px;
	font-weight: 500;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border: 1px solid var(--qly-ink);
	border-radius: 0;
	background: transparent;
	color: var(--qly-ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--qly-ink);
	color: #fff;
}

.woocommerce span.onsale {
	min-width: 0;
	min-height: 0;
	margin: 12px !important;
	padding: 6px 9px;
	border-radius: 0;
	background: var(--qly-green);
	font-size: 11px;
	line-height: 1;
}

.qly-collections-section {
	background: var(--qly-soft);
}

.qly-collection-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px;
}

.qly-collection {
	position: relative;
	grid-column: span 4;
	min-height: 430px;
	overflow: hidden;
	background: #dfe4df;
}

.qly-collection:nth-child(4),
.qly-collection:nth-child(5) {
	grid-column: span 6;
	min-height: 470px;
}

.qly-collection > picture,
.qly-collection > picture > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.qly-collection > picture > img {
	object-fit: cover;
	transition: transform 450ms ease;
}

.qly-collection::after {
	content: "";
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(transparent, rgb(15 21 17 / 76%));
}

.qly-collection:hover > picture > img {
	transform: scale(1.025);
}

.qly-collection-copy {
	position: absolute;
	z-index: 2;
	left: 24px;
	right: 24px;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #fff;
}

.qly-collection-copy small {
	margin-bottom: 4px;
	font-size: 12px;
	opacity: 0.82;
}

.qly-collection-copy strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 500;
}

.qly-collection-copy > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 700;
}

.qly-how-section {
	background: #fff;
}

.qly-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--qly-line);
	list-style: none;
}

.qly-steps li {
	position: relative;
	min-height: 250px;
	padding: 30px 28px;
	border-right: 1px solid var(--qly-line);
}

.qly-steps li:first-child {
	border-left: 1px solid var(--qly-line);
}

.qly-steps li > span {
	position: absolute;
	top: 24px;
	right: 24px;
	color: #aab0ab;
	font-size: 12px;
	font-weight: 700;
}

.qly-steps li > svg {
	width: 34px;
	height: 34px;
	margin: 20px 0 28px;
	color: var(--qly-green);
}

.qly-steps h3 {
	margin: 0 0 8px;
	font-size: 17px;
}

.qly-steps p {
	margin: 0;
	color: var(--qly-muted);
	font-size: 14px;
}

.qly-values {
	padding: 28px 0;
	background: var(--qly-green-dark);
	color: #fff;
}

.qly-values-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.qly-values-grid > div {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 28px;
	border-right: 1px solid rgb(255 255 255 / 22%);
}

.qly-values-grid > div:first-child {
	padding-left: 0;
}

.qly-values-grid > div:last-child {
	border-right: 0;
}

.qly-values-grid svg {
	width: 27px;
	height: 27px;
	flex: 0 0 auto;
	color: #f2d889;
}

.qly-values-grid span {
	display: flex;
	flex-direction: column;
}

.qly-values-grid strong {
	font-size: 14px;
}

.qly-values-grid small {
	color: rgb(255 255 255 / 68%);
	font-size: 12px;
}

.qly-footer {
	padding: 72px 0 24px;
	background: #171a18;
	color: #fff;
}

.qly-footer-grid {
	display: grid;
	grid-template-columns: 1.45fr repeat(3, 0.72fr) 1.25fr;
	gap: 48px;
}

.qly-footer-brand img {
	width: 160px;
	height: 50px;
	object-fit: contain;
	object-position: left;
	filter: brightness(0) invert(1);
}

.qly-footer p {
	max-width: 350px;
	color: rgb(255 255 255 / 66%);
	font-size: 14px;
}

.qly-footer h2 {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 700;
}

.qly-footer-grid > div:not(.qly-footer-brand) > a {
	display: block;
	margin: 10px 0;
	color: rgb(255 255 255 / 68%);
	font-size: 13px;
}

.qly-footer-grid a:hover {
	color: #fff;
}

.qly-newsletter form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 46px;
	margin-top: 20px;
	border-bottom: 1px solid rgb(255 255 255 / 45%);
}

.qly-form-message {
	margin: 8px 0 0 !important;
	color: #d9f0df !important;
}

.qly-form-error {
	color: #ffd0cc !important;
}

.qly-newsletter input {
	min-width: 0;
	padding: 12px 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
}

.qly-newsletter button {
	display: grid;
	place-items: center;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.qly-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 58px;
	padding-top: 20px;
	border-top: 1px solid rgb(255 255 255 / 18%);
	color: rgb(255 255 255 / 50%);
	font-size: 11px;
}

.qly-content,
.qly-shop-main {
	min-height: 60vh;
	padding-top: 64px;
	padding-bottom: 88px;
}

.qly-shop-main .woocommerce-breadcrumb {
	margin-bottom: 30px;
	color: var(--qly-muted);
	font-size: 12px;
}

.qly-shop-main .woocommerce-products-header {
	margin-bottom: 36px;
}

.qly-shop-main .woocommerce-result-count,
.qly-shop-main .woocommerce-ordering {
	margin-bottom: 30px;
}

.qly-shop-main select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	min-height: 44px;
	padding: 9px 12px;
	border: 1px solid var(--qly-line);
	border-radius: 0;
	background: #fff;
}

.woocommerce div.product {
	display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: 64px;
}

.woocommerce div.product .product_title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 3.3vw, 50px);
	font-weight: 500;
	line-height: 1.12;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--qly-green);
}

.woocommerce div.product form.cart .button {
	min-height: 48px;
	background: var(--qly-ink);
	color: #fff;
}

.woocommerce div.product form.cart .button:hover {
	background: var(--qly-green);
}

.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--qly-green);
	background: var(--qly-soft);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--qly-green);
}

.qly-article,
.qly-page {
	max-width: 900px;
}

@media (max-width: 1100px) {
	.qly-header-main {
		grid-template-columns: auto 1fr auto;
	}

	.qly-menu-toggle {
		display: inline-grid;
	}

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

	.qly-primary-nav {
		display: none;
	}

	.qly-mobile-nav {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
		padding: 12px max(24px, calc((100vw - var(--qly-container)) / 2));
		border-top: 1px solid var(--qly-line);
		background: #fff;
	}

	.qly-mobile-nav a {
		padding: 12px;
		font-size: 14px;
	}

	.qly-product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.qly-collection {
		grid-column: span 6;
	}

	.qly-collection:last-child {
		grid-column: 4 / span 6;
	}

	.qly-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.qly-steps li:nth-child(3) {
		border-left: 1px solid var(--qly-line);
	}

	.qly-values-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 20px;
	}

	.qly-values-grid > div:nth-child(2) {
		border-right: 0;
	}

	.qly-footer-grid {
		grid-template-columns: 1.4fr repeat(3, 0.8fr);
	}

	.qly-newsletter {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	body.admin-bar .qly-header {
		top: 46px;
	}

	.qly-container {
		width: min(calc(100% - 32px), var(--qly-container));
	}

	.qly-announcement {
		--qly-marquee-duration: 30s;
		width: 100%;
		margin-inline: 0;
		font-size: 10px;
	}

	.qly-header-main {
		min-height: 66px;
		gap: 8px;
	}

	.qly-brand {
		width: 135px;
	}

	.qly-brand img {
		height: 42px;
	}

	.qly-header-actions .qly-icon-button:nth-child(2) {
		display: none;
	}

	.qly-icon-button {
		width: 38px;
		height: 38px;
	}

	.qly-mobile-nav {
		grid-template-columns: 1fr 1fr;
		padding: 10px 16px 18px;
	}

	.qly-search-panel form {
		grid-template-columns: 20px minmax(0, 1fr);
	}

	.qly-search-panel button {
		grid-column: 1 / -1;
	}

	.qly-hero {
		width: 100%;
		height: min(64svh, 560px);
		aspect-ratio: auto;
		min-height: 420px;
		max-height: 560px;
		margin-inline: 0;
	}

	.qly-hero-slide > picture > img {
		object-position: 62% center;
	}

	.qly-hero-slide::after {
		background: linear-gradient(0deg, rgb(14 24 19 / 74%) 0%, rgb(14 24 19 / 20%) 75%);
	}

	.qly-hero-content {
		justify-content: flex-end;
		padding-bottom: 64px;
	}

	.qly-hero h1,
	.qly-hero h2 {
		width: 100%;
		max-width: 100%;
		overflow-wrap: break-word;
		font-size: 34px;
		line-height: 1.08;
		text-wrap: balance;
	}

	.qly-hero-content > p:not(.qly-eyebrow) {
		max-width: 32ch;
		margin: 16px 0 22px;
		font-size: 16px;
		overflow-wrap: anywhere;
	}

	.qly-hero-dots {
		bottom: 18px;
	}

	.qly-section {
		padding: 54px 0;
	}

	.qly-section-heading {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		margin-bottom: 24px;
	}

	.qly-section-heading h2,
	.qly-shop-main h1,
	.qly-page h1,
	.qly-article h1 {
		font-size: 36px;
	}

	.qly-product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 12px;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		min-height: 60px;
		font-size: 14px;
	}

	.woocommerce ul.products li.product .button {
		width: 100%;
		padding-inline: 8px;
	}

	.qly-collection-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		margin-inline: -16px;
		padding-inline: 16px;
		scrollbar-width: none;
	}

	.qly-collection {
		flex: 0 0 82vw;
		min-height: 430px !important;
		scroll-snap-align: start;
	}

	.qly-steps {
		grid-template-columns: 1fr;
	}

	.qly-steps li,
	.qly-steps li:nth-child(3) {
		min-height: 0;
		padding: 24px 18px 28px 72px;
		border: 0;
		border-top: 1px solid var(--qly-line);
	}

	.qly-steps li:last-child {
		border-bottom: 1px solid var(--qly-line);
	}

	.qly-steps li > span {
		top: 29px;
		left: 18px;
		right: auto;
	}

	.qly-steps li > svg {
		width: 28px;
		height: 28px;
		margin: 0 0 14px;
	}

	.qly-values-grid {
		grid-template-columns: 1fr;
		row-gap: 0;
	}

	.qly-values-grid > div,
	.qly-values-grid > div:first-child {
		padding: 16px 0;
		border-right: 0;
		border-bottom: 1px solid rgb(255 255 255 / 18%);
	}

	.qly-values-grid > div:last-child {
		border-bottom: 0;
	}

	.qly-footer {
		padding-top: 54px;
	}

	.qly-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 24px;
	}

	.qly-footer-brand,
	.qly-newsletter {
		grid-column: 1 / -1;
	}

	.qly-footer-bottom {
		flex-direction: column;
		margin-top: 42px;
	}

	.qly-content,
	.qly-shop-main {
		padding-top: 42px;
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		float: none;
		width: 100%;
	}
}

@keyframes qly-marquee {
	to {
		transform: translateX(-50%);
	}
}

@keyframes qly-hero-ken-burns {
	from {
		transform: scale(1.015);
	}
	to {
		transform: scale(1.055);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.qly-announcement-track {
		animation: none !important;
		transform: none !important;
	}

	.qly-hero-slide.is-active > picture > img {
		animation: none !important;
		transform: none;
	}

	.qly-announcement-group[aria-hidden="true"] {
		display: none;
	}
}

/* Unified commerce and content surfaces. */
.qly-button-solid {
	background: var(--qly-green-dark);
	color: #fff;
}

.qly-button-solid:hover,
.qly-button-solid:focus-visible {
	background: var(--qly-ink);
}

.qly-shop-main {
	padding-top: 42px;
	padding-bottom: 104px;
}

.qly-shop-main > .qly-container {
	min-height: 58vh;
}

.qly-shop-main .woocommerce-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 32px;
	color: #7a817b;
	font-size: 12px;
}

.qly-shop-main .woocommerce-products-header {
	position: relative;
	margin: 0 0 34px;
	padding: 42px 48px;
	overflow: hidden;
	background: var(--qly-soft);
}

.qly-shop-main .woocommerce-products-header::after {
	content: "QLY";
	position: absolute;
	right: 30px;
	bottom: -48px;
	color: rgb(49 92 71 / 7%);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 150px;
	line-height: 1;
}

.qly-shop-main .woocommerce-products-header__title {
	position: relative;
	z-index: 1;
}

.qly-shop-main .term-description {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin-top: 14px;
	color: var(--qly-muted);
}

.qly-shop-main .term-description p {
	margin: 0;
}

.qly-shop-main .woocommerce-result-count {
	margin: 11px 0 32px;
	color: var(--qly-muted);
	font-size: 13px;
}

.qly-shop-main .woocommerce-ordering {
	margin: 0 0 32px;
}

.qly-shop-main .woocommerce-ordering select {
	min-width: 210px;
	border-color: var(--qly-line);
}

.qly-shop-main ul.products {
	clear: both;
	row-gap: 46px;
}

.qly-shop-main ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.qly-shop-main ul.products li.product .woocommerce-loop-product__link {
	display: block;
}

.qly-shop-main ul.products li.product a img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
	background: #f5f6f4;
}

.qly-shop-main ul.products li.product .woocommerce-loop-product__title {
	min-height: 46px;
	margin-top: 0;
}

.qly-shop-main ul.products li.product .button {
	align-self: flex-start;
	margin-top: auto;
}

.qly-shop-main nav.woocommerce-pagination {
	margin-top: 60px;
}

.qly-shop-main nav.woocommerce-pagination ul {
	display: inline-flex;
	gap: 6px;
	border: 0;
}

.qly-shop-main nav.woocommerce-pagination ul li {
	border: 0;
}

.qly-shop-main nav.woocommerce-pagination ul li a,
.qly-shop-main nav.woocommerce-pagination ul li span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--qly-line);
}

.qly-shop-main nav.woocommerce-pagination ul li span.current,
.qly-shop-main nav.woocommerce-pagination ul li a:hover {
	background: var(--qly-green-dark);
	color: #fff;
}

/* Product detail. */
.single-product .qly-shop-main {
	padding-top: 28px;
}

.single-product .qly-shop-main div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	column-gap: clamp(40px, 5vw, 72px);
	align-items: start;
	width: 100%;
}

.single-product .qly-shop-main div.product .onsale {
	z-index: 4;
	top: 16px;
	left: 16px;
	right: auto;
}

.single-product .qly-shop-main div.product div.images {
	grid-column: 1;
	float: none;
	width: 100%;
	margin: 0;
	background: #f6f7f5;
}

/* WooCommerce hides the gallery until its slider script finishes booting. */
.single-product .qly-shop-main div.product div.images .woocommerce-product-gallery {
	opacity: 1 !important;
}

.single-product .qly-shop-main div.product div.images .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.single-product .qly-shop-main div.product div.images .woocommerce-product-gallery__image a {
	display: grid;
	place-items: center;
	min-height: 520px;
}

.single-product .qly-shop-main div.product div.images img {
	width: 100%;
	max-height: 720px;
	aspect-ratio: 1;
	object-fit: contain;
}

.single-product .qly-shop-main div.product div.summary {
	position: sticky;
	top: 128px;
	grid-column: 2;
	float: none;
	width: 100%;
	margin: 0;
	padding: 16px 0;
}

.single-product .qly-shop-main div.product .product_title {
	margin: 0 0 20px;
	font-size: clamp(36px, 3.6vw, 52px);
}

.single-product .qly-shop-main div.product p.price {
	margin: 0 0 24px;
	font-size: 22px;
	font-weight: 700;
}

.single-product .qly-shop-main div.product p.price del {
	margin-right: 8px;
	color: #929893;
	font-size: 15px;
}

.single-product .qly-shop-main div.product p.price ins {
	text-decoration: none;
}

.single-product .woocommerce-product-details__short-description {
	margin-bottom: 26px;
	color: var(--qly-muted);
	font-size: 16px;
}

.single-product .qly-shop-main div.product form.cart {
	display: flex;
	gap: 10px;
	margin: 0 0 28px;
	padding: 24px 0;
	border-top: 1px solid var(--qly-line);
	border-bottom: 1px solid var(--qly-line);
}

.single-product .qly-shop-main div.product form.cart div.quantity {
	float: none;
	margin: 0;
}

.single-product .qly-shop-main div.product form.cart .qty {
	width: 68px;
	height: 50px;
	border: 1px solid var(--qly-line);
}

.single-product .qly-shop-main div.product form.cart .button {
	flex: 1;
	min-height: 50px;
}

.single-product .product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	color: var(--qly-muted);
	font-size: 12px;
}

.single-product .woocommerce-tabs,
.single-product .related,
.single-product .upsells {
	grid-column: 1 / -1;
	width: 100%;
	margin-top: 70px;
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--qly-line);
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.single-product .woocommerce-tabs ul.tabs li a {
	padding: 14px 0;
	font-size: 13px;
}

.single-product .woocommerce-tabs ul.tabs li.active {
	border-bottom: 2px solid var(--qly-green);
}

.single-product .woocommerce-tabs .panel {
	max-width: 850px;
	margin: 0;
	padding: 34px 0 0;
	color: var(--qly-muted);
}

.single-product .woocommerce-tabs .panel h2,
.single-product .related > h2,
.single-product .upsells > h2 {
	margin: 0 0 30px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 500;
}

.single-product .related ul.products,
.single-product .upsells ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Account, authentication and addresses. */
.woocommerce-account .qly-content,
.woocommerce-cart .qly-content,
.woocommerce-checkout .qly-content {
	padding-top: 56px;
}

.woocommerce-account .qly-page,
.woocommerce-cart .qly-page,
.woocommerce-checkout .qly-page {
	max-width: none;
}

.woocommerce-account .qly-page-header,
.woocommerce-cart .qly-page-header,
.woocommerce-checkout .qly-page-header {
	margin-bottom: 42px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--qly-line);
}

.woocommerce-account .woocommerce::after {
	content: "";
	display: block;
	clear: both;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	float: left;
	width: 250px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 8px 0;
	background: var(--qly-soft);
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 20px;
	border-left: 3px solid transparent;
	color: var(--qly-muted);
	font-size: 14px;
	font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	border-left-color: var(--qly-green);
	background: #fff;
	color: var(--qly-green-dark);
}

.woocommerce-account .woocommerce-MyAccount-content {
	float: right;
	width: calc(100% - 300px);
	min-height: 440px;
}

.woocommerce-account .woocommerce-MyAccount-content > h2,
.woocommerce-account .woocommerce-MyAccount-content > h3,
.woocommerce-account .woocommerce-MyAccount-content form > h2,
.woocommerce-account .woocommerce-MyAccount-content form > h3 {
	margin-top: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
}

.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
	max-width: 760px;
}

.woocommerce form .form-row {
	margin: 0 0 20px;
	padding: 0;
}

.woocommerce form .form-row label {
	display: block;
	margin-bottom: 7px;
	color: #353a36;
	font-size: 13px;
	font-weight: 700;
}

.woocommerce form .form-row .required {
	color: #a23c32;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #cdd2cd;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	border-color: var(--qly-green);
	outline: 2px solid rgb(49 92 71 / 14%);
}

.woocommerce form .form-row span em {
	display: block;
	margin-top: 6px;
	color: var(--qly-muted);
	font-size: 12px;
}

.woocommerce fieldset {
	margin: 30px 0;
	padding: 26px;
	border: 1px solid var(--qly-line);
}

.woocommerce fieldset legend {
	padding: 0 10px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
}

.woocommerce-account .addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.woocommerce-account .addresses .col-1,
.woocommerce-account .addresses .col-2 {
	float: none;
	width: auto;
	padding: 24px;
	border: 1px solid var(--qly-line);
}

.woocommerce-account .addresses .title h2,
.woocommerce-account .addresses .title h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
}

.woocommerce-account .addresses address {
	color: var(--qly-muted);
	font-style: normal;
}

.woocommerce .u-columns.col2-set {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.woocommerce .u-columns.col2-set .u-column1,
.woocommerce .u-columns.col2-set .u-column2 {
	float: none;
	width: auto;
}

.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-register {
	margin: 0;
	padding: 28px;
	border-color: var(--qly-line);
	border-radius: 0;
}

/* Tables, cart and checkout. */
.woocommerce table.shop_table,
.woocommerce table.my_account_orders {
	border: 1px solid var(--qly-line);
	border-collapse: collapse;
	border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce table.my_account_orders th,
.woocommerce table.my_account_orders td {
	padding: 16px;
	border: 0;
	border-bottom: 1px solid var(--qly-line);
	text-align: left;
}

.woocommerce table.shop_table th,
.woocommerce table.my_account_orders th {
	background: var(--qly-soft);
	font-size: 12px;
	text-transform: uppercase;
}

.woocommerce-cart table.cart img {
	width: 88px;
	aspect-ratio: 1;
	object-fit: cover;
}

.woocommerce-cart .cart-collaterals {
	margin-top: 42px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	width: min(100%, 520px);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
	width: 100%;
	min-height: 52px;
	background: var(--qly-green-dark);
	color: #fff;
}

.woocommerce-checkout .col2-set {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
	float: none;
	width: auto;
}

.woocommerce-checkout h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 27px;
	font-weight: 500;
}

.woocommerce-checkout #order_review {
	padding: 26px;
	background: var(--qly-soft);
}

.woocommerce-checkout #payment {
	border-radius: 0;
	background: #eef1ed;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
	margin: 0 0 28px;
	padding: 18px 22px 18px 52px;
	border-top-width: 2px;
	background: var(--qly-soft);
}

.woocommerce-error {
	border-top-color: #a23c32;
}

.wc-block-cart,
.wc-block-checkout {
	font-family: inherit;
}

.wc-block-components-button:not(.is-link) {
	min-height: 48px;
	border-radius: 0;
	background: var(--qly-green-dark);
	color: #fff;
}

.wc-block-cart__submit-button,
.wc-block-cart__submit-button:visited,
.wc-block-cart__submit-button .wc-block-components-button__text {
	color: #fff !important;
	text-decoration: none !important;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	border-radius: 0 !important;
}

.wp-block-woocommerce-empty-cart-block {
	padding: 48px 0 0;
}

.wc-block-cart__empty-cart__title {
	margin: 0 0 20px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 36px !important;
	font-weight: 500;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
	display: none !important;
}

.wp-block-woocommerce-empty-cart-block > .wp-block-separator,
.wp-block-woocommerce-empty-cart-block > .is-style-dots {
	display: none;
}

.wp-block-woocommerce-empty-cart-block > h2:not(.wc-block-cart__empty-cart__title) {
	margin: 64px 0 30px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 500;
}

.wc-block-grid__products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 0 !important;
	padding: 0;
}

.wc-block-grid__products .wc-block-grid__product {
	display: flex;
	flex-direction: column;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: left;
}

.wc-block-grid__product-link,
.qly-page-body .wc-block-grid__product-link,
.qly-page-body .wc-block-grid__product-title,
.qly-page-body .wc-block-grid__product-add-to-cart a {
	color: inherit;
	text-decoration: none !important;
}

.wc-block-grid__product .wc-block-grid__product-image {
	display: block;
	width: 100%;
	margin: 0 0 16px !important;
	background: var(--qly-soft);
	aspect-ratio: 1;
}

.wc-block-grid__product .wc-block-grid__product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wc-block-grid__product .wc-block-grid__product-title {
	min-height: 44px;
	margin: 0 0 8px !important;
	font-size: 14px;
	line-height: 1.45;
}

.wc-block-grid__product .wc-block-grid__product-price {
	margin: 0 0 14px !important;
	color: var(--qly-green-dark);
	font-size: 15px;
	font-weight: 700;
}

.wc-block-grid__product .wc-block-grid__product-price del {
	margin-right: 7px;
	color: #8a8f8b;
	font-size: 12px;
}

.wc-block-grid__product .wc-block-grid__product-price ins {
	text-decoration: none;
}

.wc-block-grid .wc-block-grid__product-onsale,
.wc-block-grid__product-image .wc-block-grid__product-onsale {
	top: 10px;
	right: 10px;
	padding: 5px 8px;
	border: 0;
	border-radius: 0;
	background: var(--qly-green);
	color: #fff;
	font-size: 10px;
	line-height: 1;
}

.wc-block-grid__product .wc-block-grid__product-add-to-cart {
	margin: auto 0 0 !important;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link {
	min-height: 42px;
	padding: 10px 16px;
	border: 1px solid var(--qly-ink);
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--qly-ink) !important;
	font-size: 13px !important;
	font-weight: 700;
	text-decoration: none !important;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.wc-block-grid__product-add-to-cart .wp-block-button__link:focus-visible {
	background: var(--qly-ink) !important;
	color: #fff !important;
}

.wc-block-cart__main,
.wc-block-cart__sidebar,
.wc-block-components-sidebar,
.wc-block-components-main {
	box-sizing: border-box;
}

.wc-block-cart-items {
	border-collapse: collapse;
}

.wc-block-cart-items .wc-block-cart-items__row {
	border-bottom: 1px solid var(--qly-line);
}

.wc-block-cart-item__image img {
	aspect-ratio: 1;
	object-fit: cover;
}

.wc-block-components-product-name {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 19px;
	font-weight: 500;
}

.wc-block-components-quantity-selector {
	border-radius: 0 !important;
}

/* Content pages, search and empty states. */
.qly-page {
	max-width: 1080px;
	margin-inline: auto;
}

.qly-page-header {
	margin-bottom: 46px;
}

.qly-page-header h1 {
	max-width: 900px;
}

.qly-page-body {
	color: #3f4540;
}

.qly-page-body > * {
	max-width: 820px;
}

.qly-page-body > .alignwide,
.qly-page-body > .wp-block-columns,
.qly-page-body > .qly-wide {
	max-width: 1080px;
}

.qly-page-body h2,
.qly-page-body h3 {
	margin: 48px 0 16px;
	color: var(--qly-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
}

.qly-page-body h2 {
	font-size: 32px;
}

.qly-page-body h3 {
	font-size: 23px;
}

.qly-page-body p,
.qly-page-body li {
	line-height: 1.75;
}

.qly-page-body .qly-lead {
	max-width: 900px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	line-height: 1.55;
}

.qly-page-body .wp-block-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
	margin: 42px 0;
}

.qly-page-body .wp-block-column h2,
.qly-page-body .wp-block-column h3 {
	margin-top: 0;
}

.qly-page-body .qly-contact-main {
	grid-column: span 2;
}

.qly-page-body .qly-contact-aside {
	padding: 28px;
	background: var(--qly-soft);
}

.qly-contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.qly-form-row {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.qly-form-row label {
	font-size: 13px;
	font-weight: 700;
}

.qly-form-row label span {
	color: #a23c32;
}

.qly-form-row input,
.qly-form-row textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #cdd2cd;
	border-radius: 0;
	background: #fff;
}

.qly-form-row textarea {
	resize: vertical;
}

.qly-form-wide,
.qly-contact-form > .qly-button {
	grid-column: 1 / -1;
}

.qly-contact-form > .qly-button {
	justify-self: start;
}

.qly-form-trap {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.qly-contact-success {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding: 16px;
	background: #e8f1eb;
	color: var(--qly-green-dark);
}

.qly-contact-success svg {
	width: 22px;
	flex: 0 0 auto;
}

.qly-contact-success div {
	display: flex;
	flex-direction: column;
}

.qly-contact-error {
	margin-bottom: 24px;
	padding: 16px;
	background: #f8e8e6;
	color: #7d2821;
}

.qly-page-body a:not(.button) {
	color: var(--qly-green);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.qly-page-body details {
	max-width: 900px;
	border-top: 1px solid var(--qly-line);
}

.qly-page-body details:last-child {
	border-bottom: 1px solid var(--qly-line);
}

.qly-page-body summary {
	position: relative;
	padding: 20px 44px 20px 0;
	font-weight: 700;
	cursor: pointer;
}

.qly-page-body details p {
	margin: 0 0 22px;
	color: var(--qly-muted);
}

.qly-state-page {
	display: grid;
	place-items: center;
	min-height: 66vh;
	padding: 74px 0;
	background: var(--qly-soft);
}

.qly-state-content {
	max-width: 820px;
	text-align: center;
}

.qly-state-code {
	margin: 0;
	color: rgb(49 92 71 / 14%);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 150px;
	line-height: 0.8;
}

.qly-state-content h1 {
	margin: 16px 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 500;
	line-height: 1.08;
}

.qly-state-content > p:not(.qly-state-code, .qly-eyebrow) {
	color: var(--qly-muted);
}

.qly-state-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	max-width: 620px;
	margin: 28px auto 20px;
}

.qly-state-search input {
	min-width: 0;
	min-height: 50px;
	padding: 12px 15px;
	border: 1px solid #bbc2bc;
	border-right: 0;
}

.qly-state-search button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 22px;
	border: 0;
	background: var(--qly-green-dark);
	color: #fff;
	cursor: pointer;
}

.qly-state-search button svg {
	width: 18px;
}

.qly-search-header {
	max-width: none;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--qly-line);
}

.qly-search-header .qly-state-search {
	margin: 26px 0 0;
}

.qly-search-results {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 42px 28px;
}

.qly-search-result {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
}

.qly-search-result-image {
	display: grid;
	place-items: center;
	background: var(--qly-soft);
	aspect-ratio: 1;
}

.qly-search-result-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qly-search-result h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.25;
}

.qly-result-price {
	margin-top: 12px;
	color: var(--qly-green);
	font-weight: 700;
}

.qly-result-price del {
	color: #8a8f8b;
	font-size: 12px;
}

.qly-result-price ins {
	text-decoration: none;
}

.qly-empty-state {
	padding: 80px 24px;
	background: var(--qly-soft);
	text-align: center;
}

.qly-empty-state > svg {
	width: 38px;
	height: 38px;
	color: var(--qly-green);
}

.qly-empty-state h2 {
	margin: 18px 0 8px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
}

@media (max-width: 980px) {
	.single-product .qly-shop-main div.product {
		grid-template-columns: 1fr 1fr;
		column-gap: 34px;
	}

	.single-product .qly-shop-main div.product div.images .woocommerce-product-gallery__image a {
		min-height: 420px;
	}

	.single-product .qly-shop-main div.product .product_title {
		font-size: 38px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		float: none;
		width: 100%;
		margin-bottom: 34px;
		overflow-x: auto;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		width: max-content;
		min-width: 100%;
		padding: 0;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation a {
		min-height: 46px;
		border-left: 0;
		border-bottom: 2px solid transparent;
		white-space: nowrap;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
		border-bottom-color: var(--qly-green);
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.qly-search-results {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.qly-shop-main {
		padding-top: 24px;
		padding-bottom: 72px;
	}

	.qly-shop-main .woocommerce-products-header {
		padding: 30px 24px;
	}

	.qly-shop-main .woocommerce-products-header::after {
		font-size: 100px;
	}

	.single-product .qly-shop-main div.product {
		display: block;
	}

	.single-product .qly-shop-main div.product div.images .woocommerce-product-gallery__image a {
		min-height: 0;
	}

	.single-product .qly-shop-main div.product div.summary {
		position: static;
		padding-top: 32px;
	}

	.single-product .qly-shop-main div.product .product_title {
		font-size: 36px;
	}

	.single-product .woocommerce-tabs,
	.single-product .related,
	.single-product .upsells {
		margin-top: 58px;
	}

	.single-product .related ul.products,
	.single-product .upsells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-account .qly-page-header,
	.woocommerce-cart .qly-page-header,
	.woocommerce-checkout .qly-page-header {
		margin-bottom: 28px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-inline: -16px;
		width: calc(100% + 32px);
		padding-inline: 16px;
	}

	.woocommerce-account .addresses,
	.woocommerce .u-columns.col2-set,
	.woocommerce-checkout .col2-set {
		grid-template-columns: 1fr;
	}

	.woocommerce fieldset {
		padding: 20px 16px;
	}

	.woocommerce table.shop_table,
	.woocommerce table.my_account_orders {
		font-size: 13px;
	}

	.qly-state-code {
		font-size: 100px;
	}

	.qly-state-search {
		grid-template-columns: 1fr;
	}

	.qly-state-search input {
		border-right: 1px solid #bbc2bc;
	}

	.qly-state-search button {
		justify-content: center;
		min-height: 48px;
	}

	.qly-search-result {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 16px;
	}

	.qly-search-result h2 {
		font-size: 19px;
	}

	.qly-page-body .wp-block-columns,
	.qly-contact-form {
		grid-template-columns: 1fr;
	}

	.qly-page-body .qly-contact-main {
		grid-column: auto;
	}

	.wc-block-grid__products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 12px;
	}

	.wc-block-cart__empty-cart__title {
		font-size: 30px !important;
	}
}

/* Catalog experience and benchmark-aligned product cards. */
.qly-product-media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f6f7f5;
	aspect-ratio: 1;
}

.woocommerce ul.products li.product .qly-product-image {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.woocommerce ul.products li.product .qly-product-image img,
.qly-product-grid li.product .qly-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center;
	transition: opacity 380ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1), visibility 380ms ease;
}

.qly-product-image img.qly-product-image-primary {
	position: relative;
	z-index: 1;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.qly-product-image img.qly-product-image-secondary {
	position: absolute;
	inset: 0;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	transform: scale(1.025);
}

.woocommerce ul.products li.product .qly-product-image.has-secondary.is-secondary-ready:hover img.qly-product-image-primary,
.woocommerce ul.products li.product .qly-product-image.has-secondary.is-secondary-ready:focus-within img.qly-product-image-primary,
.qly-product-grid li.product .qly-product-image.has-secondary.is-secondary-ready:hover img.qly-product-image-primary,
.qly-product-grid li.product .qly-product-image.has-secondary.is-secondary-ready:focus-within img.qly-product-image-primary {
	opacity: 0;
	transform: scale(1.02);
}

.woocommerce ul.products li.product .qly-product-image.has-secondary.is-secondary-ready:hover img.qly-product-image-secondary,
.woocommerce ul.products li.product .qly-product-image.has-secondary.is-secondary-ready:focus-within img.qly-product-image-secondary,
.qly-product-grid li.product .qly-product-image.has-secondary.is-secondary-ready:hover img.qly-product-image-secondary,
.qly-product-grid li.product .qly-product-image.has-secondary.is-secondary-ready:focus-within img.qly-product-image-secondary {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.woocommerce ul.products li.product:hover .qly-product-image:not(.has-secondary) img.qly-product-image-primary,
.woocommerce ul.products li.product:focus-within .qly-product-image:not(.has-secondary) img.qly-product-image-primary,
.qly-product-grid li.product:hover .qly-product-image:not(.has-secondary) img.qly-product-image-primary,
.qly-product-grid li.product:focus-within .qly-product-image:not(.has-secondary) img.qly-product-image-primary {
	transform: scale(1.065);
}

.woocommerce ul.products li.product .qly-product-media .onsale {
	top: 10px;
	right: 10px;
	left: auto;
	z-index: 3;
	margin: 0 !important;
	padding: 6px 8px;
	background: var(--qly-green);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.qly-product-actions {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 4;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px 48px;
	min-height: 46px;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 220ms ease, transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.qly-product-actions > * {
	min-width: 0;
	grid-row: 1;
}

.woocommerce ul.products li.product:hover .qly-product-actions,
.woocommerce ul.products li.product:focus-within .qly-product-actions {
	opacity: 1;
	transform: translateY(0);
}

.woocommerce ul.products li.product .qly-product-actions .button,
.qly-product-view,
.qly-product-favorite {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 10px 14px;
	border: 0;
	border-right: 1px solid rgb(255 255 255 / 20%);
	background: #161917;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

.woocommerce ul.products li.product .qly-product-actions .button:hover,
.qly-product-view:hover,
.qly-product-view:focus-visible,
.qly-product-favorite:hover,
.qly-product-favorite:focus-visible,
.qly-product-favorite.is-active {
	background: var(--qly-green);
	color: #fff;
}

.qly-product-view,
.qly-product-favorite {
	border-right: 0;
}

.qly-product-view {
	border-right: 1px solid rgb(255 255 255 / 20%);
}

.qly-product-favorite {
	padding: 0;
	border: 0;
	grid-column: 3;
	cursor: pointer;
}

.qly-product-view svg,
.qly-product-favorite svg,
.qly-product-actions .button svg {
	width: 18px;
	height: 18px;
}

.qly-product-actions .button svg {
	margin-right: 7px;
}

.qly-product-favorite.is-active svg {
	fill: currentColor;
}

.qly-product-info {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	padding: 13px 4px 0;
	text-align: center;
}

.woocommerce ul.products li.product .qly-product-info .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 42px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.qly-product-title-link:hover,
.qly-product-title-link:focus-visible {
	color: var(--qly-green);
}

.woocommerce ul.products li.product .qly-product-info .price {
	justify-content: center;
	min-height: 24px;
	margin: 5px 0 0;
	color: var(--qly-coral);
	font-size: 15px;
	font-weight: 800;
}

.woocommerce ul.products li.product .qly-product-info .price del {
	order: 2;
	color: #969b97;
	font-size: 12px;
	font-weight: 500;
}

.qly-loop-description {
	display: none;
}

.qly-products-section .qly-section-heading {
	margin-bottom: 32px;
}

.qly-products-section .qly-product-grid {
	row-gap: 38px;
}

.qly-catalog .woocommerce-breadcrumb {
	margin-bottom: 20px;
}

.qly-catalog-header {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	align-items: center;
	gap: 30px;
	min-height: 176px;
	margin-bottom: 38px;
	padding: 18px 32px 18px 18px;
	background: var(--qly-soft);
}

.qly-catalog-header > picture {
	display: block;
	width: 140px;
	height: 140px;
}

.qly-catalog-header > picture > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qly-catalog-header h1 {
	margin: 3px 0 8px;
	font-size: 42px;
}

.qly-catalog-description {
	max-width: 720px;
	color: var(--qly-muted);
	font-size: 14px;
}

.qly-catalog-description p {
	margin: 0;
}

.qly-catalog-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: clamp(30px, 4vw, 58px);
	align-items: start;
}

.qly-shop-filters {
	position: sticky;
	top: 112px;
}

.qly-filter-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--qly-line);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
}

.qly-filter-close {
	display: none;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
}

.qly-category-filter {
	display: grid;
	padding: 14px 0 30px;
	border-bottom: 1px solid var(--qly-line);
}

.qly-category-filter a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 8px 0;
	color: #4e554f;
	font-size: 14px;
}

.qly-category-filter a::before {
	content: "";
	width: 0;
	height: 1px;
	background: var(--qly-coral);
	transition: width 160ms ease;
}

.qly-category-filter a:hover,
.qly-category-filter a.is-active {
	color: var(--qly-coral);
}

.qly-category-filter a.is-active::before {
	width: 14px;
}

.qly-category-filter a span {
	margin-left: auto;
	color: #929792;
	font-size: 11px;
}

.qly-price-filter {
	padding-top: 28px;
}

.qly-price-filter > strong {
	display: block;
	margin-bottom: 16px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-weight: 500;
}

.qly-price-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.qly-price-fields label span {
	display: block;
	margin-bottom: 5px;
	color: var(--qly-muted);
	font-size: 11px;
}

.qly-price-fields input {
	width: 100%;
	min-height: 42px;
	padding: 8px 10px;
	border: 1px solid var(--qly-line);
	border-radius: 0;
}

.qly-price-filter > button {
	width: 100%;
	min-height: 42px;
	margin-top: 12px;
	border: 1px solid var(--qly-ink);
	background: transparent;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.qly-price-filter > button:hover,
.qly-price-filter > button:focus-visible {
	background: var(--qly-ink);
	color: #fff;
}

.qly-shop-results {
	min-width: 0;
}

.qly-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 52px;
	margin-bottom: 28px;
	padding-bottom: 13px;
	border-bottom: 1px solid var(--qly-line);
}

.qly-view-controls,
.qly-toolbar-status {
	display: flex;
	align-items: center;
	gap: 8px;
}

.qly-view-controls > button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid transparent;
	background: transparent;
	color: #999e99;
	cursor: pointer;
}

.qly-view-controls > button:hover,
.qly-view-controls > button.is-active {
	border-color: var(--qly-line);
	color: var(--qly-coral);
}

.qly-view-controls svg {
	width: 18px;
	height: 18px;
}

.qly-view-controls .qly-filter-toggle {
	display: none;
	width: auto;
	gap: 7px;
	padding: 0 10px;
	color: var(--qly-ink);
	font-size: 13px;
}

.qly-catalog .qly-toolbar-status .woocommerce-result-count,
.qly-catalog .qly-toolbar-status .woocommerce-ordering {
	float: none;
	margin: 0;
}

.qly-catalog .qly-toolbar-status .woocommerce-result-count {
	color: var(--qly-muted);
	font-size: 12px;
}

.qly-catalog .qly-toolbar-status .woocommerce-ordering select {
	min-width: 180px;
	min-height: 42px;
}

.qly-shop-results ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 38px 20px;
}

.qly-shop-results.is-list-view ul.products {
	grid-template-columns: 1fr;
	row-gap: 0;
}

.qly-shop-results.is-list-view ul.products li.product {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr);
	gap: 26px;
	padding: 24px 0;
	border-bottom: 1px solid var(--qly-line);
}

.qly-shop-results.is-list-view .qly-product-media {
	width: 210px;
}

.qly-shop-results.is-list-view .qly-product-info {
	align-items: flex-start;
	justify-content: center;
	padding: 10px 0;
	text-align: left;
}

.qly-shop-results.is-list-view .qly-product-title-link {
	max-width: 620px;
}

.qly-shop-results.is-list-view ul.products li.product .woocommerce-loop-product__title {
	min-height: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 500;
}

.qly-shop-results.is-list-view ul.products li.product .price {
	justify-content: flex-start;
	margin-top: 12px;
}

.qly-shop-results.is-list-view .qly-loop-description {
	display: block;
	max-width: 660px;
	margin: 14px 0 0;
	color: var(--qly-muted);
	font-size: 13px;
	line-height: 1.7;
}

@media (hover: none) {
	.qly-product-actions {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1180px) {
	.qly-catalog-layout {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 30px;
	}

	.qly-shop-results ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.qly-catalog-layout {
		display: block;
	}

	.qly-shop-filters {
		position: fixed;
		z-index: 300;
		top: 0;
		bottom: 0;
		left: 0;
		width: min(88vw, 340px);
		padding: 28px 24px;
		overflow-y: auto;
		background: #fff;
		box-shadow: 20px 0 60px rgb(0 0 0 / 18%);
		transform: translateX(-110%);
		transition: transform 220ms ease;
	}

	.qly-shop-filters.is-open {
		transform: translateX(0);
	}

	body.qly-filters-open {
		overflow: hidden;
	}

	body.qly-filters-open::before {
		content: "";
		position: fixed;
		z-index: 250;
		inset: 0;
		background: rgb(15 20 17 / 38%);
	}

	.qly-filter-close,
	.qly-view-controls .qly-filter-toggle {
		display: inline-flex;
	}
}

@media (max-width: 680px) {
	.qly-catalog-header {
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 18px;
		min-height: 124px;
		margin-bottom: 24px;
		padding: 16px;
	}

	.qly-catalog-header > picture {
		width: 92px;
		height: 92px;
	}

	.qly-catalog-header h1 {
		font-size: 30px;
	}

	.qly-catalog-description {
		display: none;
	}

	.qly-catalog-header .qly-eyebrow {
		font-size: 10px;
	}

	.qly-shop-toolbar {
		align-items: flex-start;
		gap: 12px;
	}

	.qly-toolbar-status {
		align-items: flex-end;
		flex-direction: column-reverse;
		gap: 4px;
	}

	.qly-catalog .qly-toolbar-status .woocommerce-result-count {
		display: none;
	}

	.qly-catalog .qly-toolbar-status .woocommerce-ordering select {
		min-width: 138px;
		max-width: 150px;
		font-size: 12px;
	}

	.qly-view-controls > button[data-qly-view] {
		display: none;
	}

	.qly-shop-results ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 12px;
	}

	.qly-shop-results.is-list-view ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.qly-shop-results.is-list-view ul.products li.product {
		display: flex;
		padding: 0;
		border-bottom: 0;
	}

	.qly-shop-results.is-list-view .qly-product-media {
		width: 100%;
	}

	.qly-shop-results.is-list-view .qly-product-info {
		align-items: center;
		padding: 14px 4px 0;
		text-align: center;
	}

	.qly-shop-results.is-list-view ul.products li.product .woocommerce-loop-product__title {
		min-height: 60px;
		font-family: inherit;
		font-size: 14px;
		font-weight: 700;
	}

	.qly-shop-results.is-list-view .qly-loop-description {
		display: none;
	}

	.qly-product-actions {
		grid-template-columns: minmax(0, 1fr) 40px 40px;
		min-height: 42px;
	}

	.woocommerce ul.products li.product .qly-product-actions .button,
	.qly-product-view,
	.qly-product-favorite {
		min-height: 42px;
		padding-inline: 4px;
		font-size: 10px;
	}

	.qly-product-actions .button svg {
		margin-right: 4px;
	}

	.qly-product-info {
		padding-inline: 2px;
	}
}

/* The front page product loop is outside WooCommerce's body wrapper. */
.qly-product-grid li.product .qly-product-media .onsale {
	position: absolute;
	top: 10px;
	right: 10px;
	left: auto;
	z-index: 3;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 6px 8px;
	border-radius: 0;
	background: var(--qly-green);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.qly-product-grid li.product:hover .qly-product-actions,
.qly-product-grid li.product:focus-within .qly-product-actions {
	opacity: 1;
	transform: translateY(0);
}

.qly-product-grid li.product .qly-product-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 10px 14px;
	border: 0;
	border-right: 1px solid rgb(255 255 255 / 20%);
	border-radius: 0;
	background: #161917;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.qly-product-grid li.product .qly-product-actions .button:hover {
	background: var(--qly-green);
	color: #fff;
}

.qly-product-grid li.product .qly-product-info .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 44px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.qly-product-grid li.product .qly-product-info .price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 24px;
	margin: 8px 0 0;
	color: var(--qly-coral);
	font-size: 15px;
	font-weight: 800;
}

.qly-product-grid li.product .qly-product-info .price del {
	order: 2;
	color: #969b97;
	font-size: 12px;
	font-weight: 500;
}

.qly-product-grid li.product .qly-product-info .price ins {
	text-decoration: none;
}

@media (hover: none) {
	.qly-product-grid .qly-product-actions {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 680px) {
	.qly-product-grid li.product .qly-product-actions .button {
		min-height: 42px;
		padding-inline: 4px;
		font-size: 10px;
	}
}

/* Commerce journey: cart, checkout, order confirmation and account. */
.woocommerce-account .qly-content,
.woocommerce-cart .qly-content,
.woocommerce-checkout .qly-content {
	padding-top: 44px;
	padding-bottom: 112px;
}

.woocommerce-account .qly-page,
.woocommerce-cart .qly-page,
.woocommerce-checkout .qly-page {
	width: min(100%, 1320px);
	margin-inline: auto;
}

.woocommerce-account .qly-page-header,
.woocommerce-cart .qly-page-header,
.woocommerce-checkout .qly-page-header {
	margin-bottom: 28px;
	padding-bottom: 24px;
}

.woocommerce-account .qly-page-header h1,
.woocommerce-cart .qly-page-header h1,
.woocommerce-checkout .qly-page-header h1 {
	max-width: 760px;
	font-size: 64px;
	line-height: 1.02;
}

.woocommerce-order-received .qly-page-header {
	display: none;
}

.qly-commerce-journey {
	margin: 0 0 48px;
	border-bottom: 1px solid var(--qly-line);
}

.qly-commerce-journey ol {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 820px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.qly-commerce-journey li {
	position: relative;
	margin: 0;
}

.qly-commerce-journey li::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -1px;
	height: 2px;
	background: var(--qly-green);
}

.qly-commerce-journey li.is-current::after,
.qly-commerce-journey li.is-complete::after {
	right: 0;
}

.qly-commerce-step {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 58px;
	padding: 0 20px 0 0;
	color: #8a908b;
	font-size: 13px;
	font-weight: 700;
}

a.qly-commerce-step:hover,
.qly-commerce-journey .is-current .qly-commerce-step,
.qly-commerce-journey .is-complete .qly-commerce-step {
	color: var(--qly-green-dark);
}

.qly-commerce-step-number {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid #c7cdc8;
	border-radius: 50%;
	background: #fff;
	font-size: 12px;
}

.qly-commerce-journey .is-current .qly-commerce-step-number,
.qly-commerce-journey .is-complete .qly-commerce-step-number {
	border-color: var(--qly-green);
	background: var(--qly-green);
	color: #fff;
}

/* Account shell and order history. */
body.logged-in.woocommerce-account .qly-page-body > .woocommerce {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 48px;
	align-items: start;
	width: 100%;
	max-width: none;
}

body.logged-in.woocommerce-account .qly-page-body > .woocommerce::before,
body.logged-in.woocommerce-account .qly-page-body > .woocommerce::after {
	display: none;
	content: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	position: sticky;
	top: 126px;
	border: 1px solid var(--qly-line);
	background: #fff;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 10px;
	background: transparent;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
	background: transparent;
}

.woocommerce-account .woocommerce-MyAccount-navigation li + li {
	border-top: 1px solid #edf0ec;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	min-height: 52px;
	padding: 12px 14px;
	border: 0;
	border-radius: 4px;
	font-size: 13px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	border: 0;
	background: #edf3ef;
	color: var(--qly-green-dark);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: auto;
	border-radius: 50%;
	background: var(--qly-green);
}

.woocommerce-account .woocommerce-MyAccount-content {
	min-width: 0;
	min-height: 480px;
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
	max-width: 760px;
	margin-top: 0;
	color: var(--qly-muted);
}

.woocommerce-account .woocommerce-info {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 78px;
	margin-bottom: 24px;
	padding: 18px 18px 18px 54px;
	border: 1px solid #cbd9d0;
	border-top: 3px solid var(--qly-green);
	background: #f2f6f3;
}

.woocommerce-account .woocommerce-info .button {
	order: 2;
	float: none;
	margin-left: auto;
	white-space: nowrap;
}

.woocommerce table.my_account_orders,
.woocommerce-account table.shop_table {
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--qly-line);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 6px;
	background: #fff;
}

.woocommerce table.my_account_orders thead th,
.woocommerce-account table.shop_table thead th {
	padding: 14px 18px;
	background: #f2f4f1;
	color: #555d57;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.woocommerce table.my_account_orders tbody th,
.woocommerce table.my_account_orders tbody td,
.woocommerce-account table.shop_table tbody th,
.woocommerce-account table.shop_table tbody td {
	padding: 20px 18px;
	vertical-align: middle;
}

.woocommerce table.my_account_orders tbody tr:last-child > *,
.woocommerce-account table.shop_table tbody tr:last-child > * {
	border-bottom: 0;
}

.woocommerce table.my_account_orders tbody tr:hover {
	background: #fafbf9;
}

.woocommerce-orders-table__cell-order-number a {
	color: var(--qly-green-dark);
	font-size: 15px;
	font-weight: 800;
}

.woocommerce-orders-table__cell-order-status {
	color: var(--qly-green-dark);
	font-weight: 700;
}

.woocommerce-orders-table__cell-order-status::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--qly-green);
	vertical-align: 1px;
}

.woocommerce-orders-table__row--status-pending .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status {
	color: #7b6116;
}

.woocommerce-orders-table__row--status-pending .woocommerce-orders-table__cell-order-status::before,
.woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status::before {
	background: var(--qly-gold);
}

.woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status {
	color: #943f35;
}

.woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status::before,
.woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status::before {
	background: #b54a3d;
}

.woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status {
	color: #676e69;
}

.woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status::before {
	background: #8e9690;
}

.woocommerce-orders-table__cell-order-actions {
	text-align: right !important;
}

.woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-Pagination .button {
	min-height: 40px;
	padding: 10px 16px;
	border: 1px solid var(--qly-green-dark);
	border-radius: 4px;
	background: transparent;
	color: var(--qly-green-dark);
	font-size: 12px;
	font-weight: 800;
}

.woocommerce-orders-table__cell-order-actions .button:hover,
.woocommerce-account .woocommerce-Pagination .button:hover {
	background: var(--qly-green-dark);
	color: #fff;
}

/* Account addresses: remove WooCommerce clearfix items before using grid. */
.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	margin-top: 30px;
}

.woocommerce-account .woocommerce-Addresses::before,
.woocommerce-account .woocommerce-Addresses::after,
.woocommerce-order-received .woocommerce-columns--addresses::before,
.woocommerce-order-received .woocommerce-columns--addresses::after,
.woocommerce-view-order .woocommerce-columns--addresses::before,
.woocommerce-view-order .woocommerce-columns--addresses::after {
	display: none;
	content: none;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
	float: none;
	width: auto;
	min-width: 0;
	min-height: 250px;
	padding: 24px;
	border: 1px solid var(--qly-line);
	border-radius: 6px;
	background: #fff;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--qly-line);
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title h2 {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title .edit {
	flex: none;
	color: var(--qly-green-dark);
	font-size: 12px;
	font-weight: 800;
}

.woocommerce-account .woocommerce-Addresses address {
	margin: 0;
	overflow-wrap: anywhere;
	color: #555d57;
	font-style: normal;
	line-height: 1.75;
}

/* Checkout layout and form hierarchy. */
.woocommerce-checkout form.checkout.woocommerce-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	gap: 20px 48px;
	align-items: start;
}

.woocommerce-checkout form.checkout > #customer_details {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.woocommerce-checkout form.checkout > #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	width: auto;
	margin: 0;
	padding: 0 0 16px;
	border-bottom: 1px solid var(--qly-line);
}

.woocommerce-checkout form.checkout > #order_review {
	position: sticky;
	top: 126px;
	grid-column: 2;
	grid-row: 2;
	width: auto;
	padding: 24px;
	border: 1px solid var(--qly-line);
	border-radius: 6px;
	background: #f5f7f4;
}

.woocommerce-checkout .col2-set {
	grid-template-columns: 1fr;
	gap: 28px;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3,
.woocommerce-checkout #order_review_heading {
	margin-top: 0;
	font-size: 28px;
	line-height: 1.2;
}

.woocommerce-checkout #order_review table.shop_table {
	margin-bottom: 18px;
	border: 0;
	background: transparent;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
	padding: 14px 0;
	background: transparent;
}

.woocommerce-checkout #order_review table.shop_table td:last-child,
.woocommerce-checkout #order_review table.shop_table th:last-child {
	text-align: right;
}

.woocommerce-checkout #payment {
	background: #fff;
	border: 1px solid #d9ded9;
	border-radius: 6px;
}

.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-checkout #payment div.form-row {
	padding: 18px;
}

.woocommerce-checkout #place_order {
	min-height: 54px;
	border-radius: 4px;
	font-weight: 800;
}

/* WooCommerce block cart and checkout use the same transaction shell. */
.woocommerce-cart .qly-page-body > .wp-block-woocommerce-cart,
.woocommerce-checkout .qly-page-body > .wp-block-woocommerce-checkout {
	width: 100%;
	max-width: none;
}

.woocommerce-cart .wc-block-components-sidebar-layout,
.woocommerce-checkout .wc-block-components-sidebar-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
	gap: 48px;
	align-items: start;
}

.woocommerce-cart .is-loading + .wc-block-components-sidebar-layout.wc-block-cart--skeleton {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
	gap: 48px;
	align-items: start;
	width: 100%;
	max-width: none;
}

.woocommerce-cart .wc-block-cart--skeleton > .wc-block-cart__main,
.woocommerce-cart .wc-block-cart--skeleton > .wc-block-cart__sidebar {
	width: 100%;
	min-width: 0;
	margin: 0;
}

/* Block styles load later, so keep these track rules more specific than WooCommerce. */
.woocommerce-cart .wc-block-components-sidebar-layout > .wc-block-components-main,
.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-main {
	width: 100%;
	min-width: 0;
	margin: 0;
	padding-right: 0;
}

.woocommerce-cart .wc-block-components-sidebar-layout > .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-sidebar {
	position: sticky;
	top: 126px;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 24px;
	border: 1px solid var(--qly-line);
	border-radius: 6px;
	background: #f5f7f4;
}

.woocommerce-cart .wc-block-cart-items {
	border-top: 1px solid var(--qly-line);
}

.woocommerce-cart .wc-block-cart-items th,
.woocommerce-cart .wc-block-cart-items td {
	border-color: var(--qly-line) !important;
}

.woocommerce-cart .wc-block-cart-item__image img {
	aspect-ratio: 1;
	object-fit: cover;
}

.woocommerce-cart .wc-block-components-product-name,
.woocommerce-checkout .wc-block-components-product-name {
	color: var(--qly-ink);
	font-weight: 750;
}

.woocommerce-checkout .wc-block-components-checkout-step {
	margin-bottom: 22px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--qly-line);
}

.woocommerce-checkout .wc-block-components-checkout-step__heading {
	margin-bottom: 18px;
}

.woocommerce-checkout .wc-block-components-checkout-step__title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 500;
}

.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-cart .wc-block-components-totals-wrapper {
	border-color: #d9ded9;
}

.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	border-radius: 4px;
	font-weight: 800;
}

/* Order confirmation and order details. */
.woocommerce-order-received .qly-content {
	padding-top: 36px;
}

.woocommerce-order-received .qly-commerce-journey {
	margin-bottom: 36px;
}

.woocommerce-order-received .woocommerce-order {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
	gap: 24px 32px;
	align-items: start;
}

.qly-order-confirmation {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	grid-column: 1 / -1;
	gap: 22px;
	align-items: center;
	padding: 20px 0 36px;
	border-bottom: 1px solid var(--qly-line);
}

.qly-order-confirmation-icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #e8f1eb;
	color: var(--qly-green);
}

.qly-order-confirmation-icon svg {
	width: 30px;
	height: 30px;
}

.qly-order-confirmation.is-failed .qly-order-confirmation-icon {
	background: #f7e9e6;
	color: #9a3f34;
}

.qly-order-confirmation-copy .qly-eyebrow {
	margin-bottom: 7px;
}

.qly-order-confirmation-copy h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 46px;
	font-weight: 500;
	line-height: 1.1;
}

.qly-order-confirmation-copy > p:last-child {
	max-width: 700px;
	margin: 10px 0 0;
	color: var(--qly-muted);
}

.qly-order-confirmation-actions {
	display: flex;
	flex-direction: column;
	gap: 9px;
	min-width: 176px;
}

.qly-order-confirmation-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
}

.qly-order-confirmation-actions .qly-button-primary {
	background: var(--qly-green-dark);
	color: #fff;
}

.qly-order-confirmation-actions .qly-button-secondary {
	border: 1px solid #b9c2bb;
	background: #fff;
	color: var(--qly-green-dark);
}

.woocommerce-order-received .woocommerce-notice--success {
	display: none;
}

.woocommerce-order-received .qly-order-confirmation.is-failed ~ .woocommerce-thankyou-order-failed {
	display: none;
}

.woocommerce-order-received .woocommerce-order-overview.order_details {
	display: grid;
	grid-template-columns: 0.7fr 1fr 1.5fr 0.8fr;
	grid-column: 1 / -1;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--qly-line);
	border-radius: 6px;
	background: #fff;
}

.woocommerce-order-received .woocommerce-order-overview.order_details::before,
.woocommerce-order-received .woocommerce-order-overview.order_details::after {
	display: none;
}

.woocommerce-order-received .woocommerce-order-overview.order_details li {
	float: none;
	width: auto;
	min-width: 0;
	margin: 0;
	padding: 18px 20px;
	border-right: 1px solid var(--qly-line);
	color: #6a716c;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.woocommerce-order-received .woocommerce-order-overview.order_details li:last-child {
	border-right: 0;
}

.woocommerce-order-received .woocommerce-order-overview.order_details strong {
	display: block;
	margin-top: 7px;
	overflow-wrap: anywhere;
	color: var(--qly-ink);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.45;
	text-transform: none;
}

.woocommerce-order-received .woocommerce-order-overview__payment-method {
	grid-column: 1 / -1;
	border-top: 1px solid var(--qly-line);
	border-right: 0 !important;
}

.woocommerce-order-received .woocommerce-order-details {
	grid-column: 1;
}

.woocommerce-order-received .woocommerce-customer-details {
	grid-column: 2;
}

.woocommerce-order-details__title,
.woocommerce-customer-details .woocommerce-column__title {
	margin: 8px 0 16px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
}

.woocommerce-account .woocommerce-order-details__title {
	margin: 0 0 16px;
}

.woocommerce-order-details table.shop_table {
	margin: 0;
	border-radius: 6px;
	background: #fff;
}

.woocommerce-order-details table.shop_table tfoot th,
.woocommerce-order-details table.shop_table tfoot td {
	padding: 14px 18px;
}

.woocommerce-order-details table.shop_table tfoot td {
	text-align: right;
}

.woocommerce-customer-details address {
	min-height: 220px;
	margin: 0;
	padding: 22px;
	border: 1px solid var(--qly-line);
	border-radius: 6px;
	background: #f5f7f4;
	color: #555d57;
	font-style: normal;
	line-height: 1.75;
}

.woocommerce-customer-details address p {
	margin: 14px 0 0;
	padding-top: 14px;
	border-top: 1px solid #dfe4df;
	overflow-wrap: anywhere;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns--addresses,
.woocommerce-view-order .woocommerce-customer-details .woocommerce-columns--addresses {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.woocommerce-order-received .woocommerce-customer-details .col-1,
.woocommerce-order-received .woocommerce-customer-details .col-2,
.woocommerce-view-order .woocommerce-customer-details .col-1,
.woocommerce-view-order .woocommerce-customer-details .col-2 {
	float: none;
	width: auto;
}

.woocommerce-view-order .woocommerce-MyAccount-content {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	gap: 24px 30px;
	align-items: start;
}

.woocommerce-view-order .woocommerce-MyAccount-content > p,
.woocommerce-view-order .woocommerce-MyAccount-content > .woocommerce-order-downloads {
	grid-column: 1 / -1;
}

.woocommerce-view-order .woocommerce-MyAccount-content > .woocommerce-order-details {
	grid-column: 1;
}

.woocommerce-view-order .woocommerce-MyAccount-content > .woocommerce-customer-details {
	grid-column: 2;
}

.woocommerce-view-order .woocommerce-MyAccount-content > .woocommerce-order-details,
.woocommerce-view-order .woocommerce-MyAccount-content > .woocommerce-customer-details {
	width: 100%;
	min-width: 0;
	margin: 0;
}

.woocommerce-view-order .woocommerce-MyAccount-content > p:first-child {
	padding: 18px 20px;
	border-left: 3px solid var(--qly-green);
	background: #f2f6f3;
}

/* Cart layout. */
.woocommerce-cart .woocommerce-cart-form {
	float: left;
	width: calc(100% - 390px);
}

.woocommerce-cart .cart-collaterals {
	float: right;
	width: 350px;
	margin-top: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	position: sticky;
	top: 126px;
	width: 100%;
	padding: 24px;
	border: 1px solid var(--qly-line);
	border-radius: 6px;
	background: #f5f7f4;
}

.woocommerce-cart .cart-collaterals .cart_totals > h2 {
	margin: 0 0 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 500;
}

.woocommerce-cart .woocommerce::after {
	content: "";
	display: block;
	clear: both;
}

.woocommerce-cart table.cart td.actions .coupon {
	display: flex;
	gap: 8px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	min-width: 180px;
	min-height: 44px;
}

@media (max-width: 980px) {
	body.logged-in.woocommerce-account .qly-page-body > .woocommerce,
	.woocommerce-checkout form.checkout.woocommerce-checkout,
	.woocommerce-order-received .woocommerce-order {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .wc-block-components-sidebar-layout,
	.woocommerce-checkout .wc-block-components-sidebar-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.woocommerce-cart .is-loading + .wc-block-components-sidebar-layout.wc-block-cart--skeleton {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.woocommerce-cart .wc-block-components-sidebar-layout > .wc-block-components-main,
	.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-main,
	.woocommerce-cart .wc-block-components-sidebar-layout > .wc-block-components-sidebar,
	.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-sidebar {
		position: static;
		width: 100%;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		position: static;
		margin-bottom: 0;
	}

	.woocommerce-checkout form.checkout > #customer_details,
	.woocommerce-checkout form.checkout > #order_review_heading,
	.woocommerce-checkout form.checkout > #order_review,
	.woocommerce-order-received .woocommerce-order-details,
	.woocommerce-order-received .woocommerce-customer-details {
		position: static;
		grid-column: 1;
		grid-row: auto;
	}

	.woocommerce-view-order .woocommerce-MyAccount-content {
		grid-template-columns: 1fr;
	}

	.woocommerce-view-order .woocommerce-MyAccount-content > .woocommerce-order-details,
	.woocommerce-view-order .woocommerce-MyAccount-content > .woocommerce-customer-details {
		grid-column: 1;
	}

	.woocommerce-cart .woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals {
		float: none;
		width: 100%;
	}

	.woocommerce-cart .cart-collaterals {
		margin-top: 32px;
	}

	.woocommerce-cart .cart-collaterals .cart_totals {
		position: static;
		margin-left: auto;
	}
}

@media (max-width: 680px) {
	.woocommerce-account .qly-content,
	.woocommerce-cart .qly-content,
	.woocommerce-checkout .qly-content {
		padding-top: 28px;
		padding-bottom: 72px;
	}

	.woocommerce-account .qly-page-header h1,
	.woocommerce-cart .qly-page-header h1,
	.woocommerce-checkout .qly-page-header h1 {
		font-size: 40px;
	}

	.qly-commerce-journey {
		margin-bottom: 32px;
	}

	.qly-commerce-step {
		align-items: flex-start;
		gap: 7px;
		min-height: 62px;
		padding: 10px 8px 10px 0;
		font-size: 11px;
		line-height: 1.25;
	}

	.qly-commerce-step-number {
		flex: none;
		width: 24px;
		height: 24px;
	}

	body.logged-in.woocommerce-account .qly-page-body > .woocommerce {
		gap: 28px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-inline: 0;
		width: 100%;
		padding-inline: 0;
		border: 0;
		border-bottom: 1px solid var(--qly-line);
		overflow-x: auto;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		width: max-content;
		min-width: 100%;
		padding: 0;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li + li {
		border-top: 0;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation a {
		min-height: 46px;
		border-bottom: 2px solid transparent;
		border-radius: 0;
		white-space: nowrap;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
		border-bottom-color: var(--qly-green);
		background: transparent;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::after {
		display: none;
	}

	.woocommerce-account .woocommerce-info {
		align-items: flex-start;
		flex-direction: column;
		padding: 18px 18px 18px 48px;
	}

	.woocommerce-account .woocommerce-info .button {
		order: initial;
		margin-left: 0;
	}

	.woocommerce-account .woocommerce-Addresses {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 24px;
	}

	.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
		min-height: 0;
		padding: 20px;
	}

	.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title .edit {
		white-space: normal;
	}

	.woocommerce table.my_account_orders {
		display: block;
		border: 0;
		background: transparent;
	}

	.woocommerce table.my_account_orders thead {
		display: none;
	}

	.woocommerce table.my_account_orders tbody,
	.woocommerce table.my_account_orders tr,
	.woocommerce table.my_account_orders th,
	.woocommerce table.my_account_orders td {
		display: block;
		width: 100%;
	}

	.woocommerce table.my_account_orders tr {
		margin-bottom: 14px;
		padding: 18px;
		border: 1px solid var(--qly-line);
		border-radius: 6px;
		background: #fff;
	}

	.woocommerce table.my_account_orders tbody th,
	.woocommerce table.my_account_orders tbody td {
		display: grid;
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 12px;
		padding: 8px 0;
		border: 0;
		text-align: left !important;
	}

	.woocommerce table.my_account_orders tbody td::before {
		content: attr(data-title);
		color: #747b76;
		font-size: 10px;
		font-weight: 800;
		text-transform: uppercase;
	}

	.woocommerce-orders-table__cell-order-number::before {
		content: "Order";
		color: #747b76;
		font-size: 10px;
		font-weight: 800;
		text-transform: uppercase;
	}

	.woocommerce-orders-table__cell-order-actions .button {
		width: max-content;
	}

	.qly-order-confirmation {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 16px;
		padding-bottom: 28px;
	}

	.qly-order-confirmation-icon {
		width: 46px;
		height: 46px;
	}

	.qly-order-confirmation-copy h2 {
		font-size: 32px;
	}

	.qly-order-confirmation-actions {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.qly-order-confirmation-actions .button {
		flex: 1 1 150px;
	}

	.woocommerce-order-received .woocommerce-order-overview.order_details {
		grid-template-columns: 1fr 1fr;
	}

	.woocommerce-order-received .woocommerce-order-overview.order_details li,
	.woocommerce-order-received .woocommerce-order-overview.order_details li:nth-child(2n) {
		border-right: 0;
		border-bottom: 1px solid var(--qly-line);
	}

	.woocommerce-order-received .woocommerce-order-overview.order_details li:nth-child(2n + 1) {
		border-right: 1px solid var(--qly-line);
	}

	.woocommerce-order-received .woocommerce-order-overview__payment-method {
		grid-column: 1 / -1;
		border-bottom: 0 !important;
	}

	.woocommerce-order-details table.shop_table th,
	.woocommerce-order-details table.shop_table td {
		padding: 13px 12px;
	}

	.woocommerce-order-details table.shop_table {
		width: 100%;
		table-layout: fixed;
	}

	.woocommerce-order-details table.shop_table .woocommerce-table__product-name,
	.woocommerce-order-details table.shop_table thead th:first-child {
		width: 44%;
	}

	.woocommerce-order-details table.shop_table th,
	.woocommerce-order-details table.shop_table td,
	.woocommerce-order-details table.shop_table a {
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.woocommerce-customer-details address {
		min-height: 0;
	}

	.woocommerce-cart table.cart td.actions .coupon {
		flex-direction: column;
	}

	.woocommerce-cart table.cart td.actions .coupon .input-text,
	.woocommerce-cart table.cart td.actions .coupon .button {
		width: 100%;
	}
}
