:root {
	--ssd-ink: #17191f;
	--ssd-ink-soft: #414754;
	--ssd-muted: #6c7280;
	--ssd-line: #dfe3ea;
	--ssd-bg: #f6f7f3;
	--ssd-panel: #ffffff;
	--ssd-panel-alt: #f0f5ed;
	--ssd-green: #177a5b;
	--ssd-green-dark: #10523f;
	--ssd-gold: #d89a24;
	--ssd-red: #c84335;
	--ssd-blue: #22577a;
	--ssd-shadow: 0 16px 45px rgba(23, 25, 31, .12);
	--ssd-radius: 8px;
	--ssd-radius-sm: 6px;
	--ssd-header-height: 92px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.ssd-theme {
	margin: 0;
	background: var(--ssd-bg);
	color: var(--ssd-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
}

body.ssd-theme.admin-bar .ssd-site-header {
	top: 32px;
}

body.ssd-theme a {
	color: inherit;
	text-decoration: none;
}

body.ssd-theme a:hover {
	color: var(--ssd-green);
}

body.ssd-theme img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.ssd-theme button,
body.ssd-theme input,
body.ssd-theme select,
body.ssd-theme textarea {
	font: inherit;
}

.ssd-shell {
	width: min(1520px, calc(100% - 40px));
	margin-inline: auto;
}

.ssd-skip-link {
	position: fixed;
	left: 18px;
	top: 18px;
	z-index: 9999;
	transform: translateY(-140%);
	background: var(--ssd-ink);
	color: #fff;
	padding: 10px 14px;
	border-radius: var(--ssd-radius-sm);
	transition: transform .18s ease;
}

.ssd-skip-link:focus {
	transform: translateY(0);
}

.ssd-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(246, 247, 243, .94);
	border-bottom: 1px solid rgba(23, 25, 31, .08);
	backdrop-filter: blur(16px);
}

.ssd-free-shipping-progress-wrap {
	background: var(--ssd-ink);
	color: #fff;
}

.ssd-free-shipping-progress {
	display: grid;
	grid-template-columns: minmax(260px, auto) minmax(360px, 1fr) auto;
	align-items: center;
	gap: 16px;
	width: min(1280px, calc(100% - 40px));
	min-height: 38px;
	margin-inline: auto;
	font-size: 13px;
	font-weight: 850;
}

.ssd-free-shipping-progress__label {
	min-width: 0;
	overflow: visible;
	text-overflow: clip;
	white-space: nowrap;
}

.ssd-free-shipping-progress__track {
	display: block;
	height: 10px;
	overflow: hidden;
	background: rgba(255, 255, 255, .16);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 999px;
}

.ssd-free-shipping-progress__bar {
	display: block;
	height: 100%;
	background: var(--ssd-gold);
	border-radius: inherit;
	transition: width .3s ease;
}

.ssd-free-shipping-progress__meta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 24px;
	padding-inline: 9px;
	background: rgba(255, 255, 255, .1);
	border-radius: 999px;
	font-variant-numeric: tabular-nums;
	color: #fff;
	font-size: 12px;
	font-weight: 950;
}

.ssd-header-main {
	background: rgba(255, 255, 255, .88);
}

.ssd-header-main__inner {
	display: grid;
	grid-template-columns: auto minmax(220px, 1fr) auto auto;
	align-items: center;
	gap: 20px;
	min-height: var(--ssd-header-height);
}

.ssd-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 190px;
	color: var(--ssd-ink);
	font-weight: 900;
}

.ssd-brand__mark {
	display: grid;
	place-items: center;
	width: 44px;
	aspect-ratio: 1;
	background: var(--ssd-green);
	color: #fff;
	border-radius: var(--ssd-radius);
	font-size: 24px;
	font-weight: 900;
}

.ssd-brand__text {
	display: grid;
	gap: 0;
	line-height: 1.05;
}

.ssd-brand__text span {
	font-size: 13px;
	text-transform: uppercase;
	color: var(--ssd-muted);
	font-weight: 850;
}

.ssd-brand__text strong {
	font-size: 22px;
	color: var(--ssd-ink);
}

.ssd-header-search form,
.ssd-header-search .woocommerce-product-search {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.ssd-header-search input[type="search"],
.ssd-header-search .search-field {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--ssd-line);
	border-radius: var(--ssd-radius);
	background: #fff;
	color: var(--ssd-ink);
	padding: 0 112px 0 16px;
	outline: 0;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.ssd-header-search input[type="search"]:focus,
.ssd-header-search .search-field:focus {
	border-color: var(--ssd-green);
	box-shadow: 0 0 0 3px rgba(23, 122, 91, .14);
}

.ssd-header-search button[type="submit"] {
	position: absolute;
	right: 5px;
	top: 5px;
	bottom: 5px;
	min-width: 96px;
	border: 0;
	border-radius: var(--ssd-radius-sm);
	background: var(--ssd-ink);
	color: #fff;
	font-weight: 850;
	cursor: pointer;
}

.ssd-header-search button[type="submit"]:hover {
	background: var(--ssd-green-dark);
}

.ssd-menu,
.ssd-footer-menu {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ssd-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 10px;
	border-radius: var(--ssd-radius-sm);
	color: var(--ssd-ink-soft);
	font-weight: 750;
	white-space: nowrap;
}

.ssd-menu a:hover {
	background: var(--ssd-panel-alt);
	color: var(--ssd-green-dark);
}

.ssd-header-cart {
	position: relative;
	display: grid;
	place-items: center;
	width: 48px;
	aspect-ratio: 1;
	border-radius: var(--ssd-radius);
	background: var(--ssd-panel-alt);
	color: var(--ssd-ink);
}

.ssd-header-cart svg,
.ssd-floating-cart svg,
.ssd-cart-drawer__close svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.ssd-header-cart small {
	position: absolute;
	right: -5px;
	top: -5px;
	display: grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding-inline: 5px;
	background: var(--ssd-red);
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
}

.ssd-main {
	min-height: 56vh;
}

.ssd-storefront-top {
	padding: 24px 0 32px;
	background: #fff;
	border-bottom: 1px solid rgba(23, 25, 31, .08);
}

.ssd-storefront-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 18px;
	margin-bottom: 14px;
}

.ssd-eyebrow,
.ssd-section-title p,
.ssd-cart-drawer__eyebrow,
.ssd-product-card__category {
	margin: 0 0 6px;
	color: var(--ssd-green-dark);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.ssd-storefront-heading h1 {
	max-width: 720px;
	margin: 0;
	color: var(--ssd-ink);
	font-size: clamp(30px, 3.7vw, 52px);
	line-height: 1.04;
	letter-spacing: 0;
}

.ssd-storefront-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.ssd-button,
.ssd-button.button,
.ssd-storefront-actions a,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border: 0;
	border-radius: var(--ssd-radius);
	background: var(--ssd-green);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.ssd-button:hover,
.ssd-storefront-actions a:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover {
	transform: translateY(-1px);
	background: var(--ssd-green-dark);
	color: #fff;
	box-shadow: 0 8px 20px rgba(16, 82, 63, .18);
}

.ssd-button--dark {
	background: var(--ssd-ink);
}

.ssd-button--light {
	background: #fff;
	color: var(--ssd-ink);
	border: 1px solid var(--ssd-line);
}

.ssd-button--light:hover {
	background: var(--ssd-panel-alt);
	color: var(--ssd-green-dark);
	box-shadow: none;
}

.ssd-pyramid-block {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	margin-top: 18px;
	padding: clamp(24px, 4vw, 46px) clamp(14px, 3vw, 34px) clamp(28px, 4vw, 50px);
	background: #eef8f5;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
	box-shadow: 0 18px 48px rgba(23, 25, 31, .1);
}

.ssd-pyramid-block::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: url("../images/bestseller-beach.png");
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	filter: saturate(1.18) contrast(1.06);
	transform: scale(1.01);
	transition: transform .8s ease, filter .8s ease;
}

.ssd-pyramid-block::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, .12) 43%, rgba(246, 247, 243, .56) 100%),
		radial-gradient(circle at 50% 24%, rgba(255, 255, 255, .34), transparent 52%);
	pointer-events: none;
}

.ssd-pyramid-block:hover::before {
	filter: saturate(1.3) contrast(1.08);
	transform: scale(1.045);
}

.ssd-pyramid-block .ssd-section-title,
.ssd-pyramid-block .ssd-pyramid {
	position: relative;
	z-index: 1;
}

.ssd-pyramid-block .ssd-section-title h2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	background: rgba(255, 255, 255, .76);
	border: 1px solid rgba(23, 25, 31, .1);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(23, 25, 31, .1);
	backdrop-filter: blur(10px);
}

.ssd-section-title {
	margin-bottom: 14px;
}

.ssd-section-title--center {
	text-align: center;
}

.ssd-section-title h2 {
	margin: 0;
	font-size: clamp(22px, 2.2vw, 34px);
	line-height: 1.1;
	letter-spacing: 0;
}

.ssd-section-title--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
}

.ssd-section-title--row a {
	color: var(--ssd-green-dark);
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ssd-pyramid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-areas:
		". top ."
		"left . right";
	align-items: end;
	gap: 12px;
	margin-inline: auto;
	max-width: 820px;
}

.ssd-pyramid .ssd-product-card:nth-child(1) {
	grid-area: top;
	transform: translateY(8px);
}

.ssd-pyramid .ssd-product-card:nth-child(2) {
	grid-area: left;
}

.ssd-pyramid .ssd-product-card:nth-child(3) {
	grid-area: right;
}

.ssd-pyramid-block .ssd-product-card {
	background: rgba(255, 255, 255, .92);
	border-color: rgba(23, 25, 31, .1);
	box-shadow: 0 16px 34px rgba(23, 25, 31, .14);
	backdrop-filter: blur(8px);
}

.ssd-product-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.ssd-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: var(--ssd-panel);
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
	box-shadow: 0 1px 0 rgba(23, 25, 31, .04);
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ssd-product-card:hover {
	transform: translateY(-3px);
	border-color: rgba(23, 122, 91, .26);
	box-shadow: var(--ssd-shadow);
}

.ssd-product-card--hero {
	box-shadow: 0 12px 34px rgba(23, 25, 31, .11);
}

.ssd-product-card--hero .ssd-product-card__media {
	aspect-ratio: 1 / .82;
}

.ssd-product-card--hero .ssd-product-card__content {
	gap: 7px;
	padding: 10px;
}

.ssd-product-card--hero .ssd-product-card__title {
	font-size: 14px;
}

.ssd-product-card--hero .ssd-product-card__price {
	min-height: 22px;
	font-size: 16px;
}

.ssd-product-card--hero .ssd-product-card__button {
	min-height: 38px;
	font-size: 13px;
}

.ssd-product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1.05;
	overflow: hidden;
	background: #f2f4f1;
}

.ssd-product-card__image,
.ssd-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .24s ease;
}

.ssd-product-card:hover .ssd-product-card__image,
.ssd-product-card:hover .ssd-product-card__media img {
	transform: scale(1.04);
}

.ssd-product-card__rank,
.ssd-product-card__badge {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 950;
}

.ssd-product-card__rank {
	left: 10px;
	top: 10px;
	width: 36px;
	aspect-ratio: 1;
	background: var(--ssd-ink);
	color: #fff;
	border-radius: var(--ssd-radius);
	font-size: 18px;
}

.ssd-product-card__badge {
	right: 10px;
	top: 10px;
	min-height: 28px;
	padding: 0 9px;
	background: var(--ssd-red);
	color: #fff;
	border-radius: var(--ssd-radius-sm);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.ssd-product-card__badge--hot {
	background: var(--ssd-gold);
	color: #16110a;
}

.ssd-product-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
}

.ssd-product-card__title {
	margin: 0;
	color: var(--ssd-ink);
	font-size: 15px;
	line-height: 1.25;
	letter-spacing: 0;
}

.ssd-product-card__title a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ssd-product-card__bottom {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
	margin-top: auto;
}

.ssd-product-card__price {
	min-height: 24px;
	color: var(--ssd-ink);
	font-size: 17px;
	font-weight: 950;
	line-height: 1.2;
}

.ssd-product-card__price del {
	display: block;
	color: var(--ssd-muted);
	font-size: 13px;
	font-weight: 700;
}

.ssd-product-card__price ins {
	color: var(--ssd-red);
	text-decoration: none;
}

.ssd-product-card__button {
	width: 100%;
	min-height: 40px;
	gap: 6px;
	white-space: normal;
}

.ssd-product-card__button span[aria-hidden="true"] {
	display: grid;
	place-items: center;
	width: 18px;
	aspect-ratio: 1;
	background: rgba(255, 255, 255, .22);
	border-radius: 999px;
	font-size: 18px;
	line-height: 1;
}

.ssd-products-band {
	padding: 42px 0;
	background: var(--ssd-bg);
}

.ssd-products-band--warm {
	background: #fff8ed;
	border-block: 1px solid rgba(216, 154, 36, .22);
}

.ssd-products-band--deep {
	background: #eef4f5;
}

.ssd-trust-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.ssd-trust-strip div {
	display: grid;
	gap: 2px;
	padding: 18px;
	background: #fff;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
}

.ssd-trust-strip strong {
	color: var(--ssd-ink);
	font-size: 17px;
}

.ssd-trust-strip span {
	color: var(--ssd-muted);
	font-size: 14px;
	font-weight: 700;
}

.ssd-empty-products,
.ssd-content,
.ssd-entry {
	background: #fff;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
	padding: clamp(22px, 4vw, 44px);
}

.ssd-empty-products h2,
.ssd-entry h1 {
	margin-top: 0;
	letter-spacing: 0;
}

.ssd-content {
	margin-block: 38px;
}

.ssd-woocommerce-main {
	padding: 36px 0 56px;
}

.woocommerce .woocommerce-breadcrumb {
	color: var(--ssd-muted);
	font-size: 14px;
	font-weight: 750;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--ssd-green-dark);
}

.woocommerce-products-header,
.woocommerce div.product,
.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
	background: #fff;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
}

.woocommerce-products-header {
	margin-bottom: 18px;
	padding: 24px;
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title {
	margin: 0;
	letter-spacing: 0;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	margin: 24px 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce ul.products li.product .star-rating,
.woocommerce .star-rating,
.woocommerce-review-link,
.comment-form-rating {
	display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
	padding-bottom: 12px;
	transition: transform .18s ease, box-shadow .18s ease;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: var(--ssd-shadow);
}

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1.05;
	margin: 0 0 12px;
	object-fit: cover;
	background: #f1f4f1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	margin-inline: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 42px;
	padding: 0;
	color: var(--ssd-ink);
	font-size: 15px;
	line-height: 1.28;
}

.woocommerce ul.products li.product .price {
	display: block;
	color: var(--ssd-ink);
	font-size: 18px;
	font-weight: 950;
}

.woocommerce span.onsale {
	display: inline-flex;
	align-items: center;
	min-width: auto;
	min-height: 28px;
	padding: 0 10px;
	border-radius: var(--ssd-radius-sm);
	background: var(--ssd-red);
	color: #fff;
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, .96fr) minmax(340px, .74fr);
	gap: clamp(24px, 4vw, 56px);
	padding: clamp(18px, 3vw, 34px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce div.product div.images img {
	border-radius: var(--ssd-radius);
	background: #f1f4f1;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ssd-green-dark);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 950;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 24px 0;
}

.woocommerce .quantity .qty {
	width: 82px;
	min-height: 48px;
	border: 1px solid var(--ssd-line);
	border-radius: var(--ssd-radius);
	color: var(--ssd-ink);
	font-weight: 900;
}

body.single-product .ssd-woocommerce-main {
	padding-top: 24px;
}

body.single-product .woocommerce .woocommerce-breadcrumb {
	margin-bottom: 14px;
}

body.single-product .woocommerce div.product {
	align-items: start;
	grid-template-columns: minmax(0, 760px) minmax(360px, 1fr);
	gap: clamp(20px, 2.8vw, 38px);
	max-width: 1360px;
	margin-inline: auto;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

body.single-product .woocommerce div.product div.images {
	position: static;
	overflow: hidden;
	padding: 10px;
	background: #fff;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
	box-shadow: 0 1px 0 rgba(23, 25, 31, .04);
}

body.single-product .woocommerce div.product div.images img,
.ssd-single-preview-media {
	width: 100%;
	aspect-ratio: 1 / .86;
	object-fit: cover;
	border-radius: var(--ssd-radius);
	box-shadow: inset 0 0 0 1px rgba(23, 25, 31, .05);
}

body.single-product .woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin-top: 10px;
}

body.single-product .woocommerce div.product div.images .flex-control-thumbs li {
	width: auto;
	margin: 0;
}

body.single-product .woocommerce div.product div.images .flex-control-thumbs img {
	aspect-ratio: 1;
	border: 1px solid rgba(23, 25, 31, .1);
	cursor: pointer;
	opacity: .72;
	transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

body.single-product .woocommerce div.product div.images .flex-control-thumbs img.flex-active,
body.single-product .woocommerce div.product div.images .flex-control-thumbs img:hover {
	border-color: var(--ssd-green);
	opacity: 1;
	transform: translateY(-1px);
}

body.single-product .woocommerce div.product div.summary {
	position: static;
	display: grid;
	align-content: start;
	gap: 14px;
	padding: clamp(18px, 2.4vw, 28px);
	background: #fff;
	border: 1px solid rgba(23, 25, 31, .09);
	border-radius: var(--ssd-radius);
	box-shadow: 0 1px 0 rgba(23, 25, 31, .04);
}

body.single-product .woocommerce div.product .product_title {
	max-width: 680px;
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 1.05;
}

body.single-product .woocommerce div.product p.price,
body.single-product .woocommerce div.product span.price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	margin: 2px 0 0;
	color: var(--ssd-ink);
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1;
}

body.single-product .woocommerce div.product p.price del,
body.single-product .woocommerce div.product span.price del {
	color: var(--ssd-muted);
	font-size: .52em;
	font-weight: 850;
	opacity: .82;
}

body.single-product .woocommerce div.product p.price ins,
body.single-product .woocommerce div.product span.price ins {
	color: var(--ssd-red);
	text-decoration: none;
}

body.single-product .woocommerce-product-details__short-description {
	margin: 0;
	color: var(--ssd-ink-soft);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.58;
}

body.single-product .woocommerce-product-details__short-description p {
	margin: 0;
}

.ssd-single-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ssd-single-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 11px;
	background: var(--ssd-panel-alt);
	border: 1px solid rgba(23, 122, 91, .14);
	border-radius: 999px;
	color: var(--ssd-green-dark);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.ssd-single-badges .ssd-single-badges__sale {
	background: #fff1ed;
	border-color: rgba(200, 67, 53, .22);
	color: var(--ssd-red);
}

body.single-product .woocommerce div.product form.cart {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 10px;
	margin: 4px 0 0;
	padding: 12px;
	background: #f7f8f4;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
}

body.single-product .woocommerce div.product form.cart div.quantity {
	margin: 0;
}

.ssd-single-qty {
	display: grid;
	grid-template-columns: 42px 62px 42px;
	gap: 6px;
	align-items: center;
	width: max-content;
}

.ssd-single-qty__button {
	display: grid;
	place-items: center;
	width: 42px;
	height: 56px;
	padding: 0;
	border: 0;
	background: #fff;
	border-radius: var(--ssd-radius);
	color: var(--ssd-ink);
	font-size: 22px;
	font-weight: 950;
	line-height: 1;
	cursor: pointer;
	transition: background .16s ease, color .16s ease, transform .16s ease;
}

.ssd-single-qty__button:hover {
	transform: translateY(-1px);
	background: var(--ssd-ink);
	color: #fff;
}

body.single-product .woocommerce div.product form.cart .quantity .qty,
.ssd-single-qty .qty {
	width: 62px;
	min-height: 56px;
	border: 2px solid rgba(23, 25, 31, .15);
	background: #fff;
	border-radius: var(--ssd-radius);
	font-size: 18px;
	font-weight: 950;
	text-align: center;
	-moz-appearance: textfield;
}

body.single-product .woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button,
body.single-product .woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
	width: 100%;
	min-height: 56px;
	border-radius: 999px;
	background: linear-gradient(135deg, #c8271b, #f1772b);
	color: #fff;
	font-size: 16px;
	font-weight: 950;
	text-transform: uppercase;
	box-shadow: 0 16px 28px rgba(200, 67, 53, .28);
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button:hover {
	background: linear-gradient(135deg, #a92f24, #d65d24);
	box-shadow: 0 20px 34px rgba(200, 67, 53, .32);
}

.ssd-single-delivery {
	display: grid;
	gap: 10px;
	padding: 13px;
	background: #fff;
	border: 1px solid rgba(216, 154, 36, .34);
	border-radius: var(--ssd-radius);
	box-shadow: 0 10px 22px rgba(23, 25, 31, .06);
}

.ssd-single-delivery strong {
	display: block;
	color: var(--ssd-ink);
	font-size: 14px;
	font-weight: 950;
}

.ssd-single-delivery p {
	margin: 2px 0 0;
	color: var(--ssd-ink-soft);
	font-size: 13px;
	font-weight: 750;
}

.ssd-single-delivery__meter {
	display: block;
	height: 10px;
	overflow: hidden;
	background: rgba(23, 25, 31, .11);
	border-radius: 999px;
}

.ssd-single-delivery__meter span {
	display: block;
	height: 100%;
	background: var(--ssd-gold);
	border-radius: inherit;
	transition: width .22s ease;
}

.ssd-single-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.ssd-single-benefits div {
	display: grid;
	gap: 2px;
	min-width: 0;
	padding: 11px;
	background: #f7f8f4;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
}

.ssd-single-benefits strong {
	color: var(--ssd-ink);
	font-size: 12px;
	font-weight: 950;
	line-height: 1.2;
}

.ssd-single-benefits span {
	color: var(--ssd-muted);
	font-size: 12px;
	font-weight: 760;
	line-height: 1.25;
}

body.single-product .related,
body.single-product .upsells,
body.single-product .ssd-matched-products {
	grid-column: 1 / -1;
	margin-top: 26px;
}

body.single-product .related > h2,
body.single-product .upsells > h2 {
	margin: 0 0 14px;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.12;
}

body.single-product .ssd-matched-products {
	padding-top: 22px;
	border-top: 1px solid rgba(23, 25, 31, .1);
}

body.single-product .ssd-matched-products .ssd-section-title {
	margin-bottom: 12px;
}

body.single-product .ssd-matched-products .ssd-product-grid,
body.single-product .ssd-matched-products ul.products {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-top: 0;
}

.woocommerce table.shop_table {
	overflow: hidden;
	border: 1px solid var(--ssd-line);
	border-radius: var(--ssd-radius);
	background: #fff;
	border-collapse: separate;
}

.woocommerce table.shop_table th {
	color: var(--ssd-ink);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
	border-color: var(--ssd-line);
	padding: 14px;
}

.woocommerce-cart-form,
.cart-collaterals .cart_totals {
	padding: 18px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	width: min(420px, 100%);
}

.woocommerce-cart .cart-collaterals {
	display: flex;
	justify-content: flex-end;
}

.woocommerce-cart .wc-proceed-to-checkout {
	padding-bottom: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	position: relative;
	min-height: 56px;
	background: linear-gradient(135deg, var(--ssd-red), #e06f2f);
	border: 0;
	border-radius: 999px !important;
	color: #fff;
	font-size: 18px;
	font-weight: 950;
	text-transform: uppercase;
	box-shadow: 0 14px 28px rgba(200, 67, 53, .22);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after {
	content: "→";
	margin-left: 10px;
	font-size: 20px;
	line-height: 1;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background: linear-gradient(135deg, #a92f24, #d65d24);
	color: #fff;
	box-shadow: 0 16px 32px rgba(200, 67, 53, .28);
}

.woocommerce-cart table.cart img {
	width: 72px;
	border-radius: var(--ssd-radius-sm);
}

.woocommerce-cart table.cart td.actions .coupon {
	display: flex;
	gap: 8px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	min-height: 46px;
	border: 1px solid var(--ssd-line);
	border-radius: var(--ssd-radius);
	padding: 0 12px;
	background: #fff;
	color: var(--ssd-ink);
}

.ssd-floating-cart {
	position: fixed;
	right: 22px;
	bottom: 24px;
	z-index: 1200;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	grid-template-areas:
		"icon kicker count"
		"icon label total";
	align-items: center;
	gap: 2px 11px;
	min-width: 196px;
	min-height: 72px;
	max-width: calc(100vw - 32px);
	padding: 11px 13px 11px 11px;
	border: 1px solid rgba(23, 25, 31, .12);
	border-radius: 999px;
	background: #fff;
	color: var(--ssd-ink);
	box-shadow: 0 18px 38px rgba(23, 25, 31, .18);
	cursor: pointer;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ssd-floating-cart::before {
	content: "Szybki koszyk";
	grid-area: kicker;
	color: var(--ssd-red);
	font-size: 10px;
	font-weight: 950;
	line-height: 1;
	text-align: left;
	text-transform: uppercase;
}

.ssd-floating-cart:hover {
	transform: translateY(-2px);
	border-color: rgba(200, 67, 53, .34);
	background: #fff;
	box-shadow: 0 22px 42px rgba(23, 25, 31, .24);
}

.ssd-floating-cart__icon {
	grid-area: icon;
	display: grid;
	place-items: center;
	width: 42px;
	aspect-ratio: 1;
	background: var(--ssd-ink);
	color: #fff;
	border-radius: var(--ssd-radius-sm);
}

.ssd-floating-cart__label {
	grid-area: label;
	color: var(--ssd-ink);
	font-size: 15px;
	font-weight: 950;
	line-height: 1.1;
	text-align: left;
}

.ssd-floating-cart__count {
	grid-area: count;
	display: grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	padding-inline: 6px;
	background: var(--ssd-red);
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 950;
}

.ssd-floating-cart__total {
	grid-area: total;
	color: var(--ssd-green-dark);
	font-size: 14px;
	font-weight: 950;
	text-align: right;
}

.ssd-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 1300;
	pointer-events: none;
	visibility: hidden;
}

.ssd-cart-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
}

html.ssd-cart-is-open,
html.ssd-cart-is-open body {
	overflow: hidden;
}

.ssd-cart-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(23, 25, 31, .52);
	opacity: 0;
	transition: opacity .2s ease;
}

.ssd-cart-drawer.is-open .ssd-cart-drawer__overlay {
	opacity: 1;
}

.ssd-cart-drawer__panel {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	width: min(462px, 100vw);
	height: 100%;
	background: #f3f5f0;
	box-shadow: -28px 0 70px rgba(23, 25, 31, .32);
	transform: translateX(100%);
	transition: transform .24s ease;
}

.ssd-cart-drawer.is-open .ssd-cart-drawer__panel {
	transform: translateX(0);
}

.ssd-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 20px;
	background: var(--ssd-ink);
	color: #fff;
	border-bottom: 0;
}

.ssd-cart-drawer__header h2 {
	margin: 0;
	color: #fff;
	font-size: 27px;
	letter-spacing: 0;
}

.ssd-cart-drawer__header .ssd-cart-drawer__eyebrow {
	color: rgba(255, 255, 255, .68);
}

.ssd-cart-drawer__close {
	display: grid;
	place-items: center;
	width: 42px;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--ssd-radius);
	background: rgba(255, 255, 255, .08);
	color: #fff;
	cursor: pointer;
}

.ssd-cart-drawer__body {
	flex: 1;
	overflow: auto;
	padding: 16px;
}

.ssd-cart-shipping {
	display: grid;
	gap: 9px;
	margin-bottom: 12px;
	padding: 13px;
	background: #fff;
	border: 1px solid rgba(216, 154, 36, .34);
	border-radius: var(--ssd-radius);
	box-shadow: 0 8px 18px rgba(23, 25, 31, .06);
}

.ssd-cart-shipping__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	color: var(--ssd-ink);
	font-size: 13px;
	font-weight: 950;
}

.ssd-cart-shipping p {
	margin: 0;
	color: var(--ssd-ink-soft);
	font-size: 13px;
	font-weight: 750;
}

.ssd-cart-shipping__track {
	display: block;
	height: 9px;
	overflow: hidden;
	background: rgba(23, 25, 31, .12);
	border-radius: 999px;
}

.ssd-cart-shipping__track span {
	display: block;
	height: 100%;
	background: var(--ssd-gold);
	border-radius: inherit;
	transition: width .22s ease;
}

.ssd-cart-drawer .woocommerce-mini-cart {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ssd-cart-drawer .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 12px;
	min-height: 98px;
	padding: 12px 42px 12px 12px;
	background: #fff;
	border: 1px solid rgba(23, 25, 31, .1);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(23, 25, 31, .08);
}

.ssd-cart-drawer .woocommerce-mini-cart-item > a:not(.remove):not(.remove_from_cart_button) {
	display: contents;
	color: var(--ssd-ink);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
}

.ssd-cart-drawer .ssd-cart-item__media {
	display: block !important;
	grid-row: span 2;
	align-self: start;
}

.ssd-cart-drawer .ssd-cart-item__content {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 8px 12px;
	align-content: start;
	min-width: 0;
}

.ssd-cart-drawer .ssd-cart-item__title {
	display: -webkit-box !important;
	grid-column: 1 / -1;
	overflow: hidden;
	color: var(--ssd-ink);
	font-size: 14px;
	font-weight: 950;
	line-height: 1.2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ssd-cart-drawer .ssd-cart-item__price {
	grid-column: 2;
	grid-row: 2;
	align-self: center;
	justify-self: end;
	color: var(--ssd-green-dark);
	font-size: 15px;
	font-weight: 950;
	white-space: nowrap;
}

.ssd-cart-drawer .woocommerce-mini-cart-item img {
	width: 74px;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--ssd-radius-sm);
	background: #f2f4f1;
}

.ssd-cart-drawer .remove_from_cart_button {
	position: absolute;
	right: 8px;
	top: 8px;
	display: grid;
	place-items: center;
	width: 28px;
	aspect-ratio: 1;
	background: #f7e9e7;
	color: var(--ssd-red) !important;
	border-radius: 999px;
	font-size: 18px;
	font-weight: 900;
}

.ssd-cart-drawer .ssd-preview-remove {
	position: absolute;
	right: 8px;
	top: 8px;
	display: grid;
	place-items: center;
	width: 28px;
	aspect-ratio: 1;
	border: 0;
	background: #f7e9e7;
	color: var(--ssd-red);
	border-radius: 999px;
	font-size: 18px;
	font-weight: 950;
	cursor: pointer;
}

.ssd-cart-drawer .remove_from_cart_button:hover,
.ssd-cart-drawer .ssd-preview-remove:hover {
	background: var(--ssd-red);
	color: #fff !important;
}

.ssd-cart-drawer .quantity {
	display: block;
	grid-column: 2;
	margin-top: -34px;
	color: var(--ssd-muted);
	font-size: 13px;
	font-weight: 800;
}

.ssd-cart-qty {
	display: inline-grid;
	grid-template-columns: 38px 48px 38px;
	align-items: center;
	gap: 8px;
	grid-column: 1;
	grid-row: 2;
	width: max-content;
	min-height: 48px;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.ssd-cart-qty__button {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(23, 25, 31, .12);
	background: var(--ssd-ink);
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 8px 16px rgba(23, 25, 31, .16);
	font-size: 20px;
	font-weight: 950;
	line-height: 1;
	cursor: pointer;
	transition: transform .14s ease, background .14s ease, color .14s ease, box-shadow .14s ease;
}

.ssd-cart-qty__button:hover {
	transform: translateY(-1px);
	background: var(--ssd-red);
	color: #fff;
	box-shadow: 0 10px 18px rgba(200, 67, 53, .24);
}

.ssd-cart-qty__input {
	width: 48px;
	height: 48px;
	border: 2px solid var(--ssd-ink);
	background: #fff;
	color: var(--ssd-ink);
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(23, 25, 31, .12);
	font-size: 17px;
	font-weight: 950;
	text-align: center;
	-moz-appearance: textfield;
}

.ssd-cart-qty__input::-webkit-outer-spin-button,
.ssd-cart-qty__input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.ssd-cart-item.is-updating {
	opacity: .62;
	pointer-events: none;
}

.ssd-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	margin: 12px 0;
	padding: 14px;
	background: #fff;
	border: 1px solid rgba(23, 25, 31, .08);
	border-radius: var(--ssd-radius);
	color: var(--ssd-ink);
	font-size: 19px;
	font-weight: 950;
	box-shadow: 0 1px 0 rgba(23, 25, 31, .04);
}

.ssd-cart-drawer__summary {
	margin-top: 12px;
}

.ssd-cart-drawer__hint {
	margin: -2px 2px 12px;
	color: var(--ssd-muted);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.ssd-cart-drawer .woocommerce-mini-cart__buttons {
	position: sticky;
	bottom: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 0 -16px -16px;
	padding: 16px;
	background: linear-gradient(180deg, rgba(243, 245, 240, .92), #f3f5f0 28%);
	border-top: 1px solid rgba(23, 25, 31, .08);
}

.ssd-cart-drawer .woocommerce-mini-cart__buttons .checkout,
.ssd-cart-drawer .woocommerce-mini-cart__buttons .ssd-checkout-now {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	min-height: 68px;
	padding: 0 28px;
	background: linear-gradient(135deg, #c8271b, #f1772b);
	border: 3px solid rgba(255, 255, 255, .55);
	border-radius: 9999px !important;
	color: #fff;
	font-size: 19px;
	font-weight: 950;
	text-transform: uppercase;
	box-shadow: 0 18px 34px rgba(200, 67, 53, .38), inset 0 1px 0 rgba(255, 255, 255, .24);
	overflow: hidden;
}

.ssd-cart-drawer .woocommerce-mini-cart__buttons .checkout::after,
.ssd-cart-drawer .woocommerce-mini-cart__buttons .ssd-checkout-now::after {
	content: ">";
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-left: 12px;
	background: rgba(255, 255, 255, .2);
	border-radius: 999px;
	font-size: 18px;
	line-height: 1;
}

.ssd-cart-drawer .woocommerce-mini-cart__buttons .checkout:hover,
.ssd-cart-drawer .woocommerce-mini-cart__buttons .ssd-checkout-now:hover {
	transform: translateY(-1px);
	background: linear-gradient(135deg, #a92f24, #d65d24);
	color: #fff;
	box-shadow: 0 22px 42px rgba(200, 67, 53, .38);
}

.ssd-cart-drawer .woocommerce-mini-cart__buttons .ssd-cart-edit,
.ssd-cart-drawer .woocommerce-mini-cart__buttons .wc-forward:not(.checkout):not(.ssd-checkout-now) {
	background: #fff;
	border: 1px solid var(--ssd-line);
	border-radius: 999px;
	color: var(--ssd-ink);
	box-shadow: none;
}

.ssd-search-empty {
	display: none;
	margin-top: 14px;
	padding: 16px;
	background: #fff;
	border: 1px dashed var(--ssd-line);
	border-radius: var(--ssd-radius);
	color: var(--ssd-ink-soft);
	font-weight: 800;
}

.ssd-product-card.is-search-hidden {
	display: none;
}

.ssd-site-footer {
	padding: 34px 0 92px;
	background: var(--ssd-ink);
	color: #fff;
}

.ssd-site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.ssd-footer-brand {
	display: inline-flex;
	margin-bottom: 6px;
	color: #fff;
	font-size: 20px;
	font-weight: 950;
}

.ssd-site-footer p {
	margin: 0;
	color: rgba(255, 255, 255, .68);
}

.ssd-footer-menu a {
	color: rgba(255, 255, 255, .78);
	font-weight: 800;
}

.ssd-footer-menu a:hover {
	color: #fff;
}

@media (max-width: 1280px) {
	.ssd-product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	body.single-product .ssd-matched-products .ssd-product-grid,
	body.single-product .ssd-matched-products ul.products {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.ssd-header-main__inner {
		grid-template-columns: auto minmax(220px, 1fr) auto;
	}

	.ssd-header-nav {
		display: none;
	}
}

@media (max-width: 1024px) {
	:root {
		--ssd-header-height: 82px;
	}

	.ssd-product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	body.single-product .ssd-matched-products .ssd-product-grid,
	body.single-product .ssd-matched-products ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ssd-pyramid {
		max-width: 900px;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	body.single-product .woocommerce div.product {
		grid-template-columns: 1fr;
	}

	body.single-product .woocommerce div.product div.images,
	body.single-product .woocommerce div.product div.summary {
		position: static;
	}

	.ssd-storefront-heading {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.ssd-storefront-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 782px) {
	body.ssd-theme.admin-bar .ssd-site-header {
		top: 46px;
	}
}

@media (max-width: 760px) {
	.ssd-shell,
	.ssd-free-shipping-progress {
		width: min(100% - 28px, 1520px);
	}

	.ssd-free-shipping-progress {
		grid-template-columns: 1fr auto;
		gap: 6px 10px;
		padding-block: 8px;
	}

	.ssd-free-shipping-progress__track {
		grid-column: 1 / -1;
	}

	.ssd-free-shipping-progress__label {
		white-space: normal;
	}

	.ssd-header-main__inner {
		grid-template-columns: auto auto;
		gap: 12px;
		padding-block: 12px;
	}

	.ssd-brand {
		min-width: 0;
	}

	.ssd-brand__text strong {
		font-size: 18px;
	}

	.ssd-header-search {
		grid-column: 1 / -1;
		order: 3;
	}

	.ssd-header-cart {
		justify-self: end;
	}

	.ssd-storefront-top {
		padding-top: 24px;
	}

	.ssd-storefront-heading h1 {
		font-size: clamp(27px, 8.5vw, 40px);
	}

	.ssd-storefront-actions {
		display: none;
	}

	.ssd-pyramid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"top top"
			"left right";
		gap: 12px;
	}

	.ssd-pyramid-block {
		margin-top: 14px;
		padding: 18px 10px 22px;
	}

	.ssd-pyramid-block::before {
		background-position: center;
		background-size: 100% 100%;
	}

	.ssd-pyramid-block::after {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .2) 42%, rgba(246, 247, 243, .62) 100%),
			radial-gradient(circle at 50% 22%, rgba(255, 255, 255, .38), transparent 54%);
	}

	.ssd-pyramid .ssd-product-card:nth-child(1) {
		max-width: 360px;
		margin-inline: auto;
		transform: none;
	}

	.ssd-product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	body.single-product .ssd-matched-products .ssd-product-grid,
	body.single-product .ssd-matched-products ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ssd-trust-strip {
		grid-template-columns: 1fr;
	}

	.ssd-section-title--row {
		align-items: start;
		flex-direction: column;
	}

	.ssd-section-title--row > a {
		display: none;
	}

	.ssd-single-benefits {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart table.cart td.actions .coupon {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.ssd-site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.ssd-product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.single-product .ssd-matched-products .ssd-product-grid,
	body.single-product .ssd-matched-products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ssd-products-band {
		padding: 30px 0;
	}

	.ssd-product-card__content {
		padding: 10px;
	}

	.ssd-product-card__title {
		font-size: 14px;
	}

	.ssd-product-card__price {
		font-size: 16px;
	}

	.ssd-product-card__button,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit,
	.woocommerce .button {
		min-height: 40px;
		padding-inline: 10px;
		font-size: 13px;
	}

	.ssd-product-card__button span[aria-hidden="true"] {
		width: 16px;
	}

	body.single-product .woocommerce div.product {
		padding: 12px;
	}

	body.single-product .woocommerce div.product div.summary {
		padding: 16px;
	}

	body.single-product .woocommerce div.product form.cart {
		grid-template-columns: 1fr;
	}

	.ssd-single-qty {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		width: 100%;
	}

	.ssd-single-qty__button,
	body.single-product .woocommerce div.product form.cart .quantity .qty,
	.ssd-single-qty .qty {
		width: 100%;
		min-height: 50px;
	}

	.ssd-floating-cart {
		right: 14px;
		bottom: 14px;
		grid-template-columns: auto auto;
		grid-template-areas:
			"icon count";
		min-width: auto;
		min-height: 54px;
		padding: 8px;
	}

	.ssd-floating-cart::before {
		display: none;
	}

	.ssd-floating-cart__label,
	.ssd-floating-cart__total {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.ssd-floating-cart__icon {
		width: 38px;
	}

	.ssd-cart-drawer__panel {
		width: min(390px, 100vw);
	}

	.ssd-cart-drawer__header {
		padding: 16px;
	}

	.ssd-cart-drawer__body {
		padding: 14px;
	}

	.ssd-cart-drawer .woocommerce-mini-cart__buttons .checkout,
	.ssd-cart-drawer .woocommerce-mini-cart__buttons .ssd-checkout-now {
		min-height: 58px;
		border-radius: 999px !important;
		font-size: 15px;
	}

	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		border-bottom: 1px solid var(--ssd-line);
	}

	.woocommerce-cart-form,
	.cart-collaterals .cart_totals,
	.woocommerce-checkout form.checkout {
		padding: 12px;
	}
}

@media (max-width: 390px) {
	.ssd-shell,
	.ssd-free-shipping-progress {
		width: min(100% - 20px, 1520px);
	}

	.ssd-brand__mark {
		width: 38px;
	}

	.ssd-brand__text span {
		font-size: 11px;
	}

	.ssd-brand__text strong {
		font-size: 16px;
	}

	.ssd-product-card__rank {
		width: 30px;
		font-size: 15px;
	}

	.ssd-product-card__badge {
		min-height: 24px;
		padding-inline: 7px;
		font-size: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Hard override for the side cart purchase controls. */
.ssd-cart-drawer .woocommerce-mini-cart__buttons .checkout,
.ssd-cart-drawer .woocommerce-mini-cart__buttons .ssd-checkout-now,
.ssd-cart-drawer a.button.checkout.ssd-checkout-now {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 64px !important;
	padding: 0 26px !important;
	border: 0 !important;
	border-radius: 9999px !important;
	background: linear-gradient(135deg, #c8271b, #f1772b) !important;
	color: #fff !important;
	font-size: 18px !important;
	font-weight: 950 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-transform: uppercase !important;
	box-shadow: 0 18px 34px rgba(200, 67, 53, .36) !important;
}

.ssd-cart-drawer .woocommerce-mini-cart__buttons .checkout::after,
.ssd-cart-drawer .woocommerce-mini-cart__buttons .ssd-checkout-now::after,
.ssd-cart-drawer a.button.checkout.ssd-checkout-now::after {
	content: none !important;
}

.ssd-cart-drawer .woocommerce-mini-cart__buttons .checkout:hover,
.ssd-cart-drawer .woocommerce-mini-cart__buttons .ssd-checkout-now:hover,
.ssd-cart-drawer a.button.checkout.ssd-checkout-now:hover {
	background: linear-gradient(135deg, #a92f24, #d65d24) !important;
	color: #fff !important;
}

.ssd-cart-drawer .ssd-cart-qty {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	width: auto !important;
	min-height: 40px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.ssd-cart-drawer .ssd-cart-qty__button {
	display: grid !important;
	place-items: center !important;
	width: 32px !important;
	height: 40px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: var(--ssd-ink) !important;
	box-shadow: none !important;
	font-size: 22px !important;
	font-weight: 850 !important;
	line-height: 1 !important;
}

.ssd-cart-drawer .ssd-cart-qty__button:hover {
	background: #edf0ea !important;
	color: var(--ssd-ink) !important;
	transform: none !important;
	box-shadow: none !important;
}

.ssd-cart-drawer .ssd-cart-qty__input {
	width: 42px !important;
	height: 40px !important;
	padding: 0 !important;
	border: 1px solid rgba(23, 25, 31, .22) !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: var(--ssd-ink) !important;
	box-shadow: none !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 40px !important;
	text-align: center !important;
}
