:root {
	--fm-green-900: #4d2700;
	--fm-green-800: #9c5200;
	--fm-green-700: #ff8800;
	--fm-green-600: #ff8800;
	--fm-green-500: #ffa33b;
	--fm-green-100: #fff0de;
	--fm-green-50: #fff8ef;
	--fm-ink: #20242a;
	--fm-muted: #626a70;
	--fm-line: #efe4d7;
	--fm-card: #ffffff;
	--fm-cream: #fff8d8;
	--fm-warm: #ff8800;
	--fm-red: #ef1f1f;
	--fm-shadow: 0 18px 45px rgba(84, 48, 6, 0.12);
	--fm-shadow-soft: 0 8px 24px rgba(84, 48, 6, 0.09);
	--fm-radius: 8px;
	--fm-container: 1120px;
}

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

body.freshmart-theme {
	margin: 0;
	color: var(--fm-ink);
	background: #ffffff;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	line-height: 1.6;
	overflow-x: hidden;
}

html,
body.freshmart-theme {
	width: 100%;
	max-width: 100%;
}

body.freshmart-theme a {
	color: inherit;
	text-decoration: none;
}

body.freshmart-theme img,
body.freshmart-theme svg {
	display: block;
	max-width: 100%;
}

body.freshmart-theme button,
body.freshmart-theme input,
body.freshmart-theme select,
body.freshmart-theme textarea {
	font: inherit;
}

.fm-container {
	width: 100%;
	max-width: none;
	margin-inline: auto;
	padding-inline: clamp(16px, 4vw, 48px);
}

.fm-page-content,
.fm-elementor-full-width,
.fm-page-content .elementor,
.fm-elementor-full-width .elementor,
.fm-page-content .elementor-section,
.fm-elementor-full-width .elementor-section,
.fm-page-content .elementor-container,
.fm-elementor-full-width .elementor-container,
.fm-page-content .elementor-column,
.fm-elementor-full-width .elementor-column,
.fm-page-content .elementor-widget-wrap,
.fm-elementor-full-width .elementor-widget-wrap,
.fm-page-content .elementor-widget-container,
.fm-elementor-full-width .elementor-widget-container {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.fm-page-content .elementor-section.elementor-section-boxed > .elementor-container,
.fm-elementor-full-width .elementor-section.elementor-section-boxed > .elementor-container,
.fm-page-content .elementor-section.elementor-section-full_width > .elementor-container,
.fm-elementor-full-width .elementor-section.elementor-section-full_width > .elementor-container {
	max-width: 100%;
}

.screen-reader-text {
	position: absolute;
	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: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	color: #ffffff;
	background: var(--fm-green-800);
	clip: auto;
	border-radius: 4px;
}

.fm-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #ffffff;
	border-bottom: 1px solid rgba(255, 136, 0, 0.14);
	box-shadow: 0 8px 28px rgba(84, 48, 6, 0.06);
}

.fm-topbar {
	color: #ffffff;
	background: #ff8800;
	font-size: 12px;
	font-weight: 700;
}

.fm-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 30px;
	gap: 16px;
}

.fm-topbar span,
.fm-topbar a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.fm-topbar svg {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
}

.fm-mainbar {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(16px);
}

.fm-mainbar__inner {
	display: grid;
	grid-template-areas: "brand nav search actions";
	grid-template-columns: 190px minmax(0, 1fr) 310px auto;
	align-items: center;
	min-height: 68px;
	gap: 18px;
}

.fm-brand {
	grid-area: brand;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	width: max-content;
}

.fm-brand__icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: var(--fm-green-600);
	border-radius: 50%;
	background: #fff0de;
	box-shadow: inset 0 -8px 18px rgba(255, 136, 0, 0.1);
}

.fm-brand__icon svg {
	width: 27px;
	height: 27px;
}

.fm-brand__text {
	display: grid;
	gap: 0;
	line-height: 1.05;
	min-width: 0;
}

.fm-brand__name {
	color: var(--fm-green-700);
	font-size: 23px;
	font-weight: 800;
	letter-spacing: 0;
}

.fm-brand__tagline {
	color: #59605c;
	font-size: 12px;
	font-weight: 500;
}

.fm-nav {
	grid-area: nav;
	min-width: 0;
}

.fm-nav__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(12px, 1.5vw, 24px);
	min-height: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	font-weight: 700;
}

.fm-nav__menu li {
	position: relative;
}

.fm-nav__menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	white-space: nowrap;
	transition: color 180ms ease;
}

.fm-nav__menu a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	height: 2px;
	background: var(--fm-green-600);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
}

.fm-nav__menu .current-menu-item > a,
.fm-nav__menu a:hover {
	color: var(--fm-green-700);
}

.fm-nav__menu .current-menu-item > a::after,
.fm-nav__menu a:hover::after {
	transform: scaleX(1);
}

.fm-nav__menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	z-index: 60;
	display: grid;
	min-width: 230px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: #ffffff;
	border: 1px solid #f0dfca;
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(84, 48, 6, 0.12);
	opacity: 0;
	transform: translate(-50%, 8px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.fm-nav__menu .menu-item-has-children:hover > .sub-menu,
.fm-nav__menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.fm-nav__menu .sub-menu a {
	justify-content: flex-start;
	min-height: 36px;
	padding: 0 10px;
	color: #20242a;
	border-radius: 7px;
}

.fm-nav__menu .sub-menu a:hover {
	color: #a35400;
	background: #fff7ed;
}

.fm-nav__menu .sub-menu a::after {
	display: none;
}

.fm-search {
	grid-area: search;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 42px;
	width: 100%;
	height: 40px;
	border: 1px solid #efe4d7;
	border-radius: 999px;
	background: #fffaf4;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
	overflow: hidden;
}

.fm-search input {
	min-width: 0;
	padding: 0 0 0 16px;
	color: var(--fm-ink);
	background: transparent;
	border: 0;
	outline: none;
	font-size: 13px;
}

.fm-search button {
	display: grid;
	place-items: center;
	width: 42px;
	color: #ffffff;
	background: var(--fm-green-700);
	border: 0;
	cursor: pointer;
	transition: transform 180ms ease, filter 180ms ease;
}

.fm-search button:hover {
	filter: brightness(1.06);
}

.fm-search button:active {
	transform: scale(0.96);
}

.fm-search svg {
	width: 18px;
	height: 18px;
}

.fm-actions {
	grid-area: actions;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
	gap: 12px;
	font-size: 12px;
	font-weight: 700;
}

.fm-actions svg {
	width: 23px;
	height: 23px;
}

.fm-account-link,
.fm-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #111915;
	transition: color 180ms ease, transform 180ms ease;
}

.fm-account-link:hover,
.fm-cart-link:hover {
	color: var(--fm-green-700);
	transform: translateY(-1px);
}

.fm-account-link span {
	white-space: nowrap;
}

.fm-cart-link__icon {
	position: relative;
	display: inline-grid;
	place-items: center;
}

.fm-cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	color: #ffffff;
	background: var(--fm-green-600);
	border-radius: 999px;
	font-size: 10px;
	line-height: 1;
	box-shadow: 0 6px 14px rgba(255, 136, 0, 0.28);
}

.fm-cart-link strong {
	display: block;
	line-height: 1.1;
}

.fm-cart-link.is-bumped .fm-cart-link__icon {
	animation: fmCartBump 420ms ease;
}

.fm-cart-total {
	display: block;
	color: var(--fm-green-700);
	font-size: 11px;
	line-height: 1.2;
}

.fm-menu-toggle {
	grid-area: toggle;
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: #fff8ef;
	border: 1px solid #efe4d7;
	border-radius: 999px;
	cursor: pointer;
}

.fm-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 2px 0;
	background: var(--fm-green-800);
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.fm-site-header.is-menu-open .fm-menu-toggle span:nth-child(2) {
	transform: translateY(6px) rotate(45deg);
}

.fm-site-header.is-menu-open .fm-menu-toggle span:nth-child(3) {
	opacity: 0;
}

.fm-site-header.is-menu-open .fm-menu-toggle span:nth-child(4) {
	transform: translateY(-6px) rotate(-45deg);
}

.fm-hero {
	position: relative;
	min-height: 392px;
	overflow: hidden;
	background:
		radial-gradient(circle at 75% 35%, rgba(255, 136, 0, 0.16), transparent 25%),
		linear-gradient(90deg, #ffffff 0%, #fff8ef 56%, #fff2df 100%);
}

.fm-hero-3d-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.48;
}

.fm-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	align-items: center;
	min-height: 392px;
	gap: 24px;
}

.fm-hero__copy {
	min-width: 0;
	max-width: 510px;
	padding: 26px 0 34px;
}

.fm-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 15px;
	color: var(--fm-green-700);
	background: #fff0de;
	border: 1px solid rgba(255, 136, 0, 0.18);
	border-radius: 4px;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 8px 18px rgba(255, 136, 0, 0.11);
}

.fm-hero h1 {
	margin: 20px 0 14px;
	color: var(--fm-ink);
	font-size: clamp(40px, 4.8vw, 56px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: 0;
}

.fm-hero h1 span {
	color: var(--fm-green-700);
}

.fm-hero p {
	max-width: 500px;
	margin: 0 0 22px;
	color: #555c61;
	font-size: 16px;
	line-height: 1.75;
}

.fm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	max-width: 100%;
	min-height: 43px;
	padding: 0 24px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.fm-button--primary {
	color: #ffffff;
	background: linear-gradient(180deg, #ff9f2e, #ff8800);
	box-shadow: 0 14px 28px rgba(255, 136, 0, 0.28);
}

.fm-button--ghost {
	color: var(--fm-green-800);
	background: #ffffff;
	border: 1px solid var(--fm-line);
	box-shadow: var(--fm-shadow-soft);
}

.fm-button:hover {
	transform: translateY(-2px);
	filter: brightness(1.03);
}

.fm-button svg {
	width: 18px;
	height: 18px;
}

.fm-hero__visual {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: end;
	justify-content: flex-end;
	perspective: 1000px;
	transform-style: preserve-3d;
}

.fm-hero__visual img {
	width: min(100%, 600px);
	transform: translateZ(24px) rotateY(-3deg);
	filter: drop-shadow(0 28px 34px rgba(84, 48, 6, 0.16));
	animation: fmHeroFloat 6s ease-in-out infinite;
}

.fm-hero__leaf {
	position: absolute;
	z-index: 1;
	width: 34px;
	height: 18px;
	border-radius: 100% 0 100% 0;
	background: linear-gradient(135deg, #ffb257, #ff8800);
	box-shadow: 0 8px 14px rgba(255, 136, 0, 0.18);
	opacity: 0.75;
	animation: fmLeafDrift 8s ease-in-out infinite;
}

.fm-hero__leaf--one {
	top: 74px;
	left: 54%;
}

.fm-hero__leaf--two {
	right: 8%;
	bottom: 76px;
	animation-delay: -3s;
	transform: scale(0.8) rotate(38deg);
}

.fm-section {
	padding: 26px 0 0;
}

.fm-section-title {
	margin: 0 0 18px;
	color: var(--fm-ink);
	font-size: 24px;
	line-height: 1.2;
	font-weight: 800;
	text-align: center;
	letter-spacing: 0;
}

.fm-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 17px;
}

.fm-section-head .fm-section-title {
	margin: 0;
	text-align: left;
}

.fm-section-link {
	color: var(--fm-green-700);
	font-size: 13px;
	font-weight: 800;
}

.fm-section-link:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fm-category-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 9px;
	min-width: 0;
}

.fm-category-card,
.fm-product-card,
.fm-testimonial,
.fm-promo,
.fm-post-card {
	position: relative;
	background: var(--fm-card);
	border: 1px solid #e8ece4;
	border-radius: var(--fm-radius);
	box-shadow: var(--fm-shadow-soft);
	transform-style: preserve-3d;
	transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
	will-change: transform;
}

.fm-depth-card:hover {
	border-color: rgba(255, 136, 0, 0.32);
	box-shadow: 0 24px 48px rgba(84, 48, 6, 0.15);
}

.fm-category-card {
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 130px;
	padding: 16px 10px 14px;
	text-align: center;
	overflow: hidden;
}

.fm-category-card__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.56) 40%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 500ms ease;
}

.fm-category-card:hover .fm-category-card__shine {
	transform: translateX(120%);
}

.fm-category-card img {
	width: 94px;
	height: 66px;
	object-fit: contain;
	transform: translateZ(24px);
	filter: drop-shadow(0 8px 10px rgba(84, 48, 6, 0.1));
}

.fm-category-card span:last-child {
	display: block;
	min-height: 38px;
	margin-top: 8px;
	color: #111916;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	transform: translateZ(14px);
}

.fm-products {
	padding-top: 34px;
}

.fm-product-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 13px;
	min-width: 0;
}

.fm-product-card {
	--fm-product-image-height: 96px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 252px;
	padding: 14px 15px 15px;
	overflow: hidden;
}

.fm-product-card__image {
	display: grid;
	place-items: center;
	flex: 0 0 var(--fm-product-image-height);
	height: var(--fm-product-image-height);
	margin-bottom: 10px;
	transform: translateZ(22px);
}

.fm-product-card__image img {
	width: 100%;
	height: var(--fm-product-image-height);
	max-height: var(--fm-product-image-height);
	object-fit: contain;
	filter: drop-shadow(0 10px 13px rgba(84, 48, 6, 0.1));
	transition: transform 240ms ease;
}

.fm-product-card:hover .fm-product-card__image img {
	transform: scale(1.04) translateY(-2px);
}

.fm-product-card h3 {
	min-height: 34px;
	margin: 0 0 2px;
	color: #111916;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.28;
	overflow-wrap: break-word;
}

.fm-product-meta {
	min-height: 18px;
	margin: 0 0 8px;
	color: #626a70;
	font-size: 12px;
	line-height: 1.2;
}

.fm-price {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: #101713;
	font-size: 15px;
	font-weight: 800;
}

.fm-price del,
.fm-price del .amount {
	color: #8b8f89;
	font-size: 12px;
	font-weight: 600;
}

.fm-price ins {
	color: var(--fm-red);
	text-decoration: none;
}

.fm-sale-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	padding: 5px 9px;
	color: #ffffff;
	background: #ef1f1f;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 10px 18px rgba(239, 31, 31, 0.24);
}

.fm-add-cart,
.woocommerce a.button.fm-add-cart,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce a.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	max-width: 100%;
	min-height: 31px;
	padding: 0 10px;
	color: #ffffff;
	background: linear-gradient(180deg, #ff9f2e, #ff8800);
	border: 0;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	white-space: normal;
	box-shadow: 0 10px 18px rgba(255, 136, 0, 0.2);
	transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.fm-product-card .fm-add-cart {
	margin-top: auto;
}

.fm-add-cart:hover,
.woocommerce a.button.fm-add-cart:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
	color: #ffffff;
	filter: brightness(1.05);
	transform: translateY(-1px);
	box-shadow: 0 14px 22px rgba(255, 136, 0, 0.28);
}

.fm-add-cart svg {
	width: 14px;
	height: 14px;
}

.fm-service-strip {
	margin-top: 22px;
	padding: 18px 0;
	background: #fffaf4;
	border-top: 1px solid #f1e5d8;
	border-bottom: 1px solid #f1e5d8;
	box-shadow: inset 0 18px 30px rgba(252, 186, 45, 0.05);
}

.fm-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	padding-right: 84px;
}

.fm-service {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
}

.fm-service > span {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	color: var(--fm-green-600);
	border: 1.5px solid var(--fm-green-500);
	border-radius: 50%;
	background: #fff8ef;
	box-shadow: inset 0 -10px 18px rgba(255, 136, 0, 0.1);
	animation: fmIconPulse 4.8s ease-in-out infinite;
}

.fm-service:nth-child(2) > span {
	animation-delay: -1s;
}

.fm-service:nth-child(3) > span {
	animation-delay: -2s;
}

.fm-service:nth-child(4) > span {
	animation-delay: -3s;
}

.fm-service svg {
	width: 34px;
	height: 34px;
}

.fm-service h3 {
	margin: 0 0 3px;
	font-size: 13px;
	font-weight: 800;
}

.fm-service p {
	margin: 0;
	color: #464d47;
	font-size: 13px;
	line-height: 1.5;
}

.fm-promos {
	padding: 22px 0 0;
}

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

.fm-promo {
	display: grid;
	grid-template-columns: 1fr 44%;
	align-items: center;
	min-width: 0;
	min-height: 118px;
	padding: 18px 18px;
	overflow: hidden;
}

.fm-promo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, rgba(255, 255, 255, 0.42), transparent 46%);
	pointer-events: none;
}

.fm-promo--fresh {
	background: linear-gradient(100deg, #ffffff, #fff3e1);
}

.fm-promo--weekend {
	background: linear-gradient(100deg, #fff6e8, #ffe2bd);
}

.fm-promo--delivery {
	background: linear-gradient(100deg, #ffffff, #fff1dc);
}

.fm-promo strong {
	display: block;
	color: var(--fm-green-700);
	font-size: 22px;
	line-height: 1.05;
	font-weight: 800;
	overflow-wrap: break-word;
}

.fm-promo span {
	display: block;
	margin-top: 3px;
	color: #3c2d20;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 500;
}

.fm-promo em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 31px;
	margin-top: 14px;
	padding: 0 15px;
	color: var(--fm-green-700);
	border: 1px solid var(--fm-green-600);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.52);
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
}

.fm-promo img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: 130px;
	object-fit: contain;
	object-position: right bottom;
	filter: drop-shadow(0 12px 16px rgba(84, 48, 6, 0.13));
	transform: translateZ(24px);
}

.fm-testimonials {
	padding-top: 22px;
	padding-bottom: 24px;
}

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

.fm-testimonial {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 16px;
	min-height: 118px;
	padding: 22px 24px;
}

.fm-testimonial img {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 10px 18px rgba(84, 48, 6, 0.12);
	transform: translateZ(18px);
}

.fm-testimonial p {
	margin: 0 0 12px;
	color: #30373a;
	font-size: 13px;
	line-height: 1.45;
}

.fm-testimonial strong {
	display: block;
	margin-bottom: 3px;
	font-size: 12px;
	font-weight: 800;
}

.fm-stars {
	display: inline-flex;
	gap: 2px;
	color: #ffb400;
}

.fm-stars svg {
	width: 14px;
	height: 14px;
}

.fm-whatsapp {
	position: fixed;
	right: 28px;
	bottom: 32px;
	z-index: 70;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	color: #ffffff;
	background: #ff8800;
	border-radius: 50%;
	box-shadow: 0 18px 30px rgba(255, 136, 0, 0.3);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.fm-whatsapp:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 22px 38px rgba(255, 136, 0, 0.38);
}

.fm-whatsapp svg {
	width: 32px;
	height: 32px;
}

.fm-page-content [class*="elementor-widget-freshmart_"],
.fm-elementor-full-width [class*="elementor-widget-freshmart_"] {
	margin-bottom: 0;
}

.fm-page-content [class*="elementor-widget-freshmart_"] > .elementor-widget-container,
.fm-elementor-full-width [class*="elementor-widget-freshmart_"] > .elementor-widget-container {
	margin: 0;
	padding: 0;
}

.fm-footer {
	color: #ffffff;
	background:
		linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 38%),
		linear-gradient(90deg, #4d2700, #ff8800 58%, #b96000);
	padding: 30px 0 18px;
}

.fm-footer .fm-brand__icon {
	color: #ff8800;
	background: rgba(255, 255, 255, 0.92);
}

.fm-footer .fm-brand__name,
.fm-footer .fm-brand__tagline {
	color: #ffffff;
}

.fm-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr 0.8fr 1fr 1.2fr 0.95fr;
	gap: 38px;
	min-width: 0;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fm-footer h2 {
	margin: 0 0 13px;
	font-size: 17px;
	font-weight: 800;
}

.fm-footer p,
.fm-footer li,
.fm-footer a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
}

.fm-footer__brand p {
	max-width: 270px;
	margin: 14px 0 16px;
	line-height: 1.65;
}

.fm-social {
	display: flex;
	gap: 13px;
}

.fm-social a {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	color: #ff8800;
	background: #ffffff;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	transition: transform 180ms ease, background 180ms ease;
}

.fm-social a:hover {
	background: #fff0de;
	transform: translateY(-2px);
}

.fm-footer__links,
.fm-footer__contact {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fm-footer__links a:hover,
.fm-footer__contact a:hover {
	color: #fff0de;
}

.fm-footer__contact li {
	display: grid;
	grid-template-columns: 18px 1fr;
	align-items: start;
	gap: 9px;
}

.fm-footer__contact svg {
	width: 16px;
	height: 16px;
	margin-top: 2px;
}

.fm-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.fm-payments img {
	width: 50px;
	height: 25px;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fm-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 14px;
}

.fm-footer__bottom p {
	margin: 0;
}

.fm-footer__bottom svg {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 0 4px;
	color: #ffffff;
	fill: currentColor;
	vertical-align: -2px;
}

.fm-page {
	padding: 54px 0 64px;
	background: #ffffff;
}

.fm-content-shell {
	max-width: 880px;
}

.fm-page-header {
	margin-bottom: 28px;
	text-align: center;
}

.fm-page-header h1 {
	margin: 0;
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: 0;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content a {
	color: var(--fm-green-700);
	font-weight: 700;
}

.fm-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.fm-post-card {
	overflow: hidden;
}

.fm-post-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--fm-green-50);
	overflow: hidden;
}

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

.fm-post-card:hover .fm-post-card__image img {
	transform: scale(1.04);
}

.fm-post-card__body {
	padding: 22px;
}

.fm-post-card h2 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.25;
}

.fm-post-card__meta {
	margin: 0 0 12px;
	color: var(--fm-muted);
	font-size: 13px;
	font-weight: 700;
}

.fm-not-found {
	text-align: center;
}

.fm-shop-layout {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.fm-shop-sidebar {
	position: sticky;
	top: 20px;
	display: grid;
	gap: 18px;
}

.widget {
	padding: 20px;
	background: #ffffff;
	border: 1px solid var(--fm-line);
	border-radius: var(--fm-radius);
	box-shadow: var(--fm-shadow-soft);
}

.widget-title,
.widget h2 {
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 800;
}

.woocommerce .woocommerce-breadcrumb.fm-breadcrumb {
	margin-bottom: 20px;
	color: var(--fm-muted);
	font-size: 13px;
	font-weight: 600;
}

.woocommerce .woocommerce-breadcrumb.fm-breadcrumb a {
	color: var(--fm-green-700);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 24px;
	color: var(--fm-muted);
	font-size: 14px;
}

.woocommerce .woocommerce-ordering select {
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--fm-line);
	border-radius: 6px;
	background: #ffffff;
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 16px;
	background: #ffffff;
	border: 1px solid #e8ece4;
	border-radius: var(--fm-radius);
	box-shadow: var(--fm-shadow-soft);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: var(--fm-shadow);
}

.woocommerce ul.products li.product a img {
	height: 190px;
	object-fit: contain;
	margin-bottom: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: #111916;
	font-size: 16px;
	font-weight: 800;
}

.woocommerce ul.products li.product .price {
	color: var(--fm-green-700);
	font-size: 16px;
	font-weight: 800;
}

.woocommerce span.onsale {
	min-width: 44px;
	min-height: 24px;
	padding: 5px 8px;
	background: var(--fm-red);
	border-radius: 4px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
}

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

.woocommerce div.product div.images img {
	border: 1px solid var(--fm-line);
	border-radius: var(--fm-radius);
	box-shadow: var(--fm-shadow-soft);
}

.woocommerce div.product .product_title {
	color: var(--fm-ink);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 800;
	letter-spacing: 0;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--fm-green-700);
	font-size: 26px;
	font-weight: 800;
}

.woocommerce div.product form.cart .qty {
	min-height: 44px;
	border: 1px solid var(--fm-line);
	border-radius: 6px;
}

.woocommerce div.product form.cart .button {
	width: auto;
	min-height: 44px;
	padding: 0 26px;
}

.woocommerce table.shop_table {
	border: 1px solid var(--fm-line);
	border-radius: var(--fm-radius);
	overflow: hidden;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
	padding: 24px;
	border: 1px solid var(--fm-line);
	border-radius: var(--fm-radius);
	background: #ffffff;
	box-shadow: var(--fm-shadow-soft);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-input-wrapper .select2-selection {
	min-height: 44px;
	border: 1px solid var(--fm-line);
	border-radius: 6px;
}

.fm-shop-modern {
	background:
		linear-gradient(180deg, #fff8ef 0, #ffffff 330px),
		#ffffff;
}

.fm-shop-hero {
	padding: 44px 0 18px;
}

.fm-shop-hero__inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
}

.fm-shop-hero h1 {
	margin: 16px 0 10px;
	color: var(--fm-ink);
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: 0;
}

.fm-shop-hero p {
	max-width: 650px;
	margin: 0;
	color: #596266;
	font-size: 16px;
	line-height: 1.7;
}

.fm-shop-hero__stats {
	min-width: 190px;
	padding: 22px;
	background: #ffffff;
	border: 1px solid #efe4d7;
	border-radius: 8px;
	box-shadow: var(--fm-shadow-soft);
	text-align: right;
}

.fm-shop-hero__stats strong {
	display: block;
	color: var(--fm-green-700);
	font-size: 34px;
	line-height: 1;
	font-weight: 800;
}

.fm-shop-hero__stats span {
	display: block;
	margin-top: 6px;
	color: var(--fm-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.fm-shop-cats {
	padding: 8px 0 24px;
}

.fm-shop-cats__rail {
	display: grid;
	grid-auto-columns: minmax(155px, 1fr);
	grid-auto-flow: column;
	gap: 12px;
	overflow-x: auto;
	padding: 2px 2px 14px;
	scroll-snap-type: x mandatory;
}

.fm-shop-cats__rail::-webkit-scrollbar {
	height: 6px;
}

.fm-shop-cats__rail::-webkit-scrollbar-thumb {
	background: #ffd6a3;
	border-radius: 999px;
}

.fm-shop-cat-chip {
	position: relative;
	display: grid;
	grid-template-columns: 46px 1fr;
	align-items: center;
	min-height: 72px;
	padding: 11px 13px;
	background: #ffffff;
	border: 1px solid #efe4d7;
	border-radius: 8px;
	box-shadow: 0 10px 26px rgba(84, 48, 6, 0.08);
	scroll-snap-align: start;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fm-shop-cat-chip:hover,
.fm-shop-cat-chip.is-active {
	border-color: rgba(255, 136, 0, 0.48);
	box-shadow: 0 18px 32px rgba(255, 136, 0, 0.16);
	transform: translateY(-2px);
}

.fm-shop-cat-chip img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	filter: drop-shadow(0 8px 10px rgba(84, 48, 6, 0.1));
}

.fm-shop-cat-chip span {
	display: block;
	color: #121a15;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.fm-shop-cat-chip em {
	display: block;
	margin-top: 3px;
	color: var(--fm-muted);
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
}

.fm-shop-body {
	padding: 0 0 70px;
}

.fm-filter-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 44px;
	margin-bottom: 16px;
	color: #ffffff;
	background: var(--fm-green-700);
	border: 0;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 800;
}

.fm-filter-toggle svg {
	width: 18px;
	height: 18px;
}

.fm-shop-layout-modern {
	display: grid;
	grid-template-columns: 292px minmax(0, 1fr);
	gap: 26px;
	align-items: start;
	min-width: 0;
}

.fm-shop-filter-panel {
	position: sticky;
	top: 116px;
	max-height: calc(100vh - 136px);
	overflow: auto;
	padding-right: 2px;
}

.fm-shop-filter-panel::-webkit-scrollbar {
	width: 6px;
}

.fm-shop-filter-panel::-webkit-scrollbar-thumb {
	background: #ffd6a3;
	border-radius: 999px;
}

.fm-shop-filters {
	padding: 18px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #efe4d7;
	border-radius: 8px;
	box-shadow: 0 22px 46px rgba(84, 48, 6, 0.1);
}

.fm-filter-head {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid #f1e5d8;
}

.fm-filter-head strong {
	display: block;
	font-size: 17px;
	line-height: 1.2;
	font-weight: 800;
}

.fm-filter-head span {
	display: block;
	margin-top: 4px;
	color: var(--fm-muted);
	font-size: 12px;
	line-height: 1.3;
}

.fm-filter-head a {
	color: var(--fm-green-700);
	font-size: 12px;
	font-weight: 800;
}

.fm-filter-block {
	padding: 16px 0;
	border-bottom: 1px solid #f1e5d8;
}

.fm-filter-block:last-of-type {
	border-bottom: 0;
}

.fm-filter-label {
	display: block;
	margin-bottom: 10px;
	color: #19211d;
	font-size: 13px;
	font-weight: 800;
}

.fm-filter-search {
	position: relative;
}

.fm-filter-search input {
	width: 100%;
	min-height: 42px;
	padding: 0 38px 0 13px;
	border: 1px solid var(--fm-line);
	border-radius: 6px;
	background: #fbfcfa;
	outline: none;
	font-size: 13px;
}

.fm-filter-search svg {
	position: absolute;
	top: 50%;
	right: 13px;
	width: 17px;
	height: 17px;
	color: var(--fm-green-700);
	transform: translateY(-50%);
}

.fm-check-list {
	display: grid;
	gap: 7px;
}

.fm-check-row,
.fm-radio-row {
	display: grid;
	grid-template-columns: 18px 1fr auto;
	align-items: center;
	gap: 9px;
	min-height: 30px;
	color: #273029;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.fm-radio-row {
	grid-template-columns: 18px 1fr;
}

.fm-check-row input,
.fm-radio-row input {
	width: 17px;
	height: 17px;
	accent-color: var(--fm-green-700);
}

.fm-check-row em {
	color: var(--fm-muted);
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
}

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

.fm-price-inputs label {
	display: grid;
	gap: 5px;
}

.fm-price-inputs span {
	color: var(--fm-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.fm-price-inputs input {
	width: 100%;
	min-height: 40px;
	padding: 0 10px;
	border: 1px solid var(--fm-line);
	border-radius: 6px;
	background: #fbfcfa;
	outline: none;
}

.fm-filter-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	margin-top: 16px;
	color: #ffffff;
	background: linear-gradient(180deg, #ff9f2e, #ff8800);
	border: 0;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 14px 24px rgba(255, 136, 0, 0.22);
	cursor: pointer;
}

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

.fm-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
	padding: 14px 16px;
	background: #ffffff;
	border: 1px solid #efe4d7;
	border-radius: 8px;
	box-shadow: var(--fm-shadow-soft);
}

.fm-shop-toolbar strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 800;
}

.fm-shop-toolbar span {
	display: block;
	margin-top: 3px;
	color: var(--fm-muted);
	font-size: 12px;
	font-weight: 700;
}

.fm-shop-sort {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fm-shop-sort label {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	gap: 8px;
}

.fm-shop-sort label > span {
	margin: 0;
	color: #333d36;
	font-size: 12px;
	font-weight: 800;
}

.fm-shop-sort select {
	min-height: 38px;
	padding: 0 32px 0 12px;
	border: 1px solid var(--fm-line);
	border-radius: 6px;
	background: #fbfcfa;
	color: var(--fm-ink);
	font-size: 13px;
	font-weight: 700;
}

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

.fm-shop-card {
	--fm-shop-image-height: 190px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 386px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #efe4d7;
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(84, 48, 6, 0.08);
}

.fm-shop-card__image {
	position: relative;
	display: grid;
	place-items: center;
	height: var(--fm-shop-image-height);
	margin: 12px 12px 0;
	background: linear-gradient(180deg, #fffaf4, #ffffff);
	border-radius: 7px;
	overflow: hidden;
}

.fm-shop-card__image img {
	width: 100%;
	height: var(--fm-shop-image-height);
	max-height: var(--fm-shop-image-height);
	object-fit: contain;
	padding: 18px;
	filter: drop-shadow(0 12px 16px rgba(84, 48, 6, 0.1));
	transition: transform 240ms ease;
}

.fm-shop-card:hover .fm-shop-card__image img {
	transform: scale(1.04) translateY(-2px);
}

.fm-fresh-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 6px 8px;
	color: var(--fm-green-800);
	background: #fff0de;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}

.fm-shop-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 14px 16px 16px;
}

.fm-shop-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 7px;
	color: var(--fm-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.fm-shop-card__meta em {
	color: #f4a900;
	font-style: normal;
}

.fm-shop-card h2 {
	min-height: 42px;
	margin: 0 0 6px;
	color: #111916;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: 0;
	overflow-wrap: break-word;
}

.fm-shop-card p {
	min-height: 38px;
	margin: 0 0 12px;
	color: var(--fm-muted);
	font-size: 13px;
	line-height: 1.45;
}

.fm-shop-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

.fm-shop-price {
	color: #121a15;
	font-size: 18px;
	font-weight: 800;
}

.fm-shop-price del {
	display: block;
	color: #90978f;
	font-size: 12px;
	font-weight: 600;
}

.fm-shop-price ins {
	color: var(--fm-red);
	text-decoration: none;
}

.fm-shop-add {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	max-width: 100%;
	min-width: 86px;
	min-height: 38px;
	padding: 0 14px;
	color: #ffffff;
	background: var(--fm-green-700);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	white-space: normal;
	box-shadow: 0 12px 20px rgba(255, 136, 0, 0.24);
}

.woocommerce a.button.fm-shop-add,
.woocommerce a.button.fm-shop-add:hover {
	width: auto;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 6px;
	font-size: 13px;
}

.fm-shop-add:hover {
	color: #ffffff;
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.fm-shop-add svg {
	width: 15px;
	height: 15px;
}

.fm-shop-pagination {
	margin-top: 26px;
}

.fm-shop-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fm-shop-pagination a,
.fm-shop-pagination span {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	background: #ffffff;
	border: 1px solid var(--fm-line);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 800;
}

.fm-shop-pagination .current {
	color: #ffffff;
	background: var(--fm-green-700);
	border-color: var(--fm-green-700);
}

.fm-shop-empty {
	display: grid;
	place-items: center;
	min-height: 420px;
	padding: 46px;
	background: #ffffff;
	border: 1px solid #efe4d7;
	border-radius: 8px;
	box-shadow: var(--fm-shadow-soft);
	text-align: center;
}

.fm-shop-empty > span {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin-bottom: 18px;
	color: var(--fm-green-700);
	background: #fff0de;
	border-radius: 50%;
}

.fm-shop-empty svg {
	width: 34px;
	height: 34px;
}

.fm-shop-empty h2 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 800;
}

.fm-shop-empty p {
	max-width: 460px;
	margin: 0 0 22px;
	color: var(--fm-muted);
}

.fm-shop-empty div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.fm-reveal {
	opacity: 1;
	transform: none;
}

.fm-js .fm-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 650ms ease, transform 650ms ease;
}

.fm-js .fm-reveal.is-visible,
.fm-elementor-editor .fm-reveal {
	opacity: 1 !important;
	transform: none !important;
}

@keyframes fmHeroFloat {
	0%,
	100% {
		transform: translateZ(24px) rotateY(-3deg) translateY(0);
	}
	50% {
		transform: translateZ(36px) rotateY(2deg) translateY(-8px);
	}
}

@keyframes fmLeafDrift {
	0%,
	100% {
		transform: rotate(18deg) translate3d(0, 0, 0);
	}
	50% {
		transform: rotate(38deg) translate3d(20px, -20px, 0);
	}
}

@keyframes fmIconPulse {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-2px) scale(1.03);
	}
}

@keyframes fmCartBump {
	0%,
	100% {
		transform: scale(1);
	}
	45% {
		transform: scale(1.18) rotate(-6deg);
	}
}

@media (max-width: 1180px) {
	.fm-mainbar__inner {
		grid-template-columns: 178px minmax(0, 1fr) 270px auto;
		gap: 14px;
	}

	.fm-nav__menu {
		gap: 16px;
		font-size: 12px;
	}

	.fm-account-link span {
		display: none;
	}

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

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

	.fm-product-card__image {
		--fm-product-image-height: 116px;
	}

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

	.fm-shop-layout-modern {
		grid-template-columns: 270px minmax(0, 1fr);
		gap: 20px;
	}

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

@media (max-width: 940px) {
	.fm-container {
		padding-inline: 16px;
	}

	.fm-mainbar__inner {
		grid-template-areas:
			"brand actions toggle"
			"search search search"
			"nav nav nav";
		grid-template-columns: minmax(0, 1fr) auto auto;
		min-height: auto;
		gap: 12px;
		padding-block: 12px;
	}

	.fm-brand {
		min-width: 0;
	}

	.fm-search {
		width: 100%;
		height: 42px;
	}

	.fm-actions {
		gap: 14px;
	}

	.fm-cart-link > span:last-child {
		display: none;
	}

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

	.fm-nav {
		display: none;
	}

	.fm-site-header.is-menu-open .fm-nav {
		display: block;
	}

	.fm-nav__menu {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 8px;
		background: #ffffff;
		border: 1px solid var(--fm-line);
		border-radius: 8px;
		box-shadow: var(--fm-shadow-soft);
		font-size: 14px;
	}

	.fm-nav__menu a {
		min-height: 42px;
		padding: 0 10px;
	}

	.fm-nav__menu a::after {
		display: none;
	}

	.fm-nav__menu .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		margin: 0 0 8px;
		padding: 0 0 0 12px;
		background: transparent;
		border: 0;
		border-left: 2px solid #ffd6a3;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.fm-nav__menu .sub-menu a {
		min-height: 36px;
		padding: 0 10px;
		background: transparent;
	}

	.fm-hero__inner {
		grid-template-columns: 1fr;
		padding-block-start: 36px;
		text-align: center;
	}

	.fm-hero__copy {
		max-width: none;
		padding: 0;
	}

	.fm-hero p {
		margin-inline: auto;
	}

	.fm-hero__visual {
		justify-content: center;
	}

	.fm-service-grid,
	.fm-promo-grid,
	.fm-testimonial-grid,
	.fm-post-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fm-service-grid {
		padding-right: 0;
	}

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

	.fm-shop-sidebar {
		position: static;
	}

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

	.fm-shop-hero__inner {
		align-items: start;
		flex-direction: column;
	}

	.fm-shop-hero__stats {
		width: 100%;
		text-align: left;
	}

	.fm-filter-toggle {
		display: flex;
	}

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

	.fm-shop-filter-panel {
		position: static;
		display: none;
		max-height: none;
		padding-right: 0;
		overflow: visible;
	}

	.fm-shop-modern.is-filter-open .fm-shop-filter-panel {
		display: block;
	}

	.fm-shop-filters {
		margin-bottom: 18px;
	}

	.fm-shop-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.fm-shop-sort {
		width: 100%;
		justify-content: space-between;
	}
}

@media (max-width: 680px) {
	.fm-brand__name {
		font-size: 22px;
	}

	.fm-brand__icon {
		width: 36px;
		height: 36px;
	}

	.fm-topbar {
		display: none;
	}

	.fm-mainbar__inner {
		padding-block: 10px;
	}

	.fm-hero {
		min-height: auto;
	}

	.fm-hero__inner {
		min-height: auto;
	}

	.fm-hero h1 {
		max-width: 340px;
		margin-inline: auto;
		font-size: clamp(28px, 7.4vw, 32px);
		line-height: 1.12;
	}

	.fm-hero p {
		max-width: 320px;
		font-size: 14px;
		line-height: 1.65;
	}

	.fm-hero__visual img {
		width: min(112%, 520px);
	}

	.fm-service-grid,
	.fm-promo-grid,
	.fm-testimonial-grid,
	.fm-post-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.fm-category-grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(128px, 42vw);
		grid-template-columns: none;
		gap: 10px;
		margin-inline: -16px;
		padding: 2px 16px 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.fm-category-grid::-webkit-scrollbar {
		height: 5px;
	}

	.fm-category-grid::-webkit-scrollbar-thumb {
		background: #ffd6a3;
		border-radius: 999px;
	}

	.fm-category-card {
		min-height: 112px;
		scroll-snap-align: start;
	}

	.fm-category-card img {
		width: 82px;
		height: 56px;
	}

	.fm-category-card span:last-child {
		font-size: 12px;
	}

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

	.fm-section-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.fm-product-card {
		--fm-product-image-height: 88px;
		min-height: 232px;
		padding: 11px;
	}

	.fm-product-card h3 {
		min-height: 32px;
		font-size: 12px;
	}

	.fm-product-meta {
		font-size: 11px;
	}

	.fm-price {
		font-size: 14px;
	}

	.fm-add-cart,
	.woocommerce a.button.fm-add-cart,
	.woocommerce button.button,
	.woocommerce button.button.alt,
	.woocommerce a.button,
	.woocommerce input.button {
		min-height: 32px;
		font-size: 11px;
	}

	.fm-promo {
		grid-template-columns: 1fr 40%;
		min-height: 140px;
	}

	.fm-testimonial {
		grid-template-columns: 54px 1fr;
		padding: 18px;
	}

	.fm-footer__grid,
	.fm-footer__bottom {
		grid-template-columns: 1fr;
		display: grid;
	}

	.fm-footer__bottom {
		justify-items: start;
	}

	.fm-whatsapp {
		right: 18px;
		bottom: 18px;
		width: 52px;
		height: 52px;
	}

	.fm-shop-hero {
		padding: 30px 0 14px;
	}

	.fm-shop-hero h1 {
		font-size: 36px;
	}

	.fm-shop-cats__rail {
		grid-auto-columns: minmax(138px, 72%);
	}

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

	.fm-shop-sort {
		align-items: stretch;
		flex-direction: column;
	}

	.fm-shop-sort label {
		grid-template-columns: 54px 1fr;
	}

	.fm-shop-sort select {
		width: 100%;
	}

	.fm-shop-card {
		--fm-shop-image-height: 128px;
		min-height: 322px;
	}

	.fm-shop-card__image {
		margin: 8px 8px 0;
	}

	.fm-shop-card__image img {
		padding: 12px;
	}

	.fm-shop-card__body {
		padding: 11px;
	}

	.fm-shop-card__meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
		font-size: 9px;
	}

	.fm-shop-card h2 {
		min-height: 34px;
		font-size: 13px;
	}

	.fm-shop-card p {
		min-height: 34px;
		font-size: 11px;
	}

	.fm-shop-card__foot {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
	}

	.fm-shop-price {
		font-size: 15px;
	}

	.fm-shop-add,
	.woocommerce a.button.fm-shop-add {
		width: 100%;
		min-width: 0;
		min-height: 34px;
		font-size: 12px;
	}

	.fm-shop-empty {
		min-height: 360px;
		padding: 32px 18px;
	}
}

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

	.fm-reveal {
		opacity: 1;
		transform: none;
	}

	.fm-hero-3d-canvas {
		display: none;
	}
}
