:root {
	--sm-sand: #e0c3a2;
	--sm-sand-deep: #8a5f3b;
	--sm-ivory: #f6f2ef;
	--sm-ivory-deep: #eee7e0;
	--sm-navy: #2e3e54;
	--sm-navy-soft: #526177;
	--sm-white: #fffdfb;
	--sm-ink: #28384d;
	--sm-muted: #6e7378;
	--sm-line: rgba(46, 62, 84, 0.14);
	--sm-success: #376348;
	--sm-warning: #855b16;
	--sm-error: #983e3e;
	--sm-sage: #d9e0d5;
	--sm-blue: #dbe4e9;
	--sm-shadow: 0 22px 60px rgba(46, 62, 84, 0.11);
	--sm-radius: 22px;
	--sm-serif: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
	--sm-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 128px;
	background: var(--sm-ivory);
}

body {
	min-width: 320px;
	margin: 0;
	overflow-x: clip;
	color: var(--sm-navy);
	background: var(--sm-white);
	font-family: var(--sm-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.sm-panel-open {
	overflow: hidden;
}

[hidden] {
	display: none !important;
}

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

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
	color: inherit;
	font: inherit;
}

button,
select {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--sm-navy);
	text-wrap: balance;
}

h1,
h2 {
	font-family: var(--sm-serif);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

h1 {
	font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
	font-size: clamp(2.2rem, 4.4vw, 4rem);
}

h3 {
	line-height: 1.28;
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--sm-sand-deep);
	outline-offset: 3px;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 5px;
	left: 5px;
	display: block;
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	clip: auto !important;
	color: var(--sm-navy);
	background: var(--sm-white);
	font-size: 14px;
	font-weight: 700;
	box-shadow: var(--sm-shadow);
}

.sm-skip-link {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	color: var(--sm-white);
	background: var(--sm-navy);
	border-radius: 8px;
	transform: translateY(-180%);
}

.sm-skip-link:focus {
	transform: none;
}

.sm-container {
	width: min(100% - 40px, 1240px);
	margin-inline: auto;
}

.sm-section {
	padding-block: clamp(72px, 8.5vw, 124px);
}

.sm-eyebrow {
	margin-bottom: 16px;
	color: var(--sm-sand-deep);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.sm-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 24px;
}

.sm-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px 22px;
	color: var(--sm-navy);
	background: var(--sm-sand);
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--sm-sans);
	font-size: 0.83rem;
	font-weight: 750;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sm-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover {
	color: var(--sm-white);
	background: var(--sm-navy-soft);
}

.sm-button:active {
	transform: translateY(1px);
}

.sm-button--navy,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	color: var(--sm-white);
	background: var(--sm-navy);
}

.sm-button--navy:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	color: var(--sm-navy);
	background: var(--sm-sand);
}

.sm-button--sand {
	color: var(--sm-navy);
	background: var(--sm-sand);
}

.sm-button--secondary {
	background: transparent;
	border-color: var(--sm-line);
}

.sm-text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 9px;
	padding: 0;
	color: var(--sm-navy);
	background: transparent;
	border: 0;
	font-size: 0.82rem;
	font-weight: 750;
	text-decoration: underline;
	text-decoration-color: var(--sm-sand-deep);
	text-underline-offset: 5px;
}

.sm-text-link:hover {
	text-decoration-thickness: 2px;
}

/* Pasek komunikatów i header */
.sm-announcement {
	color: var(--sm-ivory);
	background: var(--sm-navy);
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.02em;
}

.sm-announcement__inner {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 4vw, 62px);
}

.sm-announcement p {
	position: relative;
	margin: 0;
}

.sm-announcement p + p::before {
	position: absolute;
	top: 50%;
	left: clamp(-31px, -2vw, -10px);
	width: 3px;
	height: 3px;
	background: var(--sm-sand);
	border-radius: 50%;
	content: "";
}

.sm-site-header {
	position: sticky;
	z-index: 80;
	top: 0;
	background: rgba(255, 253, 251, 0.96);
	border-bottom: 1px solid var(--sm-line);
	backdrop-filter: blur(14px);
}

.sm-header {
	display: grid;
	min-height: 132px;
	align-items: center;
	gap: clamp(18px, 2.2vw, 38px);
	grid-template-columns: auto minmax(0, 1fr) auto;
}

.sm-logo {
	line-height: 0;
}

.sm-logo a {
	display: block;
}

.sm-logo img,
.sm-logo .custom-logo {
	width: 112px;
	height: 112px;
	object-fit: contain;
	border-radius: 50%;
}

.sm-primary-nav {
	min-width: 0;
}

.sm-menu,
.sm-mobile-menu__list,
.sm-footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sm-primary-nav .sm-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 1.35vw, 22px);
}

.sm-primary-nav .sm-menu > li {
	position: relative;
}

.sm-primary-nav .sm-menu a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--sm-navy);
	font-size: clamp(0.68rem, 0.78vw, 0.84rem);
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.sm-primary-nav .sm-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 1px;
	background: var(--sm-navy);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 200ms ease;
}

.sm-primary-nav .sm-menu > li:hover > a::after,
.sm-primary-nav .sm-menu > li.current-menu-item > a::after,
.sm-primary-nav .sm-menu > li > a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.sm-primary-nav .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: -20px;
	display: grid;
	width: max-content;
	min-width: 210px;
	padding: 14px 18px;
	margin: 0;
	visibility: hidden;
	list-style: none;
	background: var(--sm-white);
	border: 1px solid var(--sm-line);
	box-shadow: var(--sm-shadow);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.sm-primary-nav li:hover > .sub-menu,
.sm-primary-nav li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: none;
}

.sm-primary-nav .sub-menu a {
	width: 100%;
}

.sm-header-actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.sm-icon-button {
	position: relative;
	display: inline-flex;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: var(--sm-navy);
	background: transparent;
	border: 0;
	border-radius: 50%;
	text-decoration: none;
}

.sm-icon-button:hover {
	background: var(--sm-ivory);
}

.sm-icon-button:disabled,
.sm-favorite-button:disabled {
	cursor: not-allowed;
	opacity: 0.48;
}

.sm-icon-button svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.sm-cart-count {
	position: absolute;
	top: -1px;
	right: -1px;
	display: inline-flex;
	min-width: 21px;
	height: 21px;
	align-items: center;
	justify-content: center;
	padding-inline: 5px;
	color: var(--sm-navy);
	background: var(--sm-sand);
	border-radius: 99px;
	font-size: 0.67rem;
	font-weight: 850;
	line-height: 1;
}

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

.sm-menu-glyph {
	display: grid;
	gap: 6px;
}

.sm-menu-glyph i {
	display: block;
	width: 22px;
	height: 1.5px;
	background: currentColor;
}

.sm-search-panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	padding-block: 24px;
	background: var(--sm-white);
	border-top: 1px solid var(--sm-line);
	box-shadow: 0 24px 50px rgba(46, 62, 84, 0.1);
}

.sm-product-search > label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sm-product-search > div {
	display: grid;
	align-items: center;
	gap: 12px;
	grid-template-columns: minmax(0, 1fr) auto auto;
}

.sm-product-search input[type="search"] {
	width: 100%;
	min-height: 54px;
	padding: 0 20px;
	background: var(--sm-ivory);
	border: 1px solid transparent;
	border-radius: 999px;
}

.sm-product-search input[type="search"]:focus {
	background: var(--sm-white);
	border-color: var(--sm-navy);
}

.sm-mobile-menu {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: min(88vw, 420px);
	height: 100dvh;
	overflow-y: auto;
	padding: 24px;
	background: var(--sm-white);
	box-shadow: 20px 0 50px rgba(46, 62, 84, 0.16);
}

.sm-mobile-menu::after {
	position: fixed;
	z-index: -1;
	background: rgba(46, 62, 84, 0.45);
	content: "";
	inset: 0;
}

.sm-mobile-menu__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--sm-line);
}

.sm-mobile-menu__list > li > a,
.sm-mobile-menu .sm-menu > li > a {
	display: flex;
	min-height: 52px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--sm-line);
	font-size: 1rem;
	font-weight: 720;
	text-decoration: none;
}

.sm-mobile-menu .sub-menu {
	padding: 0 0 8px 18px;
	list-style: none;
}

.sm-mobile-menu .sub-menu a {
	display: flex;
	min-height: 44px;
	align-items: center;
	color: var(--sm-muted);
	text-decoration: none;
}

.sm-mobile-menu__utility {
	display: grid;
	gap: 8px;
	padding-top: 24px;
}

.sm-mobile-menu__utility a {
	min-height: 44px;
	font-size: 0.86rem;
}

/* Hero */
.sm-hero {
	position: relative;
	overflow: hidden;
	background: var(--sm-ivory);
}

.sm-hero::after {
	position: absolute;
	right: -14vw;
	bottom: -34vw;
	width: 58vw;
	height: 58vw;
	border: 1px solid rgba(46, 62, 84, 0.08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.sm-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: min(760px, calc(100vh - 146px));
	align-items: center;
	gap: clamp(44px, 8vw, 110px);
	padding-block: clamp(72px, 8vw, 116px);
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
}

.sm-hero__copy {
	max-width: 690px;
}

.sm-hero h1 {
	margin-bottom: 26px;
}

.sm-hero h1 em {
	display: block;
	color: var(--sm-sand-deep);
	font-style: italic;
}

.sm-hero__lead {
	max-width: 600px;
	margin-bottom: 32px;
	color: var(--sm-navy-soft);
	font-size: clamp(1.05rem, 1.45vw, 1.25rem);
	line-height: 1.65;
}

.sm-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	padding: 0;
	margin: 38px 0 0;
	list-style: none;
}

.sm-hero__proof li {
	position: relative;
	padding-left: 16px;
	color: var(--sm-muted);
	font-size: 0.73rem;
	font-weight: 650;
}

.sm-hero__proof li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--sm-sand-deep);
	border-radius: 50%;
	content: "";
}

.sm-hero__visual {
	position: relative;
	min-height: 500px;
	margin: 0;
}

.sm-hero__image-wrap {
	position: absolute;
	top: 0;
	right: 0;
	width: 82%;
	overflow: hidden;
	background: var(--sm-sand);
	border-radius: 50% 50% 44% 56% / 48% 45% 55% 52%;
	box-shadow: var(--sm-shadow);
}

.sm-hero__image-wrap::before {
	display: block;
	padding-top: 100%;
	content: "";
}

.sm-hero__image-wrap img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	inset: 0;
}

.sm-hero__visual figcaption {
	position: absolute;
	right: 5%;
	bottom: 6%;
	max-width: 190px;
	padding: 13px 17px;
	color: var(--sm-navy);
	background: var(--sm-white);
	border: 1px solid var(--sm-line);
	box-shadow: var(--sm-shadow);
	font-family: var(--sm-serif);
	font-size: 0.9rem;
	font-style: italic;
}

.sm-hero__seal {
	position: absolute;
	bottom: 2%;
	left: 2%;
	display: flex;
	width: 106px;
	height: 106px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: var(--sm-navy);
	background: var(--sm-sand);
	border: 8px solid var(--sm-ivory);
	border-radius: 50%;
	font-family: var(--sm-serif);
	font-size: 1.8rem;
	line-height: 0.8;
	transform: rotate(-8deg);
}

.sm-hero__seal small {
	margin-top: 9px;
	font-family: var(--sm-sans);
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Korzyści */
.sm-trust-strip {
	background: var(--sm-white);
	border-bottom: 1px solid var(--sm-line);
}

.sm-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sm-trust-strip article {
	display: grid;
	min-height: 150px;
	align-items: center;
	gap: 16px;
	padding: 25px clamp(14px, 2vw, 28px);
	border-right: 1px solid var(--sm-line);
	grid-template-columns: 48px 1fr;
}

.sm-trust-strip article:first-child {
	padding-left: 0;
}

.sm-trust-strip article:last-child {
	padding-right: 0;
	border-right: 0;
}

.sm-trust-strip article > span {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	color: var(--sm-navy);
	background: var(--sm-ivory);
	border: 1px solid var(--sm-sand);
	border-radius: 50%;
	font-family: var(--sm-serif);
	font-size: 0.84rem;
	font-weight: 700;
}

.sm-trust-strip h3 {
	margin-bottom: 3px;
	font-size: 0.82rem;
}

.sm-trust-strip p {
	margin-bottom: 0;
	color: var(--sm-muted);
	font-size: 0.7rem;
	line-height: 1.45;
}

/* Nagłówki sekcji */
.sm-section-heading {
	display: grid;
	align-items: end;
	gap: 30px;
	margin-bottom: clamp(34px, 5vw, 58px);
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
}

.sm-section-heading h2 {
	max-width: 760px;
	margin-bottom: 0;
}

.sm-section-heading > p {
	max-width: 520px;
	margin-bottom: 4px;
	color: var(--sm-muted);
	font-size: 0.9rem;
}

.sm-section-heading--action {
	grid-template-columns: minmax(0, 1fr) auto;
}

/* Ścieżki wieku i zabawy */
.sm-age-grid {
	display: grid;
	border-top: 1px solid var(--sm-line);
	border-left: 1px solid var(--sm-line);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sm-age-card {
	position: relative;
	min-height: 240px;
	padding: 28px 26px;
	overflow: hidden;
	background: var(--sm-white);
	border-right: 1px solid var(--sm-line);
	border-bottom: 1px solid var(--sm-line);
	text-decoration: none;
	transition: background-color 180ms ease;
}

.sm-age-card::after {
	position: absolute;
	right: -45px;
	bottom: -55px;
	width: 130px;
	height: 130px;
	background: var(--sm-ivory);
	border-radius: 50%;
	content: "";
	transition: transform 250ms ease;
}

.sm-age-card:hover {
	background: var(--sm-ivory);
}

.sm-age-card:hover::after {
	transform: scale(1.3);
}

.sm-age-card > span {
	display: inline-block;
	margin-bottom: 28px;
	color: var(--sm-sand-deep);
	font-size: 0.74rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sm-age-card h2,
.sm-age-card h3 {
	max-width: 190px;
	margin-bottom: 8px;
	font-family: var(--sm-serif);
	font-size: 1.35rem;
	font-weight: 500;
}

.sm-age-card p {
	max-width: 200px;
	margin-bottom: 0;
	color: var(--sm-muted);
	font-size: 0.75rem;
}

.sm-age-card b {
	position: absolute;
	z-index: 1;
	right: 22px;
	bottom: 18px;
}

.sm-play-section {
	background: var(--sm-ivory);
}

.sm-play-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sm-play-card {
	position: relative;
	min-height: 300px;
	padding: 34px;
	overflow: hidden;
	background: var(--sm-white);
	border: 1px solid transparent;
	text-decoration: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

.sm-play-card:nth-child(2n) {
	background: #f0e3d4;
}

.sm-play-card:nth-child(3n) {
	background: var(--sm-sage);
}

.sm-play-card:hover {
	border-color: var(--sm-navy);
	transform: translateY(-3px);
}

.sm-play-card > span {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin-bottom: 45px;
	background: rgba(255, 253, 251, 0.65);
	border: 1px solid rgba(46, 62, 84, 0.12);
	border-radius: 50%;
	font-family: var(--sm-serif);
	font-size: 0.85rem;
}

.sm-play-card h3 {
	margin-bottom: 10px;
	font-family: var(--sm-serif);
	font-size: 1.55rem;
	font-weight: 500;
}

.sm-play-card p {
	max-width: 330px;
	margin-bottom: 26px;
	color: var(--sm-navy-soft);
	font-size: 0.8rem;
}

.sm-play-card b {
	position: absolute;
	bottom: 26px;
	font-size: 0.72rem;
}

.sm-play-card b i {
	margin-left: 7px;
	font-style: normal;
}

/* Produkty */
.woocommerce ul.products,
ul.products.sm-product-grid {
	display: grid;
	gap: 34px 18px;
	padding: 0;
	margin: 0 0 44px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.woocommerce ul.products li.product,
ul.products.sm-product-grid li.product {
	float: none;
	width: auto;
	padding: 0;
	margin: 0;
}

.sm-product-card {
	min-width: 0;
	list-style: none;
}

.sm-product-card > article {
	height: 100%;
}

.sm-product-card__visual {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--sm-ivory);
}

.sm-product-card__visual > a:first-child {
	display: block;
	width: 100%;
	height: 100%;
}

.sm-product-card__visual img {
	width: 100%;
	height: 100%;
	margin: 0 !important;
	object-fit: cover;
	transition: transform 300ms ease;
}

.sm-product-card:hover .sm-product-card__visual img {
	transform: scale(1.025);
}

.sm-product-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	max-width: calc(100% - 76px);
	padding: 7px 11px;
	overflow: hidden;
	color: var(--sm-navy);
	background: var(--sm-white);
	border-radius: 99px;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.sm-favorite-button {
	position: absolute;
	top: 11px;
	right: 11px;
	display: inline-flex;
	width: 43px;
	height: 43px;
	align-items: center;
	justify-content: center;
	background: var(--sm-white);
	border: 1px solid var(--sm-line);
	border-radius: 50%;
	font-size: 1.35rem;
	text-decoration: none;
}

.sm-favorite-button:hover {
	color: var(--sm-white);
	background: var(--sm-navy);
}

.sm-product-card__copy {
	padding-top: 18px;
}

.sm-product-card__brand {
	margin-bottom: 7px;
	color: var(--sm-sand-deep);
	font-size: 0.64rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.sm-product-card .woocommerce-loop-product__title {
	min-height: 2.7em;
	padding: 0;
	margin-bottom: 8px;
	font-family: var(--sm-serif);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.28;
}

.woocommerce-loop-product__title a {
	text-decoration: none;
}

.sm-product-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 12px;
	min-height: 1.6em;
	margin-bottom: 12px;
	color: var(--sm-muted);
	font-size: 0.68rem;
}

.sm-product-card__meta span + span {
	position: relative;
}

.sm-product-card__meta span + span::before {
	position: absolute;
	top: 50%;
	left: -7px;
	width: 2px;
	height: 2px;
	background: currentColor;
	border-radius: 50%;
	content: "";
}

.sm-product-card__rating {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 9px;
	font-size: 0.67rem;
}

.sm-product-card__rating .star-rating {
	margin: 0;
}

.sm-product-card__bottom {
	display: grid;
	align-items: end;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.sm-product-card__bottom > div {
	display: grid;
	gap: 2px;
}

.woocommerce ul.products li.product .price,
.sm-product-card__bottom .price {
	margin: 0;
	color: var(--sm-navy);
	font-size: 0.92rem;
	font-weight: 800;
}

.sm-product-card__bottom del {
	color: var(--sm-muted);
	font-weight: 500;
}

.sm-product-card__bottom ins {
	text-decoration: none;
}

.sm-product-card__bottom .is-in-stock,
.sm-product-card__bottom .is-out-of-stock {
	font-size: 0.63rem;
	font-weight: 650;
}

.sm-product-card__bottom .is-in-stock {
	color: var(--sm-success);
}

.sm-product-card__bottom .is-out-of-stock {
	color: var(--sm-error);
}

.sm-card-button,
.woocommerce ul.products li.product .button.sm-card-button {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 9px 13px;
	margin: 0;
	color: var(--sm-white);
	background: var(--sm-navy);
	border-radius: 10px;
	font-size: 0.68rem;
	line-height: 1.25;
	text-align: center;
}

.sm-card-button:hover,
.woocommerce ul.products li.product .button.sm-card-button:hover {
	color: var(--sm-navy);
	background: var(--sm-sand);
}

.sm-empty-products,
.sm-empty-state {
	padding: 44px;
	background: var(--sm-ivory);
	border: 1px solid var(--sm-line);
	text-align: center;
}

.sm-empty-products p {
	margin: 0;
	color: var(--sm-muted);
}

/* Prezentownik i standard selekcji */
.sm-gift-callout {
	background: var(--sm-sand);
}

.sm-gift-callout__inner {
	display: grid;
	align-items: center;
	gap: clamp(40px, 8vw, 110px);
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}

.sm-gift-callout__visual {
	position: relative;
	max-width: 440px;
	padding: 32px;
	background: rgba(255, 253, 251, 0.5);
	border-radius: 48% 52% 45% 55% / 54% 46% 54% 46%;
}

.sm-gift-callout__visual img {
	width: 100%;
	aspect-ratio: 0.9;
	object-fit: cover;
	border-radius: inherit;
}

.sm-gift-callout__copy {
	max-width: 650px;
}

.sm-gift-callout__copy .sm-eyebrow {
	color: var(--sm-navy);
}

.sm-gift-callout__copy h2 {
	margin-bottom: 24px;
}

.sm-gift-callout__copy > p:not(.sm-eyebrow) {
	max-width: 560px;
	margin-bottom: 30px;
	color: rgba(46, 62, 84, 0.76);
}

.sm-selection {
	display: grid;
	align-items: start;
	gap: clamp(50px, 9vw, 130px);
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.sm-selection__copy {
	position: sticky;
	top: 160px;
}

.sm-selection__copy h2 {
	margin-bottom: 24px;
}

.sm-selection__copy > p:not(.sm-eyebrow) {
	margin-bottom: 24px;
	color: var(--sm-muted);
}

.sm-selection__list {
	padding: 0;
	margin: 0;
	list-style: none;
	border-top: 1px solid var(--sm-line);
}

.sm-selection__list li {
	display: grid;
	gap: 18px;
	padding: 28px 0;
	border-bottom: 1px solid var(--sm-line);
	grid-template-columns: 44px 1fr;
}

.sm-selection__list > li > span {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	background: var(--sm-ivory);
	border-radius: 50%;
	font-family: var(--sm-serif);
	font-size: 0.8rem;
}

.sm-selection__list h3 {
	margin-bottom: 6px;
	font-family: var(--sm-serif);
	font-size: 1.35rem;
	font-weight: 500;
}

.sm-selection__list p {
	margin: 0;
	color: var(--sm-muted);
	font-size: 0.82rem;
}

.sm-account-banner {
	padding-block: clamp(56px, 7vw, 90px);
	color: var(--sm-white);
	background: var(--sm-navy);
}

.sm-account-banner__inner {
	display: grid;
	align-items: center;
	gap: 34px;
	grid-template-columns: minmax(0, 1fr) auto auto;
}

.sm-account-banner .sm-eyebrow {
	color: var(--sm-sand);
}

.sm-account-banner h2 {
	max-width: 660px;
	margin: 0;
	color: var(--sm-white);
	font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.sm-account-banner ul {
	display: grid;
	gap: 7px;
	padding: 0;
	margin: 0;
	list-style: none;
	color: rgba(255, 253, 251, 0.72);
	font-size: 0.78rem;
}

.sm-account-banner li::before {
	margin-right: 9px;
	color: var(--sm-sand);
	content: "✓";
}

/* Blog */
.sm-post-grid {
	display: grid;
	gap: 34px 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sm-post-card__image {
	display: block;
	aspect-ratio: 1.4;
	margin-bottom: 20px;
	overflow: hidden;
	background: var(--sm-ivory);
}

.sm-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.sm-post-card__image span {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 26% 38%, var(--sm-sand) 0 13%, transparent 14%),
		radial-gradient(circle at 62% 58%, var(--sm-sage) 0 23%, transparent 24%),
		var(--sm-ivory);
}

.sm-post-card:hover .sm-post-card__image img {
	transform: scale(1.025);
}

.sm-post-card .sm-eyebrow {
	margin-bottom: 9px;
}

.sm-post-card h2,
.sm-post-card h3 {
	margin-bottom: 10px;
	font-family: var(--sm-serif);
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	font-weight: 500;
}

.sm-post-card h2 a,
.sm-post-card h3 a {
	text-decoration: none;
}

.sm-post-card > p:not(.sm-eyebrow) {
	color: var(--sm-muted);
	font-size: 0.82rem;
}

/* Sklep i listing */
.sm-shop-main {
	padding-bottom: clamp(70px, 9vw, 120px);
}

.woocommerce .woocommerce-breadcrumb {
	padding-top: 24px;
	margin-bottom: 0;
	color: var(--sm-muted);
	font-size: 0.7rem;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--sm-navy);
}

.sm-shop-hero {
	max-width: 820px;
	padding-block: clamp(55px, 7vw, 92px);
}

.sm-shop-hero h1 {
	margin-bottom: 24px;
}

.sm-shop-hero__lead {
	max-width: 680px;
	color: var(--sm-muted);
}

.sm-shop-hero__lead > *:last-child {
	margin-bottom: 0;
}

.sm-shop-layout {
	display: grid;
	align-items: start;
	gap: clamp(28px, 4vw, 54px);
	grid-template-columns: 250px minmax(0, 1fr);
}

.sm-shop-filters {
	position: sticky;
	top: 145px;
	padding: 24px 22px;
	background: var(--sm-ivory);
}

.sm-shop-filters__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--sm-line);
}

.sm-shop-filters__heading h2 {
	margin: 0;
	font-family: var(--sm-sans);
	font-size: 1.05rem;
	font-weight: 800;
}

.sm-filter-close {
	display: none;
}

.sm-filter-widget {
	padding-block: 21px;
	border-bottom: 1px solid var(--sm-line);
}

.sm-filter-widget__title,
.sm-filter-widget .wp-block-heading {
	margin-bottom: 14px;
	font-family: var(--sm-sans);
	font-size: 0.78rem;
	font-weight: 800;
}

.sm-filter-widget ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sm-filter-widget li {
	padding-block: 5px;
	font-size: 0.78rem;
}

.sm-filter-widget input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-right: 8px;
	accent-color: var(--sm-navy);
}

.sm-filter-placeholder {
	margin: 20px 0 0;
	color: var(--sm-muted);
	font-size: 0.75rem;
}

.sm-fallback-filters {
	display: grid;
	gap: 12px;
	padding-top: 20px;
}

.sm-fallback-filters > label,
.sm-fallback-filters legend {
	font-size: 0.78rem;
	font-weight: 800;
}

.sm-fallback-filters select,
.sm-fallback-filters input {
	width: 100%;
	min-height: 44px;
	padding: 8px 10px;
	background: var(--sm-white);
	border: 1px solid var(--sm-line);
}

.sm-fallback-filters fieldset {
	padding: 0;
	margin: 8px 0 2px;
	border: 0;
}

.sm-price-fields {
	display: grid;
	gap: 8px;
	margin-top: 8px;
	grid-template-columns: 1fr 1fr;
}

.sm-price-fields label span {
	display: block;
	margin-bottom: 4px;
	color: var(--sm-muted);
	font-size: 0.7rem;
}

.sm-fallback-filters .sm-button {
	width: 100%;
	margin-top: 6px;
}

.sm-fallback-filters .sm-text-link {
	justify-self: start;
}

.sm-product-listing {
	min-width: 0;
}

.sm-product-listing .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

.woocommerce .woocommerce-result-count {
	margin: 10px 0 24px;
	color: var(--sm-muted);
	font-size: 0.76rem;
}

.woocommerce .woocommerce-ordering {
	margin: 0 0 24px;
}

.woocommerce .woocommerce-ordering select {
	min-height: 44px;
	padding: 0 38px 0 13px;
	background: var(--sm-white);
	border: 1px solid var(--sm-line);
	border-radius: 0;
	font-size: 0.76rem;
}

.sm-product-listing .products {
	clear: both;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sm-mobile-toolbar {
	display: none;
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 7px;
	justify-content: center;
	border: 0;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: var(--sm-ivory);
	border-radius: 50%;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	color: var(--sm-white);
	background: var(--sm-navy);
}

/* Karta produktu WooCommerce */
.single-product .sm-shop-main > .sm-container {
	padding-bottom: clamp(70px, 8vw, 120px);
}

.woocommerce div.product {
	padding-top: clamp(35px, 5vw, 72px);
}

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

.woocommerce div.product div.images img {
	background: var(--sm-ivory);
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	gap: 10px;
	margin-top: 10px;
	grid-template-columns: repeat(4, 1fr);
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: auto;
}

.woocommerce div.product .product_title {
	margin-bottom: 18px;
	font-family: var(--sm-serif);
	font-size: clamp(2.6rem, 5vw, 4.5rem);
	font-weight: 500;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--sm-navy);
	font-size: 1.35rem;
	font-weight: 800;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	margin-block: 24px;
	color: var(--sm-muted);
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-block: 26px;
}

.woocommerce .quantity .qty {
	width: 70px;
	min-height: 50px;
	padding: 0 8px;
	border: 1px solid var(--sm-line);
}

.woocommerce div.product .stock {
	color: var(--sm-success);
	font-size: 0.78rem;
	font-weight: 750;
}

.woocommerce div.product .out-of-stock {
	color: var(--sm-error);
}

.woocommerce div.product .product_meta {
	display: grid;
	gap: 7px;
	padding-top: 22px;
	border-top: 1px solid var(--sm-line);
	color: var(--sm-muted);
	font-size: 0.74rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0;
	border-bottom: 1px solid var(--sm-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none;
}

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

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

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	min-height: 48px;
	padding: 13px 0;
	font-size: 0.78rem;
}

.woocommerce div.product .woocommerce-tabs .panel {
	max-width: 820px;
	padding-block: 34px;
	color: var(--sm-muted);
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce div.product .related > h2,
.woocommerce div.product .upsells > h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

.woocommerce div.product .related,
.woocommerce div.product .upsells {
	clear: both;
	padding-top: 66px;
}

/* Koszyk, mini-koszyk i checkout */
.sm-drawer-layer {
	position: fixed;
	z-index: 200;
	inset: 0;
	display: flex;
	justify-content: flex-end;
}

.sm-drawer-backdrop {
	position: absolute;
	padding: 0;
	background: rgba(35, 48, 66, 0.5);
	border: 0;
	inset: 0;
	backdrop-filter: blur(3px);
}

.sm-cart-drawer {
	position: relative;
	z-index: 1;
	width: min(94vw, 490px);
	height: 100dvh;
	overflow-y: auto;
	padding: clamp(24px, 4vw, 40px);
	background: var(--sm-white);
	box-shadow: -20px 0 60px rgba(46, 62, 84, 0.18);
}

.sm-cart-drawer__heading {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--sm-line);
}

.sm-cart-drawer__heading h2 {
	margin: 0;
	font-size: 2rem;
}

.sm-cart-drawer__heading .sm-eyebrow {
	margin-bottom: 7px;
}

.sm-shipping-progress {
	padding-block: 20px;
}

.sm-shipping-progress p {
	margin-bottom: 9px;
	color: var(--sm-muted);
	font-size: 0.73rem;
}

.sm-shipping-progress__track {
	height: 7px;
	overflow: hidden;
	background: var(--sm-ivory-deep);
	border-radius: 99px;
}

.sm-shipping-progress__track span {
	display: block;
	height: 100%;
	background: var(--sm-sand-deep);
	border-radius: inherit;
}

.woocommerce-mini-cart {
	padding: 0;
	margin: 0;
	list-style: none;
	border-top: 1px solid var(--sm-line);
}

.woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	min-height: 108px;
	align-items: center;
	gap: 13px;
	padding: 16px 34px 16px 0 !important;
	border-bottom: 1px solid var(--sm-line);
	grid-template-columns: 76px 1fr;
}

.woocommerce-mini-cart-item > a:not(.remove) {
	display: grid;
	align-items: center;
	gap: 12px;
	grid-column: 1 / -1;
	grid-template-columns: 76px 1fr;
	font-family: var(--sm-serif);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.woocommerce-mini-cart-item img {
	float: none !important;
	width: 76px !important;
	height: 76px;
	margin: 0 !important;
	object-fit: cover;
	background: var(--sm-ivory);
}

.woocommerce-mini-cart-item .remove {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-flex !important;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	color: var(--sm-navy) !important;
	background: transparent !important;
	transform: translateY(-50%);
}

.woocommerce-mini-cart-item .quantity {
	grid-column: 2;
	color: var(--sm-muted);
	font-size: 0.72rem;
}

.woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid var(--sm-line);
}

.woocommerce-mini-cart__buttons {
	display: grid;
	gap: 9px;
}

.woocommerce-mini-cart__buttons .button {
	width: 100%;
}

.woocommerce-mini-cart__empty-message {
	padding: 64px 20px;
	color: var(--sm-muted);
	text-align: center;
}

.woocommerce-cart .sm-shop-main,
.woocommerce-checkout .sm-shop-main {
	padding-block: clamp(45px, 7vw, 90px);
}

.woocommerce-cart table.cart {
	border: 0;
	border-collapse: collapse;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
	padding: 20px 12px;
	border-color: var(--sm-line);
}

.woocommerce-cart table.cart img {
	width: 96px;
	background: var(--sm-ivory);
}

.woocommerce-cart table.cart .product-name a {
	font-family: var(--sm-serif);
	font-size: 1.08rem;
	font-weight: 600;
	text-decoration: none;
}

.woocommerce-cart .cart-collaterals {
	display: flex;
	justify-content: flex-end;
	padding-top: 36px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	width: min(100%, 470px);
	padding: 28px;
	background: var(--sm-ivory);
}

.woocommerce-cart .cart-collaterals h2 {
	font-size: 2rem;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	margin: 0;
}

.wc-block-cart,
.wc-block-checkout {
	padding-block: clamp(30px, 5vw, 70px);
}

.wc-block-cart__main,
.wc-block-checkout__main {
	padding-right: clamp(20px, 4vw, 60px) !important;
}

.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
	padding: 24px !important;
	background: var(--sm-ivory);
}

.wc-block-components-product-name {
	font-family: var(--sm-serif);
	font-weight: 600;
}

.wc-block-components-totals-wrapper {
	border-color: var(--sm-line) !important;
}

.woocommerce-checkout .col2-set {
	display: grid;
	gap: 30px;
	width: min(100%, 760px);
	grid-template-columns: 1fr 1fr;
}

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

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
	min-height: 48px;
	padding: 10px 12px;
	background: var(--sm-white);
	border: 1px solid var(--sm-line);
	border-radius: 0;
}

.woocommerce form .form-row label {
	font-size: 0.76rem;
	font-weight: 700;
}

.woocommerce-checkout-review-order {
	padding: 24px;
	background: var(--sm-ivory);
}

.woocommerce-checkout #payment {
	background: var(--sm-ivory);
}

.woocommerce-checkout #payment div.payment_box {
	background: var(--sm-white);
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--sm-white);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	padding: 18px 20px 18px 52px;
	background: var(--sm-ivory);
	border-top: 3px solid var(--sm-navy);
}

.woocommerce-message {
	border-top-color: var(--sm-success);
}

.woocommerce-error {
	border-top-color: var(--sm-error);
}

/* Strony i artykuły */
.sm-content-layout {
	padding-block: clamp(60px, 8vw, 110px);
}

.sm-page-heading {
	max-width: 960px;
	padding-bottom: clamp(44px, 6vw, 78px);
}

.sm-page-heading h1 {
	margin-bottom: 20px;
}

.sm-page-heading__description,
.sm-article__meta {
	color: var(--sm-muted);
}

.sm-entry-content {
	max-width: 820px;
	font-size: 1.03rem;
}

.sm-entry-content > * + * {
	margin-top: 1.5em;
}

.sm-entry-content h2,
.sm-entry-content h3 {
	margin-top: 1.6em;
}

.sm-entry-content h2 {
	font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.sm-entry-content h3 {
	font-family: var(--sm-serif);
	font-size: 1.5rem;
	font-weight: 500;
}

.sm-entry-content a {
	text-decoration-color: var(--sm-sand-deep);
}

.sm-entry-content blockquote {
	padding: 24px 30px;
	margin: 36px 0;
	background: var(--sm-ivory);
	border-left: 4px solid var(--sm-sand);
	font-family: var(--sm-serif);
	font-size: 1.25rem;
}

.sm-article {
	margin-inline: auto;
}

.sm-article__hero {
	max-width: 1040px;
	margin: 0 0 50px;
}

.sm-article__hero img {
	width: 100%;
	max-height: 680px;
	object-fit: cover;
}

.sm-post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	max-width: 820px;
	padding-top: 50px;
	margin-top: 50px;
	border-top: 1px solid var(--sm-line);
}

.sm-post-navigation a {
	font-size: 0.78rem;
	font-weight: 750;
}

.sm-search-results {
	display: grid;
	gap: 0;
}

.sm-search-result {
	padding-block: 28px;
	border-bottom: 1px solid var(--sm-line);
}

.sm-search-result h2 {
	margin-bottom: 10px;
	font-size: 1.8rem;
}

.sm-search-result h2 a {
	text-decoration: none;
}

.sm-search-result > p:last-child {
	max-width: 720px;
	margin: 0;
	color: var(--sm-muted);
}

.sm-empty-page {
	display: flex;
	min-height: 62vh;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding-block: clamp(80px, 12vw, 160px);
}

.sm-empty-page h1 {
	max-width: 900px;
	margin-bottom: 25px;
}

.sm-empty-page > p:not(.sm-eyebrow) {
	max-width: 600px;
	margin-bottom: 30px;
	color: var(--sm-muted);
}

/* O nas */
.sm-about-hero {
	position: relative;
	padding-block: clamp(80px, 11vw, 150px);
	overflow: hidden;
	background: var(--sm-ivory);
}

.sm-about-hero::after {
	position: absolute;
	right: -12vw;
	bottom: -22vw;
	width: 52vw;
	height: 52vw;
	border: 1px solid rgba(46, 62, 84, 0.1);
	border-radius: 50%;
	content: "";
}

.sm-about-hero .sm-container {
	position: relative;
	z-index: 1;
}

.sm-about-hero h1 {
	max-width: 960px;
	margin-bottom: 28px;
}

.sm-about-hero > .sm-container > p:last-child {
	max-width: 620px;
	margin: 0;
	color: var(--sm-muted);
	font-family: var(--sm-serif);
	font-size: clamp(1.2rem, 2.1vw, 1.7rem);
}

.sm-about-intro {
	display: grid;
	gap: clamp(36px, 8vw, 110px);
	grid-template-columns: 1fr 1fr;
}

.sm-about-intro p {
	font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.sm-about-intro > div:first-child p:first-child {
	font-family: var(--sm-serif);
	font-size: clamp(1.5rem, 2.6vw, 2.25rem);
	line-height: 1.35;
}

.sm-about-intro > div:last-child {
	padding-top: 10px;
	color: var(--sm-muted);
}

.sm-about-choice {
	background: var(--sm-sand);
}

.sm-about-choice__inner {
	display: grid;
	gap: clamp(40px, 8vw, 110px);
	grid-template-columns: 0.9fr 1.1fr;
}

.sm-about-choice .sm-eyebrow {
	color: var(--sm-navy);
}

.sm-about-choice h2 {
	margin: 0;
}

.sm-about-choice__inner > div:last-child {
	color: rgba(46, 62, 84, 0.78);
}

.sm-about-standard {
	display: grid;
	align-items: start;
	gap: clamp(50px, 8vw, 100px);
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.sm-about-standard header {
	position: sticky;
	top: 160px;
}

.sm-about-standard ol {
	padding: 0;
	margin: 0;
	list-style: none;
	border-top: 1px solid var(--sm-line);
}

.sm-about-standard li {
	display: grid;
	gap: 18px;
	padding: 24px 0;
	border-bottom: 1px solid var(--sm-line);
	grid-template-columns: 44px 1fr;
}

.sm-about-standard li span {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	background: var(--sm-ivory);
	border-radius: 50%;
	font-family: var(--sm-serif);
	font-size: 0.78rem;
}

.sm-about-standard li p {
	margin: 4px 0 0;
}

.sm-about-standard__note {
	padding: 28px;
	margin-top: 26px;
	background: var(--sm-ivory);
	border-left: 4px solid var(--sm-sand);
}

.sm-about-standard__note p {
	margin-bottom: 10px;
}

.sm-about-promise {
	padding-block: clamp(78px, 10vw, 135px);
	color: var(--sm-white);
	background: var(--sm-navy);
}

.sm-about-promise .sm-eyebrow {
	color: var(--sm-sand);
}

.sm-about-promise h2 {
	max-width: 1040px;
	margin-bottom: 48px;
	color: var(--sm-white);
}

.sm-about-promise .sm-container > div {
	display: grid;
	gap: 24px;
	color: rgba(255, 253, 251, 0.72);
	grid-template-columns: repeat(3, 1fr);
}

.sm-about-promise p {
	margin: 0;
}

.sm-about-closing {
	max-width: 860px;
	text-align: center;
}

.sm-about-closing h2 {
	margin-bottom: 32px;
}

/* Stopka */
.sm-site-footer {
	color: var(--sm-ivory);
	background: #243247;
}

.sm-footer-newsletter {
	padding-block: 52px;
	color: var(--sm-navy);
	background: var(--sm-sand);
}

.sm-footer-newsletter h2 {
	color: var(--sm-navy);
}

.sm-footer-main {
	display: grid;
	gap: 70px;
	padding-block: 72px;
	grid-template-columns: 0.8fr 1.35fr;
}

.sm-footer-brand img {
	width: 140px;
	height: 140px;
	object-fit: contain;
	background: var(--sm-white);
	border-radius: 50%;
}

.sm-footer-brand > p {
	max-width: 360px;
	margin: 22px 0 0;
	color: rgba(246, 242, 239, 0.65);
	font-size: 0.8rem;
}

.sm-footer-nav {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sm-footer-nav h2 {
	margin-bottom: 15px;
	color: var(--sm-sand);
	font-family: var(--sm-sans);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sm-footer-menu a {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	color: rgba(246, 242, 239, 0.68);
	font-size: 0.75rem;
	text-decoration: none;
}

.sm-footer-menu a:hover {
	color: var(--sm-white);
}

.sm-footer-bottom {
	display: flex;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgba(246, 242, 239, 0.12);
}

.sm-footer-bottom p,
.sm-footer-bottom a {
	margin: 0;
	color: rgba(246, 242, 239, 0.82);
	font-size: 0.66rem;
}

/* Desktop pośredni */
@media (min-width: 1101px) and (max-width: 1280px) {
	.sm-header {
		gap: 14px;
	}

	.sm-logo img,
	.sm-logo .custom-logo {
		width: 96px;
		height: 96px;
	}

	.sm-primary-nav .sm-menu {
		gap: 10px;
	}

	.sm-primary-nav .sm-menu a {
		font-size: 0.68rem;
	}

	.sm-icon-button {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}
}

@media (max-width: 1100px) {
	.sm-header {
		min-height: 108px;
		grid-template-columns: 44px 1fr auto;
	}

	.sm-menu-toggle {
		display: inline-flex;
	}

	.sm-logo {
		justify-self: start;
	}

	.sm-logo img,
	.sm-logo .custom-logo {
		width: 90px;
		height: 90px;
	}

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

	.sm-hero__inner {
		gap: 50px;
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
	}

	.sm-trust-strip__grid {
		grid-template-columns: 1fr 1fr;
	}

	.sm-trust-strip article:nth-child(2) {
		border-right: 0;
	}

	.sm-trust-strip article:first-child {
		padding-left: 22px;
	}

	.sm-trust-strip article:last-child {
		padding-right: 22px;
	}

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

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

	.sm-shop-filters {
		position: fixed;
		z-index: 180;
		top: 0;
		left: 0;
		width: min(90vw, 420px);
		height: 100dvh;
		overflow-y: auto;
		visibility: hidden;
		box-shadow: 20px 0 50px rgba(46, 62, 84, 0.18);
		opacity: 0;
		transform: translateX(-100%);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
	}

	.sm-shop-filters.is-open {
		visibility: visible;
		opacity: 1;
		transform: none;
	}

	.sm-filter-close,
	.sm-mobile-toolbar {
		display: inline-flex;
	}

	.sm-mobile-toolbar {
		margin-bottom: 20px;
	}

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

	.sm-selection {
		gap: 50px;
		grid-template-columns: 1fr 1fr;
	}

	.sm-about-standard {
		grid-template-columns: 1fr;
	}

	.sm-about-standard header {
		position: static;
	}

	.sm-footer-main {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.sm-announcement p:nth-child(3) {
		display: none;
	}

	.sm-hero__inner {
		min-height: auto;
		grid-template-columns: 1fr;
	}

	.sm-hero__copy {
		max-width: 760px;
	}

	.sm-hero__visual {
		width: min(100%, 540px);
		min-height: 500px;
		margin-inline: auto;
	}

	.sm-section-heading,
	.sm-section-heading--action {
		align-items: start;
		grid-template-columns: 1fr;
	}

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

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

	.sm-gift-callout__inner,
	.sm-selection,
	.sm-about-intro,
	.sm-about-choice__inner {
		grid-template-columns: 1fr;
	}

	.sm-gift-callout__visual {
		margin-inline: auto;
	}

	.sm-selection__copy {
		position: static;
	}

	.sm-account-banner__inner {
		grid-template-columns: 1fr;
	}

	.sm-post-grid {
		grid-template-columns: 1fr 1fr;
	}

	.sm-about-promise .sm-container > div {
		grid-template-columns: 1fr;
	}

	.sm-footer-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.woocommerce div.product div.images {
		margin-bottom: 35px;
	}

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

@media (max-width: 560px) {
	html {
		scroll-padding-top: 100px;
	}

	.sm-container {
		width: min(100% - 28px, 520px);
	}

	.sm-section {
		padding-block: 68px;
	}

	.sm-announcement__inner {
		min-height: 31px;
		gap: 24px;
	}

	.sm-announcement p {
		font-size: 0.62rem;
	}

	.sm-announcement p + p::before {
		left: -13px;
	}

	.sm-header {
		min-height: 92px;
		gap: 6px;
	}

	.sm-logo img,
	.sm-logo .custom-logo {
		width: 76px;
		height: 76px;
	}

	.sm-header-actions {
		gap: 0;
	}

	.sm-header-actions .sm-account-link,
	.sm-header-actions .sm-wishlist-link {
		display: none;
	}

	.sm-product-search > div {
		grid-template-columns: 1fr auto;
	}

	.sm-product-search .sm-button {
		grid-row: 2;
		grid-column: 1;
	}

	.sm-product-search .sm-icon-button {
		grid-row: 1;
		grid-column: 2;
	}

	.sm-hero__inner {
		padding-block: 56px 68px;
	}

	.sm-hero h1 {
		font-size: clamp(3.1rem, 15vw, 4.6rem);
	}

	.sm-hero__lead {
		font-size: 1rem;
	}

	.sm-hero .sm-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.sm-hero .sm-text-link {
		align-self: center;
	}

	.sm-hero__proof {
		display: grid;
		gap: 8px;
	}

	.sm-hero__visual {
		min-height: 390px;
	}

	.sm-hero__image-wrap {
		width: 90%;
	}

	.sm-hero__seal {
		width: 88px;
		height: 88px;
		border-width: 6px;
		font-size: 1.5rem;
	}

	.sm-hero__visual figcaption {
		right: 0;
		bottom: 2%;
	}

	.sm-trust-strip__grid {
		grid-template-columns: 1fr;
	}

	.sm-trust-strip article,
	.sm-trust-strip article:nth-child(2) {
		min-height: 112px;
		padding-inline: 0;
		border-right: 0;
		border-bottom: 1px solid var(--sm-line);
	}

	.sm-trust-strip article:first-child,
	.sm-trust-strip article:last-child {
		padding-inline: 0;
	}

	.sm-trust-strip article:last-child {
		border-bottom: 0;
	}

	.sm-section-heading {
		gap: 13px;
		margin-bottom: 34px;
	}

	.sm-section-heading h2 {
		font-size: 2.45rem;
	}

	.sm-age-grid {
		grid-template-columns: 1fr;
	}

	.sm-age-card {
		min-height: 190px;
	}

	.sm-play-grid {
		grid-template-columns: 1fr;
	}

	.sm-play-card {
		min-height: 260px;
		padding: 26px;
	}

	.woocommerce ul.products,
	ul.products.sm-product-grid,
	.sm-product-listing .products {
		gap: 24px 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sm-product-badge {
		top: 7px;
		left: 7px;
		max-width: calc(100% - 50px);
		padding: 5px 7px;
		font-size: 0.51rem;
	}

	.sm-favorite-button {
		top: 5px;
		right: 5px;
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.sm-product-card .woocommerce-loop-product__title {
		font-size: 0.98rem;
	}

	.sm-product-card__meta span + span {
		display: none;
	}

	.sm-product-card__bottom {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.sm-card-button,
	.woocommerce ul.products li.product .button.sm-card-button {
		width: 100%;
		padding-inline: 6px;
		font-size: 0.6rem;
	}

	.sm-gift-callout {
		padding-inline: 0;
	}

	.sm-gift-callout__visual {
		padding: 20px;
	}

	.sm-selection__list li {
		gap: 12px;
		grid-template-columns: 38px 1fr;
	}

	.sm-account-banner__inner .sm-button {
		width: 100%;
	}

	.sm-post-grid {
		gap: 48px;
		grid-template-columns: 1fr;
	}

	.sm-shop-hero {
		padding-block: 48px 58px;
	}

	.sm-shop-hero h1,
	.sm-page-heading h1 {
		font-size: clamp(3rem, 14vw, 4.2rem);
	}

	.woocommerce div.product .product_title {
		font-size: 2.65rem;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs {
		display: grid;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li {
		margin-right: 0;
	}

	.woocommerce-cart table.cart .product-thumbnail {
		display: block;
	}

	.woocommerce-cart table.cart td {
		padding: 12px 7px;
	}

	.woocommerce-cart table.cart img {
		width: 64px;
	}

	.woocommerce-cart .cart-collaterals .cart_totals {
		padding: 22px 18px;
	}

	.sm-footer-main {
		padding-block: 58px;
	}

	.sm-footer-nav {
		grid-template-columns: 1fr 1fr;
	}

	.sm-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 20px;
	}
}

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