:root {
	--sy-bg: #e9e1d3;
	--sy-bg-strong: #ddd4c5;
	--sy-primary: #4a4737;
	--sy-primary-dark: #302e24;
	--sy-primary-soft: #e4ded2;
	--sy-ink: #26251f;
	--sy-muted: #706d62;
	--sy-line: #ddd7cb;
	--sy-surface: #ffffff;
	--sy-success: #2e7561;
	--sy-danger: #a6424d;
	--sy-radius-sm: 12px;
	--sy-radius: 20px;
	--sy-radius-lg: 32px;
	--sy-shadow-sm: 0 10px 30px rgba(48, 46, 36, 0.06);
	--sy-shadow: 0 22px 55px rgba(48, 46, 36, 0.10);
	--sy-content-width: 1280px;
	--sy-font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--sy-display: "Saira", var(--sy-font);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--sy-ink);
	font-family: var(--sy-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.sy-filter-open {
	overflow: hidden;
}

a {
	color: inherit;
}

button,
input,
select {
	font: inherit;
}

/* Shared action geometry: primary/secondary colors keep their own fills; only the shape is shared. */
body .elementor-button,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .sy-add-button,
body .sy-add-button.button {
	min-height: 52px !important;
	border-radius: 12px !important;
}

img {
	max-width: 100%;
	height: auto;
}

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

.sy-skip-link {
	position: fixed;
	z-index: 999999;
	top: 12px;
	left: 12px;
	padding: 10px 14px;
	border-radius: 10px;
	background: var(--sy-primary-dark);
	color: #fff;
	transform: translateY(-160%);
}

.sy-skip-link:focus {
	transform: translateY(0);
}

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

.sy-announcement {
	background: var(--sy-primary-dark);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.sy-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
	gap: 24px;
}

.sy-announcement a {
	color: #fff;
	text-decoration: none;
}

.sy-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid rgba(74, 71, 55, 0.10);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

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

.sy-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 78px;
	gap: 44px;
}

.sy-wordmark {
	color: var(--sy-primary);
	font-family: var(--sy-display);
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.035em;
	text-decoration: none;
}

.sy-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2.4vw, 38px);
}

.sy-nav__item {
	position: relative;
}

.sy-nav__top {
	display: inline-flex;
	align-items: center;
	color: var(--sy-ink);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	gap: 7px;
}

.sy-nav__top > svg {
	width: 9px;
	height: 6px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.sy-nav__top::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--sy-primary);
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.sy-nav__item:hover .sy-nav__top::after,
.sy-nav__item:focus-within .sy-nav__top::after {
	transform: scaleX(1);
}

.sy-nav__item:hover .sy-nav__top > svg,
.sy-nav__item:focus-within .sy-nav__top > svg {
	transform: rotate(180deg);
}

.sy-nav__dropdown {
	position: absolute;
	z-index: 20;
	top: calc(100% + 20px);
	left: 50%;
	display: grid;
	width: 280px;
	padding: 12px;
	border: 1px solid var(--sy-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 20px 46px rgba(48, 46, 36, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	pointer-events: none;
}

.sy-nav__dropdown::before {
	content: "";
	position: absolute;
	top: -21px;
	right: 0;
	left: 0;
	height: 22px;
}

.sy-nav__item--shop .sy-nav__dropdown {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 560px;
}

.sy-nav__item:hover .sy-nav__dropdown,
.sy-nav__item:focus-within .sy-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.sy-nav__dropdown a {
	padding: 11px 12px;
	border-radius: 10px;
	color: var(--sy-ink);
	font-size: 13px;
	font-weight: 550;
	line-height: 1.3;
	text-decoration: none;
}

.sy-nav__dropdown a:hover,
.sy-nav__dropdown a:focus-visible {
	background: var(--sy-bg);
	color: var(--sy-primary);
}

.sy-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 3px;
}

.sy-icon-button,
.sy-header .synameda-cart-trigger {
	display: grid !important;
	place-items: center !important;
	width: 42px !important;
	height: 42px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 13px !important;
	background: transparent !important;
	color: var(--sy-ink) !important;
	box-shadow: none !important;
	cursor: pointer;
	text-decoration: none;
}

/* Header icon buttons stay flat in every pointer state. design-system.css
   applies its global button fill to any <button>, so these must win. */
.sy-icon-button:hover,
.sy-icon-button:focus,
.sy-icon-button:active,
.sy-header .synameda-cart-trigger:hover,
.sy-header .synameda-cart-trigger:focus,
.sy-header .synameda-cart-trigger:active {
	background: transparent !important;
	color: var(--sy-ink) !important;
	outline: none !important;
	box-shadow: none !important;
}

/* Keyboard focus stays visible, pointer focus does not. */
.sy-icon-button:focus-visible,
.sy-header .synameda-cart-trigger:focus-visible {
	outline: 2px solid var(--sy-primary) !important;
	outline-offset: 2px !important;
}

.sy-icon-button svg,
.sy-header .synameda-cart-trigger svg {
	width: 24px !important;
	height: 24px !important;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sy-menu-toggle {
	display: none !important;
}

@keyframes syPanelIn {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

.sy-footer__shop-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: 10px;
	background: var(--sy-primary);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.sy-mobile-menu {
	display: none;
}

.sy-mobile-menu[hidden],
.sy-filter-drawer[hidden] {
	display: none !important;
}

.sy-shop-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 93% 0%, rgba(74, 71, 55, 0.13), transparent 27%),
		linear-gradient(135deg, #f5f8f8 0%, var(--sy-bg) 100%);
}

.sy-shop-hero::after {
	content: "";
	position: absolute;
	top: -235px;
	right: -165px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(74, 71, 55, 0.10);
	border-radius: 50%;
	box-shadow: 0 0 0 62px rgba(255, 255, 255, 0.15), 0 0 0 124px rgba(255, 255, 255, 0.09);
	pointer-events: none;
}

.sy-shop-hero__inner {
	position: relative;
	z-index: 1;
	padding-top: 48px;
	padding-bottom: 38px;
}

.sy-eyebrow {
	margin: 0 0 14px;
	color: var(--sy-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.sy-shop-hero h1 {
	max-width: 800px;
	margin: 0;
	color: var(--sy-primary-dark);
	font-family: var(--sy-display);
	font-size: clamp(40px, 4.6vw, 62px);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -0.045em;
}

.sy-shop-hero__copy {
	max-width: 710px;
	margin: 15px 0 0;
	color: var(--sy-muted);
	font-size: 15px;
	line-height: 1.65;
}

.sy-need-selector {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 30px;
	gap: 10px;
}

.sy-need-selector__item {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 78px;
	padding: 12px 15px;
	border: 1px solid rgba(74, 71, 55, 0.12);
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--sy-primary-dark);
	box-shadow: 0 8px 24px rgba(48, 46, 36, 0.05);
	cursor: pointer;
	gap: 12px;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.sy-need-selector__item:hover,
.sy-need-selector__item:focus-visible {
	border-color: rgba(74, 71, 55, 0.32);
	background: #fff;
	box-shadow: 0 12px 28px rgba(48, 46, 36, 0.10);
	transform: translateY(-3px);
}

.sy-need-selector__item.is-active {
	border-color: var(--sy-primary);
	background: var(--sy-primary-dark);
	color: #fff;
	box-shadow: 0 14px 30px rgba(48, 46, 36, 0.22);
}

.sy-need-selector__item > span {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border: 1px solid rgba(74, 71, 55, 0.13);
	border-radius: 13px;
	background: var(--sy-bg);
	color: var(--sy-primary);
}

.sy-need-selector__item.is-active > span {
	border-color: rgba(255, 255, 255, 0.23);
	background: rgba(255, 255, 255, 0.10);
	color: #e9e1d3;
}

.sy-need-selector__item svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sy-need-selector__item strong {
	min-width: 0;
	font-size: 12px;
	font-weight: 750;
	line-height: 1.3;
	text-align: left;
}

.sy-shop-hero__test {
	display: flex;
	align-items: center;
	margin-top: 20px;
	color: var(--sy-muted);
	font-size: 11px;
	gap: 8px;
}

.sy-shop-hero__test a {
	color: var(--sy-primary-dark);
	font-weight: 800;
	text-decoration: none;
	transition: color 160ms ease;
}

.sy-shop-hero__test a:hover,
.sy-shop-hero__test a:focus-visible {
	color: var(--sy-primary);
}

.sy-shop-section {
	padding: 64px 0 100px;
}

.sy-shop__layout {
	display: grid;
	grid-template-columns: 248px minmax(0, 1fr);
	align-items: start;
	gap: 46px;
}

.sy-shop {
	--sy-line: #E3E9F3;
}

.sy-shop__sidebar {
	position: sticky;
	top: 110px;
}

.sy-shop__toolbar {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--sy-line);
	margin-bottom: 24px;
	gap: 20px;
}

.sy-shop__toolbar h2 {
	margin: 0;
	font-family: var(--sy-display);
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -0.025em;
}

.sy-shop__toolbar span,
.sy-shop__mobile-tools > span {
	color: var(--sy-muted);
	font-size: 13px;
	font-weight: 600;
}

.sy-shop__mobile-tools {
	display: none;
}

.sy-filter-group {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--sy-line);
	margin-bottom: 24px;
}

.sy-filter-title {
	display: block;
	margin: 0 0 14px;
	color: var(--sy-ink);
	font-family: var(--sy-font);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
}

/* The global type scale loads after this file. Keep only desktop filter
   headings compact; the mobile drawer intentionally retains its larger type. */
.sy-filters[data-context="desktop"] h2.sy-filter-title {
	font-size: 15px !important;
	line-height: 1.25 !important;
}

.sy-select-wrap {
	position: relative;
}

.sy-select-wrap::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid #111;
	border-bottom: 1.5px solid #111;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.sy-select-wrap select {
	width: 100%;
	min-height: 46px;
	padding: 0 40px 0 13px;
	border: 1px solid var(--sy-line);
	border-radius: 12px;
	background: #fff;
	color: var(--sy-ink);
	font-size: 13px;
	font-weight: 600;
	appearance: none;
	outline: none;
}

.sy-select-wrap select:focus {
	border-color: #111 !important;
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.10);
}

.sy-filter-options {
	display: grid;
	gap: 10px;
}

.sy-filter-branch {
	display: grid;
	gap: 10px;
}

.sy-filter-children {
	display: grid;
	gap: 10px;
	padding: 1px 0 4px 29px;
}

.sy-check--child b {
	font-weight: 400;
}

.sy-check {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.sy-check input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.sy-check > span {
	position: relative;
	width: 19px;
	height: 19px;
	flex: none;
	border: 1px solid #a7b6ba;
	border-radius: 6px;
	background: #fff;
	transition: background-color 140ms ease, border-color 140ms ease;
}

.sy-check input:checked + span {
	border-color: #111;
	background: #111;
}

.sy-check input:checked + span::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 6px;
	width: 4px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.sy-check input:focus-visible + span {
	outline: 3px solid rgba(17, 17, 17, 0.18);
	outline-offset: 2px;
}

.sy-check b {
	font-size: 13px;
	font-weight: 550;
}

.sy-price-filter {
	--sy-range-min: 0%;
	--sy-range-max: 100%;
}

.sy-range-wrap {
	position: relative;
	height: 30px;
	margin: 0 8px;
}

.sy-price-track {
	position: absolute;
	z-index: 0;
	top: 50%;
	right: 0;
	left: 0;
	height: 4px;
	border-radius: 999px;
	background: #d6d6d6;
	transform: translateY(-50%);
}

.sy-price-track span {
	position: absolute;
	top: 0;
	right: calc(100% - var(--sy-range-max));
	bottom: 0;
	left: var(--sy-range-min);
	border-radius: inherit;
	background: #111;
}

.sy-range-wrap input[type="range"] {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	min-height: 0 !important;
	height: 30px;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	margin: 0;
	background: transparent !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none !important;
	pointer-events: none;
}

.sy-range-wrap input[type="range"]::-webkit-slider-runnable-track {
	height: 4px;
	background: transparent;
}

.sy-range-wrap input[type="range"]::-webkit-slider-thumb {
	width: 18px;
	height: 18px;
	margin-top: -7px;
	border: 2px solid #111;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 8px rgba(48, 46, 36, 0.18);
	appearance: none;
	pointer-events: auto;
	cursor: grab;
}

.sy-range-wrap input[type="range"]::-moz-range-track {
	height: 4px;
	background: transparent;
}

.sy-range-wrap input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border: 2px solid #111;
	border-radius: 50%;
	background: #fff;
	pointer-events: auto;
	cursor: grab;
}

.sy-range-wrap input[type="range"]:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.18);
}

.sy-range-wrap input[type="range"]:focus-visible::-moz-range-thumb {
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.18);
}

.sy-price-values {
	display: flex;
	justify-content: space-between;
	margin-top: 9px;
	color: var(--sy-muted);
	font-size: 11px;
}

.sy-price-values strong {
	color: var(--sy-ink);
	font-weight: 700;
}

.sy-shop .sy-filters[data-context] .sy-filter-clear {
	width: auto !important;
	min-height: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #111 !important;
	box-shadow: none !important;
	font-size: 12px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
	cursor: pointer;
}

.sy-shop .sy-filters[data-context] .sy-filter-clear:is(:hover, :focus-visible, :active) {
	border-color: transparent !important;
	background: transparent !important;
	color: #111 !important;
}

.sy-filter-chips {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.sy-filter-chips[hidden] {
	display: none;
}

.sy-shop .sy-filter-chips[data-sy-chips] button {
	display: inline-flex;
	align-items: center;
	min-height: 34px !important;
	padding: 0 11px !important;
	border: .5px solid #1D1D1F !important;
	border-radius: 4px !important;
	background: #E8EEFC !important;
	color: #1D1D1F !important;
	box-shadow: none !important;
	font-size: 11px;
	font-weight: 400;
	cursor: pointer;
	gap: 7px;
}

.sy-shop .sy-filter-chips[data-sy-chips] button:is(:hover, :focus-visible, :active) {
	border-color: #1D1D1F !important;
	background: #E8EEFC !important;
	color: #1D1D1F !important;
}

.sy-shop .sy-filter-chips[data-sy-chips] button span {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}

.sy-shop .sy-filter-chips[data-sy-chips] .sy-filter-chips__clear {
	border-color: transparent !important;
	background: transparent !important;
	color: #111 !important;
}

.sy-shop .sy-filter-chips[data-sy-chips] .sy-filter-chips__clear:is(:hover, :focus-visible, :active) {
	border-color: transparent !important;
	background: transparent !important;
	color: #111 !important;
}

.sy-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sy-product-card.product {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid rgba(74, 71, 55, 0.09);
	border-radius: var(--sy-radius);
	background: var(--sy-surface);
	box-shadow: var(--sy-shadow-sm);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sy-product-card.product:hover {
	border-color: rgba(74, 71, 55, 0.18);
	box-shadow: var(--sy-shadow);
	transform: translateY(-4px);
}

.sy-product-card__image {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1 / 0.92;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 44%, #fff 0 32%, rgba(255, 255, 255, 0) 70%),
		linear-gradient(160deg, #f3f7f8, var(--sy-bg));
}

.sy-product-card__image::after {
	content: "";
	position: absolute;
	right: 18%;
	bottom: 10%;
	left: 18%;
	height: 12px;
	border-radius: 50%;
	background: rgba(48, 46, 36, 0.11);
	filter: blur(8px);
}

.sy-product-card__image img {
	position: relative;
	z-index: 1;
	display: block;
	width: 86%;
	height: 86%;
	object-fit: contain;
	transition: transform 260ms ease;
}

.sy-product-card:hover .sy-product-card__image img {
	transform: scale(1.035);
}

.sy-product-card__body {
	display: flex;
	min-height: 238px;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.sy-product-card__category {
	display: inline-flex;
	align-self: flex-start;
	min-height: 25px;
	padding: 0 9px;
	border-radius: 999px;
	background: var(--sy-bg);
	color: var(--sy-primary-dark);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.035em;
	line-height: 25px;
	text-transform: uppercase;
}

.sy-product-card h2 {
	margin: 14px 0 8px;
	font-family: var(--sy-display);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.sy-product-card h2 a {
	color: var(--sy-ink);
	text-decoration: none;
}

.sy-product-card__body > p {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: var(--sy-muted);
	font-size: 12px;
	line-height: 1.5;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.sy-product-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 20px;
	gap: 12px;
}

.sy-product-card__bottom > strong,
.sy-product-card__bottom .price {
	color: var(--sy-primary-dark);
	font-size: 17px;
	font-weight: 700;
	white-space: nowrap;
}

.sy-add-button,
.sy-add-button.button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 40px !important;
	padding: 0 14px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: var(--sy-primary) !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	gap: 7px;
	transition: background-color 160ms ease, transform 160ms ease !important;
}

.sy-add-button:hover,
.sy-add-button.button:hover {
	background: var(--sy-primary-dark) !important;
	transform: translateY(-1px);
}

.sy-add-button svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sy-add-button.added::after {
	margin-left: 0 !important;
}

.added_to_cart.wc-forward {
	display: none !important;
}

.sy-shop__products {
	position: relative;
}

.sy-shop.is-loading .sy-shop__results {
	opacity: 0.38;
	pointer-events: none;
}

.sy-shop__results {
	transition: opacity 160ms ease;
}

.sy-shop__loader {
	position: absolute;
	z-index: 5;
	top: 120px;
	left: 50%;
	width: 38px;
	height: 38px;
	transform: translateX(-50%);
}

.sy-shop__loader span {
	display: block;
	width: 100%;
	height: 100%;
	border: 3px solid rgba(74, 71, 55, 0.16);
	border-top-color: var(--sy-primary);
	border-radius: 50%;
	animation: sySpin 700ms linear infinite;
}

@keyframes sySpin {
	to { transform: rotate(360deg); }
}

.sy-shop__status:not(:empty) {
	padding: 12px 14px;
	border: 1px solid rgba(166, 66, 77, 0.25);
	border-radius: 12px;
	margin-bottom: 18px;
	background: rgba(166, 66, 77, 0.06);
	color: var(--sy-danger);
	font-size: 13px;
}

.sy-no-results {
	padding: 64px 28px;
	border-radius: var(--sy-radius);
	background: var(--sy-bg);
	text-align: center;
}

.sy-no-results h2 {
	margin: 0 0 6px;
	font-family: var(--sy-display);
}

.sy-no-results p {
	margin: 0 0 20px;
	color: var(--sy-muted);
}

.sy-shop .sy-shop__results .sy-no-results button {
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 10px;
	border-color: #111 !important;
	background: #111 !important;
	color: #fff !important;
	font-weight: 700;
	cursor: pointer;
}

.sy-shop .sy-shop__results .sy-no-results button:is(:hover, :focus-visible, :active) {
	border-color: #111 !important;
	background: #111 !important;
	color: #fff !important;
}

.sy-filter-drawer {
	position: fixed;
	z-index: 2147482000;
	inset: 0;
}

.sy-shop .sy-filter-drawer button.sy-filter-drawer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0 !important;
	background: rgba(18, 18, 18, 0.56) !important;
	opacity: 0;
	transition: opacity 220ms ease;
}

.sy-shop .sy-filter-drawer button.sy-filter-drawer__backdrop:is(:hover, :focus-visible, :active) {
	border: 0 !important;
	background: rgba(18, 18, 18, 0.56) !important;
}

.sy-filter-drawer__panel {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	max-height: min(88vh, 760px);
	flex-direction: column;
	border-radius: 26px 26px 0 0;
	background: #fff;
	box-shadow: 0 -30px 70px rgba(18, 36, 41, 0.24);
	transform: translateY(102%);
	transition: transform 240ms cubic-bezier(0.22, 0.8, 0.28, 1);
}

.sy-filter-drawer.is-open .sy-filter-drawer__backdrop {
	opacity: 1;
}

.sy-filter-drawer.is-open .sy-filter-drawer__panel {
	transform: translateY(0);
}

.sy-filter-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 19px 20px;
	border-bottom: 1px solid var(--sy-line);
}

.sy-filter-drawer__header h2 {
	margin: 0;
	font-family: var(--sy-display);
	font-size: 25px;
	font-weight: 600;
}

.sy-shop .sy-filter-drawer .sy-filter-drawer__header button {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0 !important;
	border-radius: 12px;
	background: #f2f2f2 !important;
	color: #111 !important;
	box-shadow: none !important;
	font-size: 27px;
	line-height: 1;
	cursor: pointer;
}

.sy-shop .sy-filter-drawer .sy-filter-drawer__header button:is(:hover, :focus-visible, :active) {
	border: 0 !important;
	background: #f2f2f2 !important;
	color: #111 !important;
}

.sy-filter-drawer__scroll {
	min-height: 0;
	flex: 1;
	padding: 22px 20px;
	overflow-y: auto;
}

.sy-shop .sy-filter-drawer button.sy-filter-drawer__show {
	min-height: 44px;
	flex: none;
	padding: 0 20px;
	border: 0;
	margin: 0 20px calc(18px + env(safe-area-inset-bottom, 0px));
	border-radius: 10px;
	border: 1px solid #111 !important;
	background: #111 !important;
	color: #fff !important;
	box-shadow: none !important;
	font-weight: 700;
	cursor: pointer;
}

.sy-shop .sy-filter-drawer button.sy-filter-drawer__show:is(:hover, :focus-visible, :active) {
	border-color: #111 !important;
	background: #111 !important;
	color: #fff !important;
}

.sy-shop .sy-shop__mobile-tools button.sy-mobile-filter-button {
	display: inline-flex;
	width: 100% !important;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 17px;
	border: 1px solid #1D1D1F !important;
	border-radius: 6px;
	background: #FFFFFF !important;
	color: #1D1D1F !important;
	box-shadow: none !important;
	font-size: 13px;
	font-weight: 400;
	gap: 9px;
	cursor: pointer;
}

.sy-shop .sy-shop__mobile-tools button.sy-mobile-filter-button:is(:hover, :focus-visible, :active) {
	border-color: #1D1D1F !important;
	background: #FFFFFF !important;
	color: #1D1D1F !important;
}

.sy-mobile-filter-button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
}

.sy-footer {
	padding: 78px 0 22px;
	background: var(--sy-primary-dark);
	color: rgba(255, 255, 255, 0.78);
}

.sy-footer__intro {
	display: flex;
	align-items: end;
	justify-content: space-between;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	gap: 40px;
}

.sy-wordmark--footer {
	color: #fff;
	font-size: 38px;
}

.sy-footer__intro p {
	max-width: 520px;
	margin: 16px 0 0;
	font-size: 15px;
}

.sy-footer__shop-link {
	min-width: 190px;
	background: #fff;
	color: var(--sy-primary-dark);
}

.sy-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1.2fr 1.6fr;
	padding: 48px 0;
	gap: 48px;
}

.sy-footer__grid > div {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 9px;
}

.sy-footer h2 {
	margin: 0 0 7px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.sy-footer__grid a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	text-decoration: none;
}

.sy-footer__grid a:hover {
	color: #fff;
}

.sy-footer__grid p {
	margin: 2px 0 0;
	font-size: 12px;
	line-height: 1.6;
}

.sy-footer__note {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
}

.sy-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 11px;
}

/* Existing cart drawer palette integration. */
.synameda-cart-count {
	background: #0055b7 !important;
	box-shadow: none !important;
}

.synameda-cart-title,
.synameda-cart-summary,
.synameda-cart-item-name,
.synameda-cart-line-price {
	color: var(--sy-primary-dark) !important;
}

.synameda-cart-checkout {
	background: #0055b7 !important;
	min-height: 44px !important;
	border-radius: 10px !important;
}

.synameda-cart-shop {
	background: #0055b7 !important;
	min-height: 40px !important;
	border-radius: 10px !important;
}

/* Basic WooCommerce pages remain usable before their dedicated redesign. */
body.woocommerce-page:not(.archive):not(.woocommerce-cart):not(.woocommerce-checkout) main:not(.sy-shop-page) {
	width: min(1180px, calc(100% - 48px));
	margin: 54px auto 90px;
}

body.woocommerce-cart main#content,
body.woocommerce-checkout main#content,
body.woocommerce-account main#content,
body.woocommerce-cart main#content .page-content,
body.woocommerce-checkout main#content .page-content,
body.woocommerce-account main#content .page-content {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--sy-primary) !important;
	border-radius: 12px;
	background: var(--sy-bg) !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	min-height: 42px;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: var(--sy-primary) !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	box-shadow: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--sy-primary-dark) !important;
}

@media (max-width: 1100px) {
	.sy-header__inner {
		gap: 24px;
	}

	.sy-nav {
		gap: 18px;
	}

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

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

@media (max-width: 900px) {
	.admin-bar .sy-header {
		top: 46px;
	}

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

	.sy-header__inner {
		grid-template-columns: auto 1fr auto;
		min-height: 68px;
	}

	.sy-menu-toggle {
		display: grid !important;
	}

	.sy-nav--desktop,
	.sy-account-link {
		display: none !important;
	}

	.sy-wordmark {
		justify-self: center;
		font-size: 28px;
	}

	.sy-mobile-menu {
		display: block;
		max-height: calc(100vh - 102px);
		padding: 8px 16px 20px;
		border-top: 1px solid var(--sy-line);
		background: #fff;
		overflow-y: auto;
	}

	.sy-mobile-menu.is-open {
		animation: syPanelIn 180ms ease both;
	}

	.sy-mobile-menu__group {
		border-bottom: 1px solid var(--sy-line);
	}

	.sy-mobile-menu__row {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
	}

	.sy-mobile-menu__row > a,
	.sy-mobile-menu__account {
		padding: 16px 8px;
		color: var(--sy-ink);
		font-size: 15px;
		font-weight: 700;
		text-decoration: none;
	}

	.sy-mobile-menu__row > button {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 0;
		border-radius: 12px;
		background: transparent;
		color: var(--sy-primary-dark);
		cursor: pointer;
	}

	.sy-mobile-menu__row > button:hover {
		background: var(--sy-bg);
	}

	.sy-mobile-menu__row > button svg {
		width: 12px;
		height: 8px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.5;
		stroke-linecap: round;
		stroke-linejoin: round;
		transition: transform 160ms ease;
	}

	.sy-mobile-menu__row > button[aria-expanded="true"] svg {
		transform: rotate(180deg);
	}

	.sy-mobile-menu__children {
		display: grid;
		padding: 0 8px 12px;
	}

	.sy-mobile-menu__children[hidden] {
		display: none !important;
	}

	.sy-mobile-menu__children a {
		padding: 10px 13px;
		border-radius: 9px;
		color: var(--sy-muted);
		font-size: 13px;
		font-weight: 600;
		text-decoration: none;
	}

	.sy-mobile-menu__children a:hover,
	.sy-mobile-menu__children a:focus-visible {
		background: var(--sy-bg);
		color: var(--sy-primary);
	}

	.sy-mobile-menu__account {
		display: block;
		margin-top: 8px;
	}

	.sy-shop-hero__inner {
		padding-top: 46px;
		padding-bottom: 38px;
	}

	.sy-need-selector {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.sy-need-selector__item {
		grid-column: span 2;
	}

	.sy-need-selector__item:nth-last-child(-n + 2) {
		grid-column: span 3;
	}

	.sy-shop__layout {
		grid-template-columns: 1fr;
	}

	.sy-shop__sidebar,
	.sy-shop__toolbar {
		display: none;
	}

	.sy-shop__mobile-tools {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 20px;
	}

	.sy-filter-chips {
		margin-top: -4px;
	}
}

@media (max-width: 640px) {
	.sy-announcement__inner {
		justify-content: center;
		min-height: 31px;
		font-size: 10px;
		text-align: center;
	}

	.sy-announcement__inner > span {
		display: none;
	}

	.sy-header__inner {
		width: calc(100% - 20px);
		gap: 4px;
	}

	.sy-header__actions {
		gap: 0;
	}

	.sy-icon-button,
	.sy-header .synameda-cart-trigger {
		width: 38px !important;
		height: 38px !important;
	}

	.sy-shop-hero h1 {
		font-size: clamp(36px, 11vw, 48px);
	}

	.sy-shop-hero__copy {
		font-size: 14px;
	}

	.sy-shop-hero__inner {
		padding-top: 38px;
		padding-bottom: 30px;
	}

	.sy-shop-hero::after {
		top: -210px;
		right: -250px;
	}

	.sy-need-selector {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 24px;
		gap: 8px;
	}

	.sy-need-selector__item {
		grid-column: auto;
		min-height: 67px;
		padding: 10px;
		border-radius: 15px;
		gap: 9px;
	}

	.sy-need-selector__item:last-child {
		grid-column: 1 / -1;
	}

	.sy-need-selector__item:nth-last-child(2) {
		grid-column: auto;
	}

	.sy-need-selector__item > span {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
		border-radius: 12px;
	}

	.sy-need-selector__item svg {
		width: 20px;
		height: 20px;
	}

	.sy-need-selector__item strong {
		font-size: 10px;
	}

	.sy-shop-hero__test {
		align-items: flex-start;
		margin-top: 17px;
		flex-wrap: wrap;
		font-size: 10px;
	}

	.sy-shop-section {
		padding: 32px 0 70px;
	}

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

	.sy-product-card.product {
		border-radius: 15px;
	}

	.sy-product-card.product:hover {
		transform: none;
	}

	.sy-product-card__image {
		aspect-ratio: 1 / 1;
	}

	.sy-product-card__image img {
		width: 92%;
		height: 92%;
	}

	.sy-product-card__body {
		min-height: 208px;
		padding: 13px 11px 12px;
	}

	.sy-product-card__category {
		min-height: 21px;
		padding: 0 7px;
		font-size: 8px;
		line-height: 21px;
	}

	.sy-product-card h2 {
		margin: 10px 0 6px;
		font-size: 15px;
	}

	.sy-product-card__body > p {
		font-size: 10px;
		line-height: 1.45;
	}

	.sy-product-card__bottom {
		align-items: flex-end;
		flex-direction: column;
		padding-top: 14px;
		gap: 9px;
	}

	.sy-product-card__bottom > strong,
	.sy-product-card__bottom .price {
		align-self: flex-start;
		font-size: 14px;
	}

	.sy-add-button,
	.sy-add-button.button {
		width: 100% !important;
		min-height: 38px !important;
		padding: 0 9px !important;
		border-radius: 10px !important;
		font-size: 10px !important;
	}

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

	.sy-footer__intro {
		align-items: flex-start;
		flex-direction: column;
		padding-bottom: 36px;
		gap: 26px;
	}

	.sy-footer__shop-link {
		width: 100%;
	}

	.sy-footer__grid {
		grid-template-columns: 1fr 1fr;
		padding: 36px 0;
		gap: 34px 20px;
	}

	.sy-footer__note {
		grid-column: 1 / -1;
	}
}

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