:root {
	--aw-black: #070707;
	--aw-ink: #181619;
	--aw-muted: #5f5f62;
	--aw-line: #e3e3e3;
	--aw-paper: #f6f6f6;
	--aw-surface: #f2f2f2;
	--aw-surface-strong: #e7e7e7;
	--aw-white: #fff;
	--aw-violet: #34283f;
	--aw-violet-soft: #f4f4f4;
	--aw-copper: #5d5d5d;
	--aw-gold: #8a8a8a;
	--aw-gap: clamp(18px, 2.2vw, 32px);
	--aw-section: clamp(56px, 7vw, 112px);
	--aw-pattern: url("../brand/artwork-pattern-transparent.webp");
}

.aw-site-header {
	background: var(--aw-white);
	padding-top: 0;
}

.aw-site-header__inner {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr) 190px;
	gap: clamp(14px, 2vw, 24px);
	align-items: center;
	width: min(1180px, calc(100% - 36px));
	margin-inline: auto;
	min-height: 76px;
	padding: 12px clamp(24px, 3.4vw, 40px);
	background: var(--aw-white);
	border-bottom: 1px solid var(--aw-line);
}

.aw-site-header__logo {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	width: 112px;
	text-decoration: none;
}

.aw-site-header__logo img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 56px;
	object-fit: contain;
}

.aw-main-menu {
	display: flex;
	flex-wrap: nowrap;
	gap: clamp(10px, 1.45vw, 19px);
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aw-main-menu a {
	position: relative;
	display: inline-flex;
	padding-block: 10px;
	color: var(--aw-ink);
	font-size: 14px;
	text-decoration: none;
}

.aw-main-menu a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 2px;
	width: 0;
	height: 2px;
	background: var(--aw-copper);
	transition: width .18s ease;
}

.aw-main-menu a:hover::after,
.aw-main-menu .current-menu-item > a::after {
	width: 100%;
}

.aw-site-header__tools {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-end;
}

.aw-search {
	display: flex;
	align-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--aw-line);
	background: var(--aw-white);
	overflow: hidden;
	transition: width .2s ease, border-color .2s ease;
}

.aw-search:focus-within {
	width: 176px;
}

.aw-search input[type="search"] {
	width: 0;
	height: 40px !important;
	min-height: 40px !important;
	padding: 0;
	border: 0 !important;
	background: transparent !important;
	color: var(--aw-ink);
	font-size: 14px;
	opacity: 0;
	transition: width .2s ease, opacity .2s ease, padding .2s ease;
}

.aw-search:focus-within input[type="search"] {
	width: 132px;
	padding: 7px 12px;
	opacity: 1;
}

.aw-search button {
	position: relative;
	display: grid;
	place-items: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border: 0 !important;
	background-color: transparent !important;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='5.5' stroke='%23181619' stroke-width='1.7'/%3E%3Cpath d='M12.2 12.2L16 16' stroke='%23181619' stroke-width='1.7' stroke-linecap='square'/%3E%3C/svg%3E") !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: 18px 18px !important;
	color: var(--aw-ink) !important;
}

.aw-search button::before {
	display: block;
	content: none;
}

.aw-search button::after {
	display: block;
	content: none;
}

.aw-search button span {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
}

.aw-icon-link,
.aw-contact-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 1px solid var(--aw-line);
	color: var(--aw-ink);
	font-size: 14px;
	text-decoration: none;
}

.aw-icon-link {
	width: 42px;
}

.aw-contact-link {
	padding-inline: 16px;
	background: var(--aw-black);
	border-color: var(--aw-black);
	color: var(--aw-white);
	min-width: 96px;
	white-space: nowrap;
}

.aw-icon-link:hover,
.aw-contact-link:hover,
.aw-search:focus-within {
	border-color: var(--aw-violet);
	color: var(--aw-violet);
}

.aw-contact-link:hover {
	background: var(--aw-violet);
	color: var(--aw-white);
}

.aw-site-footer {
	position: relative;
	background: #17131d;
	color: rgba(255,255,255,.78);
	overflow: hidden;
}

.aw-site-footer::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 92px;
	background-image: var(--aw-pattern);
	background-size: 150px 84px;
	opacity: .055;
	pointer-events: none;
}

.aw-site-footer__inner,
.aw-site-footer__bottom {
	width: min(1180px, calc(100% - 36px));
	margin-inline: auto;
}

.aw-site-footer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
	gap: clamp(28px, 5vw, 72px);
	padding: clamp(44px, 6vw, 70px) clamp(22px, 3.2vw, 38px) 34px;
	background: #17131d;
}

.aw-site-footer__brand img {
	width: 112px;
	margin-bottom: 18px;
	filter: invert(1);
}

.aw-site-footer p {
	max-width: 340px;
	margin: 0;
	line-height: 1.9;
}

.aw-site-footer__col {
	display: grid;
	gap: 10px;
	align-content: start;
}

.aw-site-footer__col strong {
	margin-bottom: 6px;
	color: var(--aw-white);
	font-size: 15px;
}

.aw-site-footer a,
.aw-site-footer span {
	color: rgba(255,255,255,.72);
	font-size: 14px;
	line-height: 1.8;
	text-decoration: none;
}

.aw-site-footer a:hover {
	color: var(--aw-white);
}

.aw-site-footer__bottom {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 18px clamp(22px, 3.2vw, 38px) 24px;
	border-top: 1px solid rgba(255,255,255,.12);
	background: #17131d;
}

.aw-site-footer__bottom div {
	display: flex;
	gap: 16px;
}

body {
	background: var(--aw-white);
	color: var(--aw-ink);
}

img,
button,
input,
select,
textarea,
.btn,
.button,
.elementor-button,
.wd-product,
.product-wrapper,
.product-element-top,
.product-image-link,
.wd-dropdown,
.wd-search-form,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.widget,
.woodmart-sidebar-content .widget,
.popup-added_to_cart,
.login form {
	border-radius: 0 !important;
}

.website-wrapper {
	background: var(--aw-white);
}

.whb-header,
.whb-main-header,
.whb-sticky-header {
	background: var(--aw-white);
	border-bottom: 0;
	box-shadow: none !important;
	backdrop-filter: none;
}

.whb-header .container,
.whb-main-header .container {
	max-width: 1180px;
	background: var(--aw-white);
}

.whb-header .whb-general-header > .container {
	margin-top: 24px;
	padding-inline: clamp(18px, 3vw, 38px);
	border: 0;
	border-bottom: 1px solid var(--aw-line);
}

.whb-header .whb-header-bottom > .container {
	padding-inline: clamp(18px, 3vw, 38px);
	border: 0;
}

.whb-sticked .whb-header .container,
.whb-sticky-clone .container {
	margin-top: 0;
	border: 0;
}

.site-logo img,
.wd-logo img {
	content: url("../brand/artwork-logo.svg");
	object-fit: contain;
}

.wd-nav > li > a,
.woodmart-nav-link,
.wd-nav-link {
	position: relative;
	color: var(--aw-ink) !important;
	transition: color .18s ease;
}

.whb-header .wd-tools-element > a,
.whb-header .wd-header-cart > a,
.whb-header .wd-header-my-account > a {
	color: var(--aw-ink) !important;
}

.whb-header .wd-header-my-account > a {
	padding-inline: 14px;
	border: 1px solid var(--aw-line);
}

.whb-header .wd-header-search > a,
.whb-header .cart-widget-opener > a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--aw-line);
	justify-content: center;
}

.wd-nav > li > a::after,
.woodmart-nav-link::after,
.wd-nav-link::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 7px;
	width: 0;
	height: 2px;
	background: var(--aw-violet);
	transition: width .18s ease;
}

.wd-nav > li:hover > a::after,
.wd-nav > li.current-menu-item > a::after,
.woodmart-nav-link:hover::after,
.wd-nav-link:hover::after,
.wd-active > .wd-nav-link::after {
	width: 100%;
}

.wd-tools-element,
.wd-header-cart,
.wd-header-my-account {
	color: var(--aw-ink);
}

.main-page-wrapper {
	padding-top: 0;
}

.elementor-section {
	margin-block: 0;
}

.elementor-top-section {
	position: relative;
}

.elementor-top-section > .elementor-container,
.container,
.wd-content-layout > .site-content {
	max-width: 1240px;
}

.elementor-element-9194816 {
	overflow: hidden;
	border-bottom: 1px solid var(--aw-line);
}

.elementor-element-9194816::before {
	content: "";
	position: absolute;
	inset: auto 0 0 auto;
	width: min(42vw, 520px);
	height: min(23vw, 280px);
	background-image: var(--aw-pattern);
	background-size: 150px 84px;
	background-repeat: repeat;
	opacity: .055;
	pointer-events: none;
}

.elementor-heading-title {
	color: var(--aw-black);
}

.elementor-widget-heading + .elementor-widget-text-editor,
.elementor-widget-text-editor {
	color: var(--aw-muted);
}

.btn,
.button,
.elementor-button,
button,
input[type="button"],
input[type="submit"],
.added_to_cart {
	background: transparent !important;
	border: 1px solid var(--aw-black) !important;
	color: var(--aw-black) !important;
	box-shadow: none !important;
	min-height: 40px;
	padding: 10px 18px;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover,
.button:hover,
.elementor-button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.added_to_cart:hover {
	background: var(--aw-violet) !important;
	color: var(--aw-white) !important;
	border-color: var(--aw-violet) !important;
}

.btn-style-link,
.btn-style-link:hover {
	min-height: auto;
	padding: 0 0 4px;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 2px solid currentColor !important;
	color: var(--aw-black) !important;
}

.elementor-element-6703145,
.elementor-element-2686357,
.elementor-element-1055825 {
	padding-block: var(--aw-section);
	border-top: 1px solid var(--aw-line);
}

.elementor-element-6703145 .elementor-widget-wrap,
.elementor-element-2686357 .elementor-widget-wrap,
.elementor-element-1055825 .elementor-widget-wrap {
	padding-inline: 0 !important;
}

.wd-products {
	gap: var(--aw-gap) !important;
}

.wd-products .wd-product {
	background: transparent;
	border: 0;
	box-shadow: none !important;
}

.wd-products .product-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: transparent;
	box-shadow: none !important;
}

.wd-products .product-element-top {
	overflow: hidden;
	background: var(--aw-surface);
	border: 1px solid var(--aw-line);
}

.wd-products .product-element-top img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	transition: transform .35s ease, filter .35s ease;
}

.wd-products .wd-product:hover .product-element-top img {
	transform: scale(1.025);
	filter: contrast(1.03);
}

.wd-products .product-grid-item .wd-entities-title,
.wd-products .product-grid-item .woocommerce-loop-product__title {
	margin-top: 0;
	color: var(--aw-ink);
}

.wd-products .price,
.wd-products .call-for-price-link,
.wd-products .call-for-price-text {
	color: var(--aw-muted) !important;
}

.wd-product .wd-buttons,
.wd-product .wd-add-btn,
.wd-product .wd-compare-btn,
.wd-product .wd-wishlist-btn {
	border-radius: 0 !important;
}

.wd-product :is(.wd-product-brands-links, .wd-product-cats, .star-rating) {
	color: var(--aw-muted);
}

.wd-tabs-header {
	border-bottom: 1px solid var(--aw-line);
}

.wd-nav-tabs > li > a,
.wd-nav-tabs .wd-nav-link {
	padding-bottom: 12px;
}

.wd-nav-tabs .wd-active > a,
.wd-nav-tabs .wd-active > .wd-nav-link {
	color: var(--aw-black) !important;
	font-weight: 600 !important;
}

.woodmart-sidebar-content .widget,
.widget {
	background: var(--aw-white);
	border: 1px solid var(--aw-line);
	box-shadow: none !important;
}

.woodmart-sidebar-content .widget-title,
.widget-title {
	background: transparent !important;
	border-bottom: 1px solid var(--aw-line);
	padding: 0 0 12px !important;
}

.scrollToTop {
	border: 1px solid var(--aw-line);
	border-radius: 0 !important;
	box-shadow: none !important;
}

.wd-product.product-grid-item,
.wd-products .wd-product,
.wd-products .wd-product .product-wrapper,
.wd-products .wd-product .product-element-top,
.wd-products .wd-product .product-image-link,
.wd-products .wd-product img,
.wd-product .hover-img,
.wd-product .product-image-summary-wrap,
.wd-product .wd-buttons,
.wd-product .wd-action-btn,
.wd-product .wd-action-btn > a,
.btn-style-link,
.elementor-button-link,
.wd-social-icons a,
.wd-social-icon,
.icons-design-colored .wd-social-icon,
.social-facebook,
.social-instagram,
.social-telegram,
.social-pinterest,
.social-linkedin,
.social-x {
	border-radius: 0 !important;
}

.wd-product.product-grid-item,
.wd-products .wd-product {
	background: transparent !important;
	border: 0 !important;
}

.wd-products .wd-product .product-element-top {
	border: 1px solid var(--aw-line) !important;
}

@media (max-width: 1024px) {
	.elementor-element-9194816::before {
		width: 60vw;
		height: 220px;
		opacity: .04;
	}
}

@media (max-width: 768px) {
	.main-page-wrapper {
		padding-top: 18px;
	}

	.elementor-element-6703145,
	.elementor-element-2686357,
	.elementor-element-1055825 {
		padding-block: 48px;
	}

	.wd-products .product-element-top img {
		aspect-ratio: 1 / 1.18;
	}

	.btn,
	.button,
	.elementor-button,
	button,
	input[type="button"],
	input[type="submit"] {
		min-height: 38px;
		padding: 9px 15px;
	}
}

/* Controlled redesign layer: visual polish without forcing Elementor geometry. */
html,
body,
.website-wrapper {
	background: var(--aw-white) !important;
}

.whb-header {
	position: relative;
	z-index: 50;
}

.whb-main-header .whb-row {
	min-height: 72px;
}

.whb-header-bottom {
	min-height: 48px;
}

.site-logo img,
.wd-logo img {
	max-width: 112px;
	max-height: 72px;
}

.wd-skip-navigation,
.wd-skip-content {
	position: fixed;
	top: -120px;
	right: 16px;
	z-index: 10000;
}

.wd-skip-navigation:focus,
.wd-skip-content:focus {
	top: 16px;
}

.aw-skip-link {
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 100000;
	transform: translateY(-160%);
	padding: 12px 18px;
	background: var(--aw-black);
	border: 1px solid var(--aw-black);
	color: var(--aw-white);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
	text-decoration: none;
	transition: transform .18s ease;
}

.aw-skip-link:focus {
	transform: translateY(0);
	color: var(--aw-white);
	outline: 2px solid var(--aw-white);
	outline-offset: 2px;
}

.elementor-1006 .elementor-element.elementor-element-9194816 {
	margin: 0 0 clamp(44px, 6vw, 76px) !important;
	padding-top: clamp(18px, 2.4vw, 30px);
	background:
		linear-gradient(180deg, rgba(255,255,255,.72), rgba(251,250,247,.95)),
		var(--aw-paper);
}

.elementor-element-9194816 .promo-banner {
	border: 1px solid var(--aw-line);
	background: var(--aw-white);
	box-shadow: none !important;
	overflow: hidden;
}

.elementor-element-9194816 .promo-banner img,
.elementor-element-9194816 .banner-image img {
	filter: saturate(.9) contrast(1.02);
}

.elementor-element-9194816 .banner-title {
	font-weight: 700 !important;
	line-height: 1.14 !important;
}

.elementor-element-9194816 .banner-subtitle {
	line-height: 1.8;
}

.elementor-element-9194816 .btn-style-link {
	color: inherit !important;
	border-color: currentColor !important;
}

.elementor-1006 .elementor-element.elementor-element-6703145,
.elementor-1006 .elementor-element.elementor-element-2686357,
.elementor-1006 .elementor-element.elementor-element-1055825 {
	margin: 0 !important;
	padding-block: clamp(52px, 7vw, 92px);
}

.elementor-element-6703145 .woodmart-title-container,
.elementor-element-2686357 .woodmart-title-container,
.elementor-element-1055825 .woodmart-title-container,
.elementor-element-6703145 .elementor-heading-title,
.elementor-element-2686357 .elementor-heading-title,
.elementor-element-1055825 .elementor-heading-title {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.wd-tabs-header {
	display: flex;
	justify-content: center;
	margin: 24px 0 32px;
	border-bottom: 0;
}

.wd-nav-tabs {
	gap: 0;
	border: 1px solid var(--aw-line);
	background: var(--aw-white);
}

.wd-nav-tabs > li > a,
.wd-nav-tabs .wd-nav-link {
	min-height: 42px;
	padding: 10px 20px !important;
	border-inline-end: 1px solid var(--aw-line);
}

.wd-nav-tabs li:last-child > a,
.wd-nav-tabs li:last-child .wd-nav-link {
	border-inline-end: 0;
}

.wd-nav-tabs .wd-active > a,
.wd-nav-tabs .wd-active > .wd-nav-link {
	background: var(--aw-black);
	color: var(--aw-white) !important;
}

.wd-nav-tabs .wd-active > a::after,
.wd-nav-tabs .wd-active > .wd-nav-link::after {
	display: none;
}

.wd-products {
	row-gap: clamp(26px, 3vw, 40px) !important;
}

.wd-products .product-wrapper {
	height: 100%;
	padding: clamp(10px, 1.2vw, 14px);
	background: var(--aw-paper) !important;
	border: 1px solid var(--aw-line);
	box-shadow: none !important;
	transition: border-color .18s ease, transform .18s ease;
}

.wd-products .wd-product:hover .product-wrapper {
	transform: translateY(-2px);
	border-color: rgba(5,5,5,.32);
}

.wd-products .product-element-top {
	border: 0 !important;
	background: var(--aw-surface);
}

.wd-products .product-element-top img {
	aspect-ratio: 1 / 1.08;
	object-fit: contain;
	padding: clamp(10px, 1.5vw, 18px);
	background: var(--aw-surface);
}

.wd-products .wd-product:hover .product-element-top img {
	transform: none;
	filter: contrast(1.03);
}

.wd-products .wd-product .wd-entities-title,
.wd-products .product-grid-item .woocommerce-loop-product__title {
	min-height: 46px;
	margin-top: 6px;
}

.wd-products .price,
.wd-products .call-for-price-link,
.wd-products .call-for-price-text {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
}

.elementor-element-2686357 {
	background:
		linear-gradient(180deg, rgba(255,255,255,.55), rgba(243,240,233,.84)),
		var(--aw-paper);
}

.elementor-element-2686357 .promo-banner {
	border: 1px solid var(--aw-line);
	background: var(--aw-white);
	box-shadow: none !important;
	overflow: hidden;
}

.elementor-element-2686357 .promo-banner img {
	filter: saturate(.88) contrast(1.02);
}

.elementor-element-1055825 .wd-post,
.elementor-element-1055825 .blog-post-loop,
.elementor-element-1055825 .post-slide {
	background: var(--aw-white);
	border: 1px solid var(--aw-line);
	box-shadow: none !important;
}

.elementor-1006 .elementor-element.elementor-element-3583230 {
	margin: 0 !important;
	padding: clamp(72px, 9vw, 118px) 30px !important;
	background-color: #171520 !important;
	background-size: cover !important;
	background-position: center !important;
	border-top: 1px solid rgba(255,255,255,.12);
}

.elementor-element-3583230 {
	overflow: hidden;
}

.elementor-element-3583230::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5,5,5,.82), rgba(5,5,5,.52));
	pointer-events: none;
}

.elementor-element-3583230 > .elementor-container {
	position: relative;
	z-index: 1;
}

.elementor-element-3583230 .title,
.elementor-element-3583230 .woodmart-title-container,
.elementor-element-3583230 .title-subtitle,
.elementor-element-3583230 .title-after_title,
.elementor-element-3583230 .elementor-widget-text-editor {
	color: var(--aw-white) !important;
}

.mc4wp-form-fields,
.mc4wp-form-fields p {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.mc4wp-form-fields input[type="email"],
.mc4wp-form-fields input[type="text"] {
	min-height: 44px;
	border: 1px solid rgba(255,255,255,.3) !important;
	background: rgba(255,255,255,.08) !important;
	color: var(--aw-white) !important;
}

.mc4wp-form-fields input[type="submit"] {
	min-width: 116px;
	background: var(--aw-white) !important;
	color: var(--aw-black) !important;
	border-color: var(--aw-white) !important;
}

.footer-container,
.wd-footer {
	background: #171520 !important;
	border-top: 1px solid rgba(255,255,255,.08);
}

.footer-container {
	padding-top: clamp(34px, 5vw, 58px);
}

.footer-container .container {
	max-width: 1180px;
}

.footer-sidebar {
	display: grid !important;
	grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
	gap: clamp(28px, 5vw, 70px) !important;
}

.footer-column {
	width: auto !important;
	max-width: none !important;
}

.footer-widget,
.footer-container .widget {
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
}

.footer-container .main-footer,
.footer-container .copyrights-wrapper {
	border-color: rgba(255,255,255,.12) !important;
}

.footer-container,
.footer-container a,
.footer-container .widget-title,
.footer-container p,
.footer-container li {
	color: rgba(255,255,255,.78) !important;
}

.footer-container .widget-title {
	color: var(--aw-white) !important;
	padding-bottom: 10px !important;
	border-bottom: 1px solid rgba(255,255,255,.16) !important;
	font-size: 14px;
}

.footer-container p,
.footer-container li {
	font-size: 13px;
	line-height: 1.9;
}

.footer-container ul {
	display: grid;
	gap: 8px;
}

.footer-container a:hover {
	color: var(--aw-white) !important;
}

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

	.aw-site-header__inner {
		grid-template-columns: 108px minmax(0, 1fr) 210px;
		min-height: 70px;
	}

	.aw-site-header__nav {
		order: initial;
		grid-column: auto;
		padding-top: 0;
		border-top: 0;
		overflow: visible;
	}

	.aw-main-menu {
		justify-content: center;
		overflow: visible;
		flex-wrap: nowrap;
		gap: 8px 14px;
		padding-bottom: 2px;
	}

	.aw-main-menu li {
		flex: 0 0 auto;
	}

	.aw-site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aw-site-footer__brand {
		grid-column: 1 / -1;
	}

	.whb-header .whb-general-header > .container {
		margin-top: 12px;
	}

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

	.whb-main-header .whb-row {
		min-height: 66px;
	}

	.site-logo img,
	.wd-logo img {
		max-width: 104px;
		max-height: 66px;
	}

	.wd-products .product-wrapper {
		padding: 10px;
	}
}

@media (max-width: 768px) {
	.aw-site-header__inner,
	.aw-site-footer__inner,
	.aw-site-footer__bottom {
		width: calc(100% - 24px);
	}

	.aw-site-header__inner {
		grid-template-columns: auto auto;
		padding: 12px 14px;
	}

	.aw-site-header__nav {
		order: 3;
		grid-column: 1 / -1;
		padding-top: 8px;
		border-top: 1px solid var(--aw-line);
	}

	.aw-site-header__logo {
		width: 94px;
	}

	.aw-site-header__tools {
		justify-self: end;
		gap: 6px;
	}

	.aw-search {
		width: 40px;
		height: 40px;
	}

	.aw-search:focus-within {
		width: 150px;
	}

	.aw-search:focus-within input[type="search"] {
		width: 106px;
	}

	.aw-main-menu {
		flex-wrap: wrap;
		gap: 6px 14px;
		justify-content: center;
	}

	.aw-contact-link {
		display: none;
	}

	.aw-site-footer__inner {
		grid-template-columns: 1fr;
		padding-inline: 18px;
	}

	.aw-site-footer__bottom {
		flex-direction: column;
		padding-inline: 18px;
	}

	.whb-header .whb-general-header > .container,
	.whb-header .whb-header-bottom > .container {
		width: calc(100% - 24px);
		padding-inline: 14px;
	}

	.whb-header .whb-header-bottom {
		display: none;
	}

	.footer-sidebar {
		grid-template-columns: 1fr;
	}

	.main-page-wrapper {
		padding-top: 14px;
	}

	.whb-main-header .whb-row {
		min-height: 58px;
	}

	.site-logo img,
	.wd-logo img {
		max-width: 86px;
		max-height: 56px;
	}

	.elementor-1006 .elementor-element.elementor-element-9194816 {
		margin-bottom: 42px !important;
		padding-top: 8px;
	}

	.elementor-element-9194816 .promo-banner {
		min-height: 0;
	}

	.elementor-element-9194816 .banner-title {
		font-size: 28px !important;
		line-height: 1.2 !important;
	}

	.wd-tabs-header {
		justify-content: flex-start;
		overflow-x: auto;
		margin-bottom: 24px;
	}

	.wd-nav-tabs {
		min-width: max-content;
	}

	.wd-nav-tabs > li > a,
	.wd-nav-tabs .wd-nav-link {
		min-height: 40px;
		padding-inline: 15px !important;
	}

	.wd-products .product-element-top img {
		aspect-ratio: 1 / 1.12;
		padding: 10px;
	}

	.mc4wp-form-fields,
	.mc4wp-form-fields p {
		flex-direction: column;
	}
}

/* Artwork final system pass: sharper rhythm, lighter surfaces, real brand pattern. */
body {
	font-size: 17px !important;
}

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

.aw-site-header__inner {
	grid-template-columns: 126px minmax(420px, 1fr) minmax(206px, auto);
	width: min(1240px, calc(100% - 44px));
	min-height: 82px;
	padding: 0;
	border-bottom: 0;
	background: transparent;
}

.aw-site-header__logo {
	justify-self: start;
	width: 118px;
}

.aw-site-header__nav {
	min-width: 0;
}

.aw-main-menu {
	gap: clamp(16px, 2.1vw, 28px);
	justify-content: center;
	align-items: center;
	height: 100%;
}

.aw-main-menu li {
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1;
}

.aw-main-menu a {
	align-items: center;
	height: 100%;
	padding: 0 !important;
	background: transparent !important;
	color: var(--aw-ink) !important;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.aw-site-header__tools {
	justify-self: end;
	gap: 9px;
}

.aw-search,
.aw-icon-link,
.aw-contact-link {
	height: 42px;
	min-height: 42px;
	background: var(--aw-white);
}

.aw-search {
	width: 42px;
}

.aw-search:focus-within {
	width: 218px;
}

.aw-search:focus-within input[type="search"] {
	width: 176px;
	padding-inline: 13px;
}

.aw-search button {
	background-color: transparent !important;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='5.5' stroke='%23181619' stroke-width='1.7'/%3E%3Cpath d='M12.2 12.2L16 16' stroke='%23181619' stroke-width='1.7' stroke-linecap='square'/%3E%3C/svg%3E") !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: 18px 18px !important;
}

.aw-icon-link {
	position: relative;
	font-size: 0;
}

.aw-icon-link::before {
	content: "";
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6h8l-.7 8.2H5.7L5 6Z' fill='none' stroke='black' stroke-width='1.6'/%3E%3Cpath d='M7 6V4.6C7 3.2 8.1 2 9.5 2S12 3.2 12 4.6V6' fill='none' stroke='black' stroke-width='1.6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6h8l-.7 8.2H5.7L5 6Z' fill='none' stroke='black' stroke-width='1.6'/%3E%3Cpath d='M7 6V4.6C7 3.2 8.1 2 9.5 2S12 3.2 12 4.6V6' fill='none' stroke='black' stroke-width='1.6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.aw-icon-link::after {
	content: attr(data-count);
	position: absolute;
	top: -7px;
	left: -7px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding-inline: 4px;
	background: var(--aw-copper);
	color: var(--aw-white);
	font-size: 11px;
	line-height: 1;
}

.aw-contact-link {
	padding-inline: 18px;
	font-size: 14px;
	font-weight: 500;
}

.aw-site-footer {
	margin-top: clamp(60px, 7vw, 96px);
	background: #151119;
}

.aw-site-footer::before {
	height: 120px;
	background-size: 360px auto;
	opacity: .06;
}

.aw-site-footer__inner {
	width: min(1240px, calc(100% - 44px));
	grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, .75fr));
	padding: clamp(54px, 7vw, 82px) 0 34px;
	background: transparent;
}

.aw-site-footer__bottom {
	width: min(1240px, calc(100% - 44px));
	padding-inline: 0;
	background: transparent;
}

.aw-site-footer__brand img {
	width: 126px;
}

.aw-site-footer p,
.aw-site-footer a,
.aw-site-footer span {
	font-size: 15px;
}

@media (max-width: 1100px) {
	.aw-site-header__inner {
		grid-template-columns: 112px minmax(0, 1fr) auto;
		width: calc(100% - 32px);
		min-height: 74px;
	}

	.aw-main-menu {
		gap: 14px;
	}

	.aw-main-menu a {
		font-size: 14px;
	}

	.aw-contact-link {
		display: none;
	}
}

@media (min-width: 1120px) {
	.aw-site-header__inner {
		grid-template-columns: 126px minmax(420px, 1fr) 298px;
	}

	.aw-contact-link {
		display: inline-flex;
	}
}

@media (max-width: 780px) {
	.aw-site-header {
		position: relative;
	}

	.aw-site-header__inner {
		grid-template-columns: 1fr auto;
		width: calc(100% - 24px);
		min-height: 68px;
	}

	.aw-site-header__logo {
		width: 100px;
	}

	.aw-site-header__nav {
		order: 3;
		grid-column: 1 / -1;
		overflow-x: auto;
		border-top: 1px solid var(--aw-line);
	}

	.aw-main-menu {
		justify-content: flex-start;
		width: max-content;
		min-width: 100%;
		padding-inline: 2px;
	}

	.aw-main-menu a {
		min-height: 46px;
	}

	.aw-search:focus-within {
		width: 172px;
	}

	.aw-search:focus-within input[type="search"] {
		width: 130px;
	}

	.aw-site-footer__inner,
	.aw-site-footer__bottom {
		width: calc(100% - 28px);
	}
}

.wd-products .product-wrapper,
.wd-products .product-element-top,
.wd-products .product-element-top img {
	background: var(--aw-white) !important;
}

.wd-products .product-wrapper {
	border-color: var(--aw-line);
}

/* Header tools final pass. */
.aw-site-header__tools {
	gap: 8px !important;
}

.aw-search,
.aw-icon-link,
.aw-contact-link {
	width: 42px !important;
	height: 42px !important;
	min-width: 42px;
	min-height: 42px !important;
	border-color: var(--aw-line) !important;
	color: var(--aw-ink) !important;
}

.aw-search,
.aw-search:focus-within {
	width: 42px !important;
	overflow: hidden;
}

.aw-search input[type="search"],
.aw-search:focus-within input[type="search"] {
	width: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
}

.aw-search button {
	width: 42px !important;
	height: 42px !important;
	min-height: 42px !important;
	background-color: var(--aw-white) !important;
}

.aw-icon-link[data-count="0"]::after,
.aw-icon-link[data-count="۰"]::after {
	display: none !important;
}

.aw-contact-link {
	width: auto !important;
	min-width: 72px;
	padding-inline: 18px;
	background: var(--aw-black) !important;
	border-color: var(--aw-black) !important;
	color: var(--aw-white) !important;
	font-weight: 600;
}

.aw-contact-link:hover {
	background: var(--aw-violet) !important;
	border-color: var(--aw-violet) !important;
	color: var(--aw-white) !important;
}

body.aw-cart-modal-open {
	overflow: hidden;
}

body.aw-preorder-modal-open {
	overflow: hidden;
}

.aw-cart-modal[aria-hidden="true"] {
	display: none;
}

.aw-preorder-modal[aria-hidden="true"] {
	display: none;
}

.aw-cart-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: 20px;
	direction: rtl;
}

.aw-preorder-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: grid;
	place-items: center;
	padding: 20px;
	direction: rtl;
}

.aw-cart-modal__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: rgba(5, 5, 5, 0.56);
	border: 0;
	color: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.aw-preorder-modal__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: rgba(5, 5, 5, 0.56);
	border: 0;
	color: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.aw-cart-modal__backdrop:hover,
.aw-cart-modal__backdrop:focus,
.aw-cart-modal__backdrop:active,
.aw-preorder-modal__backdrop:hover,
.aw-preorder-modal__backdrop:focus,
.aw-preorder-modal__backdrop:active {
	background: rgba(5, 5, 5, 0.56) !important;
	border: 0 !important;
	box-shadow: none !important;
	color: transparent !important;
	outline: none !important;
}

.aw-cart-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 480px);
	padding: clamp(24px, 4vw, 38px);
	background: var(--aw-white);
	border: 1px solid var(--aw-black);
	box-shadow: 0 24px 90px rgba(0, 0, 0, 0.16);
	outline: none;
	text-align: right;
}

.aw-preorder-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	padding: clamp(24px, 4vw, 38px);
	background: var(--aw-white);
	border: 1px solid var(--aw-black);
	box-shadow: 0 24px 90px rgba(0, 0, 0, 0.16);
	outline: none;
	text-align: right;
}

.aw-cart-modal__close {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	padding: 0;
	background: var(--aw-white);
	border: 1px solid var(--aw-line);
	color: var(--aw-black);
	font-size: 22px;
	line-height: 1;
}

.aw-preorder-modal__close {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	padding: 0;
	background: var(--aw-white);
	border: 1px solid var(--aw-line);
	color: var(--aw-black);
	font-size: 22px;
	line-height: 1;
}

.aw-cart-modal__mark {
	display: inline-grid;
	width: 48px;
	height: 48px;
	place-items: center;
	margin-bottom: 18px;
	background: var(--aw-black);
	color: var(--aw-white);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.aw-preorder-modal__mark {
	display: inline-grid;
	width: 48px;
	height: 48px;
	place-items: center;
	margin-bottom: 18px;
	background: var(--aw-black);
	color: var(--aw-white);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.aw-cart-modal h2 {
	margin: 0;
	color: var(--aw-black);
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
}

.aw-preorder-modal h2 {
	margin: 0;
	color: var(--aw-black);
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
}

.aw-cart-modal p {
	margin: 12px 0 0;
	color: var(--aw-muted);
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
}

.aw-preorder-modal p {
	margin: 12px 0 0;
	color: var(--aw-muted);
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
}

.aw-preorder-modal__contact {
	display: grid;
	gap: 8px;
	margin-top: 22px;
}

.aw-preorder-modal__contact a {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 14px;
	border: 1px solid var(--aw-line);
	color: var(--aw-black);
	text-decoration: none !important;
}

.aw-preorder-modal__contact span {
	color: var(--aw-muted);
	font-size: 12px;
	font-weight: 750;
}

.aw-preorder-modal__contact strong {
	color: var(--aw-black);
	font-size: 14px;
	font-weight: 900;
	direction: ltr;
}

.aw-cart-modal__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 26px;
}

.aw-preorder-modal__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 24px;
}

.aw-cart-modal__checkout,
.aw-cart-modal__continue {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: 1px solid var(--aw-black);
	font-size: 14px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none !important;
}

.aw-preorder-modal__primary,
.aw-preorder-modal__secondary {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: 1px solid var(--aw-black);
	font-size: 14px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none !important;
}

.aw-cart-modal__checkout {
	background: var(--aw-black);
	color: var(--aw-white) !important;
}

.aw-preorder-modal__primary {
	background: var(--aw-black);
	color: var(--aw-white) !important;
}

.aw-cart-modal__continue {
	background: var(--aw-white);
	color: var(--aw-black);
}

.aw-preorder-modal__secondary {
	background: var(--aw-white);
	color: var(--aw-black);
}

.aw-cart-modal__checkout:hover,
.aw-cart-modal__continue:hover {
	background: var(--aw-white);
	color: var(--aw-black) !important;
}

.aw-preorder-modal__primary:hover,
.aw-preorder-modal__secondary:hover {
	background: var(--aw-white);
	color: var(--aw-black) !important;
}

.aw-cart-modal__continue:hover {
	background: var(--aw-black);
	color: var(--aw-white) !important;
}

.aw-preorder-modal__secondary:hover {
	background: var(--aw-black);
	color: var(--aw-white) !important;
}

@media (max-width: 520px) {
	.aw-cart-modal,
	.aw-preorder-modal {
		align-items: end;
		padding: 12px;
	}

	.aw-cart-modal__dialog,
	.aw-preorder-modal__dialog {
		width: 100%;
		padding: 28px 20px 22px;
	}

	.aw-cart-modal__actions,
	.aw-preorder-modal__actions {
		grid-template-columns: 1fr;
	}
}

.aw-main-menu a::after {
	bottom: -7px !important;
	height: 1px !important;
	background: var(--aw-copper) !important;
}

/* Mobile fullscreen navigation */
.aw-menu-toggle,
.aw-menu-close {
	display: none;
	border-radius: 0 !important;
}

.aw-menu-toggle {
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
	padding: 0;
	background: var(--aw-white);
	border: 1px solid var(--aw-line);
	color: var(--aw-black);
}

.aw-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: transform .18s ease, opacity .18s ease;
}

.aw-menu-close {
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: var(--aw-black);
	border: 1px solid var(--aw-black);
	color: var(--aw-white);
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
}

body.aw-mobile-menu-open {
	overflow: hidden;
}

.aw-mobile-menu-head,
.aw-mobile-menu-logo,
.aw-mobile-menu-actions {
	display: none;
}

@media (max-width: 780px) {
	.aw-site-header {
		position: sticky !important;
		top: 0;
		z-index: 1000 !important;
	}

	.aw-site-header__inner {
		grid-template-columns: auto auto minmax(0, 1fr) !important;
		gap: 8px !important;
		align-items: center;
		direction: rtl;
		min-height: 70px !important;
	}

	.aw-site-header__logo {
		grid-column: 2;
		justify-self: start;
		width: 102px !important;
	}

	.aw-menu-toggle {
		display: inline-flex;
		grid-column: 1;
		justify-self: start;
	}

	.aw-site-header__tools {
		grid-column: 3;
		justify-self: end;
	}

	.aw-site-header__nav {
		position: fixed !important;
		inset: 0 !important;
		z-index: 99999 !important;
		display: flex !important;
		flex-direction: column;
		justify-content: flex-start;
		order: initial !important;
		grid-column: auto !important;
		width: 100vw !important;
		max-width: 100vw !important;
		height: 100vh !important;
		height: 100dvh !important;
		min-height: 100vh !important;
		min-height: 100dvh !important;
		padding: 0 28px 44px !important;
		overflow: hidden auto !important;
		background: var(--aw-white) !important;
		background-image: none !important;
		border: 0 !important;
		opacity: 0;
		visibility: hidden;
		transform: translateX(-12px);
		transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
	}

	body.aw-mobile-menu-open .aw-site-header__nav,
	.aw-site-header.is-menu-open .aw-site-header__nav {
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 0, 0);
	}

	.aw-menu-close {
		display: inline-flex;
	}

	.aw-mobile-menu-head {
		position: sticky;
		top: 0;
		z-index: 2;
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		min-height: 82px;
		margin: 0 -28px clamp(22px, 7vw, 44px);
		padding: 14px 28px;
		background: var(--aw-white);
		border-bottom: 1px solid var(--aw-line);
		direction: rtl;
	}

	.aw-mobile-menu-logo {
		display: inline-flex !important;
		align-items: center;
		width: 108px;
		text-decoration: none;
	}

	.aw-mobile-menu-logo img {
		display: block;
		width: 100%;
		height: auto;
		max-height: 58px;
		object-fit: contain;
	}

	.aw-mobile-menu-actions {
		display: block;
		width: min(100%, 520px);
		margin: clamp(22px, 7vw, 42px) auto 0;
	}

	.aw-mobile-menu-account {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 56px;
		padding: 0;
		color: var(--aw-black);
		font-size: 18px;
		font-weight: 800;
		text-decoration: none;
		border-bottom: 1px solid var(--aw-line);
	}

	.aw-site-header.is-menu-open .aw-menu-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

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

	.aw-site-header.is-menu-open .aw-menu-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.aw-main-menu {
		display: flex !important;
		width: min(100%, 520px) !important;
		min-width: 0 !important;
		height: auto !important;
		flex-direction: column !important;
		align-items: stretch !important;
		justify-content: center !important;
		gap: 0 !important;
		margin: auto auto 0 !important;
		padding: 0 !important;
		direction: rtl;
	}

	body.aw-mobile-menu-open .aw-site-header__nav .aw-main-menu {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.aw-main-menu li {
		display: block !important;
		height: auto !important;
		border-bottom: 1px solid var(--aw-line);
	}

	.aw-main-menu li:first-child {
		border-top: 1px solid var(--aw-line);
	}

	.aw-main-menu a {
		display: flex !important;
		min-height: 62px !important;
		height: auto !important;
		align-items: center !important;
		justify-content: space-between !important;
		padding: 0 !important;
		color: var(--aw-black) !important;
		font-size: clamp(24px, 8vw, 42px) !important;
		font-weight: 900 !important;
		line-height: 1.2 !important;
	}

	.aw-main-menu a::after {
		position: static !important;
		width: auto !important;
		height: auto !important;
		background: transparent !important;
		content: "←" !important;
		color: currentColor;
		font-size: 22px;
		line-height: 1;
	}
}

/* Stable mobile header layout. */
@media (max-width: 780px) {
	body .aw-site-header {
		position: sticky !important;
		top: 0;
		z-index: 1000 !important;
		width: 100%;
		background: var(--aw-white);
		border-bottom: 1px solid var(--aw-line);
	}

	body .aw-site-header__inner {
		display: grid !important;
		grid-template-columns: auto minmax(0, 1fr) auto 54px !important;
		gap: 10px !important;
		align-items: center !important;
		width: 100% !important;
		max-width: 100% !important;
		min-height: 86px !important;
		margin: 0 !important;
		padding: 14px 16px !important;
		direction: ltr !important;
		border-bottom: 0 !important;
		box-sizing: border-box;
	}

	body .aw-site-header__tools {
		grid-column: 1 !important;
		grid-row: 1 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		gap: 8px !important;
		min-width: 0 !important;
		justify-self: start !important;
		direction: ltr !important;
	}

	body .aw-site-header__tools > .aw-contact-link {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}

	body .aw-contact-link {
		display: none !important;
	}

	body .aw-search,
	body .aw-icon-link {
		position: relative;
		flex: 0 0 48px !important;
		width: 48px !important;
		height: 48px !important;
		min-width: 48px !important;
		min-height: 48px !important;
		padding: 0 !important;
		background: var(--aw-white) !important;
		border: 1px solid var(--aw-line) !important;
		color: transparent !important;
		font-size: 0 !important;
		overflow: hidden;
	}

	body .aw-icon-link {
		overflow: visible !important;
	}

	body .aw-search button {
		width: 48px !important;
		height: 48px !important;
		min-height: 48px !important;
	}

		body .aw-icon-link::before {
			display: none !important;
			content: none !important;
		}

	body .aw-icon-link::after {
		content: attr(data-count) !important;
		position: absolute !important;
		top: -7px !important;
		inset-inline-start: -7px !important;
		left: auto !important;
		right: auto !important;
		z-index: 2 !important;
		display: grid !important;
		place-items: center !important;
		min-width: 18px !important;
		height: 18px !important;
		padding: 0 4px !important;
		background: var(--aw-black) !important;
		border: 1px solid var(--aw-white) !important;
		color: var(--aw-white) !important;
		font-size: 10px !important;
		font-weight: 800 !important;
		line-height: 1 !important;
	}

		body .aw-icon-link[data-count="0"]::after,
		body .aw-icon-link[data-count="۰"]::after {
			display: none !important;
		}

		body .aw-icon-link__icon {
			display: inline-flex !important;
			width: 24px !important;
			height: 24px !important;
			align-items: center !important;
			justify-content: center !important;
			color: var(--aw-ink) !important;
		}

		body .aw-icon-link__icon svg {
			display: block !important;
			width: 24px !important;
			height: 24px !important;
			stroke: currentColor !important;
		}

		body .aw-menu-toggle {
		grid-column: 4 !important;
		grid-row: 1 !important;
		display: inline-flex !important;
		justify-self: end !important;
		align-self: center !important;
		width: 54px !important;
		height: 54px !important;
		min-width: 54px !important;
		min-height: 54px !important;
		background: var(--aw-white) !important;
		border: 1px solid var(--aw-black) !important;
		color: var(--aw-black) !important;
	}

	body .aw-site-header__logo {
		grid-column: 3 !important;
		grid-row: 1 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-self: end !important;
		width: 120px !important;
		max-width: 120px !important;
		direction: rtl !important;
	}

	body .aw-site-header__logo img {
		max-height: 62px !important;
		object-fit: contain;
	}
}

@media (max-width: 380px) {
	body .aw-site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto 48px !important;
		gap: 8px !important;
		padding-inline: 12px !important;
	}

	body .aw-search,
	body .aw-icon-link {
		flex-basis: 44px !important;
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		min-height: 44px !important;
	}

	body .aw-search button {
		width: 44px !important;
		height: 44px !important;
		min-height: 44px !important;
	}

	body .aw-menu-toggle {
		width: 48px !important;
		height: 48px !important;
		min-width: 48px !important;
		min-height: 48px !important;
	}

	body .aw-site-header__logo {
		width: 106px !important;
		max-width: 106px !important;
	}
}

@media (max-width: 780px) {
	body .wd-sidebar-opener,
	body .wd-sidebar-opener.wd-show-on-scroll,
	body .wd-sidebar-opener.wd-shown {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
}

/* Modal backdrop should not react to hover; keep one steady neutral veil. */
.aw-cart-modal .aw-cart-modal__backdrop,
.aw-cart-modal .aw-cart-modal__backdrop:hover,
.aw-cart-modal .aw-cart-modal__backdrop:focus,
.aw-cart-modal .aw-cart-modal__backdrop:active,
.aw-preorder-modal .aw-preorder-modal__backdrop,
.aw-preorder-modal .aw-preorder-modal__backdrop:hover,
.aw-preorder-modal .aw-preorder-modal__backdrop:focus,
.aw-preorder-modal .aw-preorder-modal__backdrop:active {
	background: rgba(17, 17, 17, 0.62) !important;
	background-color: rgba(17, 17, 17, 0.62) !important;
	border: 0 !important;
	box-shadow: none !important;
	color: transparent !important;
	outline: 0 !important;
	opacity: 1 !important;
	transition: none !important;
}

@media (max-width: 640px) {
	body .aw-site-footer {
		overflow: hidden !important;
	}

	body .aw-site-footer__inner,
	body .aw-site-footer__bottom {
		box-sizing: border-box !important;
		width: min(100% - 32px, 560px) !important;
		max-width: min(100% - 32px, 560px) !important;
		margin-right: auto !important;
		margin-left: auto !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	body .aw-site-footer__inner {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 28px 22px !important;
		padding-top: 58px !important;
		padding-bottom: 28px !important;
	}

	body .aw-site-footer__brand {
		grid-column: 1 / -1 !important;
		min-width: 0 !important;
		text-align: center !important;
	}

	body .aw-site-footer__brand img {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	body .aw-site-footer__col {
		min-width: 0 !important;
		width: auto !important;
		justify-items: start !important;
		text-align: right !important;
	}

	body .aw-site-footer__col strong,
	body .aw-site-footer__col a,
	body .aw-site-footer__col span {
		max-width: 100% !important;
		overflow-wrap: anywhere !important;
		white-space: normal !important;
	}

	body .aw-site-footer__bottom {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		text-align: center !important;
	}

	body .aw-site-footer__bottom div {
		display: flex !important;
		flex-wrap: wrap !important;
		justify-content: center !important;
	}
}

/* Final mobile header guard: keep tools visible and prevent the cart from becoming an empty box. */
@media (max-width: 780px) {
	body .aw-site-header__inner {
		box-sizing: border-box !important;
		display: grid !important;
		grid-template-columns: auto minmax(0, 1fr) minmax(104px, 120px) 54px !important;
		align-items: center !important;
		gap: 10px !important;
		width: 100% !important;
		max-width: 100% !important;
		min-height: 78px !important;
		margin: 0 !important;
		padding: 12px 16px !important;
		direction: ltr !important;
		overflow: hidden !important;
	}

	body .aw-site-header__tools {
		grid-column: 1 !important;
		grid-row: 1 !important;
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: flex-start !important;
		gap: 8px !important;
		width: auto !important;
		min-width: 0 !important;
		justify-self: start !important;
		direction: ltr !important;
	}

	body .aw-search,
	body .aw-icon-link,
	body .aw-search button {
		box-sizing: border-box !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		flex: 0 0 48px !important;
		width: 48px !important;
		height: 48px !important;
		min-width: 48px !important;
		min-height: 48px !important;
		max-width: 48px !important;
		max-height: 48px !important;
		padding: 0 !important;
		background-color: var(--aw-white) !important;
		border: 1px solid var(--aw-line) !important;
		color: var(--aw-black) !important;
		opacity: 1 !important;
		overflow: hidden !important;
	}

	body .aw-icon-link--cart {
		position: relative !important;
		color: var(--aw-black) !important;
		font-size: 0 !important;
	}

	body .aw-icon-link--cart::before {
		content: "" !important;
		display: block !important;
		width: 22px !important;
		height: 22px !important;
		background: var(--aw-black) !important;
		-webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8h10l-.9 10.2H7.9L7 8Z' fill='none' stroke='black' stroke-width='1.9' stroke-linejoin='miter'/%3E%3Cpath d='M9.2 8V6.8a2.8 2.8 0 0 1 5.6 0V8' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat !important;
		mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8h10l-.9 10.2H7.9L7 8Z' fill='none' stroke='black' stroke-width='1.9' stroke-linejoin='miter'/%3E%3Cpath d='M9.2 8V6.8a2.8 2.8 0 0 1 5.6 0V8' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat !important;
	}

	body .aw-site-header__tools > a.aw-icon-link.aw-icon-link--cart::before {
		content: "" !important;
		display: block !important;
		width: 22px !important;
		height: 22px !important;
		background-color: #070707 !important;
		-webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8h10l-.9 10.2H7.9L7 8Z' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M9 8V6.8a3 3 0 0 1 6 0V8' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat !important;
		mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8h10l-.9 10.2H7.9L7 8Z' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M9 8V6.8a3 3 0 0 1 6 0V8' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat !important;
	}

	body .aw-icon-link--cart .aw-icon-link__icon,
	body .aw-icon-link--cart .aw-icon-link__icon svg {
		display: none !important;
	}

	body .aw-icon-link--cart::after {
		z-index: 2 !important;
	}

	body .aw-icon-link--cart[data-count="0"]::after,
	body .aw-icon-link--cart[data-count="۰"]::after {
		display: none !important;
	}

	body .aw-site-header__logo {
		grid-column: 3 !important;
		grid-row: 1 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		justify-self: end !important;
		width: 120px !important;
		max-width: 120px !important;
		min-width: 0 !important;
		height: auto !important;
		overflow: hidden !important;
	}

	body .aw-site-header__logo img {
		display: block !important;
		width: 120px !important;
		max-width: 120px !important;
		height: auto !important;
		max-height: 58px !important;
		object-fit: contain !important;
	}

	body .aw-menu-toggle {
		grid-column: 4 !important;
		grid-row: 1 !important;
		box-sizing: border-box !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		justify-self: end !important;
		width: 54px !important;
		height: 54px !important;
		min-width: 54px !important;
		min-height: 54px !important;
		max-width: 54px !important;
		max-height: 54px !important;
		padding: 0 !important;
		background: var(--aw-white) !important;
		border: 1px solid var(--aw-black) !important;
		color: var(--aw-black) !important;
	}
}

@media (max-width: 380px) {
	body .aw-site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) minmax(96px, 106px) 48px !important;
		gap: 8px !important;
		padding-inline: 12px !important;
	}

	body .aw-search,
	body .aw-icon-link,
	body .aw-search button {
		flex-basis: 44px !important;
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		min-height: 44px !important;
		max-width: 44px !important;
		max-height: 44px !important;
	}

	body .aw-site-header__logo,
	body .aw-site-header__logo img {
		width: 106px !important;
		max-width: 106px !important;
	}

	body .aw-menu-toggle {
		width: 48px !important;
		height: 48px !important;
		min-width: 48px !important;
		min-height: 48px !important;
		max-width: 48px !important;
		max-height: 48px !important;
	}
}

/* Mobile header final layout: search, cart, login, logo, menu. */
@media (max-width: 780px) {
	body .aw-site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) minmax(104px, 116px) 54px !important;
		gap: 8px !important;
		min-height: 78px !important;
		padding: 12px 16px !important;
	}

	body .aw-site-header__tools {
		gap: 8px !important;
	}

	body .aw-search,
	body .aw-icon-link,
	body .aw-search button {
		flex: 0 0 46px !important;
		width: 46px !important;
		height: 46px !important;
		min-width: 46px !important;
		min-height: 46px !important;
		max-width: 46px !important;
		max-height: 46px !important;
	}

	body .aw-site-header__tools > .aw-contact-link {
		box-sizing: border-box !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		flex: 0 0 78px !important;
		width: 78px !important;
		height: 46px !important;
		min-width: 78px !important;
		min-height: 46px !important;
		max-width: 78px !important;
		max-height: 46px !important;
		padding: 0 !important;
		background: var(--aw-black) !important;
		border: 1px solid var(--aw-black) !important;
		color: var(--aw-white) !important;
		font-size: 11px !important;
		font-weight: 800 !important;
		line-height: 1 !important;
		text-align: center !important;
		white-space: nowrap !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	body .aw-site-header__tools > a.aw-icon-link.aw-icon-link--cart::before {
		content: none !important;
		display: none !important;
	}

	body .aw-icon-link--cart .aw-icon-link__icon,
	body .aw-icon-link--cart .aw-icon-link__icon svg {
		display: inline-flex !important;
		width: 22px !important;
		height: 22px !important;
		color: var(--aw-black) !important;
		stroke: currentColor !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	body .aw-site-header__logo,
	body .aw-site-header__logo img {
		width: 112px !important;
		max-width: 112px !important;
	}
}

@media (max-width: 430px) {
	body .aw-site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) minmax(98px, 106px) 52px !important;
		gap: 7px !important;
		padding-inline: 14px !important;
	}

	body .aw-site-header__tools {
		gap: 7px !important;
	}

	body .aw-search,
	body .aw-icon-link,
	body .aw-search button {
		flex-basis: 44px !important;
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		min-height: 44px !important;
		max-width: 44px !important;
		max-height: 44px !important;
	}

	body .aw-site-header__tools > .aw-contact-link {
		flex-basis: 74px !important;
		width: 74px !important;
		min-width: 74px !important;
		max-width: 74px !important;
		height: 44px !important;
		min-height: 44px !important;
		max-height: 44px !important;
		font-size: 10px !important;
	}

	body .aw-site-header__logo,
	body .aw-site-header__logo img {
		width: 106px !important;
		max-width: 106px !important;
	}

	body .aw-menu-toggle {
		width: 52px !important;
		height: 52px !important;
		min-width: 52px !important;
		min-height: 52px !important;
		max-width: 52px !important;
		max-height: 52px !important;
	}
}

@media (max-width: 380px) {
	body .aw-site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) minmax(92px, 100px) 48px !important;
		gap: 6px !important;
		padding-inline: 10px !important;
	}

	body .aw-search,
	body .aw-icon-link,
	body .aw-search button,
	body .aw-site-header__tools > .aw-contact-link {
		flex-basis: 68px !important;
		width: 68px !important;
		height: 42px !important;
		min-width: 68px !important;
		min-height: 42px !important;
		max-width: 68px !important;
		max-height: 42px !important;
	}

	body .aw-site-header__tools > .aw-contact-link {
		font-size: 9.5px !important;
	}

	body .aw-site-header__logo,
	body .aw-site-header__logo img {
		width: 100px !important;
		max-width: 100px !important;
	}
}
