/* Variables */
:root {
	--pf-container: 1400px;
	--pf-container-padding: 20px;
	--pf-text: #333e16;
	--pf-text-soft: #667047;
	--pf-bg: #fffdf8;
	--pf-surface: #ffffff;
	--pf-surface-muted: #e8e8e6;
	--pf-footer-bg: #333e16;
	--pf-footer-text: #d8e0b7;
	--pf-primary: #853e17;
	--pf-primary-hover: #ae8c2f;
	--pf-border: rgba(51, 62, 22, 0.15);
	--pf-border-strong: rgba(51, 62, 22, 0.28);
	--pf-radius: 8px;
	--pf-radius-pill: 30px;
	--pf-shadow-soft: 0 0 9px rgba(181, 180, 180, 0.24);
	--pf-transition: 220ms ease;
	--pf-section-gap: clamp(50px, 8vw, 90px);
}

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

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

body {
	color: var(--pf-text);
	background: var(--pf-bg);
	font-size: 15px;
	line-height: 1.55;
	letter-spacing: 0;
}

body,
button,
input,
textarea,
select {
	font-family: "Arial", "Helvetica Neue", sans-serif;
}

a {
	color: var(--pf-text);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color var(--pf-transition), opacity var(--pf-transition);
}

a:hover,
a:focus {
	color: var(--pf-primary-hover);
}

h1,
.alpha,
.entry-title,
.page-title,
.woocommerce-products-header__title {
	margin-bottom: 24px;
	color: var(--pf-text);
	font-size: clamp(28px, 4vw, 35px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

h2,
.beta,
.storefront-product-section .section-title,
.related.products > h2,
.upsells.products > h2 {
	margin-bottom: 24px;
	color: var(--pf-text);
	font-size: clamp(25px, 3vw, 30px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
}

h3,
.gamma {
	color: var(--pf-text);
	font-size: clamp(20px, 2.4vw, 24px);
	line-height: 1.2;
	letter-spacing: 0;
}

p,
ul,
ol,
table,
form {
	margin-bottom: 20px;
}

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

.site {
	overflow-x: hidden;
	background: var(--pf-bg);
}

:focus-visible {
	outline: 2px solid var(--pf-primary-hover);
	outline-offset: 3px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select,
.select2-container--default .select2-selection--single {
	min-height: 46px;
	border: 1px solid var(--pf-border);
	border-radius: 0;
	background-color: var(--pf-surface);
	color: var(--pf-text);
	box-shadow: none;
	font-size: 15px;
}

input:focus,
textarea:focus,
select:focus,
.select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--pf-primary-hover);
	box-shadow: 0 0 0 1px var(--pf-primary-hover);
	outline: none;
}

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.added_to_cart,
.wc-block-components-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 25px;
	border: 1px solid var(--pf-primary);
	border-radius: var(--pf-radius-pill);
	background: var(--pf-primary);
	color: #ffffff;
	box-shadow: none;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	transition: background-color var(--pf-transition), border-color var(--pf-transition), color var(--pf-transition), transform var(--pf-transition);
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.added_to_cart:hover,
.wc-block-components-button:hover {
	border-color: var(--pf-primary-hover);
	background: var(--pf-primary-hover);
	color: #ffffff;
}

.button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	border-color: var(--pf-primary);
	background: var(--pf-primary);
	color: #ffffff;
}

.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	border-color: var(--pf-primary-hover);
	background: var(--pf-primary-hover);
	color: #ffffff;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	border-radius: var(--pf-radius);
	background-color: var(--pf-surface-muted);
	color: var(--pf-text);
}

/* Layout Containers */
.col-full {
	box-sizing: border-box;
	width: min(100% - calc(var(--pf-container-padding) * 2), var(--pf-container));
	max-width: var(--pf-container);
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}

.site-content {
	/* padding-top: clamp(28px, 5vw, 24px); */
	padding-top: 0;

}

.content-area,
.widget-area {
	margin-bottom: var(--pf-section-gap);
}

.storefront-full-width-content .content-area,
.page-template-template-homepage .content-area,
.page-template-template-fullwidth .content-area {
	width: 100%;
}

.storefront-breadcrumb {
	margin: 0;
	padding: 16px 0 0;
	color: var(--pf-text-soft);
}

.storefront-sorting {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.storefront-sorting::before,
.storefront-sorting::after {
	display: none;
}

.woocommerce-shop .storefront-sorting,
.tax-product_cat .storefront-sorting {
	display: grid;
	gap: 10px;
	justify-content: end;
	justify-items: end;
	margin: 0 0 24px;
}

.woocommerce-shop .storefront-sorting .woocommerce-ordering,
.tax-product_cat .storefront-sorting .woocommerce-ordering {
	display: grid;
	gap: 5px;
	justify-items: end;
	order: 1;
	margin: 0;
	color: var(--pf-text-soft);
	font-size: 12px;
	line-height: 1.1;
}

.woocommerce-shop .storefront-sorting .woocommerce-ordering::before,
.tax-product_cat .storefront-sorting .woocommerce-ordering::before {
	content: "Сортування";
}

.woocommerce-shop .storefront-sorting .orderby,
.tax-product_cat .storefront-sorting .orderby {
	width: min(240px, 100%);
	min-height: 40px;
	border-color: var(--pf-border);
	background-color: var(--pf-bg);
	color: var(--pf-text);
	font-size: 14px;
}

.woocommerce-shop .storefront-sorting .woocommerce-result-count,
.tax-product_cat .storefront-sorting .woocommerce-result-count {
	order: 2;
	margin: 0;
	color: var(--pf-text-soft);
	font-size: 14px;
	line-height: 1.35;
	text-align: right;
}

.tax-product_cat .woocommerce-products-header {
	text-align: left !important;
}

.tax-product_cat .woocommerce-products-header__title,
.tax-product_cat .page-title {
	margin-right: 0;
	margin-left: 0;
	text-align: left !important;
}

.woocommerce-breadcrumb,
.woocommerce-breadcrumb a {
	color: var(--pf-text-soft);
	font-size: 13px;
}

/* Header */
.site-header {
	padding-top: 0;
	padding-bottom: 0;
	border-bottom: 1px solid var(--pf-border);
	background: #f6f1e7 !important;
	color: var(--pf-text);
}

.site-header > .col-full {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100% - calc(var(--pf-container-padding) * 2), 1460px);
	max-width: 1460px;
	min-height: 78px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.site-branding {
	flex: 0 1 auto;
	margin: 0;
	padding: 4px 0;
	line-height: 0;
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	max-width: min(300px, 38vw);
	line-height: 0;
}

.site-branding .custom-logo {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 82px;
	object-fit: contain;
}

.site-title {
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-transform: none;
}

.site-title a {
	color: var(--pf-text);
	text-decoration: none;
}

.site-description {
	display: none;
}

.pot-header-actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(16px, 2vw, 26px);
	margin-left: auto;
}

.pot-header-search {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
}

.pot-header-search__field {
	position: absolute;
	top: 50%;
	right: calc(100% + 10px);
	z-index: 2;
	width: 0;
	min-height: 42px;
	padding: 0;
	border-color: var(--pf-border);
	background: #fffdf8;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%);
	transition: width var(--pf-transition), padding var(--pf-transition), opacity var(--pf-transition);
}

.pot-header-search.is-open .pot-header-search__field,
.pot-header-search:focus-within .pot-header-search__field {
	width: min(250px, calc(100vw - 150px));
	padding: 9px 14px;
	opacity: 1;
	pointer-events: auto;
}

.pot-header-search__suggestions {
	position: absolute;
	top: calc(100% + 14px);
	right: 0;
	z-index: 20;
	display: none;
	width: min(330px, calc(100vw - 32px));
	max-height: 360px;
	overflow-y: auto;
	border: 1px solid var(--pf-border);
	background: var(--pf-bg);
	box-shadow: 0 14px 34px rgba(51, 62, 22, 0.16);
}

.pot-header-search__suggestions.is-visible {
	display: block;
}

.pot-header-search__suggestion {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 10px;
	color: var(--pf-text);
	text-decoration: none;
}

.pot-header-search__suggestion + .pot-header-search__suggestion {
	border-top: 1px solid var(--pf-border);
}

.pot-header-search__suggestion:hover,
.pot-header-search__suggestion:focus {
	background: #f0eadf;
	color: var(--pf-text);
}

.pot-header-search__thumb {
	display: block;
	width: 48px;
	height: 48px;
	background: var(--pf-surface-muted);
}

.pot-header-search__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pot-header-search__title,
.pot-header-search__empty {
	color: var(--pf-text);
	font-size: 14px;
	line-height: 1.25;
}

.pot-header-search__empty {
	padding: 14px;
}

.pot-header-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--pf-text);
	box-shadow: none;
	text-decoration: none;
}

.pot-header-action:hover,
.pot-header-action:focus {
	background: transparent;
	color: var(--pf-primary);
}

.pot-header-action svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pot-header-wishlist__count,
.pot-header-cart__count {
	position: absolute;
	top: 0;
	right: -2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--pf-text);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.storefront-primary-navigation {
	flex-basis: 100%;
	border-top: 1px solid var(--pf-border);
	background: #f6f1e7;
}

.storefront-primary-navigation .col-full {
	width: min(100% - calc(var(--pf-container-padding) * 2), 1460px);
	max-width: 1460px;
	min-height: 56px;
	margin-right: auto;
	margin-left: auto;
}

.main-navigation ul.menu,
.main-navigation ul.nav-menu {
	margin-right: 0;
}

#site-navigation > .menu {
	display: none;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a {
	padding: 20px 15px;
	color: var(--pf-text);
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: color var(--pf-transition);
}

.main-navigation ul.menu > li > a:hover,
.main-navigation ul.nav-menu > li > a:hover {
	color: var(--pf-primary);
}

.main-navigation ul.menu > li.current-menu-item > a,
.main-navigation ul.nav-menu > li.current-menu-item > a,
.main-navigation ul.menu > li.current-menu-parent > a,
.main-navigation ul.nav-menu > li.current-menu-parent > a,
.main-navigation ul.menu > li.current-menu-ancestor > a,
.main-navigation ul.nav-menu > li.current-menu-ancestor > a,
.main-navigation ul.menu > li.current_page_item > a,
.main-navigation ul.nav-menu > li.current_page_item > a,
.main-navigation ul.menu > li.current_page_parent > a,
.main-navigation ul.nav-menu > li.current_page_parent > a,
.main-navigation ul.menu > li.current_page_ancestor > a,
.main-navigation ul.nav-menu > li.current_page_ancestor > a {
	color: var(--pf-primary);
	font-weight: 700;
}

.main-navigation ul.menu ul,
.main-navigation ul.nav-menu ul {
	border: 1px solid var(--pf-border);
	background: var(--pf-surface);
	box-shadow: var(--pf-shadow-soft);
}

.site-header-cart {
	display: none;
}

.site-header-cart .cart-contents {
	color: var(--pf-text);
	font-size: 14px;
	text-decoration: none;
}

.site-header-cart .cart-contents:hover {
	color: var(--pf-primary-hover);
}

button.menu-toggle {
	border-color: var(--pf-border);
	border-radius: var(--pf-radius-pill);
	background: var(--pf-surface-muted);
	color: var(--pf-text);
}

/* Homepage */
.home .site-content,
.page-template-template-homepage .site-content {
	padding-top: 0;
}

.home .content-area,
.page-template-template-homepage .content-area {
	margin-bottom: 0;
}

.home .site-footer,
.page-template-template-homepage .site-footer {
	margin-top: 0;
}

.pot-home-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(430px, 52vw, 640px);
	overflow: hidden;
	background: #000000;
	color: #ffffff;
	padding: 0 20px;
}

.pot-home-hero__media {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.15)), var(--pot-home-hero-image);
	background-position: center;
	background-size: cover;
	filter: contrast(1.15) brightness(0.9);
}

.pot-home-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100% - calc(var(--pf-container-padding) * 2), var(--pf-container));
	margin-right: auto;
	margin-left: auto;
	padding: clamp(70px, 12vw, 135px) 0 clamp(64px, 10vw, 110px);
}

.pot-home-hero__eyebrow {
	margin: 0 0 15px;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.15;
	text-transform: uppercase;
}

.pot-home-hero__title {
	max-width: 620px;
	margin: 0 0 24px;
	color: #ffffff;
	font-size: clamp(35px, 5vw, 50px);
	font-weight: 700;
	line-height: 1.15;
}

.pot-home-hero__text {
	max-width: 520px;
	margin: 0 0 30px;
	color: #ffffff;
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.45;
}

.pot-home-hero__button {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.02);
	color: #ffffff;
	backdrop-filter: blur(7px);
}

.pot-home-hero__button:hover {
	border-color: var(--pf-primary-hover);
	background: var(--pf-primary-hover);
	color: #ffffff;
}

.page-template-template-homepage .hentry .entry-header,
.home .hentry .entry-header {
	margin-bottom: 24px;
}

.page-template-template-homepage .site-main,
.home .site-main {
	padding-top: 0;
}

.page-template-template-homepage.has-post-thumbnail .site-main {
	padding-top: 0;
}

.home .type-page,
.page-template-template-homepage .type-page {
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail {
	position: relative;
	left: 50%;
	width: 100vw;
	min-height: clamp(420px, 52vw, 640px);
	margin-left: -50vw;
	padding: clamp(80px, 14vw, 155px) max(var(--pf-container-padding), calc((100vw - var(--pf-container)) / 2)) clamp(70px, 10vw, 120px);
	background-position: center;
	background-size: cover;
	color: #ffffff;
}

.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail::before {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.28);
	content: "";
}

.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .entry-header,
.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .entry-content {
	position: relative;
	z-index: 1;
	max-width: min(600px, 100%);
	margin-right: auto;
	margin-left: 0;
	color: #ffffff;
	text-align: left;
}

.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .entry-title,
.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .entry-content,
.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .entry-content p {
	color: #ffffff;
}

.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .entry-title {
	font-size: clamp(35px, 5vw, 50px);
}

.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .button,
.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .wp-block-button__link {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.02);
	color: #ffffff;
	backdrop-filter: blur(7px);
}

.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .button:hover,
.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .wp-block-button__link:hover {
	border-color: var(--pf-primary-hover);
	background: var(--pf-primary-hover);
	color: #ffffff;
}

.home .entry-content > * + *,
.page-template-template-homepage .entry-content > * + * {
	margin-top: clamp(36px, 7vw, 80px);
}

.storefront-product-section {
	margin-bottom: var(--pf-section-gap);
}

.storefront-product-section:last-child {
	margin-bottom: 0;
}

.storefront-product-section .section-title {
	text-align: left;
}

.pot-featured-category {
	padding: var(--pf-section-gap) 0 0;
	background: var(--pf-bg);
}

.pot-featured-category .col-full {
	width: min(100% - calc(var(--pf-container-padding) * 2), 1460px);
	max-width: 1460px;
}

.pot-featured-category__header {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 24px;
}

.pot-featured-category__header .section-title {
	margin-bottom: 0;
}

.pot-featured-category__link {
	color: var(--pf-text);
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
}

.pot-featured-category__link::after {
	display: inline-block;
	margin-left: 10px;
	content: "->";
	transition: transform var(--pf-transition);
}

.pot-featured-category__link:hover::after {
	transform: translateX(6px);
}

.pot-plants-page-products {
	margin-top: 24px;
}

.pot-products-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	align-items: flex-end;
	justify-content: flex-end;
	margin: 0 0 12px;
}

.pot-products-sort select {
	min-height: 40px;
	border-color: var(--pf-border);
	background-color: var(--pf-bg);
	color: var(--pf-text);
	font-size: 14px;
}

.pot-products-sort {
	display: grid;
	gap: 5px;
	justify-items: end;
	margin-left: auto;
	color: var(--pf-text-soft);
	font-size: 12px;
	line-height: 1.1;
}

.pot-products-sort select {
	width: min(240px, 100%);
}

.pot-products-count {
	margin: 0 0 24px;
	color: var(--pf-text-soft);
	font-size: 14px;
	text-align: right;
}

.pot-home-categories {
	padding: var(--pf-section-gap) 0 clamp(10px, 3vw, 32px);
	background: #f5f0e6;
}

.pot-home-categories .col-full {
	width: min(100% - calc(var(--pf-container-padding) * 2), 1460px);
	max-width: 1460px;
}

.pot-home-categories__intro {
	max-width: 940px;
	margin: 0 auto clamp(52px, 7vw, 95px);
	color: var(--pf-text);
	text-align: center;
}

.pot-home-categories__intro-icon {
	display: flex;
	justify-content: center;
	margin-bottom: clamp(26px, 4vw, 42px);
	color: var(--pf-text);
}

.pot-home-categories__intro-icon svg,
.pot-home-categories__intro-icon img {
	display: block;
	width: min(280px, 62vw);
	max-height: 100px;
	object-fit: contain;
}

.pot-home-categories__intro-text {
	margin: 0 auto;
	color: var(--pf-text);
	font-size: clamp(21px, 2.2vw, 25px);
	line-height: 1.28;
	text-align: center;
}

.pot-home-categories__intro-text p {
	margin: 0;
}

.pot-home-categories__header {
	margin-bottom: 24px;
}

.pot-home-categories__header .section-title {
	margin-bottom: 0;
}

.pot-home-categories .pot-category-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: clamp(18px, 2.2vw, 28px);
	align-items: stretch;
	overflow: visible;
	scroll-behavior: smooth;
}

.pot-category-slider {
	position: relative;
}

.pot-category-slider__viewport {
	overflow: hidden;
}

.pot-category-slider .woocommerce {
	overflow: visible;
}

.pot-home-categories .pot-category-grid::before,
.pot-home-categories .pot-category-grid::after {
	display: none;
}

.pot-home-categories .pot-category-grid .product-category {
	flex: 0 0 100%;
	width: auto !important;
	min-width: 0;
}

.pot-home-categories .product-category a {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 100%;
	background: var(--pf-surface-muted);
	text-decoration: none;
}

.pot-home-categories .product-category img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	margin: 0;
	object-fit: cover;
	transition: transform 700ms ease;
}

.pot-home-categories .product-category:hover img {
	transform: scale(1.04);
}

.pot-home-categories .product-category .woocommerce-loop-category__title {
	position: absolute;
	right: clamp(22px, 4vw, 48px);
	bottom: clamp(26px, 4vw, 44px);
	left: clamp(22px, 4vw, 48px);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin: 0;
	padding: 12px 24px;
	border-radius: var(--pf-radius-pill);
	background: #b99b2f;
	color: #ffffff;
	font-size: clamp(16px, 1.6vw, 21px);
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
}

.pot-home-categories .product-category .woocommerce-loop-category__title::after {
	display: none;
	content: none;
}

.pot-category-slider__button {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 54px;
	height: 54px;
	min-height: 54px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #a9541e;
	color: #ffffff;
	box-shadow: none;
	font-size: 42px;
	font-weight: 300;
	line-height: 1;
	transform: translateY(-50%);
	transition: background-color var(--pf-transition), opacity var(--pf-transition), transform var(--pf-transition);
}

.pot-category-slider__button:hover {
	background: var(--pf-primary-hover);
	color: #ffffff;
	transform: translateY(-50%) scale(1.04);
}

.pot-category-slider__button:disabled {
	opacity: 0;
	pointer-events: none;
}

.pot-category-slider__button--prev {
	left: 28px;
}

.pot-category-slider__button--next {
	right: 28px;
}

.pot-category-slider.is-static .pot-category-slider__button {
	display: none;
}

.pot-home-offers {
	padding: clamp(58px, 8vw, 92px) 0 clamp(62px, 8vw, 100px);
	background: #f5f0e6;
}

.pot-home-offers .col-full {
	width: min(100% - calc(var(--pf-container-padding) * 2), 1460px);
	max-width: 1460px;
}

.pot-home-offers .section-title {
	margin: 0 0 clamp(28px, 4vw, 38px);
	color: var(--pf-text);
	font-size: clamp(30px, 4vw, 43px);
	line-height: 1.12;
	text-align: center;
}

.pot-home-offers .pot-offers-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(22px, 2.2vw, 28px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.pot-home-offers .pot-offer-card {
	position: relative;
	width: auto !important;
	margin: 0 !important;
	padding: 0;
	float: none !important;
	background: transparent;
	text-align: left;
}

.pot-home-offers .pot-offer-card:hover {
	transform: none;
}

.pot-home-offers .pot-offer-card .woocommerce-LoopProduct-link {
	display: block;
	color: var(--pf-text);
	text-decoration: none;
}

.pot-home-offers .pot-offer-card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	margin: 0 0 12px;
	background: #ebe8e2;
	object-fit: cover;
}

.pot-home-offers .pot-offer-card .woocommerce-loop-product__title {
	min-height: 0;
	margin: 0 0 4px;
	padding: 0;
	color: var(--pf-text);
	font-size: clamp(17px, 1.5vw, 20px);
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}

.pot-home-offers .pot-offer-card .price {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: baseline;
	margin: 0;
	color: var(--pf-text);
	font-size: clamp(18px, 1.7vw, 22px);
	font-weight: 700;
	line-height: 1.25;
}

.pot-home-offers .pot-offer-card .price ins {
	order: 1;
	color: var(--pf-primary);
	background: transparent;
	text-decoration: none;
}

.pot-home-offers .pot-offer-card .price del {
	order: 2;
	color: var(--pf-text);
	font-size: 0.9em;
	opacity: 0.9;
}

.pot-home-offers .pot-offer-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	padding: 8px 12px;
	background: var(--pf-primary);
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.pot-home-offers .pot-offer-card .tinv-wraper.tinv-wishlist {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 4;
	margin: 0;
}

.pot-home-offers .pot-offer-card .button,
.pot-home-offers .pot-offer-card .added_to_cart {
	display: none !important;
}

.pot-home-story {
	padding: clamp(42px, 6vw, 72px) 0 clamp(54px, 7vw, 86px);
	background: var(--pf-bg);
}

.pot-home-story .col-full {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(34px, 5vw, 72px);
	align-items: stretch;
	width: min(100% - 40px, 1460px);
	max-width: none;
	padding: clamp(28px, 4vw, 48px);
	background: #f1eadb;
}

.pot-home-story .col-full::before,
.pot-home-story .col-full::after {
	display: none;
	content: none;
}

.pot-home-story__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.pot-home-story__title {
	max-width: 620px;
	margin: 0 0 clamp(48px, 7vw, 84px);
	color: var(--pf-text);
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 700;
	line-height: 1.08;
}

.pot-home-story__text {
	max-width: 620px;
	color: var(--pf-text);
	font-size: clamp(19px, 1.55vw, 24px);
	line-height: 1.2;
}

.pot-home-story__text p {
	margin: 0;
}

.pot-home-story__button {
	margin-top: clamp(34px, 5vw, 52px);
	min-width: 250px;
	border-color: var(--pf-primary);
	background: var(--pf-primary);
	font-size: clamp(19px, 2vw, 24px);
	font-weight: 700;
}

.pot-home-story__media {
	min-height: clamp(420px, 44vw, 690px);
	background: var(--pf-footer-bg);
}

.pot-home-story__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Product Categories */
.woocommerce ul.products li.product-category,
.storefront-product-categories ul.products li.product {
	overflow: hidden;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
	transition: box-shadow var(--pf-transition), transform var(--pf-transition);
}

.woocommerce ul.products li.product-category:hover,
.storefront-product-categories ul.products li.product:hover {
	box-shadow: var(--pf-shadow-soft);
	transform: translateY(-3px);
}

.woocommerce ul.products li.product-category a {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.woocommerce ul.products li.product-category img {
	width: 100%;
	aspect-ratio: 8 / 10;
	margin: 0;
	object-fit: cover;
	transition: transform 600ms ease;
}

.woocommerce ul.products li.product-category:hover img {
	transform: scale(1.05);
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title {
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	gap: 12px;
	margin: 0;
	padding: 12px 25px;
	background: var(--pf-surface-muted);
	color: var(--pf-text);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title::after {
	content: "->";
	font-size: 20px;
	line-height: 1;
	transition: transform var(--pf-transition);
}

.woocommerce ul.products li.product-category:hover .woocommerce-loop-category__title::after {
	transform: translateX(6px);
}

.woocommerce ul.products li.product-category mark.count {
	display: none;
}

/* Product Cards */
.woocommerce ul.products,
.wc-block-grid__products {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	clear: both;
	margin-bottom: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.wc-block-grid__products::before,
.wc-block-grid__products::after {
	display: none;
}

.woocommerce ul.products li.product:not(.product-category),
.wc-block-grid__products .wc-block-grid__product {
	position: relative;
	display: flex;
	flex-direction: column;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: left;
	transition: transform var(--pf-transition);
}

.woocommerce ul.products li.product:not(.product-category):hover,
.wc-block-grid__products .wc-block-grid__product:hover {
	transform: translateY(-3px);
}

.woocommerce ul.products li.product:not(.product-category) .woocommerce-LoopProduct-link,
.wc-block-grid__products .wc-block-grid__product-link {
	display: block;
	text-decoration: none;
}

.woocommerce ul.products li.product:not(.product-category) img,
.wc-block-grid__products .wc-block-grid__product-image img {
	width: 100%;
	aspect-ratio: 8 / 10;
	margin: 0 0 12px;
	border-radius: 0;
	object-fit: cover;
	background: var(--pf-surface-muted);
}

.woocommerce ul.products li.product:not(.product-category) .woocommerce-loop-product__title,
.wc-block-grid__products .wc-block-grid__product-title {
	min-height: 2.4em;
	margin: 0;
	padding: 5px 0 0;
	color: var(--pf-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	text-transform: uppercase;
}

.woocommerce ul.products li.product:not(.product-category) .price,
.wc-block-grid__products .wc-block-grid__product-price {
	margin: 8px 0 12px;
	color: var(--pf-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
}

.woocommerce ul.products li.product:not(.product-category) .price ins,
.wc-block-grid__products .wc-block-grid__product-price ins {
	color: var(--pf-primary);
	background: transparent;
	font-weight: 700;
}

.woocommerce ul.products li.product:not(.product-category) .price del,
.wc-block-grid__products .wc-block-grid__product-price del {
	color: var(--pf-text-soft);
}

.woocommerce ul.products li.product:not(.product-category) .star-rating {
	margin: 8px 0 0;
	color: var(--pf-primary);
	font-size: 12px;
}

.woocommerce span.onsale,
.wc-block-grid__product-onsale {
	min-height: 0;
	padding: 8px 12px;
	border: 1px solid var(--pf-primary);
	border-radius: 0;
	background: var(--pf-primary);
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.woocommerce ul.products li.product:not(.product-category) .onsale,
.wc-block-grid__products .wc-block-grid__product-onsale {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	margin: 0;
}

.woocommerce ul.products li.product:not(.product-category) .button,
.woocommerce ul.products li.product:not(.product-category) .added_to_cart,
.wc-block-grid__products .wc-block-grid__product-add-to-cart .wp-block-button__link {
	width: fit-content;
	min-height: 38px;
	margin-top: auto;
	padding: 10px 15px;
	border-radius: var(--pf-radius);
	font-size: 14px;
}

.woocommerce ul.products li.product:not(.product-category) .tinv-wraper.tinv-wishlist {
	position: absolute;
	top: 9px;
	right: 9px;
	z-index: 3;
	margin: 0;
}

.woocommerce ul.products li.product:not(.product-category) .tinvwl_add_to_wishlist_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(51, 62, 22, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--pf-text);
	box-shadow: var(--pf-shadow-soft);
	text-decoration: none;
	transition: background-color var(--pf-transition), color var(--pf-transition), transform var(--pf-transition);
}

.woocommerce ul.products li.product:not(.product-category) .tinvwl_add_to_wishlist_button:hover {
	background: var(--pf-primary-hover);
	color: #ffffff;
	transform: translateY(-2px);
}

.woocommerce ul.products li.product:not(.product-category) .tinvwl_add_to_wishlist-text,
.woocommerce ul.products li.product:not(.product-category) .tinvwl-tooltip,
.woocommerce ul.products li.product:not(.product-category) .tinv-wishlist-clear {
	display: none !important;
}

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

.woocommerce-pagination {
	margin-top: 40px;
	border-color: var(--pf-border);
}

.woocommerce-pagination .page-numbers li .page-numbers {
	border-radius: var(--pf-radius);
	background: var(--pf-surface-muted);
	color: var(--pf-text);
}

.woocommerce-pagination .page-numbers li .page-numbers.current,
.woocommerce-pagination .page-numbers li a.page-numbers:hover {
	background: var(--pf-primary);
	color: #ffffff;
}

/* Single Product */
.single-product .site-content {
	padding-top: clamp(28px, 5vw, 60px);
}

.single-product div.product {
	display: grid;
	gap: clamp(28px, 5vw, 56px);
	overflow: visible;
	padding-top: 0;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
	width: 100%;
	margin: 0;
}

.single-product div.product .woocommerce-product-gallery img {
	width: 100%;
	aspect-ratio: 8 / 10;
	object-fit: cover;
	background: var(--pf-surface-muted);
}

.single-product div.product .flex-control-thumbs img {
	aspect-ratio: 1 / 1;
}

.single-product div.product .product_title {
	margin-bottom: 18px;
	font-size: clamp(28px, 4vw, 35px);
	line-height: 1.1;
}

.single-product div.product p.price {
	margin: 18px 0;
	color: var(--pf-text);
	font-size: 22px;
	font-weight: 700;
}

.single-product div.product .woocommerce-product-details__short-description {
	color: var(--pf-text);
	font-size: 16px;
	line-height: 1.6;
}

.single-product div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 24px;
	padding: 24px 0;
	border-top: 1px solid var(--pf-border);
	border-bottom: 1px solid var(--pf-border);
}

.single-product div.product form.cart .quantity {
	margin: 0;
}

.single-product div.product form.cart .button {
	min-width: 180px;
}

.single-product div.product .product_meta {
	margin-top: 20px;
	border-top: 0;
	color: var(--pf-text-soft);
	font-size: 14px;
}

.woocommerce-tabs {
	margin-top: clamp(36px, 6vw, 70px);
	padding-top: 0;
}

.woocommerce-tabs ul.tabs {
	border-top: 1px solid var(--pf-border);
}

.woocommerce-tabs ul.tabs li a {
	color: var(--pf-text);
}

.woocommerce-tabs .panel {
	color: var(--pf-text);
}

/* Cart */
.woocommerce-cart-form {
	max-width: 100%;
	overflow-x: auto;
}

.woocommerce-cart-form table {
	min-width: 640px;
}

.woocommerce-cart table.cart,
.woocommerce table.shop_table {
	border: 1px solid var(--pf-border);
	border-radius: 0;
	background: var(--pf-surface);
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 15px;
	border-color: var(--pf-border);
	color: var(--pf-text);
}

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

.woocommerce-cart table.cart .product-name a {
	color: var(--pf-text);
	font-weight: 700;
	text-decoration: none;
}

.woocommerce-cart table.cart .actions {
	background: #fafaf7;
}

.woocommerce-cart table.cart .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.woocommerce-cart table.cart .coupon .input-text {
	min-width: min(260px, 100%);
}

.cart_totals {
	padding: 24px;
	border: 1px solid var(--pf-border);
	background: var(--pf-surface-muted);
}

.cart_totals h2 {
	margin-bottom: 18px;
	font-size: 25px;
}

.cart_totals table.shop_table {
	border-color: var(--pf-border);
	background: var(--pf-surface);
}

.wc-proceed-to-checkout .button.checkout-button {
	width: 100%;
}

.wc-block-cart,
.wc-block-components-sidebar-layout {
	color: var(--pf-text);
}

.wc-block-cart-items,
.wc-block-cart__totals-title,
.wc-block-components-totals-wrapper,
.wc-block-components-sidebar {
	border-color: var(--pf-border) !important;
}

.wc-block-components-sidebar {
	padding: 24px !important;
	background: var(--pf-surface-muted);
}

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

.wc-block-cart__submit-container .wc-block-components-button {
	width: 100%;
}

.wc-block-components-quantity-selector {
	border-color: var(--pf-border);
	border-radius: var(--pf-radius);
}

.wc-block-cart-items__row {
	border-color: var(--pf-border) !important;
}

/* Checkout */
.woocommerce-checkout form.checkout {
	display: grid;
	gap: 24px;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
	width: 100%;
	float: none;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2,
.woocommerce-checkout #order_review {
	padding: 24px;
	border: 1px solid var(--pf-border);
	background: var(--pf-surface);
}

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

.woocommerce-checkout .form-row {
	margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
	color: var(--pf-text);
	font-size: 14px;
	font-weight: 700;
}

.woocommerce-checkout-review-order-table {
	margin-bottom: 0;
}

.woocommerce-checkout-payment {
	border: 1px solid var(--pf-border);
	background: var(--pf-surface-muted);
}

.woocommerce-checkout-payment ul.payment_methods {
	border-bottom-color: var(--pf-border);
}

.woocommerce-checkout #place_order {
	width: 100%;
	margin-top: 12px;
}

.wc-block-checkout,
.wc-block-checkout__form,
.wc-block-checkout__sidebar {
	color: var(--pf-text);
}

.wc-block-checkout__sidebar,
.wc-block-components-checkout-step,
.wc-block-components-order-summary,
.wc-block-components-panel {
	border-color: var(--pf-border) !important;
}

.wc-block-components-checkout-step {
	padding: 24px;
	background: var(--pf-surface);
}

.wc-block-checkout__sidebar {
	padding: 24px !important;
	background: var(--pf-surface-muted);
}

.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	border-color: var(--pf-border);
	border-radius: 0;
	color: var(--pf-text);
}

.wc-block-components-checkout-place-order-button,
.wc-block-components-button:not(.is-link) {
	border-radius: var(--pf-radius-pill);
}

/* Contact Page */
.pot-contact-page {
	display: grid;
	grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(42px, 8vw, 120px);
	align-items: start;
	margin-top: clamp(54px, 8vw, 82px);
	margin-bottom: clamp(60px, 8vw, 100px);
}

.pot-contact-page__details {
	display: grid;
	gap: clamp(24px, 4vw, 34px);
}

.pot-contact-page__item h2,
.pot-contact-page__form-wrap h2 {
	margin: 0 0 18px;
	color: var(--pf-text);
	font-size: clamp(28px, 3vw, 41px);
	font-weight: 700;
	line-height: 1.1;
}

.pot-contact-page__item h2 {
	font-size: clamp(24px, 2.4vw, 30px);
}

.pot-contact-page__item p,
.pot-contact-page__item a {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	margin: 0;
	color: var(--pf-text);
	font-size: clamp(19px, 2vw, 24px);
	line-height: 1.35;
	text-decoration: none;
}

.pot-contact-page__item a:hover,
.pot-contact-page__item a:focus {
	color: var(--pf-primary);
}

.pot-contact-page__pin {
	display: inline-flex;
	width: 20px;
	height: 20px;
	color: var(--pf-text);
}

.pot-contact-page__pin svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pot-contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 20px;
	margin: 0;
}

.pot-contact-form input:not([type="hidden"]),
.pot-contact-form textarea {
	width: 100%;
	border: 1px solid var(--pf-border-strong);
	border-radius: 23px;
	background: #ffffff;
	color: var(--pf-text);
	font-size: 20px;
	line-height: 1.25;
}

.pot-contact-form input:not([type="hidden"]) {
	min-height: 50px;
	padding: 11px 19px;
}

.pot-contact-form textarea {
	grid-column: 1 / -1;
	min-height: 185px;
	padding: 18px 19px;
	resize: vertical;
}

.pot-contact-form input::placeholder,
.pot-contact-form textarea::placeholder {
	color: var(--pf-text);
	opacity: 1;
}

.pot-contact-form input[type="email"],
.pot-contact-form__note,
.pot-contact-form button,
.pot-contact-page__notice {
	grid-column: 1 / -1;
}

.pot-contact-form__note {
	margin: -4px 0 0;
	color: #a8aaa8;
	font-size: 14px;
	line-height: 1.35;
}

.pot-contact-form button {
	justify-self: start;
	min-width: 162px;
}

.pot-contact-form__website {
	position: absolute;
	left: -9999px;
	width: 1px !important;
	height: 1px !important;
	opacity: 0;
	pointer-events: none;
}

.pot-contact-page__notice {
	margin: 0 0 18px;
	padding: 12px 16px;
	border: 1px solid var(--pf-border);
	border-radius: var(--pf-radius);
	background: #ffffff;
	color: var(--pf-text);
}

.pot-contact-page__notice--success {
	border-color: rgba(51, 62, 22, 0.4);
	background: #eef5d0;
}

.pot-contact-page__notice--error {
	border-color: rgba(133, 62, 23, 0.45);
	background: #fff0e8;
}

/* Footer */
.site-footer {
	margin-top: clamp(60px, 8vw, 95px);
	padding: 0;
	background: var(--pf-footer-bg);
	color: var(--pf-footer-text);
}

.site-footer .col-full {
	width: 100%;
	max-width: none;
	padding-right: 0;
	padding-left: 0;
	color: var(--pf-footer-text);
}

.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer .widget-title,
.site-footer .widgettitle {
	border-bottom-color: rgba(216, 224, 183, 0.24);
	color: #ffffff;
}

.site-footer a,
.site-footer .widget a {
	color: var(--pf-footer-text);
	text-decoration: none;
}

.site-footer a:hover,
.site-footer .widget a:hover {
	color: var(--pf-primary-hover);
}

.pot-footer {
	background: var(--pf-footer-bg);
	color: var(--pf-footer-text);
}

.pot-footer__brand,
.pot-footer__grid,
.pot-footer__bar {
	width: min(100% - calc(var(--pf-container-padding) * 2), var(--pf-container));
	max-width: var(--pf-container);
	margin-right: auto;
	margin-left: auto;
}

.pot-footer__brand {
	display: flex;
	justify-content: center;
	padding: clamp(46px, 7vw, 86px) 0 clamp(36px, 5vw, 62px);
}

#colophon .pot-footer__logo {
	color: #dfe8bf !important;
	font-size: clamp(54px, 8vw, 88px);
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
}

#colophon .pot-footer__logo:hover,
#colophon .pot-footer__logo:focus {
	color: #eef5d0 !important;
}

.pot-footer__logo-image {
	display: block;
	width: auto;
	max-width: min(320px, 70vw);
	max-height: 110px;
	object-fit: contain;
}

.pot-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(28px, 5vw, 72px);
	padding-bottom: clamp(54px, 8vw, 84px);
}

.pot-footer__title {
	margin: 0 0 18px;
	color: #edf4c6;
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 700;
	line-height: 1.2;
}

.pot-footer__links,
.pot-footer__contacts {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#colophon .pot-footer__links a,
#colophon .pot-footer__links a:visited,
#colophon .pot-footer__contacts a,
#colophon .pot-footer__contacts a:visited,
#colophon .pot-footer__contacts span {
	color: #edf4c6 !important;
	font-size: clamp(17px, 1.6vw, 22px);
	line-height: 1.25;
	text-decoration: none;
}

#colophon .pot-footer__links a:hover,
#colophon .pot-footer__links a:focus,
#colophon .pot-footer__contacts a:hover,
#colophon .pot-footer__contacts a:focus {
	color: #ffffff !important;
}

.pot-footer__contacts li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.pot-footer__contact-icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 3px;
	color: #dfe8bf;
}

.pot-footer__contact-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pot-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.pot-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 39px;
	height: 39px;
	border-radius: 50%;
	background: #dfe8bf;
	color: var(--pf-footer-bg) !important;
	text-decoration: none;
	transition: background-color var(--pf-transition), color var(--pf-transition), transform var(--pf-transition);
}

.pot-footer__social:hover,
.pot-footer__social:focus {
	background: var(--pf-primary-hover);
	color: #ffffff !important;
	transform: translateY(-2px);
}

.pot-footer__social svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pot-footer__social img {
	display: block;
	width: 23px;
	height: 23px;
	object-fit: contain;
}

.pot-footer__bar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	min-height: 74px;
	color: var(--pf-text);
}

.pot-footer::after {
	display: block;
	width: 100%;
	height: 74px;
	margin-top: -74px;
	background: #dfe8bf;
	content: "";
	pointer-events: none;
}

.pot-footer__bar > * {
	position: relative;
	z-index: 1;
}

.pot-footer__copyright {
	margin: 0;
	color: var(--pf-text);
	font-size: 15px;
}

.pot-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	justify-content: center;
}

.pot-footer__legal a {
	color: #111111;
	font-size: 17px;
	text-decoration: none;
}

.pot-footer__legal a:hover,
.pot-footer__legal a:focus {
	color: var(--pf-primary);
}

.pot-footer__payments {
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: flex-end;
	color: #111111;
	font-size: 14px;
	font-weight: 800;
	font-style: italic;
	line-height: 1;
}

.pot-footer__payments img {
	display: block;
	width: auto;
	max-width: 120px;
	max-height: 34px;
	object-fit: contain;
}

.footer-widgets {
	display: none;
	padding-top: 0;
	border-bottom-color: rgba(216, 224, 183, 0.2);
}

.footer-widgets .widget {
	margin-bottom: 30px;
}

.site-info {
	padding-top: 18px;
	color: var(--pf-footer-text);
	font-size: 13px;
}

.site-info a {
	color: var(--pf-footer-text);
}

.storefront-handheld-footer-bar {
	border-top-color: var(--pf-border);
	background: var(--pf-surface);
	box-shadow: 0 0 8px rgba(51, 62, 22, 0.18);
}

.storefront-handheld-footer-bar ul li > a {
	color: var(--pf-text);
}

.storefront-handheld-footer-bar ul li.cart .count {
	border-color: var(--pf-primary);
	background: var(--pf-primary);
	color: #ffffff;
}

/* Responsive */
@media (min-width: 500px) {
	.woocommerce ul.products,
	.wc-block-grid__products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pot-home-categories .pot-category-grid {
		display: flex;
	}

	.pot-home-categories .pot-category-grid .product-category {
		flex-basis: calc((100% - clamp(18px, 2.2vw, 28px)) / 2);
	}

	.pot-home-offers .pot-offers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 740px) {
	:root {
		--pf-container-padding: 28px;
	}

	.site-header > .col-full {
		gap: 16px 32px;
	}

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

	.pot-home-categories .pot-category-grid {
		display: flex;
	}

	.pot-home-categories .pot-category-grid .product-category {
		flex-basis: calc((100% - (clamp(18px, 2.2vw, 28px) * 2)) / 3);
	}

	.pot-home-offers .pot-offers-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.woocommerce-checkout form.checkout {
		grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
		align-items: start;
	}

	.woocommerce-checkout .col2-set {
		grid-column: 1;
	}

	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review {
		grid-column: 2;
	}
}

@media (min-width: 768px) {
	.site-header {
		padding-top: 0;
	}
	#page .storefront-breadcrumb {
        margin: 0 0 0;
    }

	.woocommerce-active .site-header .site-branding,
	.site-header .site-branding {
		width: auto;
		max-width: 32%;
		float: none;
		margin-right: 0;
		margin-left: 0;
	}

	.woocommerce-active .site-header .main-navigation,
	.site-header .main-navigation {
		width: auto;
		float: none;
		clear: none;
		margin-left: 0;
	}

	.woocommerce-active .site-header .site-header-cart,
	.site-header .site-header-cart {
		width: auto;
		float: none;
		margin-left: auto;
		display: none;
	}

	.single-product div.product {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
	}
}

@media (min-width: 980px) {
	.woocommerce ul.products,
	.wc-block-grid__products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.pot-home-offers .pot-offers-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 979px) {
	.pot-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pot-footer__bar {
		grid-template-columns: 1fr;
		gap: 12px;
		padding-top: 18px;
		padding-bottom: 18px;
		text-align: center;
	}

	.pot-footer::after {
		height: 132px;
		margin-top: -132px;
	}

	.pot-footer__payments {
		justify-content: center;
	}
}

@media (min-width: 1220px) {
	:root {
		--pf-container-padding: 0px;
	}

	.pot-home-categories .pot-category-grid {
		display: flex;
	}

	.pot-home-categories .pot-category-grid .product-category {
		flex-basis: calc((100% - (clamp(18px, 2.2vw, 28px) * 3)) / 4);
	}

	.storefront-primary-navigation {
		position: relative;
	}

	.storefront-primary-navigation::before {
		position: relative;
		left: 50%;
		display: block;
		width: 100vw;
		height: 1px;
		background-color: var(--pf-border);
		content: "";
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	.site-header {
		padding-top: 0;
	}

	.site-footer {
		margin-top: 48px;
	}

	.pot-footer__brand {
		justify-content: flex-start;
		padding-top: 38px;
		padding-bottom: 32px;
	}

	.pot-footer__logo {
		font-size: 46px;
	}

	.pot-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 44px;
	}

	.pot-footer__title {
		margin-bottom: 14px;
		font-size: 21px;
	}

	.pot-footer__links,
	.pot-footer__contacts {
		gap: 10px;
	}

	.pot-footer__links a,
	.pot-footer__contacts a,
	.pot-footer__contacts span {
		font-size: 17px;
	}

	.pot-footer__bar {
		min-height: 146px;
	}

	.pot-footer::after {
		height: 146px;
		margin-top: -146px;
	}

	.pot-contact-page {
		grid-template-columns: 1fr;
		gap: 36px;
		margin-top: 34px;
	}

	.pot-contact-form {
		grid-template-columns: 1fr;
	}

	.pot-contact-form input:not([type="hidden"]),
	.pot-contact-form textarea,
	.pot-contact-form input[type="email"] {
		grid-column: 1;
	}

	.pot-contact-form input:not([type="hidden"]) {
		font-size: 17px;
	}

	.pot-contact-form textarea {
		min-height: 160px;
		font-size: 17px;
	}

	.site-header > .col-full {
		display: flex;
		flex-wrap: wrap;
		min-height: 0;
		gap: 8px 12px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.site-branding {
		display: flex;
		flex: 1 1 0;
		align-items: center;
		max-width: none;
		margin-bottom: 0;
		padding: 0;
	}

	.site-branding .custom-logo-link {
		max-width: min(150px, 42vw);
	}

	.site-branding .custom-logo {
		max-height: 48px;
	}

	.site-title {
		font-size: 24px;
	}

	.pot-header-actions {
		flex: 0 0 auto;
		gap: 8px;
		margin-left: 0;
	}

	.pot-header-action {
		width: 31px;
		height: 31px;
		min-height: 31px;
	}

	.pot-header-action svg {
		width: 24px;
		height: 24px;
	}

	.pot-header-wishlist__count,
	.pot-header-cart__count {
		top: -4px;
		right: -4px;
		min-width: 16px;
		height: 16px;
		padding: 0 4px;
		font-size: 10px;
	}

	.pot-header-search.is-open .pot-header-search__field,
	.pot-header-search:focus-within .pot-header-search__field {
		position: fixed;
		top: 74px;
		right: 16px;
		left: 16px;
		width: auto;
		transform: none;
	}

	.pot-header-search__suggestions {
		position: fixed;
		top: 118px;
		right: 16px;
		left: 16px;
		width: auto;
	}

	.storefront-primary-navigation .col-full {
		display: block;
		min-height: 0;
		padding-top: 8px;
		padding-bottom: 10px;
	}

	button.menu-toggle {
		width: min(100%, 350px);
		max-width: none;
		min-height: 42px;
		margin: 0 auto 10px;
		padding: 10px 18px;
		text-align: center;
	}

	.main-navigation ul.menu > li > a,
	.main-navigation ul.nav-menu > li > a,
	.handheld-navigation ul.menu li a {
		padding: 13px 0;
		font-size: 14px;
	}

	.pot-products-toolbar,
	.pot-products-sort {
		display: grid;
		width: 100%;
		justify-items: stretch;
	}

	.pot-products-sort {
		margin-left: 0;
	}

	.pot-products-sort select {
		width: 100%;
	}

	.pot-products-count {
		text-align: left;
	}

	.site-content {
		padding-top: 30px;
	}

	.woocommerce-result-count,
	.woocommerce-ordering {
		width: 100%;
		float: none;
	}

	.woocommerce-shop .storefront-sorting,
	.tax-product_cat .storefront-sorting,
	.woocommerce-shop .storefront-sorting .woocommerce-ordering,
	.tax-product_cat .storefront-sorting .woocommerce-ordering {
		width: 100%;
		justify-content: stretch;
		justify-items: stretch;
	}

	.woocommerce-shop .storefront-sorting .woocommerce-result-count,
	.tax-product_cat .storefront-sorting .woocommerce-result-count {
		text-align: left;
	}

	.woocommerce-shop .storefront-sorting .orderby,
	.tax-product_cat .storefront-sorting .orderby {
		width: 100%;
	}

	.woocommerce ul.products,
	.wc-block-grid__products {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.pot-home-hero {
		min-height: 520px;
	}

	.pot-home-hero__media {
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), var(--pot-home-hero-image);
		background-position: center;
	}

	.pot-home-hero__inner {
		padding-top: 86px;
		padding-bottom: 92px;
	}

	.pot-home-hero__button {
		width: 100%;
	}

	.pot-home-categories {
		padding-top: 52px;
	}

	.pot-home-categories__intro {
		margin-bottom: 42px;
	}

	.pot-home-categories__intro-text {
		font-size: 19px;
		line-height: 1.35;
	}

	.pot-home-categories .product-category .woocommerce-loop-category__title {
		right: 28px;
		bottom: 28px;
		left: 28px;
		min-height: 50px;
	}

	.pot-home-offers {
		padding-top: 52px;
	}

	.pot-home-story .col-full {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.pot-home-story__title {
		margin-bottom: 28px;
		font-size: 34px;
	}

	.pot-home-story__text {
		font-size: 19px;
		line-height: 1.28;
	}

	.pot-home-story__button {
		width: 100%;
		min-width: 0;
	}

	.pot-home-story__media {
		min-height: 360px;
	}

	.pot-category-slider__button {
		width: 46px;
		height: 46px;
		min-height: 46px;
		font-size: 36px;
	}

	.pot-category-slider__button--prev {
		left: 12px;
	}

	.pot-category-slider__button--next {
		right: 12px;
	}

	.woocommerce ul.products li.product:not(.product-category) .button,
	.woocommerce ul.products li.product:not(.product-category) .added_to_cart,
	.wc-block-grid__products .wc-block-grid__product-add-to-cart .wp-block-button__link,
	.single-product div.product form.cart .button,
	.woocommerce-cart table.cart .actions .button {
		width: 100%;
	}

	.single-product div.product form.cart {
		display: block;
	}

	.single-product div.product form.cart .quantity {
		margin-bottom: 12px;
	}

	.woocommerce-cart table.cart td,
	.woocommerce-cart table.cart th,
	.woocommerce table.shop_table td,
	.woocommerce table.shop_table th {
		padding: 12px;
	}

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

	.woocommerce-cart-form {
		margin-right: calc(var(--pf-container-padding) * -1);
		margin-left: calc(var(--pf-container-padding) * -1);
		padding-right: var(--pf-container-padding);
		padding-left: var(--pf-container-padding);
	}

	.cart_totals,
	.woocommerce-checkout .col-1,
	.woocommerce-checkout .col-2,
	.woocommerce-checkout #order_review,
	.wc-block-components-checkout-step,
	.wc-block-checkout__sidebar,
	.wc-block-components-sidebar {
		padding: 18px !important;
	}

	.woocommerce-checkout form.checkout {
		display: block;
	}

	.wc-block-components-sidebar-layout {
		display: block;
	}

	.wc-block-components-sidebar-layout .wc-block-components-main,
	.wc-block-components-sidebar-layout .wc-block-components-sidebar {
		width: 100% !important;
		padding-right: 0;
		padding-left: 0;
	}

	.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail {
		min-height: 520px;
		padding-top: 82px;
		padding-bottom: 86px;
		background-position: center;
	}
}

@media (min-width: 768px) and (max-width: 1100px) {
	.pot-home-story .col-full {
		grid-template-columns: 1fr;
		width: min(100% - 40px, 760px);
	}

	.pot-home-story__title,
	.pot-home-story__text {
		max-width: none;
	}

	.pot-home-story__title {
		margin-bottom: 28px;
		font-size: 38px;
	}

	.pot-home-story__text {
		font-size: 20px;
		line-height: 1.28;
	}

	.pot-home-story__media {
		min-height: 420px;
	}
}

@media (max-width: 499px) {
	:root {
		--pf-container-padding: 16px;
	}

	h1,
	.alpha,
	.entry-title,
	.page-title,
	.woocommerce-products-header__title {
		font-size: 28px;
	}

	h2,
	.beta,
	.storefront-product-section .section-title,
	.related.products > h2,
	.upsells.products > h2 {
		font-size: 25px;
	}

	.site-footer {
		text-align: center;
	}

	.pot-home-offers .pot-offers-grid {
		grid-template-columns: 1fr;
	}
}

/* Homepage category slider overrides */
.pot-home-categories .pot-category-slider {
	width: 100%;
}

.pot-home-categories .pot-category-slider__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
}

.pot-home-categories .pot-category-slider__viewport::-webkit-scrollbar {
	display: none;
}

.pot-home-categories .woocommerce ul.products.pot-category-grid {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: clamp(18px, 2.2vw, 28px);
	width: max-content;
	min-width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible;
}

.pot-home-categories .woocommerce ul.products.pot-category-grid li.product-category {
	flex: 0 0 calc((100vw - (var(--pf-container-padding) * 2) - (clamp(18px, 2.2vw, 28px) * 2)) / 3) !important;
	width: auto !important;
	max-width: 470px;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
}

.pot-home-categories .woocommerce ul.products.pot-category-grid li.product-category a {
	height: 100%;
}

@media (min-width: 1220px) {
	.pot-home-categories .woocommerce ul.products.pot-category-grid li.product-category {
		flex-basis: calc((min(1460px, 100vw) - (clamp(18px, 2.2vw, 28px) * 3)) / 4) !important;
	}
}

@media (max-width: 979px) {
	.pot-home-categories .woocommerce ul.products.pot-category-grid li.product-category {
		flex-basis: calc((100vw - (var(--pf-container-padding) * 2) - clamp(18px, 2.2vw, 28px)) / 2) !important;
	}
}

@media (max-width: 499px) {
	.pot-home-categories .woocommerce ul.products.pot-category-grid li.product-category {
		flex-basis: calc(100vw - (var(--pf-container-padding) * 2)) !important;
		max-width: none;
	}
}

/* Homepage offers overrides */
.pot-home-offers .col-full {
	width: min(100% - calc(var(--pf-container-padding) * 2), 1460px);
	max-width: 1460px;
}

.pot-home-offers .section-title {
	margin: 0 0 clamp(28px, 4vw, 38px) !important;
	font-size: clamp(30px, 4vw, 43px) !important;
	line-height: 1.12;
	text-align: center !important;
}

.pot-home-offers.woocommerce ul.products,
.pot-home-offers .woocommerce ul.products,
.pot-home-offers ul.products.pot-offers-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: clamp(22px, 2.2vw, 28px) !important;
	align-items: start;
	margin: 0 !important;
	padding: 0 !important;
}

.pot-home-offers ul.products.pot-offers-grid::before,
.pot-home-offers ul.products.pot-offers-grid::after {
	display: none !important;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card {
	position: relative;
	display: block !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
	transform: none !important;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card img {
	display: block;
	width: 100% !important;
	aspect-ratio: 4 / 5 !important;
	height: auto;
	margin: 0 0 12px !important;
	object-fit: cover;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .woocommerce-loop-product__title {
	min-height: 0 !important;
	margin: 0 0 4px !important;
	padding: 0 !important;
	font-size: clamp(17px, 1.5vw, 20px) !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
	text-align: left;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .price {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 !important;
	font-size: clamp(18px, 1.7vw, 22px) !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	text-align: left;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .price ins {
	color: var(--pf-primary);
	background: transparent;
	text-decoration: none;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .price del {
	color: var(--pf-text);
	opacity: 0.9;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .tinv-wraper.tinv-wishlist {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	z-index: 4;
	margin: 0 !important;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .tinvwl_add_to_wishlist_button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 44px !important;
	height: 44px !important;
	min-height: 44px;
	padding: 0 !important;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 253, 248, 0.92);
	color: var(--pf-text);
	box-shadow: none;
	font-size: 0 !important;
	line-height: 1;
	text-decoration: none;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .tinvwl_add_to_wishlist_button::before {
	margin: 0;
	font-size: 22px;
	line-height: 1;
}

.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .tinvwl_add_to_wishlist-text,
.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .tinvwl_remove_from_wishlist-text,
.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .tinvwl_already_on_wishlist-text,
.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .tinvwl-tooltip,
.pot-home-offers ul.products.pot-offers-grid li.product.pot-offer-card .tinv-wishlist-clear {
	display: none !important;
}

@media (max-width: 979px) {
	.pot-home-offers.woocommerce ul.products,
	.pot-home-offers .woocommerce ul.products,
	.pot-home-offers ul.products.pot-offers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 499px) {
	.pot-home-offers .section-title {
		text-align: left !important;
	}

	.pot-home-offers.woocommerce ul.products,
	.pot-home-offers .woocommerce ul.products,
	.pot-home-offers ul.products.pot-offers-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Single product reference layout overrides */
.single-product .storefront-breadcrumb .col-full,
.single-product .site-content > .col-full {
	width: min(100% - calc(var(--pf-container-padding) * 2), 1180px);
	max-width: 1180px;
}

.single-product .site-content {
	padding-top: 22px;
}

.single-product .content-area {
	width: 100% !important;
	margin-bottom: clamp(54px, 7vw, 86px);
	float: none !important;
}

.single-product .site-main {
	margin-bottom: 0;
}

.single-product div.product {
	display: grid !important;
	grid-template-columns: minmax(0, 560px) minmax(320px, 430px);
	gap: clamp(44px, 7vw, 84px);
	align-items: start;
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 16px;
}

.single-product div.product::before,
.single-product div.product::after {
	display: none !important;
	content: none !important;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary,
.single-product div.product .woocommerce-tabs {
	width: 100% !important;
	max-width: none;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
}

.single-product div.product .woocommerce-product-gallery {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 14px;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
	grid-column: 2;
	grid-row: 1;
	background: #eee9e0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	margin: 0;
	padding: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #eee9e0;
	opacity: 0.65;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs img:hover {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery img {
	width: 100% !important;
	aspect-ratio: 1 / 1;
	margin: 0;
	object-fit: cover;
	background: #eee9e0;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	top: 12px;
	right: 12px;
	border-radius: 50%;
	background: rgba(255, 253, 248, 0.9);
}

.single-product div.product .summary {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.single-product div.product .product_title {
	max-width: 360px;
	margin: 0 0 14px;
	color: var(--pf-text);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}

.single-product div.product p.price {
	margin: 0 0 18px;
	color: var(--pf-text);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.single-product div.product form.cart {
	display: grid;
	grid-template-columns: 92px minmax(190px, 1fr);
	gap: 12px;
	width: 100%;
	margin: 0 0 16px;
	padding: 0;
	border: 0;
}

.single-product div.product form.cart .quantity,
.single-product div.product form.cart .quantity .qty {
	width: 100%;
	margin: 0;
}

.single-product div.product form.cart .quantity .qty {
	min-height: 42px;
	border-radius: var(--pf-radius-pill);
	text-align: center;
}

.single-product div.product form.cart .single_add_to_cart_button {
	width: 100%;
	min-height: 42px;
	border-radius: var(--pf-radius-pill);
	font-weight: 700;
}

.single-product div.product .summary .tinv-wraper.tinv-wishlist {
	width: 100%;
	margin: 0 0 18px;
}

.single-product div.product .summary .tinvwl_add_to_wishlist_button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pf-text);
	font-size: 14px;
	text-decoration: none;
}

.single-product div.product .woocommerce-product-details__short-description,
.single-product div.product .product_meta {
	width: 100%;
	color: var(--pf-text);
	font-size: 15px;
	line-height: 1.45;
}

.single-product div.product .product_meta {
	margin-top: 8px;
	padding-top: 14px;
	border-top: 1px solid var(--pf-border-strong);
	color: var(--pf-text-soft);
	font-size: 13px;
}

.single-product div.product .woocommerce-tabs {
	grid-column: 2;
	margin-top: 8px !important;
}

.single-product div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0;
	margin: 0 0 16px;
	padding: 0;
	border-top: 0;
	border-bottom: 1px solid var(--pf-border-strong);
}

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

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

.single-product div.product .woocommerce-tabs ul.tabs li a {
	padding: 0 18px 12px 0;
	color: var(--pf-text);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.single-product div.product .woocommerce-tabs .panel {
	width: 100%;
	margin: 0;
	padding: 0;
	color: var(--pf-text);
	font-size: 15px;
	line-height: 1.45;
}

.single-product #reviews,
.single-product #review_form_wrapper {
	width: 100%;
}

.single-product #reviews .commentlist {
	margin-bottom: 18px;
}

.single-product #review_form {
	margin-top: 18px;
	padding: 18px;
	background: #f1eadb;
}

.single-product #review_form textarea,
.single-product #review_form input[type="text"],
.single-product #review_form input[type="email"] {
	width: 100%;
	border-radius: var(--pf-radius-pill);
}

.single-product #review_form textarea {
	border-radius: var(--pf-radius);
}

.single-product #review_form input[type="submit"] {
	width: 100%;
	min-height: 42px;
	font-weight: 700;
}

.single-product .related.products,
.single-product .upsells.products {
	grid-column: 1 / -1;
	width: 100%;
	margin-top: clamp(46px, 6vw, 76px);
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	margin-bottom: 22px;
	font-size: clamp(24px, 3vw, 30px);
	text-align: left;
}

.single-product .related.products ul.products,
.single-product .upsells.products ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 26px);
}

.single-product .storefront-sticky-add-to-cart {
	display: none;
}

@media (max-width: 900px) {
	.single-product div.product {
		grid-template-columns: 1fr;
		max-width: 680px;
		gap: 32px;
	}

	.single-product div.product .woocommerce-tabs {
		grid-column: 1;
	}

	.single-product div.product form.cart {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 560px) {
	.single-product div.product .woocommerce-product-gallery {
		display: block;
	}

	.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
		flex-direction: row;
		margin-top: 10px;
	}

	.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
		width: 52px !important;
	}

	.single-product .related.products ul.products,
	.single-product .upsells.products ul.products {
		grid-template-columns: 1fr;
	}
}

/* Single product grid repair */
.single-product div.product {
	position: relative;
}

.single-product div.product > .onsale {
	position: absolute !important;
	top: 16px;
	left: 0;
	z-index: 6;
	width: auto !important;
	min-width: 0;
	max-width: max-content;
	padding: 7px 13px;
	border: 0;
	border-radius: var(--pf-radius-pill);
	background: var(--pf-primary);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.single-product div.product > .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 1 / span 2;
	padding-top: 42px;
}

.single-product div.product > .summary {
	grid-column: 2;
	grid-row: 1;
}

.single-product div.product > .woocommerce-tabs {
	grid-column: 2;
	grid-row: 2;
}

.single-product div.product > .related.products,
.single-product div.product > .upsells.products {
	grid-column: 1 / -1;
}

.single-product div.product .woocommerce-product-gallery__wrapper,
.single-product div.product .woocommerce-product-gallery__image,
.single-product div.product .woocommerce-product-gallery__image a,
.single-product div.product .flex-viewport,
.single-product div.product .flex-viewport .slides,
.single-product div.product .flex-viewport .slides > li {
	width: 100% !important;
	max-width: 100% !important;
}

.single-product div.product .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.single-product div.product .woocommerce-product-gallery__image a {
	display: block;
	background: #eee9e0;
}

.single-product div.product .woocommerce-product-gallery__image img,
.single-product div.product .flex-viewport img {
	display: block;
	width: 100% !important;
	height: auto !important;
	min-width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.single-product div.product .woocommerce-product-gallery:not(:has(.flex-control-thumbs li)) {
	display: block;
}

@media (max-width: 900px) {
	.single-product div.product > .woocommerce-product-gallery,
	.single-product div.product > .summary,
	.single-product div.product > .woocommerce-tabs {
		grid-column: 1;
		grid-row: auto;
	}

	.single-product div.product > .woocommerce-product-gallery {
		padding-top: 38px;
	}
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before, .woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before, .woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before, a.wishlist_products_counter.top_wishlist-heart:before, span.wishlist_products_counter.top_wishlist-heart:before, a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart:before{
	margin: 0 !important;
}
