/*
Theme Name: Vidaro Modern
Theme URI: https://vidaro.rs/
Author: Vidaro
Description: Moderna WooCommerce tema za Vidaro, bez zavisnosti od WPBakery-ja.
Version: 1.6.1
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: vidaro-modern
*/

:root {
	--vidaro-green: #557a32;
	--vidaro-green-dark: #345020;
	--vidaro-cream: #f7f4ec;
	--vidaro-gold: #c49a4a;
	--vidaro-text: #30352e;
	--vidaro-muted: #777d73;
	--vidaro-border: #e4e7df;
	--vidaro-white: #fff;
	--vidaro-radius: 14px;
	--vidaro-shadow: 0 12px 34px rgba(43, 59, 33, .09);
	--vidaro-container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--vidaro-text);
	background: var(--vidaro-white);
	font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: var(--vidaro-green-dark); text-decoration: none; }
a:hover { color: var(--vidaro-green); }
.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;
}
.vidaro-container {
	width: min(calc(100% - 32px), var(--vidaro-container));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--vidaro-border);
	backdrop-filter: blur(12px);
}
.admin-bar .site-header { top: 32px; }
.header-inner {
	min-height: 106px;
	display: grid;
	grid-template-columns: 210px 1fr auto;
	align-items: center;
	gap: 28px;
}
.site-logo img {
	display: block;
	width: 182px;
	max-height: 88px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(35%) sepia(26%) saturate(1038%) hue-rotate(46deg) brightness(91%) contrast(88%);
}
.primary-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.primary-menu { justify-content: center; }
.primary-menu li { position: relative; }
.primary-menu a {
	display: block;
	padding: 16px 0;
	color: var(--vidaro-text);
	font-weight: 700;
}
.primary-menu .current-menu-item > a,
.primary-menu a:hover { color: var(--vidaro-green); }
.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: -18px;
	z-index: 10;
	display: none;
	min-width: 230px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--vidaro-border);
	border-radius: 10px;
	box-shadow: var(--vidaro-shadow);
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { display: block; }
.primary-menu .sub-menu a { padding: 9px 18px; font-weight: 600; }
.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.cart-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 16px;
	border: 1px solid var(--vidaro-border);
	border-radius: 999px;
	font-weight: 700;
	white-space: nowrap;
}
.menu-toggle {
	display: none;
	border: 0;
	background: none;
	font-size: 26px;
	cursor: pointer;
}

.hero {
	padding: 54px 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(196, 154, 74, .16), transparent 30%),
		linear-gradient(135deg, #faf8f1, #eef4e8);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 48px;
}
.eyebrow {
	margin: 0 0 10px;
	color: var(--vidaro-green);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(38px, 5vw, 66px);
	line-height: 1.08;
	letter-spacing: -.035em;
}
.hero-copy {
	max-width: 650px;
	margin: 22px 0 30px;
	color: var(--vidaro-muted);
	font-size: 18px;
}
.button,
button.button,
input.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--vidaro-green);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	color: #fff;
	background: var(--vidaro-green-dark);
	transform: translateY(-1px);
}
.hero-products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.hero-product {
	overflow: hidden;
	background: #fff;
	border-radius: 18px;
	box-shadow: var(--vidaro-shadow);
}
.hero-product img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.benefits {
	padding: 24px 0;
	border-bottom: 1px solid var(--vidaro-border);
}
.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.benefit {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 12px;
	align-items: center;
}
.benefit-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--vidaro-cream);
	color: var(--vidaro-green);
	font-size: 20px;
}
.benefit strong { display: block; }
.benefit span { color: var(--vidaro-muted); font-size: 13px; }

.section { padding: 72px 0; }
.section-soft { background: var(--vidaro-cream); }
.section-heading {
	max-width: 700px;
	margin: 0 auto 36px;
	text-align: center;
}
.section-heading h2 {
	margin: 0 0 8px;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.15;
}
.section-heading p { margin: 0; color: var(--vidaro-muted); }
.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.category-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--vidaro-border);
	border-radius: var(--vidaro-radius);
	box-shadow: var(--vidaro-shadow);
}
.category-card img {
	display: block;
	width: 100%;
	aspect-ratio: 350 / 132;
	object-fit: cover;
}
.category-card-content { padding: 18px 20px 22px; }
.category-card h3 { margin: 0 0 5px; font-size: 20px; }
.category-card p { margin: 0; color: var(--vidaro-muted); }

.woocommerce ul.products,
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.product-card {
	float: none;
	width: auto;
	margin: 0;
	padding: 0 0 20px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--vidaro-border);
	border-radius: var(--vidaro-radius);
	box-shadow: 0 8px 24px rgba(43, 59, 33, .06);
}
.woocommerce ul.products li.product a img,
.product-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	margin: 0;
	object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-card h3 {
	padding: 0 18px;
	font-size: 17px;
	line-height: 1.35;
}
.woocommerce ul.products li.product .price,
.product-card .price {
	display: block;
	padding: 0 18px;
	color: var(--vidaro-green-dark);
	font-size: 17px;
	font-weight: 800;
}
.woocommerce ul.products li.product .button { margin: 12px 18px 0; }
.section-cta { margin-top: 34px; text-align: center; }

.site-main { min-height: 55vh; padding: 48px 0 72px; }
.home .site-main { padding: 0; }
.page-header { margin-bottom: 34px; }
.page-header h1 { margin: 0; font-size: clamp(32px, 5vw, 48px); }
.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 40px;
}
.shop-content-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}
.shop-sidebar .widget {
	margin-bottom: 26px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--vidaro-border);
}
.shop-sidebar .widget-title { margin: 0 0 14px; font-size: 18px; }
.shop-sidebar ul { margin: 0; padding: 0; list-style: none; }
.shop-sidebar li { margin: 7px 0; }
.shop-filter-card {
	margin-bottom: 22px;
	padding: 22px;
	background: var(--vidaro-cream);
	border: 1px solid var(--vidaro-border);
	border-radius: var(--vidaro-radius);
}
.shop-filter-card h2 { margin: 0 0 14px; font-size: 18px; }
.shop-filter-card ul { margin: 0; padding: 0; list-style: none; }
.shop-filter-card li { margin: 8px 0; }
.shop-filter-card .count { color: var(--vidaro-muted); font-size: 13px; }
.shop-search,
.price-filter-row { display: flex; gap: 8px; }
.shop-search input,
.price-filter-row input { min-width: 0; width: 100%; }
.shop-search button,
.price-filter-row button { padding: 10px 14px; }

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}
.woocommerce div.product .product_title { font-size: clamp(32px, 4vw, 46px); line-height: 1.15; }
.woocommerce div.product p.price { color: var(--vidaro-green-dark); font-size: 24px; }
.woocommerce div.product form.cart .button {
	background: var(--vidaro-green) !important;
	color: #fff !important;
}
.woocommerce div.product form.cart .button:hover { background: var(--vidaro-green-dark) !important; }
.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--vidaro-green);
	background: var(--vidaro-cream);
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--vidaro-green); }

/* Compact WooCommerce feedback — keep the product above the fold. */
.woocommerce-notices-wrapper {
	width: 100%;
	margin: 0 0 24px;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	min-height: 58px;
	margin: 0 !important;
	padding: 15px 18px 15px 52px !important;
	border: 1px solid rgba(62, 111, 45, .2) !important;
	border-top: 1px solid rgba(62, 111, 45, .2) !important;
	border-radius: 12px;
	background: #f4f8ef;
	box-shadow: 0 7px 20px rgba(37, 50, 55, .05);
	color: #4d584c;
	font-size: 15px;
	line-height: 1.45;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	top: 50% !important;
	left: 18px !important;
	transform: translateY(-50%);
}
.woocommerce-message .button,
.woocommerce-info .button {
	float: right;
	margin: -5px -7px -5px 20px;
	padding: 10px 20px !important;
	border-radius: 999px !important;
	background: var(--vidaro-green-dark) !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover { background: var(--vidaro-green) !important; }

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}
.post-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--vidaro-border);
	border-radius: var(--vidaro-radius);
	box-shadow: 0 10px 28px rgba(43, 59, 33, .06);
}
.post-card-image {
	display: block;
	overflow: hidden;
	background: var(--vidaro-cream);
	aspect-ratio: 16 / 10;
}
.post-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.025); }
.post-card-content { padding: 22px; }
.post-card-meta {
	margin: 0 0 8px;
	color: var(--vidaro-green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.post-card h2 { margin: 0 0 12px; font-size: 21px; line-height: 1.3; }
.post-card p { margin: 0 0 16px; color: var(--vidaro-muted); }
.post-card .read-more { font-weight: 800; }
.pagination,
.nav-links { margin-top: 36px; }

.entry-content { font-size: 17px; }
.entry-content > * { max-width: 100%; }
.entry-content h2,
.entry-content h3 { line-height: 1.25; }
.entry-content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.entry-content select,
.entry-content textarea,
.shop-filter-card input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cfd4ca;
	border-radius: 8px;
	background: #fff;
	color: var(--vidaro-text);
	font: inherit;
}
.entry-content textarea { min-height: 170px; resize: vertical; }
.entry-content input:focus,
.entry-content select:focus,
.entry-content textarea:focus,
.shop-filter-card input:focus {
	outline: 2px solid rgba(85, 122, 50, .22);
	border-color: var(--vidaro-green);
}
.entry-content input[type="submit"],
.wpcf7-submit {
	padding: 12px 24px;
	border: 0;
	border-radius: 999px;
	background: var(--vidaro-green);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}
.entry-content input[type="submit"]:hover,
.wpcf7-submit:hover { background: var(--vidaro-green-dark); }
.wpcf7 form p { margin: 0 0 18px; }
.wpcf7-spinner { vertical-align: middle; }

.site-footer {
	padding: 58px 0 20px;
	background: #26321f;
	color: #dfe7da;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr .9fr;
	gap: 48px;
}
.footer-logo { width: 166px; filter: brightness(0) invert(1); }
.site-footer h2 { color: #fff; font-size: 18px; }
.site-footer a { color: #e8eee4; }
.footer-menu { align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-bottom {
	margin-top: 40px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.13);
	font-size: 13px;
}

@media (max-width: 980px) {
	.header-inner { grid-template-columns: 170px 1fr auto; min-height: 88px; }
	.site-logo img { width: 150px; height: 74px; }
	.menu-toggle { display: block; }
	.primary-navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 12px 24px 22px;
		background: #fff;
		border-bottom: 1px solid var(--vidaro-border);
	}
	.primary-navigation.is-open { display: block; }
	.primary-menu { align-items: stretch; flex-direction: column; gap: 0; }
	.primary-menu a { padding: 11px 0; }
	.primary-menu .sub-menu {
		position: static;
		display: block;
		margin-left: 18px;
		padding: 0;
		border: 0;
		box-shadow: none;
	}
	.hero-grid { grid-template-columns: 1fr; }
	.benefit-grid { grid-template-columns: repeat(2, 1fr); }
	.woocommerce ul.products, .product-grid { grid-template-columns: repeat(3, 1fr); }
	.post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
	.admin-bar .site-header { top: 46px; }
	.header-inner { grid-template-columns: 1fr auto auto; gap: 12px; }
	.cart-link .cart-total { display: none; }
	.hero { padding: 36px 0; }
	.hero-products { gap: 8px; }
	.benefit-grid,
	.category-grid,
	.footer-grid,
	.content-layout,
	.shop-content-layout { grid-template-columns: 1fr; }
	.woocommerce ul.products, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.post-grid { grid-template-columns: 1fr; }
	.woocommerce div.product { grid-template-columns: 1fr; }
	.section { padding: 52px 0; }
}

/* Brand-rich visual layer. */
:root {
	--vidaro-green: #476b2d;
	--vidaro-green-dark: #173d2d;
	--vidaro-green-deep: #102f24;
	--vidaro-sage: #dbe6ce;
	--vidaro-cream: #f7f1e4;
	--vidaro-gold: #d6a52c;
	--vidaro-honey: #e8b83f;
	--vidaro-terracotta: #b85f3c;
	--vidaro-text: #23332b;
	--vidaro-muted: #697269;
	--vidaro-border: #dedfce;
	--vidaro-radius: 22px;
	--vidaro-shadow: 0 22px 55px rgba(25, 61, 44, .12);
}

body {
	background: #fffdf8;
	font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, h4 {
	font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--vidaro-green-dark);
}

.announcement-bar {
	position: relative;
	z-index: 101;
	padding: 8px 0;
	background: var(--vidaro-green-deep);
	color: #f5edda;
	font-size: 12px;
	letter-spacing: .035em;
}
.announcement-inner { display: flex; align-items: center; gap: 13px; }
.announcement-inner a { margin-left: auto; color: var(--vidaro-honey); font-weight: 800; }
.announcement-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--vidaro-honey); }
.site-header { background: rgba(255, 253, 248, .95); border-bottom-color: rgba(23,61,45,.12); }
.header-inner { min-height: 96px; }
.site-logo img { filter: brightness(0) saturate(100%) invert(19%) sepia(23%) saturate(1248%) hue-rotate(105deg) brightness(93%) contrast(93%); }
.primary-menu a { padding: 14px 2px; font-size: 14px; letter-spacing: .02em; }
.primary-menu > li > a::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	margin-top: 4px;
	background: var(--vidaro-gold);
	transition: width .22s ease;
}
.primary-menu > li:hover > a::after,
.primary-menu > .current-menu-item > a::after { width: 100%; }
.cart-link { border-color: transparent; background: var(--vidaro-green-dark); color: #fff; box-shadow: 0 8px 22px rgba(16,47,36,.16); }
.cart-link:hover { color: var(--vidaro-green-dark); background: var(--vidaro-honey); }

.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 650px;
	padding: 86px 0 78px;
	background:
		radial-gradient(circle at 77% 22%, rgba(232,184,63,.36) 0 5%, transparent 25%),
		radial-gradient(circle at 15% 88%, rgba(71,107,45,.16), transparent 28%),
		linear-gradient(118deg, #f9f2df 0%, #f1ead8 48%, #dce8d1 100%);
}
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 330px;
	height: 580px;
	border: 2px solid rgba(71,107,45,.2);
	border-radius: 100% 0 100% 0;
	transform: rotate(28deg);
}
.hero::before { left: -180px; top: -240px; }
.hero::after { right: -185px; bottom: -330px; transform: rotate(205deg); }
.hero-grid { grid-template-columns: .92fr 1.08fr; gap: 70px; }
.hero-content { position: relative; z-index: 2; }
.hero h1 {
	max-width: 680px;
	font-size: clamp(52px, 6vw, 80px);
	font-weight: 700;
	letter-spacing: -.045em;
}
.hero h1 em { color: var(--vidaro-terracotta); font-weight: 600; }
.hero-copy { max-width: 590px; color: #59675e; font-size: 18px; line-height: 1.8; }
.eyebrow { color: var(--vidaro-terracotta); font-size: 12px; letter-spacing: .18em; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-left: 20px; padding: 12px 4px; border-bottom: 1px solid var(--vidaro-green-dark); font-weight: 800; }
.hero-proof { display: flex; flex-direction: column; margin-top: 44px; padding-left: 18px; border-left: 3px solid var(--vidaro-gold); }
.hero-proof strong { color: var(--vidaro-green-dark); font-size: 18px; }
.hero-proof span { color: var(--vidaro-muted); font-size: 13px; }
.hero-products {
	position: relative;
	display: block;
	min-height: 510px;
}
.hero-products::before {
	content: "";
	position: absolute;
	inset: 45px 58px 25px 78px;
	border-radius: 48% 52% 44% 56% / 56% 40% 60% 44%;
	background: var(--vidaro-green-dark);
	box-shadow: 32px 34px 0 rgba(214,165,44,.38);
}
.hero-product {
	position: absolute;
	overflow: visible;
	width: 39%;
	padding: 9px 9px 38px;
	border: 1px solid rgba(255,255,255,.8);
	border-radius: 28px;
	background: rgba(255,255,255,.92);
	box-shadow: 0 24px 50px rgba(16,47,36,.22);
	transition: transform .25s ease;
}
.hero-product:hover { transform: translateY(-8px) rotate(0); }
.hero-product img { border-radius: 20px; }
.hero-product span {
	position: absolute;
	right: 12px;
	bottom: 10px;
	left: 12px;
	overflow: hidden;
	color: var(--vidaro-green-dark);
	font-size: 11px;
	font-weight: 800;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.hero-product-1 { left: 2%; top: 118px; transform: rotate(-8deg); }
.hero-product-2 { z-index: 2; left: 31%; top: 28px; width: 43%; transform: rotate(3deg); }
.hero-product-3 { right: 0; top: 170px; transform: rotate(9deg); }

.benefits { padding: 0; border: 0; background: var(--vidaro-green-dark); color: #fff; }
.benefit-grid { gap: 0; }
.benefit { min-height: 118px; padding: 24px 26px; border-right: 1px solid rgba(255,255,255,.12); }
.benefit:last-child { border-right: 0; }
.benefit-icon { background: rgba(232,184,63,.14); color: var(--vidaro-honey); }
.benefit-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit strong { color: #fff; font-size: 16px; }
.benefit span { color: rgba(255,255,255,.65); }

.section { padding: 94px 0; }
.categories-section { position: relative; overflow: hidden; background: #f7f1e4; }
.categories-section::before {
	content: "VIDARO";
	position: absolute;
	top: 26px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(23,61,45,.035);
	font-family: "Open Sans", system-ui, sans-serif;
	font-size: clamp(100px, 17vw, 230px);
	font-weight: 700;
	letter-spacing: .09em;
}
.section-heading { position: relative; }
.section-heading h2 { font-weight: 700; font-size: clamp(38px, 5vw, 56px); letter-spacing: -.035em; }
.category-grid { grid-template-columns: repeat(6, 1fr); gap: 15px; }
.category-card {
	position: relative;
	min-height: 310px;
	border: 0;
	border-radius: 110px 110px 22px 22px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(23,61,45,.1);
	transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:nth-child(2n) { background: #e1ead8; }
.category-card:nth-child(3n) { background: #f5dfaa; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--vidaro-shadow); }
.category-card img { height: 205px; aspect-ratio: 1; object-fit: cover; mix-blend-mode: multiply; }
.category-card-content { padding: 16px 14px 22px; text-align: center; }
.category-card h3 { font-size: 18px; line-height: 1.15; }
.category-card p { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.story-section { position: relative; overflow: hidden; padding: 110px 0; background: var(--vidaro-green-deep); color: #eaf0e6; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 95px; }
.story-art {
	position: relative;
	min-height: 470px;
	border-radius: 50% 50% 45% 55%;
	background:
		radial-gradient(circle at 38% 32%, #f2c75c 0 5%, transparent 5.5%),
		radial-gradient(circle at 63% 57%, #b85f3c 0 7%, transparent 7.5%),
		linear-gradient(145deg, #dfe8cf, #8da66f);
	box-shadow: 26px 30px 0 rgba(214,165,44,.22);
}
.story-art::before,
.story-art::after {
	content: "";
	position: absolute;
	width: 150px;
	height: 280px;
	border: 3px solid rgba(255,255,255,.42);
	border-radius: 100% 0 100% 0;
}
.story-art::before { left: 56px; top: 28px; transform: rotate(-24deg); }
.story-art::after { right: 55px; bottom: 22px; transform: rotate(150deg); }
.honey-orbit { position: absolute; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.honey-orbit-one { inset: 68px 40px 82px; transform: rotate(-18deg); }
.honey-orbit-two { inset: 100px 68px 50px; transform: rotate(28deg); }
.story-seal {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 178px;
	height: 178px;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(23,61,45,.25);
	border-radius: 50%;
	background: #fffaf0;
	color: var(--vidaro-green-dark);
	box-shadow: 0 20px 40px rgba(16,47,36,.25);
	text-align: center;
	align-content: center;
}
.story-seal strong { font-size: 27px; letter-spacing: .16em; }
.story-seal span { color: var(--vidaro-terracotta); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.story-content h2 { margin: 4px 0 24px; color: #fff; font-size: clamp(40px, 5vw, 60px); font-weight: 700; letter-spacing: -.035em; line-height: 1.08; }
.story-content > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.7); font-size: 17px; }
.story-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 26px; margin: 28px 0 34px; padding: 0; list-style: none; }
.story-list li { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.story-list svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--vidaro-honey); color: var(--vidaro-green-dark); fill: none; stroke: currentColor; stroke-width: 3; }
.button-gold { background: var(--vidaro-honey); color: var(--vidaro-green-dark); }
.button-gold:hover { background: #fff; color: var(--vidaro-green-dark); }

.woocommerce ul.products li.product,
.product-card { border: 0; background: #fff; box-shadow: 0 14px 36px rgba(23,61,45,.09); transition: transform .25s ease, box-shadow .25s ease; }
.woocommerce ul.products li.product:hover,
.product-card:hover { transform: translateY(-7px); box-shadow: 0 22px 44px rgba(23,61,45,.15); }
.woocommerce ul.products li.product a img,
.product-card img { background: #f5f0e5; }
.woocommerce ul.products li.product .price,
.product-card .price { color: var(--vidaro-terracotta); }
.woocommerce span.onsale { min-width: auto; min-height: auto; padding: 8px 12px; border-radius: 0 16px 16px 0; background: var(--vidaro-terracotta); line-height: 1; }

.nature-banner {
	position: relative;
	overflow: hidden;
	padding: 64px 0;
	background: var(--vidaro-honey);
}
.nature-banner::before,
.nature-banner::after {
	content: "";
	position: absolute;
	width: 190px;
	height: 310px;
	border: 2px solid rgba(23,61,45,.2);
	border-radius: 100% 0;
}
.nature-banner::before { left: -65px; top: -130px; transform: rotate(28deg); }
.nature-banner::after { right: -60px; bottom: -160px; transform: rotate(210deg); }
.nature-banner-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nature-banner .eyebrow { color: var(--vidaro-green-dark); }
.nature-banner h2 { max-width: 780px; margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; }
.button-light { background: #fffdf8; color: var(--vidaro-green-dark); white-space: nowrap; }
.button-light:hover { background: var(--vidaro-green-dark); color: #fff; }

.site-footer { position: relative; overflow: hidden; padding-top: 76px; background: #0d2b21; }
.site-footer::after { content: ""; position: absolute; right: -90px; bottom: -190px; width: 310px; height: 410px; border: 2px solid rgba(232,184,63,.14); border-radius: 100% 0; transform: rotate(25deg); }
.footer-logo { width: 190px; }
.site-footer h2 { color: var(--vidaro-honey); font-size: 21px; }
.site-footer a:hover { color: var(--vidaro-honey); }

@media (max-width: 1100px) {
	.category-grid { grid-template-columns: repeat(3, 1fr); }
	.category-card { border-radius: 140px 140px 22px 22px; }
}

@media (max-width: 980px) {
	.announcement-inner span:nth-child(2),
	.announcement-inner span:nth-child(3) { display: none; }
	.hero { min-height: auto; }
	.hero-grid { gap: 30px; }
	.hero-products { width: min(100%, 650px); margin: 0 auto; }
	.story-grid { grid-template-columns: 1fr; gap: 65px; }
	.story-art { width: min(100%, 560px); margin: 0 auto; }
}

@media (max-width: 700px) {
	.announcement-inner { justify-content: center; }
	.announcement-inner a { display: none; }
	.hero { padding: 58px 0 44px; }
	.hero h1 { font-size: clamp(45px, 14vw, 64px); }
	.text-link { margin-left: 12px; }
	.hero-products { min-height: 340px; }
	.hero-products::before { inset: 40px 40px 15px; }
	.hero-product { width: 40%; padding: 6px 6px 30px; border-radius: 18px; }
	.hero-product img { border-radius: 14px; }
	.hero-product-1 { top: 105px; }
	.hero-product-2 { top: 25px; }
	.hero-product-3 { top: 118px; }
	.benefit { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
	.category-grid { grid-template-columns: repeat(2, 1fr); }
	.category-card { min-height: 250px; border-radius: 90px 90px 18px 18px; }
	.category-card img { height: 155px; }
	.story-section { padding: 75px 0; }
	.story-art { min-height: 360px; }
	.story-list { grid-template-columns: 1fr; }
	.nature-banner-inner { align-items: flex-start; flex-direction: column; }
}

/* Version 0.4 — faithful continuation of the original Vidaro design. */
.original-home {
	color: #888;
	background: #fff;
}

.site-header {
	position: relative;
	top: auto;
	background: #22333a;
	border: 0;
	backdrop-filter: none;
}

.vidaro-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	background: #eef0e8;
}
.vidaro-slides {
	position: relative;
	height: clamp(330px, 42.5vw, 680px);
}
.vidaro-slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	pointer-events: none;
	transition: opacity .7s ease;
}
.vidaro-slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}
.vidaro-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.slider-arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	display: grid;
	place-items: center;
	width: 48px;
	height: 58px;
	padding: 0;
	transform: translateY(-50%);
	border: 0;
	background: rgba(34, 51, 58, .82);
	color: #fff;
	font: 300 38px/1 "Open Sans", sans-serif;
	cursor: pointer;
	opacity: 0;
	transition: opacity .2s ease, background .2s ease;
}
.vidaro-slider:hover .slider-arrow,
.slider-arrow:focus-visible { opacity: 1; }
.slider-arrow:hover { background: #efbd3e; color: #26363c; }
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-dots {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 22px;
	left: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.slider-dots button {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: rgba(34, 51, 58, .45);
	box-shadow: 0 1px 4px rgba(0,0,0,.25);
	cursor: pointer;
}
.slider-dots button.is-active { background: #efbd3e; }
.admin-bar .site-header { top: auto; }
.header-inner {
	min-height: 110px;
	grid-template-columns: 220px 1fr auto;
}
.site-logo img {
	width: 170px;
	max-height: 98px;
	filter: brightness(0) invert(1);
}
.primary-menu { gap: 28px; }
.primary-menu a {
	min-width: 92px;
	padding: 26px 18px;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}
.primary-menu > li > a::after { display: none; }
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu a:hover {
	background: #efbd3e;
	color: #26363c;
}
.primary-menu .sub-menu { top: calc(100% - 15px); border-radius: 2px; }
.primary-menu .sub-menu a {
	min-width: auto;
	padding: 10px 18px;
	border-radius: 0;
	color: #333;
	text-align: left;
}
.cart-link {
	padding: 10px 14px;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: #fff;
}
.cart-link:hover { background: transparent; color: #efbd3e; }

.original-intro {
	padding: 72px 0;
	background: #fff;
}
.intro-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 65px;
}
.intro-kicker {
	margin: 0 0 12px;
	color: #4fc2a0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.intro-copy h1 {
	margin: 0 0 20px;
	color: #28373c;
	font-size: clamp(34px, 4.4vw, 56px);
	font-weight: 600;
	line-height: 1.17;
	letter-spacing: -.03em;
}
.intro-copy > p:not(.intro-kicker) {
	max-width: 570px;
	margin-bottom: 28px;
	font-size: 16px;
	line-height: 1.8;
}
.original-button { border-radius: 3px; background: #efbd3e; color: #26363c; }
.original-button:hover { background: #26363c; color: #fff; }
.intro-product {
	overflow: hidden;
	background: #f5f5f5;
}
.intro-product img { display: block; width: 100%; min-height: 300px; object-fit: cover; }

.original-benefits { background: #fff; }
.original-benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid #e6e6e6;
}
.original-benefit {
	display: grid;
	grid-template-columns: 46px 1fr;
	align-items: center;
	gap: 12px;
	min-height: 114px;
	padding: 20px 18px;
}
.original-benefit img {
	width: 38px;
	height: 30px;
	object-fit: contain;
	filter: grayscale(1);
}
.original-benefit strong {
	display: block;
	margin-bottom: 3px;
	color: #303c40;
	font-size: 15px;
	font-weight: 600;
}
.original-benefit span { display: block; color: #999; font-size: 12px; line-height: 1.35; }

.original-section { padding: 58px 0 0; }
.promo-grid { display: grid; grid-template-columns: 1fr 2.09fr 1fr; gap: 24px; }
.promo-grid a { display: block; overflow: hidden; background: #f5f5f5; }
.promo-grid img { display: block; width: 100%; aspect-ratio: 330 / 315; object-fit: cover; transition: transform .25s ease; }
.promo-grid a:nth-child(2) img { aspect-ratio: 690 / 315; }
.promo-grid a:hover img { transform: scale(1.02); }

.original-heading { margin-bottom: 26px; }
.original-heading h2 {
	margin: 0 0 5px;
	color: #303c40;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: capitalize;
}
.original-heading p { margin: 0; color: #999; font-size: 13px; }
.original-heading-line h2 {
	position: relative;
	padding-bottom: 15px;
	border-bottom: 1px solid #e5e5e5;
	font-size: 16px;
}
.original-heading-line h2::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 78px;
	height: 2px;
	background: #4fc2a0;
}
.original-heading-line p { margin-top: 26px; }

.original-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.original-category {
	position: relative;
	display: block;
	min-height: 170px;
	overflow: hidden;
	background: #f4f4f4;
	color: #333;
}
.original-category::before,
.original-category::after {
	content: "";
	position: absolute;
	z-index: 1;
	opacity: 1;
	pointer-events: none;
}
.original-category::before {
	inset: 0 50%;
	background: rgba(255,255,255,.3);
}
.original-category::after {
	inset: 50% 0;
	background: rgba(255,255,255,.6);
}
.original-category > div {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 32px;
	width: 52%;
	padding: 0;
	transform: translateY(-50%);
}
.original-category h3 { margin: 0 0 6px; color: #303c40; font-size: 19px; font-weight: 600; }
.original-category span { display: block; margin-bottom: 12px; color: #999; font-size: 12px; }
.original-category b {
	display: flex;
	align-items: center;
	color: #253237;
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
	white-space: nowrap;
}
.original-category i,
.original-blog-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	margin-left: 4px;
	border-radius: 50%;
	background: #4fc2a0;
	color: #fff;
	font-style: normal;
	line-height: 1;
}
.original-category i::before {
	content: "›";
	display: block;
	margin-top: -2px;
	font-size: 14px;
	font-weight: 700;
}
.original-category img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 170px;
	object-fit: cover;
}
.original-category:hover::before {
	right: 0;
	left: 0;
	opacity: 0;
	transition: 900ms linear;
}
.original-category:hover::after {
	top: 0;
	bottom: 0;
	opacity: 0;
	transition: 900ms linear;
}

.products-original { padding-top: 68px; }
.products-original .woocommerce ul.products { gap: 28px; }
.products-original .woocommerce ul.products li.product {
	padding-bottom: 20px;
	border: 1px solid #eee;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,.04);
}
.products-original .woocommerce ul.products li.product:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0,0,0,.07); }
.products-original .woocommerce ul.products li.product a img { background: #f7f7f7; }
.products-original .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 0;
	margin: 5px 0 12px !important;
	overflow: hidden;
	color: #303c40;
	font-size: 14px !important;
	font-weight: 600;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.loop-product-category {
	display: block;
	margin: 16px 18px 0;
	color: #aaa;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.products-original .woocommerce ul.products li.product .price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	min-height: 29px;
	color: #d32f34;
	font-size: 18px;
}
.products-original .woocommerce ul.products li.product .price del {
	color: #aaa;
	font-size: 12px;
	font-weight: 400;
	opacity: 1;
}
.products-original .woocommerce ul.products li.product .price ins { color: #d32f34; text-decoration: none; }
.products-original .woocommerce ul.products li.product .button { display: none; }
.products-original .woocommerce span.onsale { display: none; }
.salves-original { padding-top: 72px; }

.blog-original { padding: 72px 0 88px; }
.original-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.original-blog-card {
	position: relative;
	min-height: 300px;
	overflow: hidden;
	border-radius: 5px;
	background: #f7f7f7;
}
.original-blog-image {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 300ms ease-in-out;
}
.original-blog-image a,
.original-blog-image img {
	display: block;
	width: 100%;
	height: 100%;
}
.original-blog-image img {
	object-fit: cover;
	transition: transform .3s ease;
}
.original-blog-content {
	position: relative;
	z-index: 1;
	min-height: 300px;
	padding: 30px 30px 22px;
	background: #f7f7f7;
	transition: background 300ms ease-in-out;
}
.original-blog-card time {
	display: inline-block;
	margin-bottom: 25px;
	padding: 7px 20px;
	border-radius: 999px;
	background: #26373d;
	color: #fff;
	font-size: 11px;
	text-transform: uppercase;
	transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.original-blog-card time strong { font-weight: 400; }
.original-blog-card h3 { margin: 0 0 14px; font-size: 17px; font-weight: 700; line-height: 1.45; }
.original-blog-card h3 a { color: #303c40; }
.original-blog-card p { margin: 0 0 24px; color: #777; font-size: 13px; line-height: 1.7; }
.original-blog-card .read-more { color: #333; font-size: 12px; font-weight: 500; }
.original-blog-card:hover .original-blog-image { opacity: 1; }
.original-blog-card:hover .original-blog-image img { transform: scale(1.02); }
.original-blog-card:hover .original-blog-content { background: rgba(37,50,55,.8); }
.original-blog-card:hover h3 a,
.original-blog-card:hover p,
.original-blog-card:hover .read-more { color: #fff; }
.original-blog-card:hover time { background: #fff; color: #253237; }

.site-footer {
	padding: 68px 0 24px;
	background: #f2f2f2;
	color: #777;
}
.site-footer::after { display: none; }
.footer-grid { grid-template-columns: 1.25fr .72fr .64fr 1.25fr; gap: 48px; }
.footer-logo { width: 150px; filter: none; }
.site-footer h2 {
	padding-bottom: 14px;
	border-bottom: 1px solid #ddd;
	color: #303c40;
	font-size: 16px;
	font-weight: 600;
}
.site-footer a { color: #777; }
.site-footer a:hover { color: #4fc2a0; }
.footer-bottom { border-top-color: #ddd; color: #888; }
.footer-brand {
	padding-right: 42px;
	border-right: 1px solid #e2e2e2;
}
.footer-brand > p { max-width: 350px; margin: 24px 0; font-size: 13px; line-height: 1.85; }
.footer-phone {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #303c40 !important;
}
.footer-phone svg {
	width: 48px;
	height: 48px;
	fill: none;
	stroke: #4fc2a0;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.footer-phone span { display: flex; flex-direction: column; }
.footer-phone small { color: #777; font-size: 12px; text-transform: uppercase; }
.footer-phone strong { font-size: 20px; font-weight: 500; }
.footer-social { display: flex; gap: 18px; margin-top: 30px; }
.footer-social a { font-size: 22px; font-weight: 700; }
.footer-column .footer-menu { gap: 9px; }
.footer-newsletter > p { margin: 0 0 7px; font-size: 13px; line-height: 1.7; }
.footer-newsletter form { margin-top: 24px; }
.footer-newsletter .mc4wp-form-fields { display: flex; align-items: stretch; }
.footer-newsletter input[type="email"] {
	width: 100%;
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 24px 0 0 24px;
	background: #fff;
	font: inherit;
}
.footer-newsletter input[type="submit"],
.footer-newsletter button[type="submit"] {
	min-height: 44px;
	padding: 0 22px;
	border: 0;
	border-radius: 0 24px 24px 0;
	background: #26373d;
	color: #fff;
	font: inherit;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
}
.footer-newsletter input[type="submit"]:hover,
.footer-newsletter button[type="submit"]:hover { background: #4fc2a0; }

@media (max-width: 980px) {
	.header-inner { grid-template-columns: 170px 1fr auto; }
	.primary-navigation { background: #22333a; border: 0; }
	.primary-menu a { min-width: auto; padding: 12px 16px; text-align: left; }
	.intro-grid { grid-template-columns: 1fr; }
	.original-benefit-grid { grid-template-columns: repeat(2, 1fr); }
	.promo-grid { grid-template-columns: 1fr 2fr; }
	.promo-grid a:last-child { display: none; }
	.original-category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
	.header-inner { min-height: 88px; }
	.site-logo img { width: 135px; height: auto; }
	.menu-toggle { color: #fff; }
	.original-intro { padding: 42px 0; }
	.intro-product img { min-height: 190px; }
	.original-benefit-grid,
	.promo-grid,
	.original-category-grid,
	.original-blog-grid { grid-template-columns: 1fr; }
	.promo-grid a:last-child { display: block; }
	.promo-grid img { height: auto; max-height: 290px; }
	.original-benefit { min-height: 95px; }
	.original-section { padding-top: 45px; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-brand { padding-right: 0; border-right: 0; }
	.vidaro-slides { height: 46vw; min-height: 210px; max-height: 330px; }
	.slider-arrow { width: 38px; height: 48px; font-size: 30px; opacity: .75; }
	.slider-dots { bottom: 12px; }
}

@media (max-width: 420px) {
	.woocommerce ul.products,
	.product-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.woocommerce ul.products li.product,
	.product-card {
		width: 100% !important;
		min-width: 0;
	}
	.products-original .woocommerce-loop-product__title {
		-webkit-line-clamp: 2;
	}
	.products-original .woocommerce ul.products li.product .price {
		flex-flow: row wrap;
	}
}

/* Shop archive — faithful to the original Ecolife catalogue. */
.post-type-archive-product .site-main,
.tax-product_cat .site-main {
	padding-top: 26px;
	background: #fff;
}
.post-type-archive-product .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-breadcrumb {
	margin: 0 0 66px;
	color: #253237;
	font-size: 15px;
}
.post-type-archive-product .woocommerce-products-header,
.tax-product_cat .woocommerce-products-header {
	display: none;
}
.post-type-archive-product .shop-main > .page-title,
.tax-product_cat .shop-main > .page-title { display: none; }
.post-type-archive-product .woocommerce::after,
.tax-product_cat .woocommerce::after {
	content: "";
	display: block;
	clear: both;
}
.post-type-archive-product .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count {
	float: left;
	margin: 10px 0 42px 30px;
	color: #888;
	font-size: 14px;
}
.post-type-archive-product .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering {
	float: right;
	margin: 0 20px 42px 10px;
}
.post-type-archive-product .woocommerce-ordering select,
.tax-product_cat .woocommerce-ordering select {
	min-width: 286px;
	height: 42px;
	padding: 0 44px 0 16px;
	border: 1px solid #e4e4e4;
	border-radius: 0;
	background: #fff;
	color: #777;
	font: inherit;
}
.shop-view-switcher {
	float: left;
	display: flex;
	gap: 10px;
	margin: 6px 0 42px;
}
.shop-view-button {
	display: grid;
	width: 34px;
	height: 34px;
	padding: 7px;
	border: 0;
	background: transparent;
	color: #888;
	cursor: pointer;
}
.shop-view-button:first-child {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 3px;
}
.shop-view-button:last-child {
	grid-template-rows: repeat(3, 1fr);
	gap: 3px;
}
.shop-view-button span { display: block; background: currentColor; }
.shop-view-button.is-active,
.shop-view-button:hover { color: #4fc2a0; }
.post-type-archive-product ul.products,
.tax-product_cat ul.products {
	clear: both;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
	margin: 0;
}
.post-type-archive-product ul.products li.product,
.tax-product_cat ul.products li.product {
	position: relative;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,.06);
	transform: none;
	transition: box-shadow .25s ease;
}
.post-type-archive-product ul.products li.product:hover,
.tax-product_cat ul.products li.product:hover {
	box-shadow: 0 12px 30px rgba(0,0,0,.1);
	transform: none;
}
.post-type-archive-product ul.products li.product a img,
.tax-product_cat ul.products li.product a img {
	aspect-ratio: 1;
	margin: 0 0 11px;
	background: #fff;
	object-fit: cover;
}
.post-type-archive-product .loop-product-category,
.tax-product_cat .loop-product-category {
	display: block;
	margin: 0 10px 6px;
	color: #888;
	font-size: 12px;
	line-height: 1.8;
	opacity: .9;
}
.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
	min-height: 29px;
	margin: 0 10px 10px;
	padding: 0;
	color: #111;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}
.post-type-archive-product ul.products li.product .price,
.tax-product_cat ul.products li.product .price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	min-height: 43px;
	margin: 0;
	padding: 0 10px 23px;
	color: #555;
	font-size: 15px;
	font-weight: 600;
}
.post-type-archive-product ul.products li.product .price del,
.tax-product_cat ul.products li.product .price del {
	color: #999;
	font-size: 13px;
	opacity: 1;
}
.post-type-archive-product ul.products li.product .price ins,
.tax-product_cat ul.products li.product .price ins {
	color: #d32f34;
	text-decoration: none;
}
.post-type-archive-product ul.products li.product .button,
.tax-product_cat ul.products li.product .button {
	position: absolute;
	right: 10px;
	bottom: 16px;
	left: 10px;
	z-index: 3;
	margin: 0;
	padding: 12px 18px;
	border-radius: 22px;
	background: #4fc2a0;
	color: #fff;
	font-size: 13px;
	text-align: center;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.post-type-archive-product ul.products li.product:hover .button,
.post-type-archive-product ul.products li.product:focus-within .button,
.tax-product_cat ul.products li.product:hover .button,
.tax-product_cat ul.products li.product:focus-within .button {
	opacity: 1;
	transform: translateY(0);
}
.post-type-archive-product ul.products li.product .button:hover,
.tax-product_cat ul.products li.product .button:hover { background: #26373d; }
.post-type-archive-product .woocommerce span.onsale,
.tax-product_cat .woocommerce span.onsale {
	top: 18px;
	right: auto;
	left: 0;
	padding: 7px 12px;
	border-radius: 0 16px 16px 0;
	background: #d29b3d;
}
ul.products.is-list-view { grid-template-columns: 1fr; }
ul.products.is-list-view li.product {
	display: grid;
	grid-template-columns: 260px 1fr;
	min-height: 260px;
	padding: 0;
}
ul.products.is-list-view li.product a.woocommerce-loop-product__link {
	display: contents;
}
ul.products.is-list-view li.product a img {
	grid-row: 1 / 5;
	width: 260px;
	height: 260px;
	margin: 0;
}
ul.products.is-list-view li.product .loop-product-category { margin-top: 42px; }
ul.products.is-list-view li.product .button {
	right: 28px;
	bottom: 28px;
	left: auto;
	min-width: 170px;
	opacity: 1;
	transform: none;
}

@media (max-width: 980px) {
	.post-type-archive-product ul.products,
	.tax-product_cat ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
	.post-type-archive-product .woocommerce-breadcrumb,
	.tax-product_cat .woocommerce-breadcrumb { margin-bottom: 34px; }
	.post-type-archive-product .woocommerce-result-count,
	.tax-product_cat .woocommerce-result-count { margin-left: 0; }
	.post-type-archive-product .woocommerce-ordering,
	.tax-product_cat .woocommerce-ordering {
		float: none;
		clear: both;
		margin: 0 0 24px;
	}
	.post-type-archive-product .woocommerce-ordering select,
	.tax-product_cat .woocommerce-ordering select { width: 100%; min-width: 0; }
	.post-type-archive-product ul.products,
	.tax-product_cat ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
	ul.products.is-list-view li.product { grid-template-columns: 130px 1fr; min-height: 170px; }
	ul.products.is-list-view li.product a img { width: 130px; height: 170px; }
	ul.products.is-list-view li.product .loop-product-category { margin-top: 18px; }
	ul.products.is-list-view li.product .button { right: 14px; bottom: 14px; min-width: 140px; }
}

@media (max-width: 420px) {
	.post-type-archive-product ul.products,
	.tax-product_cat ul.products { grid-template-columns: 1fr; }
}

/* Single product — clearer modern purchase flow while retaining Vidaro identity. */
.single-product .site-main {
	padding-top: 24px;
	background: #fff;
}
.product-breadcrumb .woocommerce-breadcrumb {
	margin: 0 0 48px;
	color: #8a9490;
	font-size: 13px;
}
.product-breadcrumb .woocommerce-breadcrumb a { color: #4fc2a0; }
.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
	column-gap: clamp(42px, 6vw, 80px);
	align-items: start;
}
.single-product div.product > .images {
	grid-column: 1;
	grid-row: 1 / span 3;
	overflow: hidden;
	border: 1px solid #edf0ee;
	border-radius: 18px;
	background: #f8f8f6;
	box-shadow: 0 14px 40px rgba(37,50,55,.07);
}
.single-product div.product > .images img { border-radius: 18px; }
.single-product div.product > .summary {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	padding-top: 4px;
}
.single-product div.product .product_title {
	margin: 0 0 18px;
	color: #25373d;
	font-size: clamp(34px, 4.2vw, 52px);
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1.08;
}
.single-product div.product p.price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 26px;
	color: #25373d;
	font-size: 25px;
	font-weight: 700;
}
.single-product div.product p.price del {
	color: #98a09d;
	font-size: 18px;
	font-weight: 400;
	opacity: 1;
}
.single-product div.product p.price ins {
	color: #c14b32;
	text-decoration: none;
}
.single-product .woocommerce-product-details__short-description {
	margin: 0 0 24px;
	padding: 24px 26px;
	border: 1px solid #e7ece9;
	border-radius: 16px;
	background: #f8faf8;
	box-shadow: 0 8px 24px rgba(37,50,55,.04);
}
.single-product .woocommerce-product-details__short-description h3 {
	margin: 0 0 15px;
	color: #25373d;
	font-size: 18px;
}
.single-product .woocommerce-product-details__short-description ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.single-product .woocommerce-product-details__short-description li {
	position: relative;
	padding-left: 27px;
	color: #6f7774;
	font-size: 14px;
}
.single-product .woocommerce-product-details__short-description li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #4fc2a0;
	font-weight: 800;
}
.single-product .woocommerce-product-details__short-description strong { color: #303c40; }
.single-product div.product form.cart {
	display: flex;
	align-items: stretch;
	gap: 12px;
	margin: 0 0 28px;
}
.single-product div.product form.cart .quantity {
	display: grid;
	grid-template-columns: 38px 48px 38px;
	overflow: hidden;
	border: 1px solid #dfe5e2;
	border-radius: 999px;
	background: #fff;
}
.single-product div.product form.cart .quantity input.qty {
	width: 48px;
	height: 50px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #25373d;
	font: inherit;
	font-weight: 700;
	text-align: center;
	appearance: textfield;
}
.single-product div.product form.cart .quantity input.qty::-webkit-inner-spin-button,
.single-product div.product form.cart .quantity input.qty::-webkit-outer-spin-button { margin: 0; appearance: none; }
.quantity-step {
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #4fc2a0;
	font-size: 22px;
	cursor: pointer;
}
.quantity-step:hover { background: #f0f8f5; color: #25373d; }
.single-product div.product form.cart .single_add_to_cart_button {
	flex: 1;
	min-height: 52px;
	margin: 0;
	padding: 0 30px;
	border-radius: 999px;
	background: #4fc2a0 !important;
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .025em;
	text-transform: uppercase;
	box-shadow: 0 9px 22px rgba(79,194,160,.25);
}
.single-product div.product form.cart .single_add_to_cart_button:hover {
	background: #25373d !important;
	transform: translateY(-1px);
}
.single-product .product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	padding-top: 20px;
	border-top: 1px solid #e9ecea;
	color: #858d89;
	font-size: 13px;
}
.single-product .product_meta a { color: #4fc2a0; }
.single-product div.product > .onsale {
	z-index: 3;
	top: 18px;
	left: 0;
	padding: 8px 14px;
	border-radius: 0 18px 18px 0;
	background: #c55d39;
	font-size: 12px;
	line-height: 1;
}
.single-product div.product > .woocommerce-tabs,
.single-product div.product > .related,
.single-product div.product > .upsells {
	grid-column: 1 / -1;
}
.single-product div.product > .woocommerce-tabs {
	grid-row: 4;
	margin-top: 70px;
}
.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 8px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0;
}
.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.single-product .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #f0f3f1 !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
	padding: 11px 20px !important;
	color: #6f7774 !important;
	font-size: 13px;
	font-weight: 700 !important;
}
.single-product .woocommerce-tabs ul.tabs li.active { background: #25373d !important; }
.single-product .woocommerce-tabs ul.tabs li.active a { color: #fff !important; }
.single-product div.product .woocommerce-tabs .panel {
	margin: 18px 0 0 !important;
	padding: clamp(28px, 4vw, 44px) !important;
	border: 1px solid #e7ece9;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(37,50,55,.05);
}
.single-product div.product .woocommerce-tabs .panel > :first-child { margin-top: 0; }
.single-product div.product .woocommerce-tabs .panel > :last-child { margin-bottom: 0; }
.single-product div.product .woocommerce-tabs .panel h2 {
	margin-top: 0;
	color: #25373d;
	font-size: 24px;
}
.single-product div.product > .upsells {
	grid-row: 5;
	margin-top: 65px;
}
.single-product div.product > .related {
	grid-row: 6;
	margin-top: 65px;
}
.single-product :is(.related, .upsells) > h2 {
	margin: 0 0 30px;
	color: #25373d;
	font-size: 30px;
}
.single-product :is(.related, .upsells) ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}
.single-product :is(.related, .upsells) ul.products li.product {
	position: relative;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,.06);
	transform: none;
	transition: box-shadow .25s ease;
}
.single-product :is(.related, .upsells) ul.products li.product:hover {
	box-shadow: 0 12px 30px rgba(0,0,0,.1);
	transform: none;
}
.single-product :is(.related, .upsells) ul.products li.product a img {
	aspect-ratio: 1;
	margin: 0 0 11px;
	background: #fff;
	object-fit: cover;
}
.single-product :is(.related, .upsells) .loop-product-category {
	display: block;
	margin: 0 10px 6px;
	color: #888;
	font-size: 12px;
	line-height: 1.8;
	opacity: .9;
}
.single-product :is(.related, .upsells) ul.products li.product .woocommerce-loop-product__title {
	min-height: 42px;
	margin: 0 10px 10px;
	padding: 0;
	color: #111;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}
.single-product :is(.related, .upsells) ul.products li.product .price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	min-height: 43px;
	margin: 0;
	padding: 0 10px 23px;
	color: #555;
	font-size: 15px;
	font-weight: 600;
}
.single-product :is(.related, .upsells) ul.products li.product .price del {
	color: #999;
	font-size: 13px;
	opacity: 1;
}
.single-product :is(.related, .upsells) ul.products li.product .price ins {
	color: #d32f34;
	text-decoration: none;
}
.single-product :is(.related, .upsells) ul.products li.product .button {
	position: absolute;
	right: 10px;
	bottom: 16px;
	left: 10px;
	z-index: 3;
	margin: 0;
	padding: 12px 18px;
	border-radius: 22px;
	background: #4fc2a0;
	color: #fff;
	font-size: 13px;
	text-align: center;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.single-product :is(.related, .upsells) ul.products li.product:hover .button,
.single-product :is(.related, .upsells) ul.products li.product:focus-within .button {
	opacity: 1;
	transform: translateY(0);
}
.single-product :is(.related, .upsells) ul.products li.product .button:hover { background: #26373d; }
.single-product :is(.related, .upsells) span.onsale {
	top: 18px;
	right: auto;
	left: 0;
	padding: 7px 12px;
	border-radius: 0 16px 16px 0;
	background: #c55d39;
	font-size: 12px;
	line-height: 1;
}

@media (max-width: 900px) {
	.single-product div.product {
		grid-template-columns: 1fr;
		row-gap: 30px;
	}
	.single-product div.product > .images,
	.single-product div.product > .summary,
	.single-product div.product > .woocommerce-tabs,
	.single-product div.product > .related,
	.single-product div.product > .upsells {
		grid-column: 1;
		grid-row: auto;
	}
	.single-product div.product > .woocommerce-tabs { margin-top: 35px; }
	.single-product :is(.related, .upsells) ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
	.product-breadcrumb .woocommerce-breadcrumb { margin-bottom: 28px; }
	.single-product div.product .product_title { font-size: 34px; }
	.single-product div.product form.cart { flex-direction: column; }
	.single-product div.product form.cart .quantity { width: 124px; }
	.single-product .woocommerce-tabs ul.tabs { flex-wrap: wrap; }
	.single-product .woocommerce-tabs ul.tabs li a { padding: 9px 14px !important; font-size: 12px; }
	.single-product :is(.related, .upsells) ul.products { grid-template-columns: 1fr; }
	.single-product div.product .woocommerce-tabs .panel { padding: 22px !important; }
}

/* Cart — compact products and a clear order summary. */
.woocommerce-cart .site-main {
	padding-top: 52px;
	background: #fff;
}
.woocommerce-cart .page-header { margin-bottom: 38px; }
.woocommerce-cart .page-header h1 {
	color: #25373d;
	font-size: clamp(38px, 5vw, 52px);
	letter-spacing: -.035em;
}
.woocommerce-cart div.woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(340px, .75fr);
	gap: 42px;
	align-items: start;
}
.woocommerce-cart .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.woocommerce-cart .woocommerce-cart-form {
	grid-column: 1;
	margin: 0;
}
.woocommerce-cart .cart-collaterals {
	grid-column: 2;
	width: auto;
}
.woocommerce-cart .cart-collaterals .cart_totals {
	float: none;
	width: auto;
	padding: 28px;
	border: 1px solid #e4eae7;
	border-radius: 18px;
	background: #f8faf8;
	box-shadow: 0 12px 34px rgba(37,50,55,.07);
}
.woocommerce-cart .cart_totals h2 {
	margin: 0 0 22px;
	color: #25373d;
	font-size: 24px;
}
.woocommerce-cart table.shop_table {
	margin: 0;
	overflow: hidden;
	border: 1px solid #e4eae7;
	border-radius: 16px;
	background: #fff;
	border-collapse: separate;
}
.woocommerce-cart table.shop_table thead {
	background: #f3f6f4;
	color: #58635f;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.woocommerce-cart table.shop_table th { padding: 16px 14px; border: 0; }
.woocommerce-cart table.shop_table td {
	padding: 18px 14px;
	border-top: 1px solid #edf0ee;
	vertical-align: middle;
}
.woocommerce-cart td.product-thumbnail { width: 92px; }
.woocommerce-cart td.product-thumbnail img {
	display: block;
	width: 76px;
	height: 76px;
	border-radius: 10px;
	background: #f4f4f2;
	object-fit: cover;
}
.woocommerce-cart td.product-name a {
	color: #25373d;
	font-size: 15px;
	font-weight: 700;
}
.woocommerce-cart td.product-price,
.woocommerce-cart td.product-subtotal {
	color: #4d5753;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}
.woocommerce-cart td.product-remove { width: 38px; padding-right: 4px; padding-left: 12px; }
.woocommerce-cart a.remove {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #f5ece9;
	color: #c55d39 !important;
	font-size: 20px;
}
.woocommerce-cart a.remove:hover { background: #c55d39; color: #fff !important; }
.woocommerce-cart td.product-quantity .quantity {
	display: grid;
	grid-template-columns: 32px 42px 32px;
	width: 106px;
	overflow: hidden;
	border: 1px solid #dfe5e2;
	border-radius: 999px;
	background: #fff;
}
.woocommerce-cart td.product-quantity input.qty {
	width: 42px;
	height: 42px;
	padding: 0 !important;
	border: 0 !important;
	background: transparent;
	line-height: 42px;
	text-align: center;
	appearance: textfield;
}
.woocommerce-cart td.actions {
	padding: 14px !important;
	background: #fbfcfb;
}
.woocommerce-cart td.actions .button {
	padding: 11px 20px;
	border-radius: 999px;
	background: #25373d;
	color: #fff;
	font-size: 13px;
}
.woocommerce-cart td.actions .button:hover { background: #4fc2a0; }
.woocommerce-cart td.actions .button:disabled {
	background: #cdd3d0;
	color: #fff;
	opacity: 1;
}
.woocommerce-cart .cart_totals table.shop_table {
	border: 0;
	border-radius: 0;
	background: transparent;
}
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
	padding: 14px 0;
	border-top: 1px solid #e2e8e5;
	font-size: 14px;
	vertical-align: top;
}
.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
.woocommerce-cart .cart_totals table.shop_table tr:first-child td { border-top: 0; }
.woocommerce-cart .cart_totals table.shop_table th {
	width: 35%;
	color: #35413c;
	font-weight: 700;
}
.woocommerce-cart .cart_totals table.shop_table td { color: #626c68; }
.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
	padding-top: 20px;
	color: #25373d !important;
	font-size: 18px !important;
}
.woocommerce-cart .wc-proceed-to-checkout { padding: 22px 0 0; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	margin: 0;
	padding: 16px 22px;
	border-radius: 999px;
	background: #4fc2a0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(79,194,160,.24);
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover { background: #25373d; }
.woocommerce-cart .shipping-calculator-button {
	color: #4fc2a0;
	font-size: 13px;
	font-weight: 700;
}
.woocommerce-cart .woocommerce-shipping-destination {
	margin: 10px 0;
	color: #828b87;
	font-size: 12px;
	line-height: 1.55;
}

@media (max-width: 980px) {
	.woocommerce-cart div.woocommerce { grid-template-columns: 1fr; }
	.woocommerce-cart .woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals { grid-column: 1; }
}

@media (max-width: 700px) {
	.woocommerce-cart table.shop_table_responsive thead { display: none; }
	.woocommerce-cart table.shop_table_responsive tr.cart_item {
		display: grid;
		grid-template-columns: 38px 82px 1fr;
		padding: 14px;
		border-bottom: 1px solid #edf0ee;
	}
	.woocommerce-cart table.shop_table_responsive tr.cart_item td {
		display: block;
		width: auto;
		padding: 7px 8px;
		border: 0;
		text-align: left !important;
	}
	.woocommerce-cart table.shop_table_responsive tr.cart_item td::before { display: none; }
	.woocommerce-cart tr.cart_item td.product-remove { grid-column: 1; grid-row: 1 / 3; align-self: center; }
	.woocommerce-cart tr.cart_item td.product-thumbnail { grid-column: 2; grid-row: 1 / 3; }
	.woocommerce-cart tr.cart_item td.product-name { grid-column: 3; }
	.woocommerce-cart tr.cart_item td.product-price,
	.woocommerce-cart tr.cart_item td.product-subtotal,
	.woocommerce-cart tr.cart_item td.product-quantity { grid-column: 3; }
	.woocommerce-cart td.product-thumbnail img { width: 68px; height: 68px; }
	.woocommerce-cart .cart-collaterals .cart_totals { padding: 22px; }
}

/* Checkout — customer details left, clear order summary right. */
.woocommerce-checkout .site-main {
	padding-top: 52px;
	background: #fff;
}
.woocommerce-checkout .page-header { margin-bottom: 38px; }
.woocommerce-checkout .page-header h1 {
	color: #25373d;
	font-size: clamp(38px, 5vw, 52px);
	letter-spacing: -.035em;
}
.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(390px, .65fr);
	column-gap: 48px;
	align-items: start;
}
.woocommerce-checkout #customer_details {
	grid-column: 1;
	grid-row: 1 / 3;
	width: auto;
	margin: 0;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: auto;
}
.woocommerce-checkout #customer_details .col-2 { margin-top: 28px; }
.woocommerce-checkout #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	padding: 28px 28px 18px;
	border: 1px solid #e4eae7;
	border-bottom: 0;
	border-radius: 18px 18px 0 0;
	background: #f8faf8;
	color: #25373d;
	font-size: 24px;
}
.woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 2;
	padding: 0 28px 28px;
	border: 1px solid #e4eae7;
	border-top: 0;
	border-radius: 0 0 18px 18px;
	background: #f8faf8;
	box-shadow: 0 12px 34px rgba(37,50,55,.07);
}
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
	margin: 0 0 25px;
	color: #25373d;
	font-size: 24px;
}
.woocommerce-checkout #ship-to-different-address {
	margin: 0 0 22px;
	padding: 18px 20px;
	border: 1px solid #e4eae7;
	border-radius: 12px;
	background: #f8faf8;
	color: #25373d;
	font-size: 17px;
}
.woocommerce-checkout #ship-to-different-address label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.woocommerce-checkout #ship-to-different-address-checkbox {
	width: 18px;
	height: 18px;
	accent-color: #4fc2a0;
}
.woocommerce-checkout .woocommerce-shipping-fields:not(:has(#ship-to-different-address-checkbox:checked)) .shipping_address {
	display: none !important;
}
.woocommerce-checkout .form-row {
	margin: 0 0 18px;
	padding: 0;
}
.woocommerce-checkout .form-row label {
	margin: 0 0 7px;
	color: #4e5a55;
	font-size: 13px;
	font-weight: 700;
}
.woocommerce-checkout .form-row .required { color: #c55d39; }
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid #dce3df;
	border-radius: 10px;
	background: #fff;
	color: #25373d;
	font: inherit;
}
.woocommerce-checkout .select2-container .select2-selection--single {
	display: flex;
	align-items: center;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 12px;
	right: 8px;
}
.woocommerce-checkout .form-row textarea {
	min-height: 130px;
	resize: vertical;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
	outline: 2px solid rgba(79,194,160,.18);
	border-color: #4fc2a0;
}
.woocommerce-checkout form .form-row-first,
.woocommerce-checkout form .form-row-last { width: calc(50% - 9px); }
.woocommerce-checkout .woocommerce-checkout-review-order-table {
	margin: 0 0 24px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	padding: 14px 0 !important;
	border-top: 1px solid #e1e7e4 !important;
	color: #59635f;
	font-size: 13px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
	border-top: 0 !important;
	color: #25373d;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table th:last-child,
.woocommerce-checkout .woocommerce-checkout-review-order-table td:last-child { text-align: right; }
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
	padding-top: 20px !important;
	color: #25373d;
	font-size: 17px;
}
.woocommerce-checkout #payment {
	border-radius: 13px;
	background: #fff;
}
.woocommerce-checkout #payment ul.payment_methods {
	padding: 20px;
	border-bottom: 1px solid #e4eae7;
}
.woocommerce-checkout #payment div.payment_box {
	margin: 14px 0 0;
	padding: 16px;
	border-radius: 10px;
	background: #eef7f4;
	color: #55615c;
	font-size: 13px;
}
.woocommerce-checkout #payment div.payment_box::before {
	top: -12px;
	border-bottom-color: #eef7f4;
}
.woocommerce-checkout #payment .place-order {
	margin: 0;
	padding: 20px;
}
.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
	color: #737d79;
	font-size: 12px;
	line-height: 1.55;
}
.woocommerce-checkout #payment .woocommerce-privacy-policy-link {
	color: #4fc2a0;
	font-weight: 700;
}
.woocommerce-checkout #payment #place_order {
	float: none;
	width: 100%;
	margin-top: 16px;
	padding: 15px 22px;
	border-radius: 999px;
	background: #4fc2a0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(79,194,160,.24);
}
.woocommerce-checkout #payment #place_order:hover { background: #25373d; }
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-login-toggle { grid-column: 1 / -1; }

@media (max-width: 980px) {
	.woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review {
		grid-column: 1;
		grid-row: auto;
	}
	.woocommerce-checkout #order_review_heading { margin-top: 34px; }
}

@media (max-width: 600px) {
	.woocommerce-checkout form .form-row-first,
	.woocommerce-checkout form .form-row-last {
		float: none;
		width: 100%;
	}
	.woocommerce-checkout #order_review_heading { padding: 22px 20px 14px; }
	.woocommerce-checkout #order_review { padding: 0 20px 20px; }
}

/* Blog archive and article reading experience. */
.blog .site-main { padding-top: 58px; background: #fff; }
.blog .page-header { margin-bottom: 44px; }
.blog .page-header h1 {
	color: #25373d;
	font-size: clamp(40px, 5vw, 54px);
	letter-spacing: -.035em;
}
.blog .post-grid { align-items: stretch; }
.blog .post-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e7ece9;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(37,50,55,.06);
}
.blog .post-card-image { aspect-ratio: 16 / 9; }
.blog .post-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}
.blog .post-card-content > p:not(.post-card-meta) {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 18px;
	color: #75807b;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}
.blog .post-card h2 { margin-bottom: 13px; font-size: 21px; }
.blog .post-card .read-more {
	margin-top: auto;
	color: #4fc2a0;
	font-size: 13px;
}
.single-post .site-main { padding-top: 50px; background: #fff; }
.single-post article {
	max-width: 940px;
	margin: 0 auto;
}
.single-post .page-header { margin-bottom: 36px; }
.single-post .page-header .eyebrow { color: #c55d39; }
.single-post .page-header h1 {
	color: #25373d;
	font-size: clamp(38px, 5vw, 58px);
	letter-spacing: -.04em;
	line-height: 1.08;
}
.single-post article > img {
	display: block;
	width: 100%;
	max-height: 560px;
	margin: 0 0 42px;
	border-radius: 18px;
	object-fit: cover;
	box-shadow: 0 14px 40px rgba(37,50,55,.08);
}
.single-post .entry-content {
	max-width: 780px;
	margin: 0 auto;
	color: #4d5753;
	font-size: 17px;
	line-height: 1.85;
}
.single-post .entry-content h2,
.single-post .entry-content h3 {
	margin-top: 38px;
	color: #25373d;
}
.single-post .entry-content a { color: #4fc2a0; text-decoration: underline; }

/* Contact page. */
.page-id-74 .site-main { padding-top: 58px; background: #fff; }
.page-id-74 .page-header { margin-bottom: 34px; }
.page-id-74 .page-header h1 {
	color: #25373d;
	font-size: clamp(40px, 5vw, 54px);
	letter-spacing: -.035em;
}
.page-id-74 .entry-content > .wpb-content-wrapper > .vc_row:first-child {
	margin-bottom: 28px;
	color: #65706b;
	font-size: 17px;
}
.page-id-74 .entry-content > .wpb-content-wrapper > .vc_row:nth-child(2) {
	display: grid;
	grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
	gap: 46px;
	margin: 0;
}
.page-id-74 .contact-text,
.page-id-74 .contact-form {
	float: none;
	width: auto;
}
.page-id-74 .contact-text > .vc_column-inner,
.page-id-74 .contact-form > .vc_column-inner { padding: 0; }
.page-id-74 .contact-text .wpb_text_column {
	padding: 30px;
	border: 1px solid #e4eae7;
	border-radius: 16px;
	background: #f8faf8;
}
.page-id-74 .contact-text p {
	margin: 0 0 24px;
	color: #65706b;
}
.page-id-74 .contact-text p:last-child { margin-bottom: 0; }
.page-id-74 .contact-text strong {
	display: block;
	margin-bottom: 4px;
	color: #25373d;
	font-size: 14px;
}
.page-id-74 .contact-text a { color: #4fc2a0; }
.page-id-74 .wpcf7 {
	padding: 30px;
	border: 1px solid #e4eae7;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(37,50,55,.06);
}
.page-id-74 .wpcf7 label {
	color: #4e5a55;
	font-size: 13px;
	font-weight: 700;
}
.page-id-74 .wpcf7 input:not([type="submit"]),
.page-id-74 .wpcf7 textarea {
	margin-top: 7px;
	border-color: #dce3df;
	border-radius: 10px;
}
.page-id-74 .wpcf7 textarea { min-height: 150px; }
.page-id-74 .wpcf7-submit {
	min-width: 150px;
	border-radius: 999px;
	background: #4fc2a0;
}
.page-id-74 .wpcf7-submit:hover { background: #25373d; }

/* Account dashboard. */
.woocommerce-account .site-main { padding-top: 58px; background: #fff; }
.woocommerce-account .page-header h1 {
	color: #25373d;
	font-size: clamp(40px, 5vw, 54px);
	letter-spacing: -.035em;
}
.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 42px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
	width: auto;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 10px;
	border: 1px solid #e4eae7;
	border-radius: 15px;
	background: #f8faf8;
	list-style: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation li { margin: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 11px 14px;
	border-radius: 9px;
	color: #59645f;
	font-size: 14px;
	font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	background: #25373d;
	color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: auto;
	min-height: 260px;
	padding: 30px;
	border: 1px solid #e4eae7;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(37,50,55,.05);
}
.woocommerce-account .woocommerce-MyAccount-content p:first-child { margin-top: 0; }
.woocommerce-account .woocommerce-MyAccount-content a { color: #4fc2a0; font-weight: 700; }

/* Informational and legal pages. */
.page:not(.home):not(.woocommerce-page):not(.page-id-74) .site-main {
	padding-top: 58px;
	background: #fff;
}
.page:not(.home):not(.woocommerce-page):not(.page-id-74) .site-main article {
	max-width: 980px;
	margin: 0 auto;
}
.page:not(.home):not(.woocommerce-page):not(.page-id-74) .page-header h1 {
	color: #25373d;
	font-size: clamp(40px, 5vw, 54px);
	letter-spacing: -.035em;
}
.page:not(.home):not(.woocommerce-page):not(.page-id-74) .entry-content {
	padding: clamp(28px, 5vw, 52px);
	border: 1px solid #e4eae7;
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(37,50,55,.05);
	color: #56615c;
	line-height: 1.8;
}
.page:not(.home):not(.woocommerce-page):not(.page-id-74) .entry-content h2,
.page:not(.home):not(.woocommerce-page):not(.page-id-74) .entry-content h3 {
	margin-top: 30px;
	color: #25373d;
}

@media (max-width: 800px) {
	.page-id-74 .entry-content > .wpb-content-wrapper > .vc_row:nth-child(2),
	.woocommerce-account .woocommerce { grid-template-columns: 1fr; }
	.woocommerce-account .woocommerce-MyAccount-content { padding: 24px; }
}

@media (max-width: 600px) {
	.woocommerce-notices-wrapper { margin-bottom: 18px; }
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce-error {
		display: flex;
		min-height: 0;
		padding: 13px 14px 13px 42px !important;
		align-items: center;
		gap: 12px;
		font-size: 13px;
	}
	.woocommerce-message::before,
	.woocommerce-info::before,
	.woocommerce-error::before { left: 14px !important; }
	.woocommerce-message .button,
	.woocommerce-info .button {
		order: 2;
		flex: 0 0 auto;
		float: none;
		margin: 0 0 0 auto;
		padding: 9px 14px !important;
		font-size: 12px !important;
		white-space: nowrap;
	}
	.blog .post-card-content,
	.page-id-74 .contact-text .wpb_text_column,
	.page-id-74 .wpcf7 { padding: 22px; }
	.single-post article > img { margin-bottom: 28px; border-radius: 12px; }
	.single-post .entry-content { font-size: 16px; }
}
