/*
Theme Name: ShopMarkaz Lite
Author: ShopMarkaz Digital
Author URI: https://shopmarkaz.com/
Description: ShopMarkaz Lite is a responsive WooCommerce-ready theme for online stores, blogs, and business websites. It includes accessible navigation, flexible widget areas, Customizer controls, responsive layouts, and clean styling for shop, cart, checkout, account, posts, pages, and archives.
Version: 1.9.6
Requires at least: 6.4
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shopmarkaz-lite
Tags: blog, e-commerce, custom-logo, custom-menu, featured-images, footer-widgets, right-sidebar, translation-ready, wide-blocks
*/
:root {
	--sml-ink:#102a43;
	--sml-muted:#5a7184;
	--sml-primary:#0b2a4a;
	--sml-primary-dark:#071d34;
	--sml-accent:#d99a1b;
	--sml-bg:#f6f9fc;
	--sml-white:#fff;
	--sml-line:#dfe8f0;
	--sml-shadow:0 16px 45px rgba(16,42,67,.09);
	--sml-radius:18px;
	--sml-container:1920px
}

* {
	box-sizing:border-box
}

html {
	scroll-behavior:smooth;
	overflow-x:clip
}

body {
	max-width:100%;
	margin:0;
	overflow-x:clip;
	background:#fff;
	color:var(--sml-ink);
	font:16px/1.7 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
	-webkit-font-smoothing:antialiased
}

img,video,iframe,embed,object {
	max-width:100%;
	height:auto
}

a {
	color:var(--sml-primary);
	text-decoration:none
}

a:hover {
	color:var(--sml-primary-dark)
}

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible {
	outline:3px solid var(--sml-accent);
	outline-offset:3px
}

h1,h2,h3,h4,h5,h6 {
	margin:0 0 .65em;
	color:var(--sml-ink);
	font-weight:750;
	line-height:1.18;
	letter-spacing:-.025em;
	overflow-wrap:anywhere
}

h1 {
	font-size:clamp(2.25rem,5vw,4.6rem)
}

h2 {
	font-size:clamp(1.8rem,3.5vw,3rem)
}

h3 {
	font-size:1.35rem
}

p {
	margin:0 0 1.3em
}

.sml-container {
	width:min(calc(100% - clamp(28px,3.2vw,64px)),var(--sml-container));
	max-width:100%;
	margin-inline:auto
}

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

.screen-reader-text:focus {
	clip:auto!important;
	width:auto;
	height:auto;
	top:8px;
	left:8px;
	padding:12px 16px;
	background:#fff;
	color:#000;
	z-index:100000
}

.sml-button,.wp-element-button,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:48px;
	padding:12px 22px;
	border:1px solid var(--sml-primary);
	border-radius:12px;
	background:var(--sml-primary);
	color:#fff!important;
	font-weight:700;
	line-height:1.2;
	cursor:pointer;
	box-shadow:0 8px 20px rgba(18,110,130,.15)
}

.sml-button:hover,.wp-element-button:hover {
	background:var(--sml-primary-dark);
	border-color:var(--sml-primary-dark);
	transform:translateY(-2px)
}

.sml-site-header {
	position:sticky;
	top:0;
	z-index:999;
	background:rgba(255,255,255,.96);
	border-bottom:1px solid var(--sml-line);
	backdrop-filter:blur(12px)
}

.sml-header-inner {
	display:flex;
	align-items:center;
	justify-content:space-between;
	min-height:78px;
	gap:clamp(16px,2vw,28px)
}

.sml-site-branding {
	min-width:0;
	margin-right:auto
}

.custom-logo {
	display:block;
	max-height:48px;
	width:auto
}

.sml-site-title {
	margin:0;
	font-size:1.35rem;
	font-weight:850;
	letter-spacing:-.04em
}

.sml-site-title a {
	color:var(--sml-ink)
}

.sml-site-description {
	margin:0;
	color:var(--sml-muted);
	font-size:.78rem
}

.sml-primary-menu {
	display:flex;
	align-items:center;
	gap:clamp(13px,1.5vw,24px);
	margin:0;
	padding:0;
	list-style:none
}

.sml-primary-menu li {
	position:relative
}

.sml-primary-menu a {
	color:var(--sml-ink);
	font-size:.92rem;
	font-weight:650
}

.sml-primary-menu a:hover,.sml-primary-menu .current-menu-item>a {
	color:var(--sml-primary)
}

.sml-primary-menu .sub-menu {
	position:absolute;
	top:100%;
	left:-15px;
	min-width:210px;
	margin:0;
	padding:10px;
	background:#fff;
	border:1px solid var(--sml-line);
	border-radius:12px;
	box-shadow:var(--sml-shadow);
	list-style:none;
	opacity:0;
	visibility:hidden;
	transform:translateY(8px);
	transition:.2s
}

.sml-primary-menu li:hover>.sub-menu,.sml-primary-menu li:focus-within>.sub-menu {
	opacity:1;
	visibility:visible;
	transform:translateY(0)
}

.sml-primary-menu .sub-menu a {
	display:block;
	padding:8px 10px
}

.sml-header-actions {
	display:flex;
	align-items:center;
	gap:8px
}

.sml-header-link {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:40px;
	padding:8px 13px;
	border:1px solid var(--sml-line);
	border-radius:10px;
	color:var(--sml-ink);
	font-size:.84rem;
	font-weight:750;
	white-space:nowrap
}

.sml-header-link:hover {
	border-color:var(--sml-primary);
	background:#f4fafb
}

.sml-cart-count {
	display:grid;
	place-items:center;
	min-width:19px;
	height:19px;
	margin-left:5px;
	padding:0 5px;
	border-radius:20px;
	background:var(--sml-primary);
	color:#fff;
	font-size:.7rem
}

.sml-menu-toggle {
	display:none;
	width:44px;
	height:44px;
	border:1px solid var(--sml-line);
	border-radius:10px;
	background:#fff;
	color:var(--sml-ink);
	font-size:1.25rem
}

.sml-hero {
	position:relative;
	overflow:hidden;
	padding:105px 0;
	background:linear-gradient(135deg,#f7fbfc 0%,#fff 55%,#fef9ee 100%)
}

.sml-hero:after {
	content:"";
	position:absolute;
	right:-140px;
	top:-180px;
	width:500px;
	height:500px;
	border-radius:50%;
	background:radial-gradient(circle,rgba(232,180,79,.18),transparent 68%)
}

.sml-hero-grid {
	position:relative;
	z-index:1;
	display:grid;
	grid-template-columns:1.05fr .95fr;
	align-items:center;
	gap:clamp(50px,6vw,90px)
}

.sml-eyebrow {
	display:inline-flex;
	align-items:center;
	gap:9px;
	margin-bottom:18px;
	color:var(--sml-primary);
	font-size:.8rem;
	font-weight:800;
	letter-spacing:.12em;
	text-transform:uppercase
}

.sml-eyebrow:before {
	content:"";
	width:28px;
	height:2px;
	background:var(--sml-accent)
}

.sml-hero-copy h1 {
	max-width:760px
}

.sml-hero-copy p {
	max-width:650px;
	color:var(--sml-muted);
	font-size:1.12rem
}

.sml-hero-actions {
	display:flex;
	flex-wrap:wrap;
	gap:12px;
	margin-top:28px
}

.sml-hero-card {
	padding:24px;
	border:1px solid var(--sml-line);
	border-radius:26px;
	background:#fff;
	box-shadow:0 30px 70px rgba(16,42,67,.13)
}

.sml-browser-dots {
	display:flex;
	gap:7px;
	padding:2px 3px 18px
}

.sml-browser-dots span {
	width:9px;
	height:9px;
	border-radius:50%;
	background:#e56f6f
}

.sml-browser-dots span:nth-child(2) {
	background:#efbd54
}

.sml-browser-dots span:nth-child(3) {
	background:#62c77b
}

.sml-preview {
	min-height:330px;
	padding:34px;
	border-radius:17px;
	background:linear-gradient(145deg,#0d5362,#13344c);
	color:#fff
}

.sml-preview h2 {
	max-width:360px;
	color:#fff;
	font-size:clamp(1.9rem,3vw,2.6rem)
}

.sml-preview p {
	color:#cce3e8
}

.sml-preview-grid {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:12px;
	margin-top:30px
}

.sml-preview-grid span {
	height:80px;
	border:1px solid rgba(255,255,255,.15);
	border-radius:11px;
	background:rgba(255,255,255,.09)
}

.sml-section {
	padding:90px 0
}

.sml-section--soft {
	background:var(--sml-bg)
}

.sml-section-heading {
	max-width:720px;
	margin:0 auto 42px;
	text-align:center
}

.sml-section-heading p {
	color:var(--sml-muted)
}

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

.sml-feature,.sml-card {
	padding:28px;
	border:1px solid var(--sml-line);
	border-radius:var(--sml-radius);
	background:#fff;
	transition:.25s
}

.sml-feature:hover,.sml-card:hover {
	border-color:#c5dce3;
	box-shadow:var(--sml-shadow);
	transform:translateY(-4px)
}

.sml-feature-icon {
	display:grid;
	place-items:center;
	width:48px;
	height:48px;
	margin-bottom:20px;
	border-radius:13px;
	background:#e7f3f5;
	color:var(--sml-primary);
	font-weight:900
}

.sml-feature p,.sml-card p {
	color:var(--sml-muted)
}

.sml-card {
	padding:0;
	overflow:hidden
}

.sml-card-image {
	display:block;
	aspect-ratio:16/9;
	background:#eaf2f5
}

.sml-card-image img {
	width:100%;
	height:100%;
	object-fit:cover
}

.sml-card-body {
	padding:24px
}

.sml-meta {
	margin-bottom:9px;
	color:var(--sml-muted);
	font-size:.82rem
}

.sml-cta {
	display:grid;
	grid-template-columns:1fr auto;
	align-items:center;
	gap:30px;
	padding:48px;
	border-radius:24px;
	background:linear-gradient(135deg,var(--sml-primary-dark),var(--sml-primary));
	color:#fff
}

.sml-cta h2 {
	color:#fff
}

.sml-cta p {
	margin:0;
	color:#d6ebef
}

.sml-cta .sml-button {
	background:#fff;
	border-color:#fff;
	color:var(--sml-ink)!important
}

.sml-site-main {
	min-height:55vh
}

.sml-content {
	padding:74px 0
}

.sml-layout {
	display:grid;
	grid-template-columns:minmax(0,1fr) minmax(260px,310px);
	gap:clamp(24px,3vw,42px)
}

.sml-layout>*,.sml-sidebar,.sml-sidebar .sml-widget {
	min-width:0;
	max-width:100%
}

.sml-entry {
	min-width:0;
	margin-bottom:28px;
	padding:clamp(24px,3vw,44px);
	border:1px solid var(--sml-line);
	border-radius:var(--sml-radius);
	background:#fff
}

.sml-entry-title {
	font-size:clamp(2rem,4vw,3.4rem)
}

.sml-entry-meta {
	margin-bottom:20px;
	color:var(--sml-muted);
	font-size:.85rem
}

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

.sml-entry-content blockquote {
	margin:28px 0;
	padding:18px 24px;
	border-left:4px solid var(--sml-accent);
	background:var(--sml-bg)
}

.sml-entry-content table {
	display:block;
	width:100%;
	overflow-x:auto;
	border-collapse:collapse
}

.sml-entry-content td,.sml-entry-content th {
	padding:12px;
	border:1px solid var(--sml-line)
}

.sml-sidebar .sml-widget {
	margin-bottom:22px;
	padding:24px;
	border:1px solid var(--sml-line);
	border-radius:14px;
	overflow-wrap:anywhere
}

.sml-sidebar .search-form {
	display:grid;
	grid-template-columns:minmax(0,1fr) auto;
	gap:10px;
	align-items:stretch
}

.sml-sidebar input,.sml-sidebar select,.sml-sidebar textarea {
	min-width:0;
	max-width:100%
}

.sml-sidebar .search-field {
	width:100%
}

.sml-sidebar .search-submit {
	min-width:0;
	padding-inline:16px
}

.sml-widget-title {
	font-size:1.1rem
}

.sml-widget ul {
	margin:0;
	padding-left:18px
}

.pagination .nav-links {
	display:flex;
	flex-wrap:wrap;
	gap:8px
}

.page-numbers {
	display:grid;
	place-items:center;
	min-width:40px;
	height:40px;
	padding:0 10px;
	border:1px solid var(--sml-line);
	border-radius:9px
}

.page-numbers.current {
	background:var(--sml-primary);
	border-color:var(--sml-primary);
	color:#fff
}

.sml-site-footer {
	padding-top:62px;
	background:#0b2235;
	color:#b8cad7
}

.sml-footer-grid {
	display:grid;
	grid-template-columns:1.3fr repeat(3,1fr);
	gap:38px;
	padding-bottom:48px
}

.sml-site-footer h2,.sml-site-footer h3 {
	color:#fff
}

.sml-site-footer a {
	color:#c5d6e1
}

.sml-site-footer ul {
	margin:0;
	padding:0;
	list-style:none
}

.sml-site-footer li {
	margin:8px 0
}

.sml-footer-bottom {
	display:flex;
	justify-content:space-between;
	gap:20px;
	padding:20px 0;
	border-top:1px solid rgba(255,255,255,.1);
	font-size:.84rem
}

.sml-footer-bottom p {
	margin:0
}

.woocommerce ul.products li.product,.woocommerce-page ul.products li.product {
	padding:18px;
	border:1px solid var(--sml-line);
	border-radius:var(--sml-radius);
	background:#fff
}

.woocommerce ul.products li.product .price {
	color:var(--sml-primary);
	font-weight:800
}

.woocommerce div.product div.images img {
	border-radius:var(--sml-radius)
}

.woocommerce-message,.woocommerce-info {
	border-top-color:var(--sml-primary)
}

.woocommerce-message:before,.woocommerce-info:before {
	color:var(--sml-primary)
}

.alignleft {
	float:left;
	margin:0 1.5em 1em 0
}

.alignright {
	float:right;
	margin:0 0 1em 1.5em
}

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

.wp-caption {
	max-width:100%
}

.wp-caption-text,.gallery-caption {
	color:var(--sml-muted);
	font-size:.85rem
}

.sticky {
	border-color:var(--sml-accent)
}

.bypostauthor>.comment-body {
	border-left:3px solid var(--sml-accent)
}

.comment-list {
	padding-left:1.25em
}

.comment-list .children {
	padding-left:1.5em
}

.comment-body {
	margin-bottom:18px;
	padding:18px;
	border:1px solid var(--sml-line);
	border-radius:12px
}

.comment-author .avatar {
	float:left;
	margin:3px 12px 8px 0;
	border-radius:50%
}

@media(max-width:1000px) {
	.sml-menu-toggle {
		display:grid;
		place-items:center
	}
	.sml-site-navigation {
		position:absolute;
		top:78px;
		left:0;
		right:0;
		padding:0 20px;
		background:#fff;
		border-bottom:1px solid var(--sml-line);
		max-height:0;
		overflow:hidden;
		visibility:hidden;
		pointer-events:none;
		transition:max-height .3s,visibility 0s linear .3s
	}
	.sml-site-navigation.is-open {
		max-height:75vh;
		overflow:auto;
		visibility:visible;
		pointer-events:auto;
		transition-delay:0s
	}
	.sml-primary-menu {
		display:block;
		padding:12px 0 22px
	}
	.sml-primary-menu a {
		display:block;
		padding:11px 0
	}
	.sml-primary-menu .sub-menu {
		position:static;
		display:block;
		margin-left:18px;
		padding:0;
		border:0;
		box-shadow:none;
		opacity:1;
		visibility:visible;
		transform:none
	}
	.sml-hero-grid {
		grid-template-columns:1fr
	}
	.sml-hero-copy {
		text-align:center
	}
	.sml-hero-copy h1,.sml-hero-copy p {
		margin-inline:auto
	}
	.sml-hero-actions {
		justify-content:center
	}
	.sml-hero-card {
		width:min(100%,700px);
		margin:auto
	}
	.sml-feature-grid,.sml-post-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-layout {
		grid-template-columns:1fr
	}
	.sml-footer-grid {
		grid-template-columns:repeat(2,1fr)
	}
}

@media(max-width:640px) {
	.sml-container {
		width:min(calc(100% - 28px),var(--sml-container))
	}
	.sml-hero {
		padding:70px 0
	}
	.sml-hero-actions {
		display:grid
	}
	.sml-hero-actions .sml-button {
		width:100%
	}
	.sml-preview {
		min-height:290px;
		padding:22px
	}
	.sml-feature-grid,.sml-post-grid,.sml-footer-grid {
		grid-template-columns:1fr
	}
	.sml-section {
		padding:66px 0
	}
	.sml-cta {
		grid-template-columns:1fr;
		padding:34px 24px;
		text-align:center
	}
	.sml-footer-bottom {
		display:block;
		text-align:center
	}
	.sml-entry {
		padding:22px 18px
	}
	.sml-sidebar .search-form {
		grid-template-columns:1fr
	}
	.sml-sidebar .search-submit {
		width:100%
	}
	.sml-site-title {
		font-size:1.15rem
	}
	.sml-site-description {
		display:none
	}
}

/* 1.1.0 professional commerce and blog refinements. */
.sml-center-actions {
	justify-content:center
}

.sml-blog-heading {
	margin-bottom:38px
}

.sml-blog-heading h1,.sml-blog-heading h2 {
	margin-bottom:.25em;
	font-size:clamp(2.5rem,5vw,4.2rem)
}

.sml-blog-heading p {
	max-width:650px;
	color:var(--sml-muted);
	font-size:1.06rem
}

.sml-sidebar .sml-widget h2,.sml-sidebar .sml-widget h3 {
	font-size:1.3rem;
	line-height:1.3
}

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

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

.woocommerce ul.products li.product,.woocommerce-page ul.products li.product {
	float:none!important;
	width:auto!important;
	margin:0!important
}

.woocommerce ul.products li.product a img {
	width:100%;
	aspect-ratio:4/3;
	object-fit:contain;
	border-radius:12px;
	background:#f5f9fb
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size:1rem;
	line-height:1.35
}

.sml-footer-default h3 {
	font-size:1.05rem
}

.sml-footer-default ul {
	margin:0;
	padding:0;
	list-style:none
}

.sml-footer-default li {
	margin:8px 0
}

@media(max-width:1180px) {
	.sml-menu-toggle {
		display:grid;
		place-items:center
	}
	.sml-site-navigation {
		position:absolute;
		top:78px;
		left:0;
		right:0;
		padding:0 20px;
		background:#fff;
		border-bottom:1px solid var(--sml-line);
		max-height:0;
		overflow:hidden;
		visibility:hidden;
		pointer-events:none;
		transition:max-height .3s,visibility 0s linear .3s
	}
	.sml-site-navigation.is-open {
		max-height:75vh;
		overflow:auto;
		visibility:visible;
		pointer-events:auto;
		transition-delay:0s
	}
	.sml-primary-menu {
		display:block;
		padding:12px 0 22px
	}
	.sml-primary-menu a {
		display:block;
		padding:11px 0
	}
	.sml-primary-menu .sub-menu {
		position:static;
		display:block;
		margin-left:18px;
		padding:0;
		border:0;
		box-shadow:none;
		opacity:1;
		visibility:visible;
		transform:none
	}
	.sml-header-actions {
		margin-left:auto
	}
	.woocommerce ul.products {
		grid-template-columns:repeat(2,minmax(0,1fr))!important
	}
}

@media(max-width:640px) {
	.sml-header-inner {
		gap:8px
	}
	.sml-header-link {
		min-height:38px;
		padding:7px 10px
	}
	.sml-account-label {
		display:none
	}
	.woocommerce ul.products {
		grid-template-columns:1fr!important
	}
}

/* 1.2.1 homepage preview icons and responsive customer account presentation. */
.sml-preview-grid span {
	display:flex;
	min-width:0;
	height:92px;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:7px;
	padding:10px 6px;
	color:#fff;
	text-align:center
}

.sml-preview-grid svg {
	width:28px;
	height:28px;
	fill:none;
	stroke:currentColor;
	stroke-width:1.7;
	stroke-linecap:round;
	stroke-linejoin:round
}

.sml-preview-grid strong {
	color:#fff;
	font-size:clamp(.66rem,1.2vw,.82rem);
	line-height:1.2
}

.woocommerce-account .woocommerce {
	width:100%;
	max-width:1280px;
	margin-inline:auto
}

.woocommerce-account .woocommerce .u-columns {
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:32px;
	width:100%
}

.woocommerce-account .woocommerce .u-column1,.woocommerce-account .woocommerce .u-column2 {
	float:none;
	width:auto;
	min-width:0
}

.woocommerce-account .woocommerce h2 {
	font-size:clamp(2rem,3vw,2.7rem)
}

.woocommerce-account form.login,.woocommerce-account form.register {
	height:calc(100% - 70px);
	min-height:430px;
	margin:0;
	padding:32px;
	border:1px solid var(--sml-line);
	border-radius:18px;
	background:#fff
}

.woocommerce-account form .form-row {
	width:100%;
	margin:0 0 18px
}

.woocommerce-account form label {
	display:block;
	margin-bottom:7px;
	color:var(--sml-ink);
	font-weight:700
}

.woocommerce-account form input.input-text {
	width:100%;
	min-height:50px;
	padding:10px 14px;
	border:1px solid #cbd9e4;
	border-radius:10px;
	background:#fff
}

.woocommerce-account form input.input-text:focus {
	border-color:var(--sml-primary);
	box-shadow:0 0 0 3px rgba(18,110,130,.1);
	outline:0
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	float:left;
	width:25%;
	padding:14px;
	border:1px solid var(--sml-line);
	border-radius:16px;
	background:var(--sml-bg)
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin:0;
	padding:0;
	list-style:none
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display:block;
	padding:12px 14px;
	border-radius:9px;
	font-weight:700
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	background:#fff;
	box-shadow:0 4px 15px rgba(16,42,67,.05)
}

.woocommerce-account .woocommerce-MyAccount-content {
	float:right;
	width:71%;
	min-width:0
}

.woocommerce-account .woocommerce-MyAccount-content table {
	width:100%
}

.woocommerce-account .woocommerce-Addresses {
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:22px
}

.woocommerce-account .woocommerce-Address {
	float:none!important;
	width:auto!important;
	padding:24px;
	border:1px solid var(--sml-line);
	border-radius:16px
}

.woocommerce-account .woocommerce-Address-title h2 {
	font-size:1.5rem
}

.woocommerce-account .woocommerce-Address-title a {
	float:none;
	display:inline-flex;
	margin-bottom:10px
}

@media(max-width:800px) {
	.woocommerce-account .woocommerce .u-columns {
		grid-template-columns:1fr
	}
	.woocommerce-account form.login,.woocommerce-account form.register {
		height:auto;
		min-height:0;
		padding:24px
	}
	.woocommerce-account .woocommerce-MyAccount-navigation,.woocommerce-account .woocommerce-MyAccount-content {
		float:none;
		width:100%
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-bottom:24px
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display:grid;
		grid-template-columns:repeat(2,minmax(0,1fr));
		gap:5px
	}
	.woocommerce-account .woocommerce-Addresses {
		grid-template-columns:1fr
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		overflow-x:auto
	}
}

@media(max-width:480px) {
	.sml-preview-grid {
		gap:7px
	}
	.sml-preview-grid span {
		height:80px
	}
	.sml-preview-grid svg {
		width:23px;
		height:23px
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns:1fr
	}
	.woocommerce-account form.login,.woocommerce-account form.register {
		padding:20px 16px
	}
}

/* 1.3.0 complete storefront, commerce header and customer account system. */
.sml-commerce-bar {
	border-top:1px solid var(--sml-line);
	background:#f7fafc
}

.sml-commerce-bar-inner {
	display:grid;
	grid-template-columns:auto minmax(260px,640px) 1fr;
	align-items:center;
	gap:24px;
	min-height:58px
}

.sml-shop-all {
	display:inline-flex;
	align-items:center;
	gap:9px;
	color:var(--sml-ink);
	font-size:.86rem;
	font-weight:800;
	white-space:nowrap
}

.sml-product-search form {
	display:grid;
	grid-template-columns:minmax(0,1fr) auto;
	margin:0
}

.sml-product-search .search-field {
	width:100%;
	min-height:40px;
	padding:8px 14px;
	border:1px solid #cbd9e4;
	border-radius:10px 0 0 10px;
	background:#fff
}

.sml-product-search button {
	min-height:40px;
	padding:8px 18px;
	border:0;
	border-radius:0 10px 10px 0;
	background:var(--sml-primary);
	color:#fff;
	font-weight:750
}

.sml-commerce-note {
	justify-self:end;
	color:var(--sml-muted);
	font-size:.8rem
}

.sml-store-hero {
	position:relative;
	overflow:hidden;
	padding:clamp(70px,7vw,120px) 0;
	background:linear-gradient(130deg,#f7fbfc 0%,#fff 53%,#fff7e7 100%)
}

.sml-store-hero:before {
	content:"";
	position:absolute;
	right:-150px;
	top:-190px;
	width:560px;
	height:560px;
	border-radius:50%;
	background:radial-gradient(circle,rgba(232,180,79,.23),transparent 68%)
}

.sml-store-hero-grid {
	position:relative;
	z-index:1;
	display:grid;
	grid-template-columns:minmax(0,1.03fr) minmax(430px,.97fr);
	align-items:center;
	gap:clamp(45px,6vw,90px)
}

.sml-store-hero-copy h1 {
	max-width:820px;
	font-size:clamp(3rem,5.7vw,5.7rem)
}

.sml-hero-lead {
	max-width:700px;
	color:var(--sml-muted);
	font-size:clamp(1.02rem,1.4vw,1.2rem)
}

.sml-button--outline {
	background:transparent;
	color:var(--sml-primary)!important;
	box-shadow:none
}

.sml-button--outline:hover {
	background:var(--sml-primary);
	color:#fff!important
}

.sml-button--light {
	border-color:#fff;
	background:#fff;
	color:var(--sml-ink)!important
}

.sml-hero-highlights {
	display:flex;
	flex-wrap:wrap;
	gap:15px 25px;
	margin:28px 0 0;
	padding:0;
	list-style:none;
	color:var(--sml-muted);
	font-size:.88rem;
	font-weight:700
}

.sml-hero-highlights li {
	display:flex;
	align-items:center;
	gap:7px
}

.sml-hero-highlights span {
	display:grid;
	place-items:center;
	width:22px;
	height:22px;
	border-radius:50%;
	background:#dff3ea;
	color:#1f8b61
}

.sml-store-showcase {
	position:relative;
	min-width:0;
	padding:22px;
	border:1px solid var(--sml-line);
	border-radius:28px;
	background:#fff;
	box-shadow:0 32px 75px rgba(16,42,67,.14)
}

.sml-window-dots {
	display:flex;
	gap:7px;
	padding:3px 2px 17px
}

.sml-window-dots span {
	width:9px;
	height:9px;
	border-radius:50%;
	background:#e56868
}

.sml-window-dots span:nth-child(2) {
	background:#e6b348
}

.sml-window-dots span:nth-child(3) {
	background:#61c57a
}

.sml-showcase-product {
	display:grid;
	grid-template-columns:minmax(0,1.18fr) minmax(150px,.82fr);
	align-items:stretch;
	overflow:hidden;
	border-radius:19px;
	background:#0f4053;
	color:#fff
}

.sml-showcase-image {
	position:relative;
	min-height:350px;
	background:#eef5f6
}

.sml-showcase-image img {
	width:100%;
	height:100%;
	object-fit:cover
}

.sml-showcase-badge {
	position:absolute;
	top:15px;
	left:15px;
	padding:7px 12px;
	border-radius:30px;
	background:var(--sml-accent);
	color:var(--sml-ink);
	font-size:.75rem;
	font-weight:850;
	text-transform:uppercase
}

.sml-showcase-info {
	display:flex;
	flex-direction:column;
	justify-content:center;
	gap:12px;
	padding:28px
}

.sml-showcase-info span {
	color:#bfe0e6;
	font-size:.72rem;
	font-weight:800;
	letter-spacing:.12em;
	text-transform:uppercase
}

.sml-showcase-info strong {
	color:#fff;
	font-size:clamp(1.3rem,2.1vw,2rem);
	line-height:1.15
}

.sml-showcase-info .price {
	color:#fff
}

.sml-showcase-placeholder {
	display:grid;
	place-items:center;
	min-height:390px;
	padding:30px;
	border-radius:19px;
	background:#123f52;
	text-align:center
}

.sml-showcase-placeholder svg {
	width:min(100%,390px)
}

.sml-showcase-placeholder strong {
	max-width:360px;
	color:#fff;
	font-size:1.4rem
}

.sml-floating-card {
	position:absolute;
	right:-18px;
	bottom:34px;
	display:flex;
	align-items:center;
	gap:8px;
	padding:13px 18px;
	border:1px solid var(--sml-line);
	border-radius:13px;
	background:#fff;
	color:var(--sml-ink);
	font-size:.82rem;
	font-weight:800;
	box-shadow:var(--sml-shadow)
}

.sml-floating-card span {
	color:#e0a323
}

.sml-trust-strip {
	background:#102f48;
	color:#fff
}

.sml-trust-grid {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:1px
}

.sml-trust-grid>div {
	display:grid;
	grid-template-columns:46px 1fr;
	column-gap:13px;
	align-items:center;
	padding:27px clamp(15px,2vw,30px);
	border-right:1px solid rgba(255,255,255,.12)
}

.sml-trust-grid>div:last-child {
	border-right:0
}

.sml-trust-grid strong {
	color:#fff;
	font-size:.94rem
}

.sml-trust-grid small {
	grid-column:2;
	color:#b9ceda;
	line-height:1.4
}

.sml-trust-icon {
	grid-row:1/3;
	display:grid;
	place-items:center;
	width:42px;
	height:42px;
	border-radius:12px;
	background:rgba(255,255,255,.1);
	color:#f2bd54;
	font-size:1.15rem
}

.sml-section-top {
	display:flex;
	align-items:end;
	justify-content:space-between;
	gap:30px;
	margin-bottom:38px
}

.sml-section-top h2 {
	margin:0
}

.sml-section-top .sml-eyebrow {
	margin-bottom:10px
}

.sml-section-top>a {
	font-weight:750;
	white-space:nowrap
}

.sml-category-grid {
	display:grid;
	grid-template-columns:repeat(6,minmax(0,1fr));
	gap:18px
}

.sml-category-card {
	min-width:0;
	padding:12px 12px 18px;
	border:1px solid var(--sml-line);
	border-radius:18px;
	background:#fff;
	color:var(--sml-ink);
	text-align:center;
	transition:.22s
}

.sml-category-card:hover {
	border-color:#bad4db;
	box-shadow:var(--sml-shadow);
	transform:translateY(-4px)
}

.sml-category-image {
	aspect-ratio:4/3;
	margin-bottom:14px;
	overflow:hidden;
	border-radius:13px;
	background:#eef5f6
}

.sml-category-image img,.sml-category-image svg {
	width:100%;
	height:100%;
	object-fit:cover
}

.sml-category-card strong,.sml-category-card span {
	display:block;
	overflow-wrap:anywhere
}

.sml-category-card span {
	color:var(--sml-muted);
	font-size:.78rem
}

.sml-promo-grid {
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:24px
}

.sml-promo-card {
	position:relative;
	overflow:hidden;
	min-height:390px;
	padding:clamp(32px,4vw,58px);
	border-radius:25px
}

.sml-promo-card:after {
	content:"";
	position:absolute;
	right:-70px;
	bottom:-95px;
	width:270px;
	height:270px;
	border:45px solid rgba(255,255,255,.09);
	border-radius:50%
}

.sml-promo-card>* {
	position:relative;
	z-index:1
}

.sml-promo-card>span {
	font-size:.75rem;
	font-weight:850;
	letter-spacing:.13em;
	text-transform:uppercase
}

.sml-promo-card h2 {
	max-width:620px;
	margin-top:18px;
	font-size:clamp(2rem,3.4vw,3.15rem)
}

.sml-promo-card p {
	max-width:580px
}

.sml-promo-card--dark {
	background:linear-gradient(140deg,#0b5262,#102a43);
	color:#d8e9ed
}

.sml-promo-card--dark h2 {
	color:#fff
}

.sml-promo-card--gold {
	background:linear-gradient(140deg,#fff0c9,#f5bd4d);
	color:#513b13
}

.sml-promo-card--gold h2 {
	color:#2b270f
}

.sml-values-section {
	padding:90px 0;
	background:#102f48
}

.sml-values-section h2 {
	max-width:850px;
	color:#fff
}

.sml-values-section .sml-feature-grid {
	grid-template-columns:repeat(4,minmax(0,1fr))
}

.sml-values-section .sml-feature-grid article {
	padding:26px;
	border:1px solid rgba(255,255,255,.12);
	border-radius:18px;
	background:rgba(255,255,255,.05)
}

.sml-values-section .sml-feature-grid h3 {
	color:#fff
}

.sml-values-section .sml-feature-grid p {
	margin:0;
	color:#bdd0dc
}

.sml-values-section .sml-feature-icon {
	background:rgba(255,255,255,.1);
	color:#f0bd55
}

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

.sml-final-cta {
	padding:50px 0;
	background:linear-gradient(110deg,var(--sml-primary),#0d4256);
	color:#d6e9ed
}

.sml-final-cta .sml-container {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:30px
}

.sml-final-cta h2 {
	margin:0;
	color:#fff
}

.sml-final-cta .sml-eyebrow {
	margin-bottom:8px;
	color:#fff
}

/* Logged-out and logged-in WooCommerce customer account. */
.woocommerce-account .sml-entry {
	width:min(100%,1480px);
	margin-inline:auto;
	padding:clamp(26px,4vw,60px)
}

.woocommerce-account .sml-entry-title {
	margin-bottom:32px
}

.woocommerce-account .woocommerce {
	max-width:none
}

.woocommerce-account .woocommerce .u-columns.col2-set {
	display:grid!important;
	grid-template-columns:repeat(2,minmax(0,1fr))!important;
	gap:32px;
	width:100%
}

.woocommerce-account .woocommerce .u-column1,.woocommerce-account .woocommerce .u-column2 {
	float:none!important;
	width:100%!important;
	min-width:0
}

.woocommerce-account form.login,.woocommerce-account form.register {
	display:flex;
	height:100%;
	min-height:440px;
	flex-direction:column;
	margin:0!important;
	padding:clamp(24px,3vw,38px)!important;
	border:1px solid var(--sml-line)!important;
	border-radius:18px;
	background:#fff
}

.woocommerce-account form.login .woocommerce-form-row,.woocommerce-account form.register .woocommerce-form-row {
	max-width:none
}

.woocommerce-account form .password-input {
	display:block;
	width:100%
}

.woocommerce-account form .show-password-input {
	top:50%;
	transform:translateY(-50%)
}

body.logged-in.woocommerce-account .woocommerce {
	display:grid;
	grid-template-columns:260px minmax(0,1fr);
	align-items:start;
	gap:32px
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation,body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
	float:none!important;
	width:100%!important;
	min-width:0
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
	position:sticky;
	top:160px;
	margin:0;
	padding:13px;
	border:1px solid var(--sml-line);
	border-radius:17px;
	background:#f4f8fb
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li+li {
	margin-top:4px
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a {
	padding:12px 14px
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
	padding:clamp(24px,3vw,38px);
	border:1px solid var(--sml-line);
	border-radius:18px;
	background:#fff;
	overflow:hidden
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content>p:first-child {
	font-size:1.04rem
}

.woocommerce-account .woocommerce-MyAccount-content table {
	display:table;
	width:100%;
	max-width:100%;
	border-collapse:separate;
	border-spacing:0;
	overflow:hidden;
	border:1px solid var(--sml-line);
	border-radius:13px
}

.woocommerce-account .woocommerce-MyAccount-content th,.woocommerce-account .woocommerce-MyAccount-content td {
	padding:14px 12px;
	border:0;
	border-bottom:1px solid var(--sml-line);
	text-align:left
}

.woocommerce-account .woocommerce-MyAccount-content tr:last-child td {
	border-bottom:0
}

.woocommerce-account .woocommerce-MyAccount-content .button {
	min-height:40px;
	padding:9px 15px
}

.woocommerce-account .woocommerce-Addresses {
	display:grid!important;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:22px
}

.woocommerce-account .woocommerce-Address {
	min-width:0
}

.woocommerce-account .woocommerce-EditAccountForm {
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:0 18px
}

.woocommerce-account .woocommerce-EditAccountForm .form-row-wide,.woocommerce-account .woocommerce-EditAccountForm fieldset,.woocommerce-account .woocommerce-EditAccountForm>p:last-child {
	grid-column:1/-1
}

.woocommerce-account .woocommerce-EditAccountForm .form-row-first,.woocommerce-account .woocommerce-EditAccountForm .form-row-last {
	float:none!important;
	width:100%!important
}

.woocommerce-account .woocommerce-info,.woocommerce-account .woocommerce-message {
	border-radius:12px;
	background:#f0f8fa
}

.woocommerce-account mark {
	padding:2px 5px;
	border-radius:5px;
	background:#fff1c6
}

@media(max-width:1180px) {
	.sml-commerce-note {
		display:none
	}
	.sml-commerce-bar-inner {
		grid-template-columns:auto minmax(200px,1fr)
	}
	.sml-store-hero-grid {
		grid-template-columns:1fr
	}
	.sml-store-hero-copy {
		text-align:center
	}
	.sml-store-hero-copy h1,.sml-hero-lead {
		margin-inline:auto
	}
	.sml-hero-actions,.sml-hero-highlights {
		justify-content:center
	}
	.sml-store-showcase {
		width:min(100%,760px);
		margin:auto
	}
	.sml-category-grid {
		grid-template-columns:repeat(3,minmax(0,1fr))
	}
	.sml-values-section .sml-feature-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
}

@media(max-width:900px) {
	.sml-trust-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-trust-grid>div:nth-child(2) {
		border-right:0
	}
	.sml-promo-grid {
		grid-template-columns:1fr
	}
	.sml-card-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	body.logged-in.woocommerce-account .woocommerce {
		grid-template-columns:1fr
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
		position:static
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display:grid;
		grid-template-columns:repeat(3,minmax(0,1fr));
		gap:5px
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li+li {
		margin:0
	}
	.woocommerce-account .woocommerce .u-columns.col2-set {
		grid-template-columns:1fr!important
	}
	.woocommerce-account form.login,.woocommerce-account form.register {
		min-height:0
	}
}

@media(max-width:700px) {
	.sml-commerce-bar-inner {
		grid-template-columns:1fr;
		gap:9px;
		padding-block:10px
	}
	.sml-shop-all {
		display:none
	}
	.sml-store-hero {
		padding:62px 0
	}
	.sml-store-hero-copy h1 {
		font-size:clamp(2.65rem,13vw,4.2rem)
	}
	.sml-showcase-product {
		grid-template-columns:1fr
	}
	.sml-showcase-image {
		min-height:270px
	}
	.sml-floating-card {
		right:8px;
		bottom:16px
	}
	.sml-trust-grid {
		grid-template-columns:1fr
	}
	.sml-trust-grid>div {
		border-right:0;
		border-bottom:1px solid rgba(255,255,255,.12)
	}
	.sml-section-top {
		display:block
	}
	.sml-section-top>a {
		display:inline-block;
		margin-top:14px
	}
	.sml-category-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-values-section .sml-feature-grid,.sml-card-grid {
		grid-template-columns:1fr
	}
	.sml-final-cta .sml-container {
		display:block;
		text-align:center
	}
	.sml-final-cta .sml-button {
		margin-top:22px
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
		padding:20px 16px;
		overflow:visible
	}
	.woocommerce-account .woocommerce-MyAccount-content table,.woocommerce-account .woocommerce-MyAccount-content tbody,.woocommerce-account .woocommerce-MyAccount-content tr,.woocommerce-account .woocommerce-MyAccount-content td {
		display:block!important;
		width:100%!important;
		min-width:0
	}
	.woocommerce-account .woocommerce-MyAccount-content thead {
		display:none
	}
	.woocommerce-account .woocommerce-MyAccount-content tr {
		margin-bottom:16px;
		padding:10px;
		border:1px solid var(--sml-line);
		border-radius:12px
	}
	.woocommerce-account .woocommerce-MyAccount-content td {
		display:flex!important;
		align-items:center;
		justify-content:space-between;
		gap:18px;
		padding:10px!important;
		border-bottom:1px solid var(--sml-line)!important;
		text-align:right!important
	}
	.woocommerce-account .woocommerce-MyAccount-content td:last-child {
		border-bottom:0!important
	}
	.woocommerce-account .woocommerce-MyAccount-content td:before {
		content:attr(data-title);
		color:var(--sml-ink);
		font-weight:800;
		text-align:left
	}
	.woocommerce-account .woocommerce-Addresses,.woocommerce-account .woocommerce-EditAccountForm {
		grid-template-columns:1fr
	}
	.woocommerce-account .woocommerce-EditAccountForm>* {
		grid-column:1!important
	}
}

@media(max-width:460px) {
	.sml-category-grid {
		grid-template-columns:1fr
	}
	.sml-hero-actions {
		display:grid
	}
	.sml-hero-actions .sml-button {
		width:100%
	}
	.sml-showcase-info {
		padding:22px
	}
	.sml-promo-card {
		min-height:0;
		padding:30px 22px
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns:1fr
	}
	.woocommerce-account .sml-entry {
		padding:22px 14px
	}
	.woocommerce-account form.login,.woocommerce-account form.register {
		padding:22px 16px!important
	}
}

/* 1.3.1 definitive WooCommerce My Account alignment. */
body.woocommerce-account:not(.logged-in) .sml-content {
	padding-top:50px
}

body.woocommerce-account:not(.logged-in) .sml-entry {
	overflow:visible
}

body.woocommerce-account:not(.logged-in) #customer_login, body.woocommerce-account:not(.logged-in) .woocommerce #customer_login.col2-set, body.woocommerce-account:not(.logged-in) .woocommerce #customer_login.u-columns {
	display:grid!important;
	grid-template-columns:repeat(2,minmax(0,1fr))!important;
	align-items:stretch!important;
	gap:32px!important;
	width:100%!important;
	max-width:1280px!important;
	margin:0 auto!important;
	clear:both!important
}

body.woocommerce-account:not(.logged-in) #customer_login:before, body.woocommerce-account:not(.logged-in) #customer_login:after {
	display:none!important;
	content:none!important
}

body.woocommerce-account:not(.logged-in) #customer_login>.u-column1, body.woocommerce-account:not(.logged-in) #customer_login>.u-column2, body.woocommerce-account:not(.logged-in) #customer_login>.col-1, body.woocommerce-account:not(.logged-in) #customer_login>.col-2 {
	display:flex!important;
	float:none!important;
	clear:none!important;
	width:100%!important;
	max-width:none!important;
	min-width:0!important;
	height:100%!important;
	margin:0!important;
	padding:0!important;
	flex-direction:column!important;
	position:static!important;
	transform:none!important
}

body.woocommerce-account:not(.logged-in) #customer_login h2 {
	width:100%!important;
	margin:0 0 18px!important;
	font-size:clamp(2rem,3vw,2.7rem)!important;
	text-align:left!important
}

body.woocommerce-account:not(.logged-in) #customer_login form.login, body.woocommerce-account:not(.logged-in) #customer_login form.register {
	flex:1 1 auto!important;
	width:100%!important;
	max-width:none!important;
	height:auto!important;
	min-height:460px!important;
	margin:0!important
}

body.woocommerce-account:not(.logged-in) #customer_login .woocommerce-form-row {
	float:none!important;
	width:100%!important;
	max-width:none!important;
	margin:0 0 18px!important
}

body.woocommerce-account:not(.logged-in) #customer_login input.input-text {
	width:100%!important;
	max-width:none!important
}

body.logged-in.woocommerce-account .sml-entry>.entry-header {
	margin-bottom:28px
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content>*:first-child {
	margin-top:0
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content>*:last-child {
	margin-bottom:0
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display:block!important
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li {
	display:block!important;
	float:none!important;
	width:100%!important;
	margin:0 0 4px!important;
	padding:0!important
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
	margin-bottom:0!important
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a {
	display:block!important;
	width:100%!important;
	white-space:normal!important
}

@media(max-width:900px) {
	body.woocommerce-account:not(.logged-in) #customer_login,body.woocommerce-account:not(.logged-in) .woocommerce #customer_login.col2-set,body.woocommerce-account:not(.logged-in) .woocommerce #customer_login.u-columns {
		grid-template-columns:1fr!important;
		gap:28px!important
	}
	body.woocommerce-account:not(.logged-in) #customer_login form.login,body.woocommerce-account:not(.logged-in) #customer_login form.register {
		min-height:0!important
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display:grid!important;
		grid-template-columns:repeat(3,minmax(0,1fr))!important;
		gap:6px!important
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li {
		margin:0!important
	}
}

@media(max-width:640px) {
	body.woocommerce-account:not(.logged-in) .sml-content {
		padding-top:30px
	}
	body.woocommerce-account:not(.logged-in) #customer_login {
		gap:24px!important
	}
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns:repeat(2,minmax(0,1fr))!important
	}
}

@media(max-width:430px) {
	body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns:1fr!important
	}
}

/* 1.4.0 full-width marketplace experience. */
.sml-content {
	width:min(calc(100% - clamp(28px,3.2vw,64px)),1920px);
	padding:clamp(38px,4vw,70px) 0
}

.sml-entry {
	width:100%
}

.sml-layout {
	grid-template-columns:minmax(0,1fr) minmax(250px,320px);
	gap:clamp(20px,2vw,34px)
}

.woocommerce-account .sml-entry {
	width:100%;
	padding:clamp(26px,3vw,54px)
}

.sml-commerce-bar-inner {
	grid-template-columns:auto minmax(300px,1fr) auto
}

.sml-product-search {
	width:100%
}

.sml-commerce-note {
	white-space:nowrap
}

.sml-market-hero {
	padding:18px 0 22px;
	background:#f3f6f8
}

.sml-market-shell {
	display:grid;
	grid-template-columns:minmax(210px,250px) minmax(0,1fr) minmax(220px,270px);
	gap:14px;
	align-items:stretch
}

.sml-market-categories,.sml-market-side,.sml-market-banner {
	min-width:0;
	border:1px solid var(--sml-line);
	border-radius:18px;
	background:#fff;
	box-shadow:0 8px 24px rgba(16,42,67,.05)
}

.sml-market-categories {
	padding:18px
}

.sml-market-categories h2 {
	display:flex;
	align-items:center;
	gap:9px;
	margin:0 0 12px;
	font-size:1rem
}

.sml-market-categories ul {
	margin:0;
	padding:0;
	list-style:none
}

.sml-market-categories li+li {
	border-top:1px solid #edf2f6
}

.sml-market-categories li a {
	display:grid;
	grid-template-columns:18px minmax(0,1fr) auto;
	align-items:center;
	gap:8px;
	padding:8px 2px;
	color:var(--sml-ink);
	font-size:.82rem;
	font-weight:650;
	line-height:1.3
}

.sml-market-categories li a:hover {
	color:var(--sml-primary);
	transform:translateX(3px)
}

.sml-market-categories li span {
	color:var(--sml-accent)
}

.sml-market-categories li b {
	font-size:1.2rem
}

.sml-market-all {
	display:inline-block;
	margin-top:13px;
	font-size:.78rem;
	font-weight:800
}

.sml-market-banner {
	position:relative;
	display:grid;
	grid-template-columns:minmax(0,1.05fr) minmax(230px,.75fr);
	align-items:center;
	min-height:410px;
	padding:clamp(28px,3.4vw,56px);
	overflow:hidden;
	background:linear-gradient(125deg,#fff 0%,#f7fbfc 52%,#fff0ca 100%)
}

.sml-market-banner:before {
	content:"";
	position:absolute;
	right:-100px;
	bottom:-150px;
	width:390px;
	height:390px;
	border-radius:50%;
	background:rgba(232,180,79,.18)
}

.sml-market-banner-copy {
	position:relative;
	z-index:2;
	min-width:0
}

.sml-market-kicker {
	display:inline-flex;
	margin-bottom:15px;
	padding:6px 11px;
	border-radius:30px;
	background:#e7f3f5;
	color:var(--sml-primary);
	font-size:.7rem;
	font-weight:850;
	letter-spacing:.09em;
	text-transform:uppercase
}

.sml-market-banner h1 {
	max-width:740px;
	margin-bottom:17px;
	font-size:clamp(2.45rem,4.1vw,4.65rem);
	line-height:1.01
}

.sml-market-banner-copy>p {
	max-width:680px;
	margin-bottom:22px;
	color:var(--sml-muted);
	font-size:clamp(.95rem,1.2vw,1.08rem);
	line-height:1.6
}

.sml-market-banner .sml-button {
	min-height:44px;
	padding:10px 19px
}

.sml-market-spotlight {
	position:relative;
	z-index:1;
	display:block;
	align-self:stretch;
	min-height:300px;
	overflow:hidden;
	border-radius:17px;
	background:#fff;
	box-shadow:0 16px 35px rgba(16,42,67,.12)
}

.sml-market-spotlight img {
	width:100%;
	height:100%;
	object-fit:cover
}

.sml-market-spotlight span {
	position:absolute;
	right:12px;
	bottom:12px;
	left:12px;
	padding:10px 12px;
	border-radius:10px;
	background:rgba(16,42,67,.9);
	color:#fff;
	font-size:.8rem;
	font-weight:800
}

.sml-market-art {
	position:relative;
	z-index:1;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	align-items:end;
	gap:10px;
	height:280px;
	padding:30px;
	border-radius:24px;
	background:#164e60
}

.sml-market-art span {
	display:block;
	border-radius:18px 18px 6px 6px;
	background:#fff
}

.sml-market-art span:nth-child(1) {
	height:46%;
	background:#f3bd52
}

.sml-market-art span:nth-child(2) {
	height:76%;
	background:#fff
}

.sml-market-art span:nth-child(3) {
	height:58%;
	background:#8bc4cf
}

.sml-market-side {
	display:grid;
	grid-template-rows:auto minmax(0,1fr) auto;
	gap:12px;
	padding:14px
}

.sml-welcome-card {
	display:grid;
	grid-template-columns:42px minmax(0,1fr);
	gap:10px;
	padding:13px;
	border-radius:13px;
	background:#f5f9fb
}

.sml-welcome-icon {
	display:grid;
	place-items:center;
	width:42px;
	height:42px;
	border-radius:50%;
	background:var(--sml-primary);
	color:#fff;
	font-size:1.35rem
}

.sml-welcome-card strong,.sml-welcome-card small {
	display:block;
	line-height:1.35
}

.sml-welcome-card strong {
	font-size:.83rem
}

.sml-welcome-card small {
	margin-top:3px;
	color:var(--sml-muted);
	font-size:.7rem
}

.sml-welcome-card>a {
	grid-column:1/-1;
	padding:9px 12px;
	border-radius:9px;
	background:var(--sml-primary);
	color:#fff;
	text-align:center;
	font-size:.75rem;
	font-weight:800
}

.sml-side-promo {
	display:flex;
	min-height:165px;
	flex-direction:column;
	justify-content:flex-end;
	padding:20px;
	border-radius:14px;
	background:linear-gradient(145deg,#123d52,#126e82);
	color:#d3e8ed
}

.sml-side-promo span {
	font-size:.65rem;
	font-weight:800;
	letter-spacing:.1em;
	text-transform:uppercase
}

.sml-side-promo strong {
	margin:8px 0;
	color:#fff;
	font-size:1.2rem;
	line-height:1.15
}

.sml-side-promo a {
	color:#fff;
	font-size:.75rem;
	font-weight:800
}

.sml-side-benefits {
	display:grid;
	gap:6px;
	color:var(--sml-muted);
	font-size:.7rem;
	font-weight:700
}

.sml-market-services {
	border-block:1px solid var(--sml-line);
	background:#fff
}

.sml-market-services>.sml-container {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr))
}

.sml-market-services .sml-container>div {
	display:flex;
	align-items:center;
	gap:12px;
	padding:18px clamp(12px,2vw,28px);
	border-right:1px solid var(--sml-line)
}

.sml-market-services .sml-container>div:last-child {
	border-right:0
}

.sml-market-services .sml-container>div>span {
	display:grid;
	place-items:center;
	width:40px;
	height:40px;
	flex:0 0 40px;
	border-radius:12px;
	background:#eaf5f6;
	font-size:1rem
}

.sml-market-services p {
	margin:0
}

.sml-market-services strong,.sml-market-services small {
	display:block;
	line-height:1.35
}

.sml-market-services strong {
	font-size:.84rem
}

.sml-market-services small {
	margin-top:3px;
	color:var(--sml-muted);
	font-size:.7rem
}

.sml-market-section {
	padding:clamp(46px,5vw,82px) 0
}

.sml-market-section--categories {
	background:#f7f9fb
}

.sml-market-section--deals {
	background:#fff7e8
}

.sml-market-heading {
	display:flex;
	align-items:end;
	justify-content:space-between;
	gap:24px;
	margin-bottom:24px
}

.sml-market-heading span {
	display:block;
	margin-bottom:4px;
	color:var(--sml-primary);
	font-size:.68rem;
	font-weight:850;
	letter-spacing:.11em;
	text-transform:uppercase
}

.sml-market-heading h2 {
	margin:0;
	font-size:clamp(1.7rem,2.5vw,2.65rem)
}

.sml-market-heading>a {
	font-size:.82rem;
	font-weight:800;
	white-space:nowrap
}

.sml-department-grid {
	display:grid;
	grid-template-columns:repeat(10,minmax(0,1fr));
	gap:12px
}

.sml-department-grid>a {
	min-width:0;
	padding:13px 8px 15px;
	border:1px solid var(--sml-line);
	border-radius:15px;
	background:#fff;
	color:var(--sml-ink);
	text-align:center;
	transition:.2s
}

.sml-department-grid>a:hover {
	border-color:#a9ced5;
	box-shadow:var(--sml-shadow);
	transform:translateY(-3px)
}

.sml-department-grid>a>span {
	display:grid;
	place-items:center;
	aspect-ratio:1;
	margin-bottom:10px;
	overflow:hidden;
	border-radius:50%;
	background:#eaf4f5
}

.sml-department-grid img {
	width:100%;
	height:100%;
	object-fit:cover
}

.sml-department-grid b {
	color:var(--sml-accent);
	font-size:1.5rem
}

.sml-department-grid strong,.sml-department-grid small {
	display:block;
	overflow-wrap:anywhere;
	line-height:1.3
}

.sml-department-grid strong {
	font-size:.76rem
}

.sml-department-grid small {
	margin-top:4px;
	color:var(--sml-muted);
	font-size:.65rem
}

.sml-market-product-grid {
	display:grid;
	grid-template-columns:repeat(6,minmax(0,1fr));
	gap:14px
}

.sml-market-product {
	min-width:0;
	overflow:hidden;
	border:1px solid var(--sml-line);
	border-radius:15px;
	background:#fff;
	transition:.2s
}

.sml-market-product:hover {
	border-color:#aed0d7;
	box-shadow:0 13px 32px rgba(16,42,67,.11);
	transform:translateY(-3px)
}

.sml-market-product-image {
	position:relative;
	display:block;
	aspect-ratio:1;
	overflow:hidden;
	background:#f4f7f8
}

.sml-market-product-image img {
	width:100%;
	height:100%;
	object-fit:cover;
	transition:.3s
}

.sml-market-product:hover .sml-market-product-image img {
	transform:scale(1.035)
}

.sml-market-product-image>span {
	position:absolute;
	top:9px;
	left:9px;
	padding:5px 8px;
	border-radius:20px;
	background:#e8b44f;
	color:#392c0e;
	font-size:.62rem;
	font-weight:900;
	text-transform:uppercase
}

.sml-market-product-body {
	padding:13px
}

.sml-market-product-title {
	display:-webkit-box;
	min-height:2.7em;
	overflow:hidden;
	color:var(--sml-ink);
	font-size:.82rem;
	font-weight:700;
	line-height:1.35;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2
}

.sml-market-product-price {
	min-height:26px;
	margin:8px 0;
	color:var(--sml-primary);
	font-size:.9rem;
	font-weight:850
}

.sml-market-product-price del {
	color:#8799aa;
	font-size:.7rem
}

.sml-market-product-action {
	font-size:.7rem;
	font-weight:800
}

.sml-market-promos {
	padding-top:8px
}

.sml-market-promos>.sml-container {
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:14px
}

.sml-market-promo {
	position:relative;
	display:flex;
	min-height:220px;
	flex-direction:column;
	justify-content:flex-end;
	overflow:hidden;
	padding:27px;
	border-radius:18px;
	color:#fff
}

.sml-market-promo:after {
	content:"";
	position:absolute;
	right:-50px;
	top:-70px;
	width:190px;
	height:190px;
	border:34px solid rgba(255,255,255,.1);
	border-radius:50%
}

.sml-market-promo>* {
	position:relative;
	z-index:1
}

.sml-market-promo span {
	font-size:.66rem;
	font-weight:850;
	letter-spacing:.1em;
	text-transform:uppercase
}

.sml-market-promo strong {
	max-width:520px;
	margin:10px 0;
	color:#fff;
	font-size:clamp(1.25rem,1.65vw,1.7rem);
	line-height:1.15
}

.sml-market-promo b {
	font-size:.75rem
}

.sml-market-promo--teal {
	background:linear-gradient(145deg,#126e82,#0b4455)
}

.sml-market-promo--gold {
	background:linear-gradient(145deg,#c48617,#e5b247)
}

.sml-market-promo--blue {
	background:linear-gradient(145deg,#244d78,#102a43)
}

.sml-market-stories {
	padding-bottom:90px;
	background:#f7f9fb
}

@media(min-width:1500px) {
	.woocommerce ul.products {
		grid-template-columns:repeat(5,minmax(0,1fr))!important
	}
}

@media(max-width:1400px) {
	.sml-market-shell {
		grid-template-columns:220px minmax(0,1fr)
	}
	.sml-market-side {
		grid-column:1/-1;
		grid-template-columns:repeat(3,minmax(0,1fr));
		grid-template-rows:auto
	}
	.sml-side-promo {
		min-height:120px
	}
	.sml-department-grid {
		grid-template-columns:repeat(5,minmax(0,1fr))
	}
	.sml-market-product-grid {
		grid-template-columns:repeat(4,minmax(0,1fr))
	}
}

@media(max-width:1050px) {
	.sml-market-shell {
		grid-template-columns:1fr
	}
	.sml-market-categories {
		display:none
	}
	.sml-market-banner {
		min-height:380px
	}
	.sml-market-side {
		grid-template-columns:repeat(3,minmax(0,1fr))
	}
	.sml-market-services>.sml-container {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-market-services .sml-container>div:nth-child(2) {
		border-right:0
	}
	.sml-department-grid {
		grid-template-columns:repeat(5,minmax(0,1fr))
	}
	.sml-market-product-grid {
		grid-template-columns:repeat(3,minmax(0,1fr))
	}
	.sml-market-promos>.sml-container {
		grid-template-columns:1fr 1fr
	}
	.sml-market-promo:last-child {
		grid-column:1/-1
	}
}

@media(max-width:760px) {
	.sml-market-banner {
		grid-template-columns:1fr;
		padding:30px 22px
	}
	.sml-market-banner h1 {
		font-size:clamp(2.35rem,12vw,3.5rem)
	}
	.sml-market-spotlight,.sml-market-art {
		display:none
	}
	.sml-market-side {
		grid-template-columns:1fr
	}
	.sml-market-services>.sml-container {
		grid-template-columns:1fr
	}
	.sml-market-services .sml-container>div {
		border-right:0;
		border-bottom:1px solid var(--sml-line)
	}
	.sml-department-grid {
		grid-template-columns:repeat(3,minmax(0,1fr))
	}
	.sml-market-product-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-market-promos>.sml-container {
		grid-template-columns:1fr
	}
	.sml-market-promo:last-child {
		grid-column:auto
	}
	.sml-market-heading {
		align-items:start
	}
	.sml-market-heading>a {
		margin-top:6px
	}
	.sml-commerce-bar-inner {
		grid-template-columns:1fr
	}
	.sml-content {
		padding-top:34px
	}
}

@media(max-width:480px) {
	.sml-container,.sml-content {
		width:calc(100% - 24px)
	}
	.sml-market-hero {
		padding-top:12px
	}
	.sml-department-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-market-product-grid {
		gap:10px
	}
	.sml-market-product-body {
		padding:11px
	}
	.sml-market-heading {
		display:block
	}
	.sml-market-heading>a {
		display:inline-block;
		margin-top:10px
	}
}

/* 1.4.1 realistic marketplace imagery and category icons. */
.sml-header-actions .sml-header-link:first-child {
	border-color:var(--sml-primary);
	background:var(--sml-primary);
	color:#fff
}

.sml-header-actions .sml-header-link:first-child:hover {
	border-color:var(--sml-primary-dark);
	background:var(--sml-primary-dark);
	color:#fff
}

.sml-market-banner {
	grid-template-columns:minmax(340px,.9fr) minmax(420px,1.2fr);
	padding-right:18px
}

.sml-market-lifestyle {
	position:relative;
	z-index:1;
	align-self:stretch;
	min-width:0;
	min-height:360px;
	overflow:hidden;
	border-radius:18px;
	background:#f5eee2;
	box-shadow:0 18px 38px rgba(16,42,67,.13)
}

.sml-market-lifestyle>img {
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:59% center
}

.sml-market-lifestyle>a {
	position:absolute;
	right:14px;
	bottom:14px;
	left:14px;
	display:block;
	padding:11px 14px;
	border:1px solid rgba(255,255,255,.35);
	border-radius:11px;
	background:rgba(16,42,67,.9);
	color:#fff;
	backdrop-filter:blur(8px)
}

.sml-market-lifestyle>a span,.sml-market-lifestyle>a strong {
	display:block;
	color:#fff;
	line-height:1.25
}

.sml-market-lifestyle>a span {
	margin-bottom:3px;
	color:#f2c66b;
	font-size:.62rem;
	font-weight:850;
	letter-spacing:.08em;
	text-transform:uppercase
}

.sml-market-lifestyle>a strong {
	overflow:hidden;
	font-size:.78rem;
	text-overflow:ellipsis;
	white-space:nowrap
}

.sml-market-categories li a {
	grid-template-columns:30px minmax(0,1fr) auto;
	padding:7px 2px
}

.sml-market-categories li .sml-category-icon {
	display:grid;
	place-items:center;
	width:27px;
	height:27px;
	border-radius:9px;
	background:#edf6f7;
	color:var(--sml-ink);
	font-size:.92rem
}

.sml-department-grid b {
	font-size:1.7rem
}

@media(max-width:1550px) {
	.sml-market-banner {
		grid-template-columns:minmax(300px,.85fr) minmax(360px,1.15fr)
	}
	.sml-market-banner h1 {
		font-size:clamp(2.35rem,3.8vw,4.2rem)
	}
}

@media(max-width:1180px) {
	.sml-market-banner {
		grid-template-columns:minmax(0,.85fr) minmax(330px,1.15fr)
	}
	.sml-market-lifestyle {
		min-height:330px
	}
}

@media(max-width:760px) {
	.sml-market-banner {
		grid-template-columns:1fr;
		padding-right:22px
	}
	.sml-market-lifestyle {
		display:block;
		min-height:260px;
		margin-top:8px
	}
	.sml-market-lifestyle>img {
		object-position:62% center
	}
	.sml-market-lifestyle>a strong {
		white-space:normal
	}
	.sml-header-actions .sml-header-link:first-child {
		padding-inline:11px
	}
}

/* 1.4.2 complete realistic marketplace demo catalogue. */
.sml-market-categories {
	overflow:hidden
}

.sml-market-categories ul {
	display:grid
}

.sml-market-categories li a {
	min-height:38px
}

.sml-market-categories li .sml-category-icon {
	font-size:1rem
}

.sml-department-grid--six {
	grid-template-columns:repeat(6,minmax(0,1fr));
	gap:16px
}

.sml-department-grid .sml-sprite-photo,.sml-demo-product-photo {
	background-image:var(--sml-photo);
	background-repeat:no-repeat;
	background-size:var(--sml-size);
	background-position:var(--sml-position)
}

.sml-department-grid .sml-sprite-photo {
	aspect-ratio:4/3;
	border-radius:14px;
	background-color:#f5f2ed
}

.sml-department-grid--six>a {
	padding:12px
}

.sml-department-grid--six strong {
	font-size:.83rem
}

.sml-catalog-section {
	padding:clamp(44px,4.5vw,76px) 0;
	background:#fff
}

.sml-catalog-section--soft {
	background:#f6f9fb
}

.sml-demo-product-grid {
	display:grid;
	grid-template-columns:repeat(8,minmax(0,1fr));
	gap:12px
}

.sml-demo-product-grid--six {
	grid-template-columns:repeat(6,minmax(0,1fr));
	gap:15px
}

.sml-demo-product {
	min-width:0;
	overflow:hidden;
	border:1px solid var(--sml-line);
	border-radius:16px;
	background:#fff;
	box-shadow:0 7px 20px rgba(16,42,67,.045);
	transition:transform .22s,border-color .22s,box-shadow .22s
}

.sml-demo-product:hover {
	border-color:#9bc6cf;
	box-shadow:0 15px 34px rgba(16,42,67,.12);
	transform:translateY(-4px)
}

.sml-demo-product-photo {
	position:relative;
	display:block;
	aspect-ratio:1;
	background-color:#f5f3ef
}

.sml-demo-product-photo>span {
	position:absolute;
	top:9px;
	left:9px;
	padding:5px 8px;
	border-radius:20px;
	background:#e7b44e;
	color:#3b2a08;
	font-size:.62rem;
	font-weight:900;
	text-transform:uppercase
}

.sml-demo-product-body {
	padding:12px
}

.sml-demo-product-body>a {
	display:-webkit-box;
	min-height:2.7em;
	overflow:hidden;
	color:var(--sml-ink);
	font-size:.78rem;
	font-weight:750;
	line-height:1.35;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2
}

.sml-demo-stars {
	color:#e5a51d;
	font-size:.7rem;
	letter-spacing:.08em
}

.sml-demo-product-body p {
	display:flex;
	align-items:center;
	gap:7px;
	margin:8px 0 0
}

.sml-demo-product-body strong {
	color:var(--sml-primary);
	font-size:.9rem
}

.sml-demo-product-body del {
	color:#8797a7;
	font-size:.67rem
}

.sml-rated-spotlight {
	padding:clamp(58px,6vw,105px) 0;
	background:#102f48
}

.sml-rated-spotlight>.sml-container {
	display:grid;
	grid-template-columns:minmax(0,1.25fr) minmax(350px,.75fr);
	align-items:center;
	gap:clamp(35px,5vw,90px)
}

.sml-rated-spotlight-image {
	overflow:hidden;
	border-radius:28px;
	box-shadow:0 28px 65px rgba(0,0,0,.25)
}

.sml-rated-spotlight-image img {
	display:block;
	width:100%;
	aspect-ratio:2/1;
	object-fit:cover
}

.sml-rated-spotlight-copy>span {
	color:#f0c46a;
	font-size:.72rem;
	font-weight:900;
	letter-spacing:.13em;
	text-transform:uppercase
}

.sml-rated-spotlight-copy .sml-demo-stars {
	margin:13px 0;
	font-size:1rem
}

.sml-rated-spotlight-copy h2 {
	color:#fff;
	font-size:clamp(2rem,3.5vw,3.5rem)
}

.sml-rated-spotlight-copy p {
	color:#c2d6df;
	font-size:1rem
}

.sml-rated-spotlight-copy>strong {
	display:block;
	margin:20px 0;
	color:#fff;
	font-size:1.55rem
}

.sml-rated-spotlight-copy del {
	margin-left:8px;
	color:#9db4c0;
	font-size:1rem
}

.sml-rated-spotlight-copy .sml-button {
	background:#f0bd55;
	border-color:#f0bd55;
	color:#152d40!important
}

.sml-testimonials {
	padding:clamp(58px,6vw,100px) 0;
	background:linear-gradient(145deg,#fff8e9,#f4f9fb)
}

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

.sml-testimonial-grid article {
	padding:clamp(24px,3vw,40px);
	border:1px solid #dbe6ed;
	border-radius:20px;
	background:rgba(255,255,255,.92);
	box-shadow:0 14px 35px rgba(16,42,67,.07)
}

.sml-testimonial-grid .sml-demo-stars {
	font-size:.9rem
}

.sml-testimonial-grid p {
	margin:17px 0 24px;
	color:#40576a;
	font-size:1rem;
	line-height:1.75
}

.sml-testimonial-grid strong,.sml-testimonial-grid small {
	display:block
}

.sml-testimonial-grid small {
	margin-top:3px;
	color:var(--sml-muted)
}

@media(max-width:1100px) {
	.sml-demo-product-grid {
		grid-template-columns:repeat(4,minmax(0,1fr))
	}
	.sml-demo-product-grid--six {
		grid-template-columns:repeat(3,minmax(0,1fr))
	}
	.sml-department-grid--six {
		grid-template-columns:repeat(3,minmax(0,1fr))
	}
}

@media(max-width:1000px) {
	.sml-rated-spotlight>.sml-container {
		grid-template-columns:1fr
	}
	.sml-testimonial-grid {
		grid-template-columns:1fr
	}
	.sml-market-categories {
		display:block
	}
	.sml-market-shell {
		grid-template-columns:1fr
	}
	.sml-market-categories ul {
		grid-template-columns:repeat(3,minmax(0,1fr));
		gap:0 14px
	}
	.sml-market-categories li:nth-child(2) {
		border-top:0
	}
	.sml-market-banner {
		grid-template-columns:1fr
	}
	.sml-market-side {
		grid-template-columns:repeat(3,minmax(0,1fr))
	}
}

@media(max-width:720px) {
	.sml-demo-product-grid,.sml-demo-product-grid--six {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-department-grid--six {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-market-categories ul {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-market-side {
		grid-template-columns:1fr
	}
	.sml-rated-spotlight>.sml-container {
		display:block
	}
	.sml-rated-spotlight-copy {
		margin-top:30px
	}
	.sml-rated-spotlight-image img {
		aspect-ratio:4/3
	}
	.sml-demo-product-body {
		padding:10px
	}
}

.sml-layout--no-sidebar {
	grid-template-columns:minmax(0,1fr)!important
}

@media(max-width:420px) {
	.sml-demo-product-grid,.sml-demo-product-grid--six {
		gap:9px
	}
	.sml-market-categories ul {
		grid-template-columns:1fr
	}
	.sml-market-categories li:nth-child(2) {
		border-top:1px solid #edf2f6
	}
	.sml-department-grid--six {
		gap:10px
	}
	.sml-demo-product-body>a {
		font-size:.72rem
	}
}

/* 1.6.0 global marketplace controls. */
.sml-topbar {
	min-height:30px;
	background:#0d2538;
	color:#dcecf4;
	font-size:.75rem
}

.sml-topbar-inner {
	display:flex;
	min-height:30px;
	align-items:center;
	justify-content:space-between;
	gap:18px
}

.sml-topbar-details,.sml-social-links {
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:7px 18px
}

.sml-topbar a,.sml-topbar span {
	color:inherit
}

.sml-social-links a {
	font-weight:700
}

.sml-preloader {
	position:fixed;
	inset:0;
	z-index:999999;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	gap:14px;
	background:#fff;
	color:var(--sml-ink);
	transition:opacity .35s,visibility .35s
}

.sml-preloader span {
	width:42px;
	height:42px;
	border:4px solid #dce8ed;
	border-top-color:var(--sml-primary);
	border-radius:50%;
	animation:sml-spin .75s linear infinite
}

.sml-preloader.is-hidden {
	opacity:0;
	visibility:hidden
}

@keyframes sml-spin {
	to {
		transform:rotate(360deg)
	}
}

.sml-back-to-top {
	position:fixed;
	right:22px;
	bottom:22px;
	z-index:999;
	display:grid;
	width:46px;
	height:46px;
	place-items:center;
	padding:0;
	border:0;
	border-radius:12px;
	background:var(--sml-primary);
	color:#fff;
	font-size:1.4rem;
	box-shadow:0 12px 32px rgba(16,42,67,.2);
	opacity:0;
	visibility:hidden;
	transform:translateY(12px);
	transition:.22s
}

.sml-back-to-top.is-visible {
	opacity:1;
	visibility:visible;
	transform:none
}

.sml-market-product,.sml-demo-product,.sml-category-card,.sml-entry,.sml-widget,.woocommerce div.product {
	border-radius:var(--sml-radius)
}

@media(max-width:760px) {
	.sml-topbar-inner {
		padding-block:7px;
		align-items:flex-start
	}
	.sml-topbar-details {
		gap:5px 12px
	}
	.sml-social-links {
		display:none
	}
	.sml-back-to-top {
		right:14px;
		bottom:14px;
		width:42px;
		height:42px
	}
}

@media(prefers-reduced-motion:reduce) {
	.sml-preloader span {
		animation:none
	}
	.sml-back-to-top {
		transition:none
	}
	html {
		scroll-behavior:auto
	}
}

/* 1.7.0 dynamic storefront integration. */
.sml-latest-rotator {
	position:relative;
	min-height:100%;
	overflow:hidden;
	border-radius:14px;
	background:#164c60
}

.sml-latest-slide {
	position:absolute;
	inset:0;
	display:grid;
	grid-template-rows:minmax(0,1fr) auto;
	opacity:0;
	visibility:hidden;
	transition:opacity .35s
}

.sml-latest-slide.is-active {
	opacity:1;
	visibility:visible
}

.sml-latest-slide img {
	width:100%;
	height:100%;
	object-fit:cover
}

.sml-latest-slide div {
	padding:16px;
	background:linear-gradient(transparent,#12384b 28%);
	color:#fff
}

.sml-latest-slide strong,.sml-latest-slide span {
	display:block;
	color:#fff
}

.sml-latest-slide a {
	display:inline-block;
	margin-top:8px;
	color:#fff;
	font-weight:800
}

.sml-market-side {
	min-width:0
}

.sml-market-side>.sml-latest-rotator {
	min-height:320px
}

.sml-market-banner.has-slider-bg {
	background-size:cover;
	background-position:center
}

.sml-contact-form {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:16px
}

.sml-contact-form .wide {
	grid-column:1/-1
}

.sml-contact-form input,.sml-contact-form textarea {
	width:100%
}

.sml-shop-filters {
	display:grid;
	gap:12px;
	padding:20px;
	border:1px solid var(--sml-line);
	border-radius:var(--sml-radius);
	background:#fff
}

.sml-shop-filters select,.sml-shop-filters input {
	width:100%
}

@media(max-width:720px) {
	.sml-contact-form {
		grid-template-columns:1fr
	}
	.sml-latest-rotator {
		min-height:270px
	}
}

.sml-hero-slide {
	position:absolute!important;
	inset:0;
	display:block!important;
	opacity:0;
	visibility:hidden;
	transition:opacity .45s
}

.sml-hero-slide.is-active {
	opacity:1;
	visibility:visible
}

.sml-hero-slide img {
	width:100%;
	height:100%;
	object-fit:cover
}

.sml-market-lifestyle>a:not(.sml-hero-slide) {
	z-index:3
}

.sml-market-side {
	display:block;
	padding:14px
}

/* 1.8.0 premium catalog: right filter rail, five-column products and progressive loading. */
.woocommerce-shop .sml-entry,.tax-product_cat .sml-entry,.tax-product_tag .sml-entry {
	width:min(calc(100% - 42px),1840px);
	max-width:none
}

.sml-shop-layout {
	display:grid;
	grid-template-columns:minmax(0,1fr) 330px;
	gap:34px;
	align-items:start;
	clear:both;
	margin-top:20px
}

.sml-filter-panel {
	grid-column:2;
	grid-row:1;
	position:sticky;
	top:118px;
	overflow:hidden;
	border:1px solid rgba(16,42,67,.10);
	border-radius:24px;
	background:linear-gradient(180deg,#0c2438 0%,#102f46 100%);
	color:#fff;
	box-shadow:0 28px 70px rgba(16,42,67,.17)
}

.sml-filter-panel:before {
	content:"";
	position:absolute;
	inset:0 0 auto;
	height:4px;
	background:linear-gradient(90deg,#d6a84b,#f5db8b,#d6a84b)
}

.sml-filter-head {
	padding:30px 28px 20px;
	border-bottom:1px solid rgba(255,255,255,.10)
}

.sml-filter-head>span {
	display:block;
	margin-bottom:7px;
	color:#e9c96f;
	font-size:.71rem;
	font-weight:800;
	letter-spacing:.14em;
	text-transform:uppercase
}

.sml-filter-head h2 {
	margin:0 0 8px;
	color:#fff;
	font-size:1.55rem;
	letter-spacing:-.035em
}

.sml-filter-head p {
	margin:0;
	color:#b8c9d6;
	font-size:.88rem;
	line-height:1.6
}

.sml-shop-filters {
	display:grid;
	gap:17px;
	padding:24px 28px 28px
}

.sml-shop-filters label {
	display:grid;
	gap:7px;
	margin:0
}

.sml-shop-filters label>span {
	color:#dce8ef;
	font-size:.77rem;
	font-weight:750;
	letter-spacing:.02em
}

.sml-shop-filters select,.sml-shop-filters input {
	width:100%;
	min-height:48px;
	margin:0;
	padding:10px 13px;
	border:1px solid rgba(255,255,255,.16);
	border-radius:11px;
	background:#fff;
	color:#102a43;
	font:inherit;
	box-shadow:none
}

.sml-shop-filters select:focus,.sml-shop-filters input:focus {
	border-color:#e8b44f;
	outline:none;
	box-shadow:0 0 0 3px rgba(232,180,79,.18)
}

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

.sml-filter-submit {
	display:flex;
	align-items:center;
	justify-content:space-between;
	min-height:50px;
	margin-top:3px;
	padding:12px 16px;
	border:1px solid #e6bd5f;
	border-radius:12px;
	background:linear-gradient(135deg,#f3d886,#d9a83e);
	color:#102a43!important;
	font-weight:850;
	box-shadow:0 12px 28px rgba(232,180,79,.20)
}

.sml-filter-submit:hover {
	background:linear-gradient(135deg,#ffe9a7,#e3b44c);
	transform:translateY(-1px)
}

.sml-filter-reset {
	justify-self:center;
	color:#d9e6ed!important;
	font-size:.8rem;
	text-decoration:underline;
	text-underline-offset:4px
}

.sml-filter-reset:hover {
	color:#fff!important
}

.sml-filter-trust {
	display:grid;
	gap:2px;
	padding:18px 28px;
	border-top:1px solid rgba(255,255,255,.09);
	background:rgba(0,0,0,.08)
}

.sml-filter-trust strong {
	color:#fff;
	font-size:.82rem
}

.sml-filter-trust span {
	color:#9fb4c2;
	font-size:.72rem
}

.sml-shop-results {
	grid-column:1;
	grid-row:1;
	min-width:0
}

.sml-shop-results:after {
	display:block;
	clear:both;
	content:""
}

.sml-shop-results .woocommerce-result-count {
	margin:9px 0 22px;
	color:#6b7f90;
	font-size:.9rem
}

.sml-shop-results .woocommerce-ordering {
	display:none!important
}

.woocommerce .sml-shop-results ul.products {
	display:grid!important;
	grid-template-columns:repeat(5,minmax(0,1fr))!important;
	gap:18px!important;
	width:100%!important;
	margin:0!important;
	clear:both
}

.woocommerce .sml-shop-results ul.products:before,.woocommerce .sml-shop-results ul.products:after {
	display:none!important
}

.woocommerce .sml-shop-results ul.products li.product {
	float:none!important;
	width:auto!important;
	min-width:0!important;
	margin:0!important;
	padding:12px!important;
	border:1px solid #e3ebf1;
	border-radius:18px;
	background:#fff;
	box-shadow:0 10px 28px rgba(16,42,67,.055);
	transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease
}

.woocommerce .sml-shop-results ul.products li.product:hover {
	transform:translateY(-4px);
	border-color:#ccdce7;
	box-shadow:0 20px 42px rgba(16,42,67,.11)
}

.woocommerce .sml-shop-results ul.products li.product a img {
	width:100%!important;
	aspect-ratio:1/1;
	object-fit:cover;
	margin:0 0 13px!important;
	border-radius:13px;
	background:#f5f8fa
}

.woocommerce .sml-shop-results ul.products li.product .woocommerce-loop-product__title {
	padding:0 2px!important;
	font-size:.93rem!important;
	line-height:1.35
}

.woocommerce .sml-shop-results ul.products li.product .price {
	padding:0 2px;
	color:var(--sml-primary)!important;
	font-size:.91rem!important;
	font-weight:800
}

.woocommerce .sml-shop-results ul.products li.product .button {
	width:100%;
	min-height:42px;
	margin-top:10px;
	padding:9px 10px;
	font-size:.78rem
}

.sml-load-more-wrap {
	display:grid;
	place-items:center;
	gap:8px;
	margin:34px 0 8px
}

.sml-load-more {
	display:flex;
	align-items:center;
	gap:16px;
	min-width:240px;
	min-height:58px;
	padding:11px 19px;
	border:1px solid #102a43;
	border-radius:15px;
	background:#102a43;
	color:#fff!important;
	box-shadow:0 12px 30px rgba(16,42,67,.14)
}

.sml-load-more span {
	font-weight:850
}

.sml-load-more small {
	padding-left:14px;
	border-left:1px solid rgba(255,255,255,.2);
	color:#c8d6df;
	font-size:.72rem
}

.sml-load-more:hover {
	background:#173c55;
	transform:translateY(-2px)
}

.sml-load-more[disabled] {
	cursor:wait;
	opacity:.7;
	transform:none
}

.sml-load-status {
	min-height:22px;
	margin:0;
	color:#667f91;
	font-size:.82rem
}

@media(max-width:1500px) {
	.woocommerce .sml-shop-results ul.products {
		grid-template-columns:repeat(4,minmax(0,1fr))!important
	}
	.sml-shop-layout {
		grid-template-columns:minmax(0,1fr) 310px;
		gap:24px
	}
}

@media(max-width:1180px) {
	.woocommerce .sml-shop-results ul.products {
		grid-template-columns:repeat(3,minmax(0,1fr))!important
	}
	.sml-shop-layout {
		grid-template-columns:minmax(0,1fr) 290px
	}
}

@media(max-width:900px) {
	.sml-shop-layout {
		grid-template-columns:1fr
	}
	.sml-filter-panel,.sml-shop-results {
		grid-column:1
	}
	.sml-filter-panel {
		grid-row:1;
		position:relative;
		top:auto
	}
	.sml-shop-results {
		grid-row:2
	}
	.woocommerce .sml-shop-results ul.products {
		grid-template-columns:repeat(2,minmax(0,1fr))!important
	}
	.sml-shop-filters {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.sml-filter-head,.sml-filter-trust {
		grid-column:1/-1
	}
	.sml-filter-submit,.sml-filter-reset {
		grid-column:1/-1
	}
}

@media(max-width:560px) {
	.woocommerce-shop .sml-entry,.tax-product_cat .sml-entry,.tax-product_tag .sml-entry {
		width:min(calc(100% - 24px),1840px);
		padding-left:0;
		padding-right:0
	}
	.sml-shop-layout {
		gap:22px
	}
	.sml-shop-filters {
		grid-template-columns:1fr;
		padding:20px
	}
	.sml-filter-head {
		padding:26px 20px 18px
	}
	.sml-price-grid {
		grid-template-columns:1fr 1fr
	}
	.woocommerce .sml-shop-results ul.products {
		grid-template-columns:repeat(2,minmax(0,1fr))!important;
		gap:10px!important
	}
	.woocommerce .sml-shop-results ul.products li.product {
		padding:8px!important;
		border-radius:14px
	}
	.woocommerce .sml-shop-results ul.products li.product .woocommerce-loop-product__title {
		font-size:.82rem!important
	}
	.woocommerce .sml-shop-results ul.products li.product .button {
		font-size:.72rem;
		padding:8px 6px
	}
	.sml-load-more {
		min-width:220px
	}
}

/* WordPress.org release candidate refinements. */
.sml-home-hero {
	padding:clamp(58px,8vw,110px) 0;
	background:linear-gradient(135deg,#f7fbfc,#fff 58%,#fdf7e8)
}

.sml-home-hero-grid {
	display:grid;
	grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
	gap:clamp(32px,6vw,80px);
	align-items:center
}

.sml-home-visual {
	min-height:340px;
	border:1px solid var(--sml-line);
	border-radius:28px;
	background:linear-gradient(145deg,#0d5362,#173b52);
	box-shadow:var(--sml-shadow);
	padding:30px;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:14px
}

.sml-home-visual span {
	border:1px solid rgba(255,255,255,.16);
	border-radius:16px;
	background:rgba(255,255,255,.08)
}

.sml-home-products {
	padding:clamp(54px,7vw,92px) 0;
	background:var(--sml-bg)
}

.sml-home-products .products {
	margin-top:30px!important
}

.sml-home-content {
	padding:clamp(54px,7vw,92px) 0
}

.sml-shop-layout {
	display:grid;
	grid-template-columns:minmax(0,1fr) minmax(260px,320px);
	gap:clamp(24px,3vw,42px);
	align-items:start
}

.sml-shop-results {
	min-width:0
}

.sml-filter-panel {
	position:sticky;
	top:110px;
	padding:24px;
	border:1px solid var(--sml-line);
	border-radius:var(--sml-radius);
	background:#fff;
	box-shadow:var(--sml-shadow)
}

.sml-filter-panel .sml-widget {
	margin:0 0 22px;
	padding:0;
	border:0
}

.sml-filter-panel .sml-widget:last-child {
	margin-bottom:0
}

.sml-filter-panel .sml-widget-title {
	font-size:1.05rem
}

.sml-filter-panel select,.sml-filter-panel input {
	max-width:100%
}

.woocommerce ul.products.columns-5 {
	grid-template-columns:repeat(5,minmax(0,1fr))!important
}

@media(max-width:1200px) {
	.woocommerce ul.products.columns-5 {
		grid-template-columns:repeat(4,minmax(0,1fr))!important
	}
}

@media(max-width:960px) {
	.sml-home-hero-grid,.sml-shop-layout {
		grid-template-columns:1fr
	}
	.sml-filter-panel {
		position:static;
		order:-1
	}
	.woocommerce ul.products.columns-5 {
		grid-template-columns:repeat(3,minmax(0,1fr))!important
	}
}

@media(max-width:640px) {
	.sml-home-visual {
		min-height:250px
	}
	.woocommerce ul.products.columns-5 {
		grid-template-columns:repeat(2,minmax(0,1fr))!important
	}
}

/* Editor/block presentation enhancements. */
.wp-block-group.is-style-shopmarkaz-soft-panel {
	padding:clamp(24px,4vw,48px);
	border:1px solid var(--sml-line);
	border-radius:var(--sml-radius);
	background:var(--sml-bg)
}

.sml-entry-footer {
	margin-top:28px;
	padding-top:18px;
	border-top:1px solid var(--sml-line);
	color:var(--sml-muted);
	font-size:.9rem
}

.sml-tags-label {
	margin-right:8px;
	font-weight:700;
	color:var(--sml-ink)
}

.sml-tags a {
	text-decoration:underline;
	text-underline-offset:3px
}

/* WordPress.org Theme Unit Test and core content coverage. */
.sml-entry-content {
	overflow-wrap:anywhere;
	word-break:normal
}

.sml-entry-content a:not(.wp-element-button):not(.sml-button),.comment-content a {
	text-decoration:underline;
	text-underline-offset:.15em
}

.sml-entry-content ul,.sml-entry-content ol,.comment-content ul,.comment-content ol {
	margin:0 0 1.5em 1.4em;
	padding:0
}

.sml-entry-content li>ul,.sml-entry-content li>ol,.comment-content li>ul,.comment-content li>ol {
	margin-bottom:0
}

.sml-entry-content dl {
	margin:0 0 1.5em
}

.sml-entry-content dt {
	font-weight:700
}

.sml-entry-content dd {
	margin:0 0 1em 1.5em
}

.sml-entry-content pre,.comment-content pre {
	max-width:100%;
	overflow:auto;
	padding:18px;
	border:1px solid var(--sml-line);
	border-radius:10px;
	background:#f3f6f8;
	white-space:pre-wrap;
	word-wrap:break-word
}

.sml-entry-content code,.comment-content code {
	padding:.12em .3em;
	border-radius:4px;
	background:#f3f6f8;
	font-family:Consolas,Monaco,monospace
}

.sml-entry-content pre code,.comment-content pre code {
	padding:0;
	background:transparent
}

.sml-entry-content address {
	margin:0 0 1.5em;
	font-style:italic
}

.sml-entry-content hr {
	height:1px;
	margin:2em 0;
	border:0;
	background:var(--sml-line)
}

.sml-entry-content figure {
	max-width:100%;
	margin:0 0 1.5em
}

.sml-entry-content figcaption,.wp-caption-text,.gallery-caption {
	margin-top:.55em;
	color:var(--sml-muted);
	font-size:.875rem;
	line-height:1.5
}

.wp-caption {
	max-width:100%
}

.wp-caption img {
	display:block
}

.gallery {
	display:grid;
	gap:16px;
	margin:0 0 1.5em
}

.gallery-item {
	min-width:0;
	margin:0
}

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

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

.gallery-columns-4,.gallery-columns-5,.gallery-columns-6,.gallery-columns-7,.gallery-columns-8,.gallery-columns-9 {
	grid-template-columns:repeat(4,minmax(0,1fr))
}

.alignleft {
	float:left;
	margin:0 1.5em 1em 0
}

.alignright {
	float:right;
	margin:0 0 1em 1.5em
}

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

.alignwide {
	width:min(1200px,calc(100vw - 48px));
	max-width:none;
	margin-left:50%;
	transform:translateX(-50%)
}

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

.sticky {
	position:relative
}

.bypostauthor {
	position:relative
}

.sml-entry-content:after,.comment-content:after {
	display:table;
	clear:both;
	content:""
}

.sml-entry-content input:not([type="checkbox"]):not([type="radio"]),.sml-entry-content select,.sml-entry-content textarea,.comment-form input:not([type="checkbox"]):not([type="radio"]),.comment-form textarea {
	width:100%;
	max-width:100%;
	padding:11px 13px;
	border:1px solid #b9c9d5;
	border-radius:8px;
	background:#fff;
	color:var(--sml-ink);
	font:inherit
}

.sml-entry-content button,.sml-entry-content input[type="button"],.sml-entry-content input[type="reset"],.sml-entry-content input[type="submit"],.comment-form input[type="submit"] {
	min-height:44px;
	padding:10px 18px;
	border:1px solid var(--sml-primary);
	border-radius:9px;
	background:var(--sml-primary);
	color:#fff;
	cursor:pointer;
	font:inherit;
	font-weight:700
}

.sml-entry-content fieldset {
	min-width:0;
	margin:0 0 1.5em;
	padding:18px;
	border:1px solid var(--sml-line)
}

.sml-entry-content legend {
	padding:0 .4em;
	font-weight:700
}

.sml-entry-content table,.comment-content table {
	display:table;
	width:100%;
	max-width:100%;
	margin:0 0 1.5em;
	border-collapse:collapse
}

.sml-entry-content th,.sml-entry-content td,.comment-content th,.comment-content td {
	padding:10px;
	border:1px solid var(--sml-line);
	vertical-align:top;
	text-align:left
}

.comment-list {
	margin:0 0 2em;
	padding:0;
	list-style:none
}

.comment-list .children {
	margin-left:1.5em;
	list-style:none
}

.comment-body {
	margin-bottom:20px;
	padding:20px;
	border:1px solid var(--sml-line);
	border-radius:12px
}

.comment-meta {
	margin-bottom:12px;
	color:var(--sml-muted);
	font-size:.875rem
}

.comment-author .avatar {
	float:left;
	margin-right:10px;
	border-radius:50%
}

.comment-reply-link {
	display:inline-block;
	margin-top:8px
}

.post-navigation,.posts-navigation,.comments-navigation {
	margin:24px 0
}

.post-navigation .nav-links,.posts-navigation .nav-links,.comments-navigation .nav-links {
	display:flex;
	justify-content:space-between;
	gap:20px
}

.nav-previous,.nav-next {
	min-width:0;
	overflow-wrap:anywhere
}

.nav-next {
	text-align:right
}

.sml-entry-content .wp-block-cover,.sml-entry-content .wp-block-media-text,.sml-entry-content .wp-block-columns {
	margin-bottom:1.5em
}

.sml-entry-content .wp-block-image img {
	height:auto
}

.sml-entry-content .wp-block-table {
	overflow-x:auto
}

.sml-entry-content .wp-block-table table {
	margin-bottom:0
}

.sml-entry-content .wp-block-quote {
	margin-left:0;
	margin-right:0
}

.sml-entry-content .wp-block-pullquote {
	padding:2em 0
}

.sml-entry-content .wp-block-button {
	margin-bottom:1em
}

@media(max-width:700px) {
	.alignleft,.alignright {
		float:none;
		display:block;
		margin:0 auto 1.25em
	}
	.alignwide,.alignfull {
		width:100%;
		margin-left:0;
		transform:none
	}
	.gallery-columns-3,.gallery-columns-4,.gallery-columns-5,.gallery-columns-6,.gallery-columns-7,.gallery-columns-8,.gallery-columns-9 {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.post-navigation .nav-links,.posts-navigation .nav-links,.comments-navigation .nav-links {
		display:block
	}
	.nav-next {
		margin-top:14px;
		text-align:left
	}
}

/* Calendar widget */
.sml-widget #wp-calendar, .sml-widget .wp-calendar-table, .sml-site-footer #wp-calendar, .sml-site-footer .wp-calendar-table {
	width:100%;
	margin:0;
	border-collapse:collapse;
	table-layout:fixed
}

.sml-widget #wp-calendar caption, .sml-widget .wp-calendar-table caption, .sml-site-footer #wp-calendar caption, .sml-site-footer .wp-calendar-table caption {
	margin-bottom:.75rem;
	font-weight:700;
	text-align:left
}

.sml-widget #wp-calendar th, .sml-widget #wp-calendar td, .sml-widget .wp-calendar-table th, .sml-widget .wp-calendar-table td, .sml-site-footer #wp-calendar th, .sml-site-footer #wp-calendar td, .sml-site-footer .wp-calendar-table th, .sml-site-footer .wp-calendar-table td {
	padding:.45rem .25rem;
	border:1px solid var(--sml-line);
	text-align:center
}

.sml-widget .wp-calendar-nav, .sml-site-footer .wp-calendar-nav {
	display:flex;
	justify-content:space-between;
	gap:.75rem;
	margin-top:.75rem
}


/* 1.9.6 premium storefront presentation. */
.sml-site-header{box-shadow:0 6px 24px rgba(7,29,52,.05)}
.sml-header-inner{min-height:84px}
.sml-site-title{font-size:1.55rem;font-weight:900}.sml-site-title a{letter-spacing:-.045em}
.sml-primary-menu a{font-weight:750}.sml-header-link{border-color:#d9e1e8;background:#fff}
.sml-commerce-bar{background:#fff;border-top:1px solid #edf1f5;border-bottom:1px solid #edf1f5}.sml-commerce-bar-inner{min-height:62px}
.sml-product-search .search-field{min-height:44px;border-radius:999px 0 0 999px;padding-left:18px}.sml-product-search button{min-height:44px;border-radius:0 999px 999px 0;background:#0b2a4a}
.sml-market-hero{padding:22px 0 26px;background:#f5f7fa}.sml-market-shell{grid-template-columns:minmax(215px,250px) minmax(0,1fr) minmax(210px,245px);gap:16px}
.sml-market-categories,.sml-market-side,.sml-market-banner{border-color:#e3e8ee;box-shadow:0 10px 32px rgba(7,29,52,.06)}
.sml-market-categories h2{padding:11px 12px;margin:-5px -5px 10px;border-radius:11px;background:linear-gradient(135deg,#d99a1b,#eab84f);color:#fff}.sml-market-categories h2 span{color:#fff}
.sml-market-banner{min-height:430px;background:linear-gradient(115deg,#071d34 0%,#0b2a4a 52%,#173e65 100%);color:#fff}.sml-market-banner:before{background:rgba(217,154,27,.22)}
.sml-market-kicker{background:rgba(217,154,27,.15);color:#f2bd55}.sml-market-banner h1{color:#fff}.sml-market-banner-copy>p{color:#d6e1eb}.sml-market-banner .sml-button{border-color:#d99a1b;background:#d99a1b;color:#071d34!important}.sml-market-banner .sml-button--outline{border-color:rgba(255,255,255,.55);background:transparent;color:#fff!important}.sml-market-banner .sml-button--outline:hover{background:#fff;color:#071d34!important}
.sml-market-art{height:310px;background:linear-gradient(145deg,#f7f4ed,#e9edf2);box-shadow:0 18px 40px rgba(0,0,0,.18)}.sml-market-art span{border-radius:22px 22px 8px 8px;box-shadow:0 12px 24px rgba(7,29,52,.12)}.sml-market-art span:nth-child(1){background:#d99a1b}.sml-market-art span:nth-child(2){background:#0b2a4a}.sml-market-art span:nth-child(3){background:#fff}
.sml-market-spotlight{box-shadow:0 18px 40px rgba(0,0,0,.22)}.sml-market-side{background:#fff}.sml-welcome-icon{background:#0b2a4a}.sml-welcome-card>a{background:#0b2a4a}.sml-side-promo{background:linear-gradient(145deg,#0b2a4a,#173e65)}
.sml-market-services{box-shadow:0 8px 24px rgba(7,29,52,.04)}.sml-market-services .sml-container>div>span{background:#fff5df;color:#b97909}.sml-market-services strong{color:#071d34}
.sml-market-section{padding:60px 0 78px}.sml-market-heading span{color:#b97909}.sml-market-product-grid{grid-template-columns:repeat(6,minmax(0,1fr));gap:16px}.sml-market-product{border-radius:16px}.sml-market-product-image{background:#f7f8fa}.sml-market-product-image img{object-fit:contain}.sml-market-product-price{color:#0b2a4a}.sml-market-product-action{display:inline-flex;padding:8px 12px;border-radius:8px;background:#0b2a4a;color:#fff}.sml-market-product-action:hover{background:#071d34;color:#fff}
.sml-empty-catalog{padding:42px;border:1px dashed #cad4de;border-radius:18px;background:#f8fafc;text-align:center}.sml-empty-catalog strong{display:block;margin-bottom:7px;font-size:1.25rem}.sml-empty-catalog p{margin:0;color:var(--sml-muted)}
.sml-home-content{padding-top:0}.sml-home-content .sml-entry:has(.sml-entry-content:empty){display:none}
@media(max-width:1400px){.sml-market-shell{grid-template-columns:220px minmax(0,1fr)}.sml-market-side{grid-column:1/-1;grid-template-columns:1fr 1.4fr 1fr;grid-template-rows:auto;align-items:stretch}.sml-market-product-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(max-width:1180px){.sml-header-inner{min-height:78px}.sml-site-navigation{top:78px}.sml-market-shell{grid-template-columns:1fr}.sml-market-categories{display:none}.sml-market-side{grid-template-columns:1fr 1fr}.sml-side-benefits{display:none}.sml-market-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){.sml-market-banner{grid-template-columns:1fr;padding:34px 26px}.sml-market-spotlight,.sml-market-art{min-height:240px;height:240px;margin-top:18px}.sml-market-side{grid-template-columns:1fr}.sml-market-services>.sml-container{grid-template-columns:repeat(2,1fr)}.sml-market-services .sml-container>div:nth-child(2){border-right:0}.sml-market-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:480px){.sml-market-banner h1{font-size:2.35rem}.sml-market-services>.sml-container{grid-template-columns:1fr}.sml-market-services .sml-container>div{border-right:0;border-bottom:1px solid var(--sml-line)}.sml-market-product-grid{grid-template-columns:1fr}}

/* 1.9.6 final luxury storefront polish. */
.sml-market-hero{padding:24px 0 30px;background:linear-gradient(180deg,#f5f7fa 0%,#fff 100%)}
.sml-market-shell{grid-template-columns:minmax(220px,255px) minmax(0,1fr);gap:18px;align-items:stretch}
.sml-market-banner{min-height:500px;padding:50px 52px;grid-template-columns:minmax(0,.95fr) minmax(320px,.85fr);border-radius:20px;overflow:hidden;background:radial-gradient(circle at 78% 22%,rgba(231,174,65,.18),transparent 28%),linear-gradient(118deg,#041426 0%,#092844 52%,#102d4c 100%);box-shadow:0 22px 55px rgba(5,24,44,.16)}
.sml-market-banner:after{content:"";position:absolute;right:-90px;bottom:-140px;width:360px;height:360px;border:1px solid rgba(231,174,65,.16);border-radius:50%;box-shadow:0 0 0 48px rgba(231,174,65,.035),0 0 0 96px rgba(231,174,65,.02);pointer-events:none}
.sml-market-banner-copy{position:relative;z-index:2;align-self:center}
.sml-market-kicker{display:inline-flex;padding:9px 13px;border:1px solid rgba(234,184,79,.3);border-radius:999px;background:rgba(234,184,79,.1);color:#efbd55;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.sml-market-banner h1{max-width:650px;margin:20px 0 16px;font-size:clamp(2.7rem,4.5vw,4.8rem);line-height:.98;letter-spacing:-.055em}
.sml-market-banner-copy>p{max-width:610px;font-size:1.05rem;line-height:1.75;color:#d9e4ee}
.sml-hero-actions{margin-top:28px;gap:12px}.sml-market-banner .sml-button{min-height:48px;padding:13px 20px;border-radius:10px;font-weight:900}
.sml-market-spotlight{position:relative;z-index:2;align-self:center;min-height:355px;border:1px solid rgba(255,255,255,.13);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(242,245,248,.96));box-shadow:0 26px 55px rgba(0,0,0,.28)}
.sml-market-spotlight img{width:100%;height:330px;object-fit:contain;padding:22px;filter:drop-shadow(0 18px 24px rgba(7,29,52,.18))}.sml-market-spotlight span{left:18px;right:18px;bottom:16px;padding:12px 14px;border-radius:10px;background:rgba(4,20,38,.92);font-weight:800}
.sml-market-categories{padding:12px;border-radius:18px;background:#fff}.sml-market-categories h2{padding:13px 14px;border-radius:11px;background:linear-gradient(135deg,#d59416,#f0c15b);box-shadow:0 8px 18px rgba(213,148,22,.18)}.sml-market-categories li a{min-height:49px;padding:11px 8px;border-bottom:1px solid #eef2f5;font-weight:750}.sml-market-categories li a:hover{padding-left:12px;color:#9a6509;background:#fffaf0}.sml-market-all{display:inline-flex;margin-top:10px;font-weight:900;color:#0b2a4a}
.sml-market-services{border-top:1px solid #e9eef3;border-bottom:1px solid #e9eef3;background:#fff}.sml-market-services>.sml-container{min-height:82px}.sml-market-services .sml-container>div>span{width:42px;height:42px;border-radius:50%;background:#fff6e4;color:#a96d08;font-size:1.05rem}
.sml-lux-categories{padding:56px 0 10px;background:#fff}.sml-lux-category-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:16px}.sml-lux-category{display:flex;min-width:0;flex-direction:column;align-items:center;padding:18px 12px;border:1px solid #e6ebf0;border-radius:18px;background:#fff;color:#071d34;text-align:center;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}.sml-lux-category:hover{transform:translateY(-4px);border-color:#e2bc72;box-shadow:0 18px 36px rgba(7,29,52,.09);color:#071d34}.sml-lux-category-media{display:grid;width:112px;height:112px;place-items:center;margin-bottom:14px;overflow:hidden;border-radius:50%;background:linear-gradient(145deg,#f8f9fb,#eef2f5)}.sml-lux-category-media img{width:100%;height:100%;object-fit:cover}.sml-lux-category-media>span{font-size:1.8rem;color:#c78913}.sml-lux-category strong{font-size:.95rem}.sml-lux-category small{margin-top:4px;color:#788897;font-size:.76rem}
.sml-market-section{padding-top:48px;background:#fff}.sml-market-heading{margin-bottom:22px}.sml-market-heading h2{font-size:clamp(1.8rem,2.6vw,2.5rem);letter-spacing:-.035em}.sml-market-heading>a{font-weight:850;color:#0b2a4a}.sml-market-product{overflow:hidden;border:1px solid #e5eaf0;box-shadow:0 8px 22px rgba(7,29,52,.045);transition:transform .2s ease,box-shadow .2s ease}.sml-market-product:hover{transform:translateY(-5px);box-shadow:0 18px 38px rgba(7,29,52,.1)}.sml-market-product-image{min-height:205px;padding:12px}.sml-market-product-image img{height:190px}.sml-market-product-image>span{top:12px;left:12px;border-radius:999px;background:#d99819}.sml-market-product-body{padding:15px}.sml-market-product-title{min-height:42px;font-weight:850}.sml-market-product-price{margin:7px 0 12px;font-size:1rem;font-weight:900}.sml-market-product-action{width:100%;justify-content:center;min-height:40px;align-items:center;border-radius:9px;font-size:.82rem;font-weight:850}
@media(max-width:1400px){.sml-market-shell{grid-template-columns:220px minmax(0,1fr)}.sml-market-side{display:none}.sml-lux-category-grid{grid-template-columns:repeat(6,minmax(120px,1fr))}.sml-market-product-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(max-width:1180px){.sml-market-shell{grid-template-columns:1fr}.sml-market-categories{display:none}.sml-market-banner{grid-template-columns:1fr 320px;padding:42px}.sml-lux-category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.sml-market-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){.sml-market-banner{grid-template-columns:1fr;min-height:0;padding:34px 26px}.sml-market-banner h1{font-size:clamp(2.5rem,11vw,3.55rem)}.sml-market-spotlight{min-height:270px;margin-top:20px}.sml-market-spotlight img{height:250px}.sml-lux-categories{padding-top:40px}.sml-lux-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.sml-market-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:480px){.sml-lux-category-media{width:92px;height:92px}.sml-market-product-grid{grid-template-columns:1fr}}
