:root {
	--site-accent: #2457d6;
	--site-accent-dark: #183f9f;
	--site-ink: #152033;
	--site-muted: #647087;
	--site-surface: #f6f7f9;
	--site-border: #dfe3ea;
	--site-radius: 0.75rem;
	--site-content-width: 52.5rem;
	--site-wide-width: 75rem;
	--site-transition: 160ms ease;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
	color: var(--site-ink);
	display: flex;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	min-height: 100vh;
	flex-direction: column;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--site-accent);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--site-accent-dark);
}

:focus-visible {
	border-radius: 0.15rem;
	outline: 3px solid rgba(36, 87, 214, 0.4);
	outline-offset: 3px;
}

.skip-link {
	background: #fff;
	color: var(--site-ink);
	font-weight: 700;
	left: 1rem;
	padding: 0.75rem 1rem;
	position: fixed;
	top: 1rem;
	z-index: 2000;
}

.site-main {
	flex: 1 0 auto;
	background: #f3f4f6;
}

.site-header {
	background: #f3f4f6;
	padding: 2.5rem 0;
}

.navbar {
	min-height: 0;
	padding: 0;
}

.container.menu {
	background: #fff;
	border-radius: 1.5625rem;
	padding: 0.65rem 1rem;
}

.site-branding {
	align-items: center;
	display: flex;
	margin: 0;
}

.custom-logo {
	height: auto;
	max-height: 3rem;
	max-width: 12rem;
	width: auto;
}

.site-title,
.footer-brand {
	color: var(--site-ink);
	font-weight: 800;
	letter-spacing: -0.025em;
	text-decoration: none;
}

.site-title {
	font-size: 1.3rem;
}

.footer-brand {
	font-size: 1.25rem;
}

.navbar-nav {
	gap: 0.15rem;
}

.navbar-nav .nav-link {
	border-radius: 0.4rem;
	color: #354056;
	font-weight: 650;
	padding: 0.55rem 0.8rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item > .nav-link,
.navbar-nav .current-menu-ancestor > .nav-link {
	background: var(--site-surface);
	color: var(--site-accent-dark);
}

.dropdown-menu {
	border-color: var(--site-border);
	border-radius: 0.6rem;
	box-shadow: 0 0.75rem 2rem rgba(21, 32, 51, 0.08);
	padding: 0.45rem;
}

.dropdown-item {
	border-radius: 0.35rem;
	padding: 0.55rem 0.75rem;
}

.header-search {
	max-width: 21rem;
	width: 100%;
}

.header-search .form-control {
	min-width: 0;
}

.header-search .input-group {
	flex-wrap: nowrap;
}

.header-search .btn {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	width: 3.5rem;
}

.site-cart-link {
	align-items: center;
	background: var(--site-ink);
	border: 1px solid var(--site-ink);
	border-radius: 0.6rem;
	color: #fff;
	display: inline-flex;
	height: 2.75rem;
	justify-content: center;
	position: relative;
	text-decoration: none;
	transition: background var(--site-transition), border-color var(--site-transition);
	width: 3rem;
}

.site-cart-link:hover {
	background: var(--site-accent);
	border-color: var(--site-accent);
	color: #fff;
}

.site-cart-count {
	align-items: center;
	background: var(--site-accent);
	border: 2px solid #fff;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-size: 0.68rem;
	font-weight: 800;
	height: 1.25rem;
	justify-content: center;
	line-height: 1;
	min-width: 1.25rem;
	padding: 0 0.2rem;
	position: absolute;
	right: -0.45rem;
	top: -0.45rem;
}

@media (max-width: 991.98px) {
	.site-header {
		padding: 1rem 0;
	}

	.container.menu {
		border-radius: 1rem;
	}

	#primary-navigation {
		order: 3;
		padding-top: 0.75rem;
	}

	.header-search {
		margin-top: 0.75rem;
		max-width: none;
	}

	.site-cart-link {
		margin-left: auto;
		margin-right: 0.65rem;
		order: 1;
	}

	.navbar-toggler {
		order: 2;
	}
}

.page-header {
	max-width: 48rem;
}

.eyebrow,
.category-link {
	color: var(--site-accent-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.category-link {
	display: inline-block;
	margin-bottom: 0.8rem;
	text-decoration: none;
}

.page-title,
.entry-title {
	color: var(--site-ink);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.page-title {
	font-size: clamp(2.1rem, 6vw, 4.2rem);
}

.entry-title {
	font-size: clamp(2.15rem, 6vw, 4.75rem);
}

.page-intro,
.archive-description {
	color: var(--site-muted);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	max-width: 42rem;
}

.archive-description > :last-child {
	margin-bottom: 0;
}

.post-grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 992px) {
	.post-grid--wide {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.post-card,
.no-results,
.widget {
	background: var(--site-surface);
	border-radius: var(--site-radius);
}

.post-card {
	transition: transform var(--site-transition), box-shadow var(--site-transition);
}

.post-card:hover {
	box-shadow: 0 1rem 2.5rem rgba(21, 32, 51, 0.07);
	transform: translateY(-2px);
}

.post-card-image {
	aspect-ratio: 16 / 9;
	background: #e9ecf1;
	overflow: hidden;
}

.post-card-image img {
	height: 100%;
	object-fit: cover;
	transition: transform 320ms ease;
	width: 100%;
}

.post-card:hover .post-card-image img {
	transform: scale(1.015);
}

.post-card .card-body {
	background:#ffffff;
	padding: clamp(1.25rem, 3vw, 2rem);
}

.post-card .card-title {
	font-weight: 780;
	letter-spacing: -0.025em;
}

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

.post-card .card-text {
	color: #4d596d;
}

.legacy-post-meta span {
	background: #fff;
	border: 1px solid var(--site-border);
	border-radius: 999px;
	color: var(--site-muted);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.2rem 0.6rem;
}

.post-card .card-text > :last-child {
	margin-bottom: 1rem;
}

.home .card {
	border: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home .card:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.home .card-img-top {
	height: 200px;
	object-fit: cover;
}

.home .card-title a {
	color: #333;
	font-size: 1rem;
	text-decoration: none;
}

.rating-badge {
	background: rgba(255, 193, 7, 0.9);
	border-radius: 1rem;
	color: #000;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.25rem 0.5rem;
	position: absolute;
	right: 10px;
	top: 10px;
}

.rating-badge .star {
	color: #fff;
}

.meta-info {
	color: #6c757d;
	display: flex;
	font-size: 0.875rem;
	justify-content: space-between;
	margin-top: 1rem;
}

.timing,
.price {
	align-items: center;
	display: inline-flex;
	gap: 0.25rem;
}

.read-more {
	font-weight: 750;
	text-decoration: none;
}

.entry-meta {
	color: var(--site-muted);
	font-size: 0.9rem;
}

.entry-meta a {
	color: inherit;
	font-weight: 650;
}

.updated-label {
	margin-left: 0.65rem;
	margin-right: 0.25rem;
}

.single-entry .entry-header,
.single-entry .entry-content,
.single-entry .entry-footer,
.page-entry .entry-header,
.page-entry .entry-content,
.page-entry .entry-footer,
.comments-wrap,
.post-navigation-wrap {
	max-width: var(--site-content-width);
}

.page-entry--wide .entry-header,
.page-entry--wide .entry-content {
	max-width: var(--site-wide-width);
}

.entry-featured {
	max-width: var(--site-wide-width);
}

.entry-featured img {
	border-radius: var(--site-radius);
	height: auto;
	width: 100%;
}

.entry-content {
	font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
	font-size: clamp(1.06rem, 1.8vw, 1.18rem);
}

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

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--site-ink);
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-weight: 780;
	letter-spacing: -0.025em;
	line-height: 1.2;
	margin-bottom: 0.6em;
	margin-top: 1.8em;
}

.entry-content h2 {
	font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.entry-content h3 {
	font-size: clamp(1.4rem, 3vw, 1.85rem);
}

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

.entry-content figure {
	max-width: 100%;
}

.entry-content figcaption,
.wp-caption-text {
	color: var(--site-muted);
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 0.86rem;
	margin-top: 0.6rem;
	text-align: center;
}

.entry-content blockquote,
.wp-block-quote {
	border-left: 4px solid var(--site-accent);
	color: #344159;
	font-size: 1.25em;
	font-style: italic;
	margin-left: 0;
	padding: 0.3rem 0 0.3rem 1.25rem;
}

.entry-content pre,
.wp-block-code {
	background: #121927;
	border-radius: 0.55rem;
	color: #ecf1fa;
	font-size: 0.9rem;
	overflow-x: auto;
	padding: 1.25rem;
}

.entry-content code:not(pre code) {
	background: #eef1f6;
	border-radius: 0.25rem;
	color: #9c2e58;
	padding: 0.12em 0.3em;
}

.entry-content iframe,
.entry-content video {
	max-width: 100%;
}

.entry-content .alignwide {
	margin-left: 50%;
	max-width: min(var(--site-wide-width), calc(100vw - 2rem));
	transform: translateX(-50%);
	width: min(var(--site-wide-width), calc(100vw - 2rem));
}

.entry-content .alignfull {
	margin-left: 50%;
	max-width: 100vw;
	transform: translateX(-50%);
	width: 100vw;
}

.entry-content .wp-block-button__link {
	background: var(--site-accent);
	border-radius: 0.45rem;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-weight: 700;
	padding: 0.75rem 1.15rem;
}

.entry-content .wp-block-button__link:hover {
	background: var(--site-accent-dark);
	color: #fff;
}

.table-responsive {
	border: 1px solid var(--site-border);
	border-radius: 0.55rem;
}

.entry-content table {
	margin-bottom: 0;
	min-width: 36rem;
	width: 100%;
}

.entry-content th,
.entry-content td {
	border-bottom: 1px solid var(--site-border);
	padding: 0.75rem;
	text-align: left;
}

.entry-content th {
	background: var(--site-surface);
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.entry-taxonomies,
.author-box {
	background: var(--site-surface);
	border-radius: var(--site-radius);
	padding: 1.25rem;
}

.taxonomy-label {
	font-weight: 750;
}

.author-box img {
	height: 4.5rem;
	width: 4.5rem;
}

.post-navigation .nav-links {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-navigation a {
	background: var(--site-surface);
	border-radius: var(--site-radius);
	display: block;
	height: 100%;
	padding: 1rem;
	text-decoration: none;
}

.nav-next {
	text-align: right;
}

.nav-direction {
	color: var(--site-muted);
	display: block;
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.nav-title {
	color: var(--site-ink);
	display: block;
	font-weight: 750;
	margin-top: 0.25rem;
}

.sidebar-stack {
	display: grid;
	gap: 1.25rem;
	position: sticky;
	top: 7rem;
}

.widget .card-body {
	padding: 1.25rem;
}

.widget-title {
	font-weight: 780;
}

.widget ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}

.widget li + li {
	border-top: 1px solid var(--site-border);
	margin-top: 0.65rem;
	padding-top: 0.65rem;
}

.comment-list .comment-body {
	border-bottom: 1px solid var(--site-border);
	padding: 1.5rem 0;
}

.comment-list .children {
	list-style: none;
	padding-left: clamp(1rem, 5vw, 3rem);
}

.comment-author img {
	border-radius: 50%;
	margin-right: 0.5rem;
}

.comment-metadata {
	font-size: 0.86rem;
}

.comment-form label {
	display: block;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	background-clip: padding-box;
	background-color: #fff;
	border: 1px solid #b9c0cc;
	border-radius: 0.45rem;
	display: block;
	padding: 0.65rem 0.8rem;
	width: 100%;
}

.comment-form input:focus,
.comment-form textarea:focus,
.form-control:focus {
	border-color: var(--site-accent);
	box-shadow: 0 0 0 0.2rem rgba(36, 87, 214, 0.16);
}

.navigation.pagination {
	margin-top: 2.5rem;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.navigation.pagination .page-numbers {
	border: 1px solid var(--site-border);
	border-radius: 0.4rem;
	color: var(--site-ink);
	min-width: 2.5rem;
	padding: 0.45rem 0.7rem;
	text-align: center;
	text-decoration: none;
}

.navigation.pagination .current,
.navigation.pagination a:hover {
	background: var(--site-accent);
	border-color: var(--site-accent);
	color: #fff;
}

/* WooCommerce storefront */
.shop-main {
	background: #f4f5f7;
}

.shop-main > .container {
	max-width: 80rem;
}

.shop-main .woocommerce-breadcrumb {
	color: var(--site-muted);
	font-size: 0.82rem;
	font-weight: 650;
	letter-spacing: 0.01em;
	margin-bottom: 2rem;
}

.shop-main .woocommerce-breadcrumb a {
	color: #465269;
	text-decoration: none;
}

.shop-main .woocommerce-products-header__title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.05;
	margin-bottom: 2rem;
}

.woocommerce .woocommerce-result-count {
	color: var(--site-muted);
	font-size: 0.9rem;
	margin: 0.7rem 0 2rem;
}

.woocommerce .woocommerce-ordering {
	margin-bottom: 2rem;
}

.woocommerce .woocommerce-ordering select {
	background-color: #fff;
	border: 1px solid #d6dae2;
	border-radius: 0.65rem;
	color: var(--site-ink);
	font: inherit;
	font-size: 0.9rem;
	min-height: 2.8rem;
	padding: 0.45rem 2.25rem 0.45rem 0.9rem;
}

.mytheme-product-grid {
	clear: both;
	margin-bottom: 3rem;
}

.product-card {
	background: #fff;
	border: 1px solid #e2e5eb;
	border-radius: 0.9rem;
	box-shadow: 0 1px 2px rgba(21, 32, 51, 0.03);
	overflow: hidden;
	position: relative;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-card:hover {
	border-color: #cbd1dc;
	box-shadow: 0 14px 34px rgba(21, 32, 51, 0.09);
	transform: translateY(-3px);
}

.product-card-media {
	background: #eceff3;
	overflow: hidden;
	position: relative;
}

.product-card-media img {
	aspect-ratio: 1 / 1;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform 0.35s ease;
	width: 100%;
}

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

.woocommerce .product-card span.onsale {
	background: #fff !important;
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(21, 32, 51, 0.12);
	color: var(--site-ink) !important;
	font-size: 0.72rem;
	font-weight: 800;
	left: 0.8rem;
	line-height: 1;
	margin: 0;
	min-height: 0;
	min-width: 0;
	padding: 0.5rem 0.7rem;
	position: absolute;
	top: 0.8rem;
}

.woocommerce.single-product span.onsale {
	background: var(--site-ink) !important;
	border-radius: 999px;
	color: #fff !important;
	font-size: 0.75rem;
	font-weight: 800;
	left: 0.9rem;
	line-height: 1;
	margin: 0;
	min-height: 0;
	min-width: 0;
	padding: 0.55rem 0.72rem;
	top: 0.9rem;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
	background: #fff;
	border: 1px solid #dfe3ea;
	border-radius: 0.65rem;
	color: var(--site-ink);
	font-size: 0.9rem;
	margin-bottom: 2rem;
}

.woocommerce .woocommerce-message {
	border-top: 3px solid #238257;
}

.product-card .card-body {
	padding: 1.15rem;
}

.product-card-category {
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	margin-bottom: 0.4rem;
	text-transform: uppercase;
}

.product-card-category a {
	color: var(--site-muted);
	text-decoration: none;
}

.product-card .card-title {
	font-size: 1.05rem !important;
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.35;
	margin-bottom: 0.35rem;
}

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

.product-card-price {
	color: var(--site-ink);
	font-size: 1rem;
	font-weight: 800;
}

.product-card-price del,
.single-product .summary .price del {
	color: #8790a1;
	font-size: 0.86em;
	font-weight: 550;
	opacity: 1;
}

.product-card-price ins,
.single-product .summary .price ins {
	text-decoration: none;
}

.product-card-rating .star-rating {
	color: #c98500;
	font-size: 0.8rem;
	margin: 0;
}

.product-card-actions {
	align-items: stretch;
}

.product-card-actions > * {
	flex: 1 1 0 !important;
	min-width: 0;
}

.product-card-actions .button,
.product-card-actions .added_to_cart {
	align-items: center;
	border: 1px solid #cdd2dc !important;
	border-radius: 0.55rem !important;
	display: inline-flex !important;
	font-size: 0.8rem !important;
	font-weight: 750 !important;
	justify-content: center;
	line-height: 1.2 !important;
	min-height: 2.65rem;
	padding: 0.65rem 0.55rem !important;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.product-card-actions .add_to_cart_button {
	background: #fff !important;
	color: var(--site-ink) !important;
}

.product-card-actions .add_to_cart_button:hover {
	background: #eef1f5 !important;
}

.product-card-actions .buy-now-button {
	background: var(--site-ink) !important;
	border-color: var(--site-ink) !important;
	color: #fff !important;
}

.product-card-actions .buy-now-button:hover {
	background: #060a12 !important;
	color: #fff !important;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
	display: flex;
	gap: 0.4rem;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	border: 1px solid var(--site-border);
	border-radius: 0.4rem;
	min-width: 2.5rem;
	padding: 0.55rem 0.75rem;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--site-accent);
	border-color: var(--site-accent);
	color: #fff;
}

/* Single product */
.single-product div.product {
	display: grid;
	gap: clamp(2rem, 5vw, 4.5rem);
	grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
}

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

.woocommerce.single-product div.product div.images {
	align-self: start;
	background: #eaedf1;
	border: 1px solid #e0e4ea;
	border-radius: 1rem;
	margin: 0;
	overflow: hidden;
}

.single-product div.product .woocommerce-product-gallery img {
	display: block;
	width: 100%;
}

.woocommerce.single-product div.product div.summary {
	align-self: center;
	margin: 0;
	max-width: 31rem;
}

.single-product .product_title {
	font-size: clamp(2.15rem, 4vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.04;
	margin-bottom: 1rem;
}

.single-product .summary .price {
	color: var(--site-ink) !important;
	font-size: 1.55rem !important;
	font-weight: 800;
	margin-bottom: 1.4rem;
}

.single-product .woocommerce-product-details__short-description {
	color: #465269;
	font-size: 1rem;
	line-height: 1.65;
	margin-bottom: 1.5rem;
}

.woocommerce.single-product div.product form.cart {
	display: grid !important;
	gap: 0.75rem;
	grid-template-columns: 5.25rem minmax(0, 1fr);
	margin: 1.7rem 0 1.4rem;
}

.woocommerce.single-product div.product form.cart .quantity {
	float: none !important;
	grid-column: 1;
	margin: 0 !important;
	width: 100% !important;
}

.woocommerce.single-product div.product form.cart .single_add_to_cart_button {
	float: none !important;
	grid-column: 2;
}

.woocommerce.single-product div.product form.cart .quantity .qty {
	background: #fff;
	border: 1px solid #cbd1dc;
	border-radius: 0.6rem;
	font: inherit;
	height: 3.25rem;
	width: 100%;
}

.woocommerce.single-product div.product form.cart .button {
	align-items: center;
	border: 1px solid var(--site-ink) !important;
	border-radius: 0.6rem !important;
	display: inline-flex;
	font-size: 0.95rem !important;
	font-weight: 800 !important;
	justify-content: center;
	line-height: 1.2 !important;
	min-height: 3.25rem;
	padding: 0.8rem 1.25rem !important;
}

.woocommerce.single-product div.product form.cart .single_add_to_cart_button {
	background: var(--site-ink) !important;
	color: #fff !important;
}

.woocommerce.single-product div.product form.cart .single_add_to_cart_button:hover {
	background: #060a12 !important;
}

.woocommerce.single-product div.product form.cart .buy-now-button {
	background: #fff !important;
	color: var(--site-ink) !important;
	grid-column: 1 / -1;
}

.woocommerce.single-product div.product form.cart .buy-now-button:hover {
	background: #eef1f5 !important;
}

.single-product .product_meta {
	border-top: 1px solid #dfe3ea;
	color: var(--site-muted);
	font-size: 0.86rem;
	line-height: 1.8;
	padding-top: 1.25rem;
}

.single-product .woocommerce-tabs,
.single-product .related,
.single-product .upsells {
	grid-column: 1 / -1;
}

.single-product .woocommerce-tabs {
	background: #fff;
	border: 1px solid #e0e4ea;
	border-radius: 0.9rem;
	margin-top: 2rem;
	padding: clamp(1.25rem, 3vw, 2.25rem);
}

/* Cart and one-page Checkout */
.commerce-flow-page {
	background: #f4f5f7;
}

.commerce-flow-page .site-main > .container {
	max-width: 78rem;
}

.commerce-flow-page .page-entry .entry-header,
.commerce-flow-page .page-entry .entry-content {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none;
	width: 100%;
}

.commerce-flow-page .entry-title {
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	letter-spacing: -0.05em;
	line-height: 1.05;
	margin: 0 0 2rem;
	text-align: left;
}

.commerce-flow-page .entry-content > .alignwide,
.commerce-flow-page .wp-block-woocommerce-cart,
.commerce-flow-page .wp-block-woocommerce-checkout {
	box-sizing: border-box;
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	transform: none !important;
	width: 100% !important;
}

.commerce-flow-page .wc-block-components-sidebar-layout {
	box-sizing: border-box;
	display: grid !important;
	gap: clamp(1.5rem, 4vw, 3.5rem) !important;
	grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.75fr);
	margin: 0 !important;
	width: 100% !important;
}

.commerce-flow-page .wc-block-components-main,
.commerce-flow-page .wc-block-components-sidebar {
	box-sizing: border-box;
	float: none !important;
	margin: 0 !important;
	max-width: 100% !important;
	min-width: 0 !important;
	width: auto !important;
}

.commerce-flow-page .wc-block-components-main {
	background: #fff;
	border: 1px solid #e0e3e8;
	border-radius: 0.9rem;
	padding: clamp(1rem, 3vw, 2rem) !important;
}

.commerce-flow-page .wc-block-components-sidebar {
	align-self: start;
	background: #fff;
	border: 1px solid #e0e3e8;
	border-radius: 0.9rem;
	height: fit-content;
	padding: clamp(1rem, 2.5vw, 1.5rem) !important;
	position: sticky;
	top: 1.5rem;
}

.commerce-flow-page .wc-block-components-sidebar-layout,
.commerce-flow-page .wc-block-components-sidebar-layout button,
.commerce-flow-page .wc-block-components-sidebar-layout input,
.commerce-flow-page .wc-block-components-sidebar-layout select,
.commerce-flow-page .wc-block-components-sidebar-layout textarea,
.commerce-flow-page .wc-block-components-sidebar-layout label {
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.commerce-flow-page .wc-block-components-title,
.commerce-flow-page .wc-block-components-checkout-step__title,
.commerce-flow-page .wc-block-components-order-summary__button-text {
	color: var(--site-ink);
	font-family: inherit !important;
	font-weight: 800;
	letter-spacing: -0.025em;
}

.commerce-flow-page .wc-block-components-checkout-step {
	border-bottom: 1px solid #e5e8ed;
	padding-bottom: 1.5rem;
}

.commerce-flow-page .wc-block-components-text-input input,
.commerce-flow-page .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.commerce-flow-page .wc-block-components-address-form__country select,
.commerce-flow-page .wc-block-components-textarea {
	background: #fff;
	border: 1px solid #b9c0cc;
	border-radius: 0.55rem;
	box-shadow: none;
	font: inherit;
	min-height: 3.15rem;
}

.commerce-flow-page .wc-block-components-text-input input:focus,
.commerce-flow-page .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.commerce-flow-page .wc-block-components-address-form__country select:focus,
.commerce-flow-page .wc-block-components-textarea:focus {
	border-color: var(--site-accent);
	box-shadow: 0 0 0 3px rgba(36, 87, 214, 0.14);
}

.commerce-flow-page .wc-block-components-button:not(.is-link) {
	background: var(--site-ink) !important;
	border: 1px solid var(--site-ink) !important;
	border-radius: 0.6rem !important;
	color: #fff !important;
	font-weight: 800 !important;
	min-height: 3.4rem;
}

.commerce-flow-page .wc-block-components-button:not(.is-link):hover {
	background: #060a12 !important;
	border-color: #060a12 !important;
}

.commerce-flow-page .wc-block-cart-items {
	border: 0 !important;
	margin: 0 !important;
}

.commerce-flow-page .wc-block-cart-items td {
	border-top: 1px solid #e4e7ec !important;
	padding-bottom: 1.5rem !important;
	padding-top: 1.5rem !important;
}

.commerce-flow-page .wc-block-cart-item__image img,
.commerce-flow-page .wc-block-components-order-summary-item__image img {
	background: #eef0f3;
	border-radius: 0.6rem;
}

.commerce-flow-page .wc-block-cart-item__product .wc-block-components-product-name,
.commerce-flow-page .wc-block-components-order-summary-item__description .wc-block-components-product-name {
	color: var(--site-ink);
	font-weight: 750;
	text-decoration: none;
}

.commerce-flow-page .wc-block-components-quantity-selector {
	border-color: #ccd2dc;
	border-radius: 0.45rem;
}

.commerce-flow-page .wc-block-components-order-summary,
.commerce-flow-page .wc-block-components-totals-wrapper {
	border-color: #e1e4e9;
}

.commerce-flow-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 1.2rem;
	font-weight: 800;
}

.commerce-flow-page .wc-block-cart__submit-button,
.commerce-flow-page .wc-block-components-checkout-place-order-button {
	width: 100%;
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-checkout .col2-set {
	background: #fff;
	border: 1px solid #e3e5e8;
	border-radius: 0.75rem;
	padding: clamp(1rem, 3vw, 2rem);
}

/* Conversion cart drawer */
body.cart-drawer-open {
	overflow: hidden;
}

.cart-drawer-overlay {
	background: rgba(12, 18, 29, 0.58);
	inset: 0;
	opacity: 0;
	position: fixed;
	transition: opacity 0.22s ease;
	z-index: 1045;
}

.cart-drawer-overlay.is-open {
	opacity: 1;
}

.cart-drawer {
	background: #fff;
	box-shadow: -18px 0 50px rgba(12, 18, 29, 0.16);
	display: flex;
	flex-direction: column;
	height: 100dvh;
	max-width: 100%;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(105%);
	transition: transform 0.24s ease;
	width: min(31rem, 100vw);
	z-index: 1050;
}

.cart-drawer.is-open {
	transform: translateX(0);
}

.cart-drawer__header {
	align-items: center;
	border-bottom: 1px solid #e4e7ec;
	display: flex;
	justify-content: space-between;
	padding: 1.2rem 1.5rem;
}

.cart-drawer__header h2 {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	margin: 0;
}

.cart-drawer__header button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: var(--site-ink);
	display: flex;
	font-size: 2rem;
	height: 2.5rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 2.5rem;
}

.cart-drawer__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	overflow-y: auto;
}

.cart-shipping-meter {
	border-bottom: 1px solid #e4e7ec;
	padding: 1.1rem 1.5rem;
}

.cart-shipping-meter__track {
	background: #e7e9ed;
	border-radius: 999px;
	height: 0.55rem;
	overflow: hidden;
}

.cart-shipping-meter__track span {
	background: #258453;
	border-radius: inherit;
	display: block;
	height: 100%;
	transition: width 0.3s ease;
}

.cart-shipping-meter p {
	color: #384358;
	font-size: 0.9rem;
	margin: 0.7rem 0 0;
	text-align: center;
}

.cart-drawer__items {
	padding: 0 1.5rem;
}

.cart-drawer-item {
	align-items: center;
	border-bottom: 1px solid #e7e9ed;
	display: grid;
	gap: 1rem;
	grid-template-columns: 4.75rem minmax(0, 1fr) 2rem;
	padding: 1.25rem 0;
}

.cart-drawer-item__image img {
	aspect-ratio: 1;
	background: #eef0f3;
	border-radius: 0.55rem;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.cart-drawer-item__details {
	min-width: 0;
}

.cart-drawer-item__name {
	color: var(--site-ink);
	display: block;
	font-size: 0.95rem;
	font-weight: 750;
	overflow: hidden;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cart-drawer-item__price {
	color: #465269;
	font-size: 0.88rem;
	font-weight: 650;
	margin-top: 0.15rem;
}

.cart-drawer-quantity {
	align-items: center;
	border: 1px solid #ccd2dc;
	border-radius: 0.5rem;
	display: inline-flex;
	margin-top: 0.65rem;
	overflow: hidden;
}

.cart-drawer-quantity button,
.cart-drawer-quantity span {
	align-items: center;
	background: #fff;
	border: 0;
	display: flex;
	font: inherit;
	height: 2.1rem;
	justify-content: center;
	width: 2.1rem;
}

.cart-drawer-quantity button:hover {
	background: #eef1f5;
}

.cart-drawer-item__remove {
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: #697386;
	font-size: 1.4rem;
	height: 2rem;
	line-height: 1;
	padding: 0;
	width: 2rem;
}

.cart-drawer-item__remove:hover {
	background: #f2f3f5;
	color: #b42318;
}

.cart-drawer__empty {
	padding: 3rem 1rem;
	text-align: center;
}

.cart-drawer__empty h3 {
	font-size: 1.2rem;
	font-weight: 800;
}

.cart-drawer__empty p {
	color: var(--site-muted);
	font-size: 0.9rem;
	margin-bottom: 0;
}

.cart-drawer-upsells {
	padding: 1.35rem 1.5rem 0;
}

.cart-drawer-upsells h3 {
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin-bottom: 0.85rem;
}

.cart-drawer-upsells__rail {
	display: flex;
	gap: 0.75rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.cart-drawer-upsell {
	align-items: center;
	border: 1px solid #dfe3ea;
	border-radius: 0.7rem;
	display: grid;
	flex: 0 0 100%;
	gap: 0.75rem;
	grid-template-columns: 3.75rem minmax(0, 1fr) auto;
	padding: 0.8rem;
	scroll-snap-align: start;
}

.cart-drawer-upsell img {
	background: #eef0f3;
	border-radius: 0.4rem;
	display: block;
	height: 3.75rem;
	object-fit: cover;
	width: 3.75rem;
}

.cart-drawer-upsell div a {
	color: var(--site-ink);
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	overflow: hidden;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cart-drawer-upsell div span {
	color: var(--site-muted);
	font-size: 0.82rem;
}

.cart-drawer-upsell button {
	background: #fff;
	border: 1px solid #cbd1dc;
	border-radius: 0.5rem;
	color: var(--site-ink);
	font-size: 0.8rem;
	font-weight: 750;
	min-height: 2.4rem;
	padding: 0.4rem 0.75rem;
}

.cart-drawer__footer {
	background: #fff;
	border-top: 1px solid #dfe3ea;
	margin-top: auto;
	padding: 1.15rem 1.5rem 1.35rem;
}

.cart-drawer__subtotal {
	display: flex;
	font-size: 1.05rem;
	justify-content: space-between;
	margin-bottom: 0.85rem;
}

.cart-drawer__subtotal strong {
	font-weight: 800;
}

.cart-drawer__checkout {
	align-items: center;
	background: var(--site-ink);
	border-radius: 0.6rem;
	color: #fff;
	display: flex;
	font-size: 1rem;
	font-weight: 800;
	gap: 0.5rem;
	justify-content: center;
	min-height: 3.35rem;
	text-decoration: none;
}

.cart-drawer__checkout:hover {
	background: #060a12;
	color: #fff;
}

.cart-drawer__checkout svg {
	height: 1.15rem;
	width: 1.15rem;
}

/* Real reviews and administrator-verified trust content */
.commerce-confidence {
	margin: 2rem 0 0;
}

.commerce-rating-summary {
	align-items: center;
	background: #eaf0fc;
	border-radius: 0.8rem;
	color: var(--site-ink);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.92rem;
	gap: 0.55rem;
	justify-content: center;
	padding: 1rem 1.25rem;
	text-align: center;
}

.commerce-rating-summary > span:first-child,
.commerce-review-stars {
	color: #d58b00;
	letter-spacing: 0.08em;
}

.commerce-rating-summary strong {
	font-size: 1.08rem;
	font-weight: 850;
}

.commerce-trust {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 1rem;
}

.commerce-trust > div {
	align-items: center;
	background: #fff;
	border: 1px solid #dfe3ea;
	border-radius: 0.7rem;
	color: #354056;
	display: flex;
	font-size: 0.82rem;
	font-weight: 700;
	gap: 0.55rem;
	justify-content: center;
	min-height: 4rem;
	padding: 0.75rem;
	text-align: center;
}

.commerce-trust svg {
	color: #238257;
	flex: 0 0 auto;
	height: 1.4rem;
	width: 1.4rem;
}

.commerce-trust--drawer {
	grid-template-columns: 1fr;
	margin-top: 0.75rem;
}

.commerce-trust--drawer > div {
	background: transparent;
	border: 0;
	justify-content: flex-start;
	min-height: 0;
	padding: 0.2rem 0;
}

.commerce-reviews {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 1rem;
}

.commerce-reviews blockquote {
	background: #fff;
	border: 1px solid #dfe3ea;
	border-radius: 0.75rem;
	display: flex;
	flex-direction: column;
	font-size: 0.9rem;
	font-style: normal;
	margin: 0;
	min-height: 11rem;
	padding: 1.1rem;
}

.commerce-review-stars span {
	color: #cbd1dc;
}

.commerce-reviews p {
	color: #465269;
	line-height: 1.55;
	margin: 0.75rem 0 1rem;
}

.commerce-reviews cite {
	color: var(--site-ink);
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 800;
	margin-top: auto;
}

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

	.single-product div.product .summary {
		max-width: none;
	}

	.commerce-flow-page .wc-block-components-sidebar-layout {
		grid-template-columns: 1fr;
	}

	.commerce-flow-page .wc-block-components-main,
	.commerce-flow-page .wc-block-components-sidebar {
		min-width: 0 !important;
		width: 100% !important;
	}

	.commerce-flow-page .wc-block-components-sidebar {
		position: static;
	}

	.commerce-reviews,
	.commerce-trust {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575.98px) {
	.commerce-flow-page .site-main {
		padding-bottom: 2rem !important;
		padding-top: 2rem !important;
	}

	.commerce-flow-page .wc-block-components-main,
	.commerce-flow-page .wc-block-components-sidebar {
		border-radius: 0.6rem;
	}

	.single-product .summary form.cart {
		grid-template-columns: 4.75rem minmax(0, 1fr);
	}

	.product-card-actions {
		gap: 0.5rem !important;
	}

	.commerce-flow-page .wc-block-cart-items {
		display: block;
		min-width: 0 !important;
		table-layout: fixed;
		width: 100% !important;
	}

	.commerce-flow-page .wc-block-cart-items thead {
		display: none;
	}

	.commerce-flow-page .wc-block-cart-items tbody {
		display: block;
		width: 100%;
	}

	.commerce-flow-page .wc-block-cart-items .wc-block-cart-items__row {
		display: grid;
		gap: 0.8rem;
		grid-template-columns: 4rem minmax(0, 1fr);
		width: 100%;
	}

	.commerce-flow-page .wc-block-cart-items .wc-block-cart-item__image,
	.commerce-flow-page .wc-block-cart-items .wc-block-cart-item__product {
		display: block;
		min-width: 0;
		padding-left: 0 !important;
		padding-right: 0 !important;
		width: auto !important;
	}

	.commerce-flow-page .wc-block-cart-items .wc-block-cart-item__total {
		display: none;
	}

	.cart-drawer__header,
	.cart-shipping-meter,
	.cart-drawer__items,
	.cart-drawer-upsells,
	.cart-drawer__footer {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.cart-drawer-item {
		grid-template-columns: 4rem minmax(0, 1fr) 1.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cart-drawer,
	.cart-drawer-overlay,
	.cart-shipping-meter__track span {
		transition: none;
	}
}

.error-404 {
	max-width: 45rem;
}

.error-code {
	color: var(--site-accent);
	font-size: clamp(4rem, 15vw, 8rem);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 1;
}

.error-search {
	margin-left: auto;
	margin-right: auto;
	max-width: 30rem;
}

.site-footer {
	background: #101827;
	color: #c9d1de;
}

.site-footer .footer-brand,
.site-footer a {
	color: #fff;
}

.footer-description {
	color: #aeb8c8;
	margin-top: 0.35rem;
}

.site-info {
	border-color: rgba(255, 255, 255, 0.12) !important;
	color: #aeb8c8;
}

/* Limited compatibility for historical post content. */
.entry-content .img-responsive {
	display: block;
	height: auto;
	max-width: 100%;
}

.entry-content .pull-left {
	float: left;
	margin: 0.25rem 1.25rem 1rem 0;
}

.entry-content .pull-right {
	float: right;
	margin: 0.25rem 0 1rem 1.25rem;
}

.alignleft {
	float: left;
	margin: 0.25rem 1.25rem 1rem 0;
}

.alignright {
	float: right;
	margin: 0.25rem 0 1rem 1.25rem;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 991.98px) {
	.admin-bar .site-header {
		top: 32px;
	}

	.navbar-collapse {
		border-top: 1px solid var(--site-border);
		margin-top: 0.75rem;
		padding: 0.75rem 0 1rem;
	}

	.navbar-nav {
		align-items: stretch !important;
	}

	.header-search {
		margin-top: 0.75rem;
		max-width: none;
	}

	.sidebar-stack {
		position: static;
	}
}

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

@media (max-width: 575.98px) {
	.navbar {
		min-height: 4.25rem;
	}

	.site-main {
		padding-bottom: 3rem !important;
		padding-top: 3rem !important;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.nav-next {
		text-align: left;
	}

	.author-box {
		align-items: flex-start;
		flex-direction: column;
	}

	.entry-content .pull-left,
	.entry-content .pull-right,
	.alignleft,
	.alignright {
		float: none;
		margin: 1rem auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
