.arkdash-shell {
	display: none !important;
}

.adp-copy-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px;
	align-items: center;
	margin: 8px 0;
}

.adp-copy-row span {
	grid-column: 1 / -1;
	font-size: 12px;
	font-weight: 700;
}

.adp-copy-row input {
	width: 100%;
	direction: ltr;
	font-family: monospace;
	font-size: 12px;
}

.adp-copy-row button {
	min-width: 34px;
	height: 30px;
	cursor: pointer;
}

.adp-guide-note {
	margin: 8px 0;
	padding: 10px;
	border-radius: 8px;
	background: #f3f4f6;
	line-height: 1.9;
}

.adp-product-sort {
	--adp-product-sort-widget-justify: flex-start;
	--adp-product-sort-widget-align: center;
	--adp-product-sort-widget-direction: row;
	--adp-product-sort-widget-gap: 10px;
	display: flex;
	align-items: var(--adp-product-sort-widget-align);
	justify-content: var(--adp-product-sort-widget-justify);
	flex-direction: var(--adp-product-sort-widget-direction);
	gap: var(--adp-product-sort-widget-gap);
	width: 100%;
	direction: rtl;
}

.adp-product-sort-label {
	color: #111827;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.8;
}

.adp-product-sort-dropdown {
	position: relative;
	z-index: 20;
	min-width: 170px;
}

.adp-product-sort-select {
	display: inline-flex;
	min-width: 170px;
	width: 100%;
	align-items: center;
	justify-content: stretch;
	padding: 10px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #fff;
	color: #111827;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	outline: none;
	text-align: right;
	cursor: pointer;
	transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
	appearance: none;
}

.adp-product-sort-trigger-inner {
	--adp-product-sort-trigger-gap: 12px;
	--adp-product-sort-trigger-justify: space-between;
	--adp-product-sort-trigger-align: center;
	--adp-product-sort-trigger-text-align: right;
	--adp-product-sort-text-order: 1;
	--adp-product-sort-icon-order: 2;
	display: flex !important;
	width: 100% !important;
	min-width: 0;
	align-items: var(--adp-product-sort-trigger-align) !important;
	justify-content: var(--adp-product-sort-trigger-justify) !important;
	gap: var(--adp-product-sort-trigger-gap) !important;
}

.adp-product-sort-current,
.adp-product-sort-trigger-inner [data-adp-product-sort-current] {
	order: var(--adp-product-sort-text-order) !important;
	min-width: 0;
	text-align: var(--adp-product-sort-trigger-text-align) !important;
}

.adp-product-sort-select:focus,
.adp-product-sort-dropdown.is-open .adp-product-sort-select {
	border-color: #ef394e;
	box-shadow: 0 0 0 3px rgba(239, 57, 78, 0.12);
}

.adp-product-sort-arrow {
	display: inline-flex;
	width: 9px;
	height: 9px;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	order: var(--adp-product-sort-icon-order) !important;
	opacity: .7;
	transition: transform .2s ease;
}

.adp-product-sort-trigger-inner.adp-product-sort-icon-after .adp-product-sort-arrow,
.adp-product-sort-trigger-inner:not(.adp-product-sort-icon-before) .adp-product-sort-arrow {
	margin-inline-start: var(--adp-product-sort-trigger-gap);
	margin-inline-end: 0;
}

.adp-product-sort-trigger-inner.adp-product-sort-icon-before .adp-product-sort-arrow {
	margin-inline-start: 0;
	margin-inline-end: var(--adp-product-sort-trigger-gap);
}

.adp-product-sort-arrow-css {
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.adp-product-sort-arrow-icon svg,
.adp-product-sort-arrow-icon i {
	display: block;
	width: 1em;
	height: 1em;
	font-size: 1em;
	line-height: 1;
}

.adp-product-sort-dropdown.is-open .adp-product-sort-arrow {
	transform: rotate(180deg);
}

.adp-product-sort-dropdown.is-open .adp-product-sort-arrow-css {
	transform: translateY(2px) rotate(225deg);
}

.adp-product-sort-menu {
	--adp-product-sort-menu-gap: 4px;
	--adp-product-sort-option-justify: flex-start;
	--adp-product-sort-option-align: right;
	--adp-product-sort-option-color: #334155;
	--adp-product-sort-option-bg: transparent;
	--adp-product-sort-option-hover-color: #ef394e;
	--adp-product-sort-option-hover-bg: #fff1f2;
	--adp-product-sort-option-active-color: #ef394e;
	--adp-product-sort-option-active-bg: #fff1f2;
	--adp-product-sort-option-click-color: var(--adp-product-sort-option-active-color);
	--adp-product-sort-option-click-bg: var(--adp-product-sort-option-active-bg);
	position: absolute;
	z-index: 9999;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	display: grid;
	gap: var(--adp-product-sort-menu-gap);
	max-height: 280px;
	margin: 0;
	padding: 8px;
	overflow-y: auto;
	border: 1px solid #eef0f4;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(15, 23, 42, .14);
	list-style: none;
}

.adp-product-sort-menu[hidden] {
	display: none;
}

.adp-product-sort-option {
	display: flex;
	align-items: center;
	justify-content: var(--adp-product-sort-option-justify);
	padding: 10px 12px;
	border-radius: 12px;
	background: var(--adp-product-sort-option-bg);
	color: var(--adp-product-sort-option-color);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
	text-align: var(--adp-product-sort-option-align);
	cursor: pointer;
	transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.adp-product-sort-option:hover,
.adp-product-sort-option:focus-visible {
	background: var(--adp-product-sort-option-hover-bg);
	color: var(--adp-product-sort-option-hover-color);
}

.adp-product-sort-option.is-active,
.adp-product-sort-option[aria-selected="true"] {
	background: var(--adp-product-sort-option-active-bg);
	color: var(--adp-product-sort-option-active-color);
}

.adp-product-sort-option:active {
	background: var(--adp-product-sort-option-click-bg);
	color: var(--adp-product-sort-option-click-color);
}

.adp-product-sort-option:hover,
.adp-product-sort-option:focus-visible {
	transform: translateX(-2px);
}

.adp-product-sort-submit {
	padding: 10px 14px;
	border: 0;
	border-radius: 12px;
	background: #ef394e;
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

.adp-breadcrumbs {
	direction: rtl;
	width: 100%;
}

.adp-breadcrumbs-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.adp-breadcrumbs-item,
.adp-breadcrumbs-separator {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.adp-breadcrumbs-link,
.adp-breadcrumbs-current,
.adp-breadcrumbs-ellipsis {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #334155;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.7;
	text-decoration: none;
	gap: 0;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.adp-breadcrumbs-link:hover {
	color: #ef394e;
}

.adp-breadcrumbs-current {
	color: #0f172a;
	font-weight: 900;
}

.adp-breadcrumbs-separator {
	color: #94a3b8;
	font-size: 12px;
	line-height: 1;
}

.adp-breadcrumbs-separator svg,
.adp-breadcrumbs-home-icon svg,
.adp-breadcrumbs-provider-home-icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.adp-breadcrumbs-home-icon,
.adp-breadcrumbs-provider-home-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
	flex: 0 0 auto;
	line-height: 1;
}

.adp-breadcrumbs-home-icon img,
.adp-breadcrumbs-provider-home-icon img {
	display: block;
	width: 1em;
	height: 1em;
	object-fit: contain;
}

.adp-breadcrumbs-home-icon-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.adp-breadcrumbs-has-provider-icon {
	display: flex;
	align-items: center;
}

.adp-breadcrumbs-provider-output {
	min-width: 0;
}

.adp-breadcrumbs-external .rank-math-breadcrumb,
.adp-breadcrumbs-external .yoast-breadcrumb,
.adp-breadcrumbs-external .woocommerce-breadcrumb {
	margin: 0;
}

.adp-breadcrumbs-external,
.adp-breadcrumbs-provider-output,
.adp-breadcrumbs-provider-output nav,
.adp-breadcrumbs-provider-output p,
.adp-breadcrumbs-provider-output a,
.adp-breadcrumbs-provider-output span {
	color: #334155;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.7;
}

.adp-breadcrumbs-provider-output p {
	margin: 0;
}

.adp-breadcrumbs-provider-output a {
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.adp-breadcrumbs-provider-output a:hover {
	color: #ef394e;
}

.adp-breadcrumbs-provider-output .last,
.adp-breadcrumbs-provider-output .breadcrumb_last,
.adp-breadcrumbs-provider-output [aria-current="page"] {
	color: #0f172a;
	font-weight: 900;
}

.arkdash-editor-hint,
.arkdash-notice {
	box-sizing: border-box !important;
	padding: 12px 14px !important;
	border: 1px solid #d7dbe3 !important;
	border-radius: 10px !important;
	background: #f7f8fb !important;
	color: #334155 !important;
	font-size: 13px !important;
	line-height: 1.8 !important;
}

.arkdash-isolated,
.arkdash-isolated * {
	box-sizing: border-box !important;
}

.arkdash-nav-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 16px !important;
	direction: rtl !important;
}

.arkdash-nav-button,
a.arkdash-nav-button,
button.arkdash-nav-button {
	position: relative !important;
	display: flex !important;
	width: 100% !important;
	max-width: none !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 12px !important;
	padding: 18px !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 18px !important;
	background: #fff !important;
	color: #111827 !important;
	font: inherit !important;
	line-height: 1.4 !important;
	text-align: inherit !important;
	text-decoration: none !important;
	appearance: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease !important;
}

.arkdash-nav-button:hover,
.arkdash-nav-button:focus {
	transform: translateY(-1px) !important;
	border-color: #cbd5e1 !important;
	box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08) !important;
	outline: none !important;
	color: #111827 !important;
	text-decoration: none !important;
}

.arkdash-nav-button.is-active {
	border-color: #111827 !important;
	background: #111827 !important;
	color: #fff !important;
}

.arkdash-nav-icon {
	display: inline-flex !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 auto !important;
	border-radius: 14px !important;
	background: rgba(15, 23, 42, 0.06) !important;
	color: currentColor !important;
	line-height: 1 !important;
}

.arkdash-nav-button.is-active .arkdash-nav-icon {
	background: rgba(255, 255, 255, 0.14) !important;
}

.arkdash-nav-icon svg,
.arkdash-nav-icon i {
	display: block !important;
	width: 1em !important;
	height: 1em !important;
	font-size: 22px !important;
	color: currentColor !important;
	fill: currentColor !important;
}

.arkdash-no-icon .arkdash-nav-icon {
	display: none !important;
}

.arkdash-nav-copy {
	display: flex !important;
	min-width: 0 !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	gap: 2px !important;
	line-height: 1.5 !important;
}

.arkdash-nav-title {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	color: inherit !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
}

.arkdash-nav-subtitle {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	color: inherit !important;
	opacity: 0.68 !important;
	font-size: 0.88em !important;
	line-height: 1.5 !important;
}

.arkdash-nav-badge {
	display: inline-flex !important;
	min-width: 24px !important;
	height: 24px !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 8px !important;
	border-radius: 999px !important;
	background: #ef4444 !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
}

.arkdash-login-gate {
	width: 100% !important;
	margin: 0 0 24px !important;
	direction: inherit !important;
}

.arkdash-login-gate .arkdash-login-required {
	width: 100% !important;
}

.arkdash-login-redirect {
	padding: 12px 14px !important;
	border: 1px solid #d7dbe3 !important;
	border-radius: 10px !important;
	background: #f7f8fb !important;
}

.adp-mf,
.adp-mf * {
	box-sizing: border-box;
}

.adp-mf {
	--adp-mf-main-width: 180px;
	--adp-mf-scrollbar: #d6d6d6;
	--adp-mf-drawer-width: min(86vw, 380px);
	overflow: hidden;
	width: 100%;
	border: 1px solid #e0e0e2;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
	direction: rtl;
	text-align: right;
}

.adp-mf-main-horizontal {
	overflow: visible;
}

.adp-mf-preset-compact {
	border-radius: 10px;
	box-shadow: none;
}

.adp-mf-preset-compact .adp-mf-main-link,
.adp-mf-preset-compact .adp-mf-main-control {
	min-height: 42px;
	padding: 8px 10px;
	font-size: 12px;
}

.adp-mf-preset-compact .adp-mf-panel {
	padding: 12px;
}

.adp-mf-preset-compact .adp-mf-depth-2 > .adp-mf-row .adp-mf-child-link,
.adp-mf-preset-compact .adp-mf-depth-2 > .adp-mf-row .adp-mf-filter-control,
.adp-mf-preset-compact .adp-mf-nested .adp-mf-child-link,
.adp-mf-preset-compact .adp-mf-nested .adp-mf-filter-control {
	padding: 5px 0;
	font-size: 12px;
}

.adp-mf-preset-compact .adp-mf-quick-links,
.adp-mf-preset-compact .adp-mf-search,
.adp-mf-preset-compact .adp-mf-actions {
	padding: 8px;
}

.adp-mf-preset-compact .adp-mf-chip {
	padding: 4px 8px;
	font-size: 11px;
}

.adp-mf-mobile-toggle,
.adp-mf-mobile-close {
	display: none;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.adp-mf-canvas {
	position: relative;
	width: 100%;
}

.adp-mf-drawer-head {
	display: none;
}

.adp-mf-search {
	padding: 12px;
	border-bottom: 1px solid #f1f1f1;
}

.adp-mf-search-input {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #f8fafc;
	color: #111827;
	outline: none;
}

.adp-mf-search-input:focus {
	border-color: #ef394e;
	background: #fff;
}

.adp-mf-search-empty {
	display: block;
	margin-top: 8px;
	color: #64748b;
	font-size: 12px;
}

.adp-mf-search-hidden {
	display: none !important;
}

.adp-mf-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px 12px;
	border-bottom: 1px solid #f1f1f1;
}

.adp-mf-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	color: #475569;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: all .2s ease;
}

.adp-mf-chip:hover {
	border-color: #ef394e;
	color: #ef394e;
}

.adp-mf-list,
.adp-mf ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.adp-mf-list {
	position: relative;
	display: flex;
	min-height: 70vh;
	flex-direction: column;
	background: #fff;
}

.adp-mf-main-horizontal .adp-mf-list {
	display: flex;
	min-height: 0 !important;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	overflow: visible;
}

.adp-mf-main-item {
	position: static;
	width: var(--adp-mf-main-width);
	min-width: var(--adp-mf-main-width);
	max-width: var(--adp-mf-main-width);
	background: #f7f7f8;
	border-left: 1px solid #eaeaea;
}

.adp-mf-main-horizontal .adp-mf-main-item {
	width: auto;
	min-width: 0;
	max-width: none;
	flex: 0 0 auto;
	border-left: 0;
}

.adp-mf-row {
	margin: 0;
}

.adp-mf-main-horizontal .adp-mf-row {
	flex: 0 0 auto;
}

.adp-mf-link,
.adp-mf-filter-control {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	border: 0;
	color: inherit;
	font: inherit;
	text-decoration: none;
	transition: all .25s ease;
}

.adp-mf-image-pos-right {
	flex-direction: row;
}

.adp-mf-image-pos-left {
	flex-direction: row-reverse;
}

.adp-mf-image-pos-top,
.adp-mf-image-pos-bottom {
	align-items: center;
	justify-content: center;
	text-align: center;
}

.adp-mf-image-pos-top {
	flex-direction: column;
}

.adp-mf-image-pos-bottom {
	flex-direction: column-reverse;
}

.adp-mf-image-pos-top .adp-mf-label,
.adp-mf-image-pos-bottom .adp-mf-label,
.adp-mf-image-pos-top .adp-mf-count,
.adp-mf-image-pos-bottom .adp-mf-count {
	flex: 0 1 auto;
}

.adp-mf-main-link,
.adp-mf-main-control {
	min-height: 72px;
	justify-content: center;
	padding: 14px 16px;
	border-bottom: 1px solid #ececec;
	background: #f7f7f8;
	color: #5b5f79;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}

.adp-mf-main-item.is-active > .adp-mf-row .adp-mf-main-link,
.adp-mf-main-item.is-active > .adp-mf-row .adp-mf-main-control {
	background: #fff;
	color: #ef394e;
}

.adp-mf-panel {
	position: absolute;
	top: 0;
	right: var(--adp-mf-main-width);
	bottom: 0;
	left: 0;
	display: none;
	overflow-y: auto;
	padding: 20px 24px 32px;
	background: #fff;
}

.adp-mf-main-horizontal .adp-mf-panel {
	position: static;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 5;
	width: 100%;
	flex: 1 0 100%;
	min-height: 260px;
	max-height: 70vh;
	border-top: 1px solid #f1f1f1;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.adp-mf-horizontal-panels {
	width: 100%;
	min-height: 220px;
}

.adp-mf-horizontal-panel {
	display: none !important;
}

.adp-mf-horizontal-panel:first-child {
	display: block !important;
}

.adp-mf-horizontal-panels:has(.adp-mf-horizontal-panel.is-active) .adp-mf-horizontal-panel {
	display: none !important;
}

.adp-mf-horizontal-panel.is-active {
	display: block !important;
}

.adp-mf-panel::-webkit-scrollbar {
	width: 5px;
}

.adp-mf-panel::-webkit-scrollbar-thumb {
	background: var(--adp-mf-scrollbar);
	border-radius: 20px;
}

.adp-mf-panel::-webkit-scrollbar-track {
	background: transparent;
}

.adp-mf-main-item.is-active > .adp-mf-panel {
	display: block;
}

.adp-mf-main-horizontal .adp-mf-main-item.is-active > .adp-mf-panel {
	display: none;
}

.adp-mf-panel-head,
.adp-mf-pro-blocks {
	list-style: none;
}

.adp-mf-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 12px;
	padding: 0 0 12px;
	border-bottom: 1px solid #f1f1f1;
}

.adp-mf-panel-title {
	color: #111827;
	font-size: 18px;
	font-weight: 800;
}

.adp-mf-panel-all {
	color: #ef394e;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.adp-mf-pro-blocks {
	display: grid;
	gap: 12px;
	margin: 12px 0;
}

.adp-mf-brands,
.adp-mf-promos {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.adp-mf-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #fff;
	color: #334155;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.adp-mf-brand img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 10px;
}

.adp-mf-promo {
	display: flex;
	min-width: 180px;
	flex: 1 1 220px;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 18px;
	background: #f8fafc;
	color: #111827;
	text-decoration: none;
}

.adp-mf-promo img {
	width: 58px;
	height: 58px;
	object-fit: cover;
	border-radius: 14px;
}

.adp-mf-promo-copy {
	display: grid;
	gap: 3px;
}

.adp-mf-promo-copy strong {
	font-size: 14px;
	line-height: 1.5;
}

.adp-mf-promo-copy small {
	color: #64748b;
	font-size: 12px;
	line-height: 1.6;
}

.adp-mf-depth-2 > .adp-mf-row .adp-mf-child-link,
.adp-mf-depth-2 > .adp-mf-row .adp-mf-filter-control {
	padding: 12px 0;
	border-bottom: 1px solid #f1f1f1;
	color: #23254e;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.8;
}

.adp-mf-child-link:hover,
.adp-mf-filter-control:hover {
	color: #ef394e;
}

.adp-mf-nested {
	display: block;
	margin: 8px 0 14px;
	padding: 0 12px 0 0;
	border-right: 1px dashed #e0e0e2;
}

.adp-mf-nested .adp-mf-nested {
	margin: 6px 8px 10px 0;
	padding: 0 10px 0 0;
	border-right-style: dotted;
}

.adp-mf-nested-inline .adp-mf-nested {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 18px;
	row-gap: 8px;
	padding: 0;
	border-right-width: 0;
}

.adp-mf-nested-inline .adp-mf-nested .adp-mf-nested {
	margin: 4px 0 8px;
	padding: 0;
	border-right-width: 0;
}

.adp-mf-nested-inline .adp-mf-nested > .adp-mf-item {
	margin: 0;
}

.adp-mf-nested .adp-mf-child-link,
.adp-mf-nested .adp-mf-filter-control {
	padding: 7px 0;
	border: 0;
	color: #6b7280;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
}

.adp-mf-more-item {
	width: 100%;
	margin: 4px 0 0;
	list-style: none;
	display: none;
}

.adp-mf-more-button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	padding: 8px 0;
	border: 0;
	background: transparent;
	color: #ef394e;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.8;
	text-align: inherit;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.adp-mf-more-button:hover {
	color: #b91c1c;
}

.adp-mf-more-hidden {
	display: none !important;
}

@media (min-width: 1025px) {
	.adp-mf-third-level-list:not(.is-expanded) > .adp-mf-hide-desktop {
		display: none !important;
	}

	.adp-mf-more-device-desktop {
		display: block;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.adp-mf-third-level-list:not(.is-expanded) > .adp-mf-hide-tablet {
		display: none !important;
	}

	.adp-mf-more-device-tablet {
		display: block;
	}
}

@media (max-width: 767px) {
	.adp-mf-third-level-list:not(.is-expanded) > .adp-mf-hide-mobile {
		display: none !important;
	}

	.adp-mf-more-device-mobile {
		display: block;
	}
}

.adp-mf-image {
	display: inline-block;
	width: 34px;
	height: 34px;
	object-fit: cover;
	border-radius: 10px;
}

.adp-mf-label {
	min-width: 0;
	flex: 1 1 auto;
}

.adp-mf-count {
	display: inline-flex;
	min-width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	border-radius: 999px;
	background: #f1f5f9;
	color: #475569;
	font-size: 12px;
	font-weight: 700;
}

.adp-mf-filter-control {
	background: transparent;
	cursor: pointer;
}

button.adp-mf-filter-control {
	appearance: none;
	text-align: inherit;
}

.adp-mf-filter-control input {
	flex: 0 0 auto;
	margin: 0;
	accent-color: #ef394e;
}

.adp-mf-filter-control.is-checked {
	color: #ef394e;
}

.adp-mf-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px;
}

.adp-mf-selected-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 12px 14px 0;
}

.adp-mf-selected-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(239, 57, 78, 0.1);
	color: #ef394e;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.adp-mf-selected-chip span {
	display: inline-flex;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(239, 57, 78, 0.16);
	line-height: 1;
}

.adp-mf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 0;
	border-radius: 12px;
	background: #ef394e;
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
}

.adp-mf-reset {
	background: #f1f5f9;
	color: #334155;
}

.adp-mf-empty {
	padding: 16px;
	border: 1px dashed #d5e4ea;
	border-radius: 14px;
	background: #f8fcfd;
	color: #5f7280;
}

@media (max-width: 1024px) {
	.adp-mf {
		--adp-mf-main-width: 150px;
	}
}

@media (max-width: 767px) {
	.adp-mf {
		--adp-mf-main-width: 95px;
	}

	.adp-mf-mobile-drawer {
		overflow: visible;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.adp-mf-mobile-drawer .adp-mf-mobile-toggle {
		display: inline-flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		padding: 12px 16px;
		border: 0;
		border-radius: 14px;
		background: #ef394e;
		color: #fff;
		font-weight: 800;
	}

	.adp-mf-mobile-drawer .adp-mf-canvas {
		position: fixed;
		z-index: 99999;
		top: 0;
		right: 0;
		bottom: 0;
		width: var(--adp-mf-drawer-width);
		max-width: 100vw;
		overflow-y: auto;
		transform: translateX(100%);
		background: #fff;
		box-shadow: -20px 0 50px rgba(15, 23, 42, 0.18);
		transition: transform .25s ease;
	}

	.adp-mf-mobile-drawer.is-drawer-open .adp-mf-canvas {
		transform: translateX(0);
	}

	.adp-mf-mobile-drawer .adp-mf-backdrop {
		position: fixed;
		z-index: 99998;
		inset: 0;
		display: none;
		border: 0;
		background: rgba(15, 23, 42, 0.45);
	}

	.adp-mf-mobile-drawer.is-drawer-open .adp-mf-backdrop {
		display: block;
	}

	.adp-mf-mobile-drawer .adp-mf-drawer-head {
		display: flex;
		justify-content: flex-end;
		padding: 10px;
		border-bottom: 1px solid #f1f1f1;
	}

	.adp-mf-mobile-drawer .adp-mf-mobile-close {
		display: inline-flex;
		padding: 8px 12px;
		border: 0;
		border-radius: 10px;
		background: #f1f5f9;
		color: #334155;
		font-weight: 700;
	}

	.adp-mf-main-horizontal .adp-mf-list {
		overflow: visible;
		flex-wrap: wrap;
	}

	.adp-mf-main-link,
	.adp-mf-main-control {
		min-height: 72px;
		padding: 10px 6px;
		font-size: 11px;
	}

	.adp-mf-panel {
		padding: 14px 12px 24px;
	}

	.adp-mf-main-horizontal .adp-mf-panel {
		right: auto;
		min-height: 220px;
		max-height: none;
	}

	.adp-mf-mobile-stacked .adp-mf-list {
		display: block;
		min-height: 0;
	}

	.adp-mf-mobile-stacked .adp-mf-main-item {
		width: 100%;
		min-width: 0;
		max-width: none;
		border-left: 0;
	}

	.adp-mf-mobile-stacked .adp-mf-panel {
		position: static;
		max-height: none;
	}

	.adp-mf-mobile-stacked .adp-mf-main-item:not(.is-active) > .adp-mf-panel {
		display: none;
	}
}

.arkdash-section[hidden] {
	display: none !important;
}

[data-arkdash-target][hidden],
[data-arkdash-target].adp-hidden,
[hidden].adp-hidden {
	display: none !important;
}

.adp-panel-dashboard[hidden],
.adp-panel-orders[hidden],
.adp-panel-addresses[hidden],
.adp-panel-details[hidden],
.adp-panel-downloads[hidden],
.adp-panel-payments[hidden],
.adp-panel-wishlist[hidden],
.adp-panel-dashboard.adp-hidden,
.adp-panel-orders.adp-hidden,
.adp-panel-addresses.adp-hidden,
.adp-panel-details.adp-hidden,
.adp-panel-downloads.adp-hidden,
.adp-panel-payments.adp-hidden,
.adp-panel-wishlist.adp-hidden,
.adp-p-dash[hidden],
.adp-p-orders[hidden],
.adp-p-addr[hidden],
.adp-p-details[hidden],
.adp-p-dl[hidden],
.adp-p-pay[hidden],
.adp-p-wish[hidden],
[class*="adp-p-"][hidden],
.arkdash-panel-dashboard[hidden],
.arkdash-panel-orders[hidden],
.arkdash-panel-addresses[hidden],
.arkdash-panel-edit_account[hidden],
.arkdash-panel-downloads[hidden],
.arkdash-panel-payment_methods[hidden],
.arkdash-panel-wishlist[hidden],
[class*="arkdash-panel-"][hidden],
[class*="adp-panel-"].adp-hidden,
[class*="adp-p-"].adp-hidden,
[class*="arkdash-panel-"].adp-hidden {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
	position: absolute !important;
	inset: auto !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}

.arkdash-section {
	display: block !important;
	animation: arkdashFadeUp 220ms ease both !important;
	direction: rtl !important;
}

.adp-panel-dashboard,
.adp-panel-orders,
.adp-panel-addresses,
.adp-panel-details,
.adp-panel-downloads,
.adp-panel-payments,
.adp-panel-wishlist,
.adp-p-dash,
.adp-p-orders,
.adp-p-addr,
.adp-p-details,
.adp-p-dl,
.adp-p-pay,
.adp-p-wish,
.arkdash-panel-dashboard,
.arkdash-panel-orders,
.arkdash-panel-addresses,
.arkdash-panel-edit_account,
.arkdash-panel-downloads,
.arkdash-panel-payment_methods,
.arkdash-panel-wishlist {
	animation: arkdashFadeUp 220ms ease both !important;
}

.arkdash-section-inner {
	border-radius: 20px !important;
}

.arkdash-section-heading {
	margin: 0 0 18px !important;
	padding: 0 !important;
	color: inherit !important;
	line-height: 1.4 !important;
}

.arkdash-empty-state {
	padding: 24px !important;
	border: 1px dashed #d1d5db !important;
	border-radius: 16px !important;
	text-align: center !important;
}

.arkdash-wc-output,
.arkdash-wc-output p,
.arkdash-wc-output span,
.arkdash-wc-output div,
.arkdash-wc-output table,
.arkdash-wc-output th,
.arkdash-wc-output td,
.arkdash-wc-output label,
.arkdash-wc-output input,
.arkdash-wc-output button,
.arkdash-wc-output select,
.arkdash-wc-output textarea {
	color: initial;
	font-family: inherit;
}

.arkdash-wc-output a {
	color: LinkText;
	cursor: pointer !important;
}

.arkdash-wc-output a:visited {
	color: VisitedText;
}

@keyframes arkdashFadeUp {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 767px) {
	.arkdash-nav-grid {
		grid-template-columns: 1fr !important;
	}

	.arkdash-nav-button,
	a.arkdash-nav-button,
	button.arkdash-nav-button {
		padding: 14px !important;
	}
}

.adp-product-gallery {
	--adp-gallery-gap: 14px;
	--adp-gallery-image-fit: contain;
	--adp-gallery-image-position: center center;
	--adp-gallery-thumb-fit: cover;
	--adp-gallery-thumb-position: center center;
	--adp-gallery-thumb-hover-scale: 1.025;
	--adp-gallery-arrow-hover-scale: 1.06;
	--adp-gallery-zoom-scale: 1.08;
	display: grid !important;
	gap: var(--adp-gallery-gap);
	direction: rtl !important;
	width: 100%;
}

.elementor-widget-ark_dash_product_gallery .elementor-widget-container {
	text-align: initial !important;
}

.adp-product-gallery > a.elementor-element,
.adp-product-gallery > a.e-con,
.adp-product-gallery > a[class*="elementor-element"],
.adp-product-gallery > a.elementor-clickable {
	display: contents !important;
}

.elementor-widget-ark_dash_product_gallery .elementor-widget-container > a {
	display: contents !important;
}

.elementor-widget-ark_dash_product_gallery.elementor-invisible,
.elementor-widget-ark_dash_product_data_panels.elementor-invisible {
	visibility: visible !important;
	opacity: 1 !important;
}

.adp-product-data > a.elementor-element,
.adp-product-data > a.e-con,
.adp-product-data > a[class*="elementor-element"],
.adp-product-data > a.elementor-clickable {
	display: contents !important;
}

.elementor-widget-ark_dash_product_data_panels .elementor-widget-container > a {
	display: contents !important;
}

.adp-gallery-thumbs-left,
.adp-gallery-thumbs-right {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: stretch;
}

.adp-gallery-thumbs-left .adp-product-gallery-main {
	grid-column: 2;
	grid-row: 1;
}

.adp-gallery-thumbs-left .adp-product-gallery-thumbs {
	grid-column: 1;
	grid-row: 1;
}

.adp-gallery-thumbs-right {
	grid-template-columns: minmax(0, 1fr) auto;
}

.adp-gallery-thumbs-top .adp-product-gallery-thumbs {
	order: -1;
}

.adp-product-gallery-main {
	position: relative;
	height: 520px;
	min-height: 220px;
	overflow: hidden;
	background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.9), rgba(248,250,252,.92) 42%, rgba(226,232,240,.72));
	border: 1px solid rgba(148, 163, 184, .22);
	border-radius: 26px;
	box-shadow: 0 22px 70px rgba(15, 23, 42, .12);
}

.adp-product-gallery-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .34s ease, transform .34s ease, filter .34s ease;
}

.adp-product-gallery-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: none;
	filter: none;
}

.adp-product-gallery-slide.is-active.is-entering {
	animation: adpGalleryFade .36s ease both;
}

.adp-product-gallery[data-animation="fade-scale"] .adp-product-gallery-slide.is-active.is-entering {
	animation-name: adpGalleryFadeScale;
}

.adp-product-gallery[data-animation="slide"] .adp-product-gallery-slide.is-active.is-entering {
	animation-name: adpGallerySlide;
}

.adp-product-gallery[data-animation="none"] .adp-product-gallery-slide.is-active.is-entering {
	animation: none;
}

.adp-product-gallery[data-animation="fade-scale"] .adp-product-gallery-slide {
	transform: scale(.965);
}

.adp-product-gallery[data-animation="slide"] .adp-product-gallery-slide {
	transform: translateX(22px);
}

.adp-product-gallery[data-animation="none"] .adp-product-gallery-slide {
	transition: none;
	transform: none;
}

.adp-product-gallery[data-animation="fade-scale"] .adp-product-gallery-slide.is-active,
.adp-product-gallery[data-animation="slide"] .adp-product-gallery-slide.is-active {
	transform: none;
}

.adp-product-gallery-image {
	position: absolute !important;
	inset: 0 !important;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: var(--adp-gallery-image-fit, contain);
	object-position: var(--adp-gallery-image-position, center center);
	transition: transform .45s ease, filter .3s ease;
}

.adp-product-gallery[data-zoom="yes"] .adp-product-gallery-main:hover .adp-product-gallery-slide.is-active .adp-product-gallery-image {
	transform: scale(var(--adp-gallery-zoom-scale, 1.08));
}

@keyframes adpGalleryFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes adpGalleryFadeScale {
	from { opacity: 0; transform: scale(.94); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes adpGallerySlide {
	from { opacity: 0; transform: translateX(34px); }
	to { opacity: 1; transform: translateX(0); }
}

.adp-product-gallery-thumbs {
	display: flex;
	gap: 10px;
	overflow: auto;
	padding: 6px;
	margin: -6px;
	scrollbar-width: thin;
}

.adp-gallery-thumbs-left .adp-product-gallery-thumbs,
.adp-gallery-thumbs-right .adp-product-gallery-thumbs {
	flex-direction: column;
	max-height: 520px;
}

.adp-product-gallery-thumb {
	--adp-gallery-indicator-normal: rgba(239, 57, 78, .24);
	--adp-gallery-indicator-hover: rgba(239, 57, 78, .62);
	--adp-gallery-indicator-active: #ef394e;
	position: relative;
	width: 76px;
	height: 76px;
	flex: 0 0 auto;
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(148, 163, 184, .28);
	border-radius: 18px;
	background: #fff;
	cursor: pointer;
	transition: opacity .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.adp-product-gallery-thumb::after {
	content: "";
	position: absolute;
	right: 14px;
	bottom: 8px;
	left: 14px;
	height: 3px;
	border-radius: 999px;
	background: var(--adp-gallery-indicator-normal);
	transform: scaleX(0);
	transition: transform .22s ease;
}

.adp-product-gallery-thumb:hover::after {
	background: var(--adp-gallery-indicator-hover);
	transform: scaleX(.58);
}

.adp-product-gallery-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: var(--adp-gallery-thumb-fit, cover);
	object-position: var(--adp-gallery-thumb-position, center center);
}

.adp-product-gallery-thumb:hover,
.adp-product-gallery-thumb.is-active {
	opacity: 1 !important;
	transform: scale(var(--adp-gallery-thumb-hover-scale));
	border-color: #ef394e;
	box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
}

.adp-product-gallery-thumb.is-active::after {
	background: var(--adp-gallery-indicator-active);
	transform: scaleX(1);
}

.adp-product-gallery-arrow,
.adp-product-gallery-counter {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: rgba(255,255,255,.86);
	color: #0f172a;
	box-shadow: 0 12px 36px rgba(15, 23, 42, .14);
	backdrop-filter: blur(12px);
}

.adp-product-gallery-arrow {
	top: 50%;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform .2s ease, background-color .2s ease;
}

.adp-product-gallery-arrow:hover {
	transform: translateY(-50%) scale(var(--adp-gallery-arrow-hover-scale));
}

.adp-product-gallery-prev {
	right: 16px;
}

.adp-product-gallery-next {
	left: 16px;
}

.adp-product-gallery-counter {
	right: 16px;
	bottom: 16px;
	gap: 5px;
	padding: 7px 11px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
}

.adp-product-data {
	--adp-product-data-gap: 18px;
	--adp-review-submit-bg: #ef394e;
	--adp-review-submit-color: #fff;
	--adp-review-submit-hover-bg: var(--adp-review-submit-bg);
	--adp-review-submit-hover-color: var(--adp-review-submit-color);
	--adp-review-submit-border-color: transparent;
	--adp-review-submit-padding: 11px 18px;
	--adp-review-submit-radius: 999px;
	--adp-review-toggle-bg: #0f172a;
	--adp-review-toggle-color: #fff;
	--adp-review-toggle-hover-bg: var(--adp-review-toggle-bg);
	--adp-review-toggle-hover-color: var(--adp-review-toggle-color);
	--adp-review-toggle-border-color: transparent;
	--adp-review-toggle-padding: 10px 14px;
	--adp-review-toggle-radius: 999px;
	--adp-product-data-nav-hover-y: -2px;
	--adp-review-toggle-hover-y: -1px;
	--adp-review-submit-hover-y: -1px;
	display: grid;
	gap: var(--adp-product-data-gap);
	direction: rtl;
	width: 100%;
	padding: 18px;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,250,252,.96));
	box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
}

.adp-product-data-nav,
.adp-product-data-accordion-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.adp-product-data-accordion-list {
	flex-direction: column;
}

.adp-product-data-tab,
.adp-product-data-accordion-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border: 1px solid rgba(148, 163, 184, .2);
	border-radius: 16px;
	background: #f8fafc;
	color: #334155;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.5;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.adp-product-data-tab:hover,
.adp-product-data-accordion-trigger:hover {
	transform: translateY(var(--adp-product-data-nav-hover-y));
}

.adp-product-data-tab.is-active,
.adp-product-data-accordion-trigger.is-active {
	background: #0f172a;
	color: #fff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, .18);
}

.adp-product-data-accordion-trigger {
	width: 100%;
	justify-content: space-between;
}

.adp-product-data-panel {
	padding: 24px;
	border: 1px solid rgba(148, 163, 184, .18);
	border-radius: 24px;
	background: #fff;
	color: #334155;
	line-height: 1.9;
	animation: adpProductDataFade .28s ease both;
}

.adp-product-data-panel[hidden] {
	display: none;
}

.adp-product-data[data-animation="slide-up"] .adp-product-data-panel.is-active {
	animation-name: adpProductDataSlide;
}

.adp-product-data[data-animation="scale"] .adp-product-data-panel.is-active {
	animation-name: adpProductDataScale;
}

.adp-product-data[data-animation="blur"] .adp-product-data-panel.is-active {
	animation-name: adpProductDataBlur;
}

.adp-product-data[data-animation="none"] .adp-product-data-panel.is-active {
	animation: none;
}

@keyframes adpProductDataFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes adpProductDataSlide {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes adpProductDataScale {
	from { opacity: 0; transform: scale(.98); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes adpProductDataBlur {
	from { opacity: 0; filter: blur(8px); transform: translateY(8px); }
	to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.adp-product-data-stack-title {
	margin: 0 0 14px;
	color: #0f172a;
	font-size: 18px;
	font-weight: 950;
}

.adp-product-data-table {
	--adp-product-data-table-column-gap: 0;
	--adp-product-data-table-row-gap: 8px;
	--adp-product-data-table-row-bg: transparent;
	--adp-product-data-table-label-bg: #f8fafc;
	--adp-product-data-table-value-bg: #fff;
	--adp-product-data-table-label-color: #0f172a;
	--adp-product-data-table-value-color: #475569;
	--adp-product-data-table-cell-padding: 14px 16px;
	width: 100%;
	border-collapse: separate;
	border-spacing: var(--adp-product-data-table-column-gap) var(--adp-product-data-table-row-gap);
}

.adp-product-data-table tr {
	background: var(--adp-product-data-table-row-bg);
}

.adp-product-data-table th,
.adp-product-data-table td {
	padding: var(--adp-product-data-table-cell-padding);
	border: 1px solid transparent;
	vertical-align: middle;
	overflow-wrap: anywhere;
	word-break: break-word;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.adp-product-data-table th {
	width: 34%;
	border-radius: var(--adp-product-data-table-cell-radius, 0 14px 14px 0);
	background: var(--adp-product-data-table-label-bg);
	color: var(--adp-product-data-table-label-color);
	font-weight: 950;
	text-align: right;
}

.adp-product-data-table td {
	border-radius: var(--adp-product-data-table-cell-radius, 14px 0 0 14px);
	background: var(--adp-product-data-table-value-bg);
	color: var(--adp-product-data-table-value-color);
}

.adp-product-data-table td a {
	color: inherit;
	text-decoration-color: currentColor;
}

.adp-product-data-table tr:hover th {
	background: var(--adp-product-data-table-row-hover-bg, var(--adp-product-data-table-label-bg));
}

.adp-product-data-table tr:hover td {
	background: var(--adp-product-data-table-row-hover-bg, var(--adp-product-data-table-value-bg));
}

.adp-product-data-reviews {
	display: grid;
	gap: 16px;
}

.adp-product-data-review-summary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 18px;
	background: #f8fafc;
}

.adp-product-data-review-summary strong {
	color: #0f172a;
	font-size: 28px;
	font-weight: 950;
	line-height: 1;
}

.adp-product-data-stars {
	color: #f59e0b;
	letter-spacing: 1px;
}

.adp-product-review-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.adp-product-review-card {
	padding: 16px;
	border: 1px solid rgba(148, 163, 184, .18);
	border-radius: 20px;
	background: #fff;
}

.adp-product-review-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.adp-product-review-head img {
	border-radius: 50%;
}

.adp-product-review-head strong,
.adp-product-review-head span {
	display: block;
}

.adp-product-review-head span {
	color: #94a3b8;
	font-size: 12px;
	font-weight: 700;
}

.adp-product-review-link {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--adp-review-toggle-padding) !important;
	border: 1px solid var(--adp-review-toggle-border-color) !important;
	border-radius: var(--adp-review-toggle-radius) !important;
	background: var(--adp-review-toggle-bg) !important;
	background-color: var(--adp-review-toggle-bg) !important;
	background-image: none !important;
	color: var(--adp-review-toggle-color) !important;
	font-weight: 900;
	text-decoration: none;
	text-shadow: none !important;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.adp-product-review-link:hover {
	background: var(--adp-review-toggle-hover-bg) !important;
	background-color: var(--adp-review-toggle-hover-bg) !important;
	color: var(--adp-review-toggle-hover-color) !important;
	transform: translateY(var(--adp-review-toggle-hover-y));
}

@media (max-width: 767px) {
	.adp-gallery-thumbs-left,
	.adp-gallery-thumbs-right {
		grid-template-columns: 1fr;
	}

	.adp-gallery-thumbs-left .adp-product-gallery-main,
	.adp-gallery-thumbs-left .adp-product-gallery-thumbs {
		grid-column: auto;
		grid-row: auto;
	}

	.adp-gallery-thumbs-left .adp-product-gallery-thumbs,
	.adp-gallery-thumbs-right .adp-product-gallery-thumbs {
		flex-direction: row;
		max-height: none;
	}

	.adp-product-gallery-main {
		height: 360px;
	}

	.adp-product-review-grid {
		grid-template-columns: 1fr;
	}

	.adp-product-data {
		padding: 12px;
	}

	.adp-product-data-panel {
		padding: 12px;
		overflow: hidden;
	}

	.adp-table-mobile-stacked .adp-product-data-table {
		border-spacing: 0 !important;
		border-collapse: collapse !important;
	}

	.adp-table-mobile-stacked .adp-product-data-table tbody {
		display: block !important;
	}

	.adp-table-mobile-stacked .adp-product-data-table tr {
		display: block !important;
		margin-bottom: var(--adp-product-data-table-row-gap, 8px);
		background: var(--adp-product-data-table-row-bg) !important;
		border-radius: 16px;
		overflow: hidden;
	}

	.adp-table-mobile-stacked .adp-product-data-table th,
	.adp-table-mobile-stacked .adp-product-data-table td {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
		padding: var(--adp-product-data-table-cell-padding);
	}

	.adp-table-mobile-stacked .adp-product-data-table th {
		border-radius: var(--adp-product-data-table-cell-radius, 16px 16px 10px 10px) !important;
		background: var(--adp-product-data-table-label-bg) !important;
		color: var(--adp-product-data-table-label-color) !important;
	}

	.adp-table-mobile-stacked .adp-product-data-table td {
		border-radius: var(--adp-product-data-table-cell-radius, 10px 10px 16px 16px) !important;
		background: var(--adp-product-data-table-value-bg) !important;
		color: var(--adp-product-data-table-value-color) !important;
	}

	.adp-table-mobile-stacked .adp-product-data-table tr:hover th {
		background: var(--adp-product-data-table-row-hover-bg, var(--adp-product-data-table-label-bg)) !important;
	}

	.adp-table-mobile-stacked .adp-product-data-table tr:hover td {
		background: var(--adp-product-data-table-row-hover-bg, var(--adp-product-data-table-value-bg)) !important;
	}

	.adp-table-mobile-stacked .adp-product-data-table td a {
		display: inline;
		overflow-wrap: anywhere;
	}
}

.adp-gallery-thumbs-right .adp-product-gallery-main {
	grid-column: 1;
	grid-row: 1;
}

.adp-gallery-thumbs-right .adp-product-gallery-thumbs {
	grid-column: 2;
	grid-row: 1;
}

.adp-product-review-form-wrap {
	padding: 14px;
	border-radius: 20px;
	background: #f8fafc;
}

.adp-product-review-form-wrap summary {
	list-style: none;
	cursor: pointer;
}

.adp-product-review-form-wrap summary::-webkit-details-marker {
	display: none;
}

.adp-product-review-form-title {
	margin: 18px 0 12px;
	color: #0f172a;
	font-size: 18px;
	font-weight: 950;
}

.adp-product-review-form {
	display: grid;
	gap: 12px;
}

.adp-product-review-form p {
	margin: 0;
}

.adp-product-review-form label {
	display: block;
	margin-bottom: 6px;
	color: #0f172a;
	font-size: 13px;
	font-weight: 900;
}

.adp-product-review-form input,
.adp-product-review-form select,
.adp-product-review-form textarea {
	width: 100%;
	border: 1px solid rgba(148, 163, 184, .28);
	border-radius: 14px;
	background: #fff;
	padding: 11px 12px;
	color: #0f172a;
	font: inherit;
	outline: none;
}

.adp-product-review-form input:focus,
.adp-product-review-form select:focus,
.adp-product-review-form textarea:focus {
	border-color: #0f172a;
	box-shadow: 0 0 0 3px rgba(15, 23, 42, .1);
}

.adp-product-review-submit,
.adp-product-review-form .submit,
.adp-product-review-form input[type="submit"],
.adp-product-review-form button[type="submit"],
.adp-product-data #commentform #submit.adp-product-review-submit,
.woocommerce .adp-product-data #respond input#submit.adp-product-review-submit,
.woocommerce-page .adp-product-data #respond input#submit.adp-product-review-submit {
	justify-self: start;
	-webkit-appearance: none !important;
	appearance: none !important;
	border: 1px solid var(--adp-review-submit-border-color) !important;
	border-radius: var(--adp-review-submit-radius) !important;
	background: var(--adp-review-submit-bg) !important;
	background-color: var(--adp-review-submit-bg) !important;
	background-image: none !important;
	color: var(--adp-review-submit-color) !important;
	text-shadow: none !important;
	box-shadow: none;
	padding: var(--adp-review-submit-padding) !important;
	font-weight: 950 !important;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.adp-product-review-submit:hover,
.adp-product-review-form .submit:hover,
.adp-product-review-form input[type="submit"]:hover,
.adp-product-review-form button[type="submit"]:hover,
.adp-product-data #commentform #submit.adp-product-review-submit:hover,
.woocommerce .adp-product-data #respond input#submit.adp-product-review-submit:hover,
.woocommerce-page .adp-product-data #respond input#submit.adp-product-review-submit:hover {
	background: var(--adp-review-submit-hover-bg) !important;
	background-color: var(--adp-review-submit-hover-bg) !important;
	background-image: none !important;
	color: var(--adp-review-submit-hover-color) !important;
	transform: translateY(var(--adp-review-submit-hover-y));
}

.elementor-widget-ark_dash_product_add_to_cart_button .elementor-widget-container {
	text-align: initial !important;
}

.adp-cart-button-wrap {
	display: grid;
	justify-items: start;
}

.adp-cart-button-shell {
	--adp-cart-button-width: 190px;
	--adp-cart-button-height: 56px;
	--adp-cart-qty-action-width: 38px;
	--adp-cart-icon-x: 0px;
	--adp-cart-icon-y: 0px;
	--adp-cart-icon-hover-x: 0px;
	--adp-cart-icon-hover-y: 0px;
	display: inline-grid;
	width: var(--adp-cart-button-width);
	min-width: var(--adp-cart-button-width);
	max-width: 100%;
	flex: 0 0 auto;
	direction: rtl;
	line-height: 1;
}

.adp-cart-button-shell > a,
.adp-cart-button-shell > a.e-con,
.adp-cart-button-shell > a.elementor-element {
	display: contents !important;
}

.adp-cart-button-shell button {
	font: inherit;
}

.adp-cart-button-add {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: var(--adp-cart-button-width);
	min-width: var(--adp-cart-button-width);
	max-width: 100%;
	height: var(--adp-cart-button-height);
	flex: 0 0 auto;
	overflow: hidden;
	border: 0 solid transparent;
	border-radius: 999px;
	background-color: #ef394e;
	background-image: none;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 18px 36px rgba(239, 57, 78, .26);
	text-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.adp-cart-button-add::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.34), transparent 62%);
	transform: translateX(75%) rotate(12deg);
	transition: transform .55s ease;
	pointer-events: none;
}

.adp-cart-button-shell:not(.is-added) .adp-cart-button-add:hover,
.adp-cart-button-shell:not(.is-added) .adp-cart-button-add:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 22px 44px rgba(239, 57, 78, .32);
}

.adp-cart-button-shell:not(.is-added) .adp-cart-button-add:hover::before,
.adp-cart-button-shell:not(.is-added) .adp-cart-button-add:focus-visible::before {
	transform: translateX(-75%) rotate(12deg);
}

.adp-cart-button-icon,
.adp-cart-button-text {
	position: relative;
	z-index: 1;
}

.adp-cart-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 19px;
	transform: translate(var(--adp-cart-icon-x), var(--adp-cart-icon-y));
	transition: transform .42s cubic-bezier(.2,.85,.2,1), color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.adp-cart-button-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateX(8px) scale(.98);
	transition: max-width .34s ease, opacity .22s ease, transform .34s ease;
}

.adp-cart-button-shell.is-text-always .adp-cart-button-text {
	max-width: 180px;
	opacity: 1;
	overflow: visible;
	transform: none;
}

.adp-cart-button-shell:not(.is-added) .adp-cart-button-add:hover .adp-cart-button-text,
.adp-cart-button-shell:not(.is-added) .adp-cart-button-add:focus-visible .adp-cart-button-text {
	max-width: 180px;
	opacity: 1;
	transform: translateX(0) scale(1);
}

.adp-cart-button-shell:not(.is-added) .adp-cart-button-add:hover .adp-cart-button-icon,
.adp-cart-button-shell:not(.is-added) .adp-cart-button-add:focus-visible .adp-cart-button-icon {
	transform: translate(calc(var(--adp-cart-icon-x) + var(--adp-cart-icon-hover-x)), calc(var(--adp-cart-icon-y) + var(--adp-cart-icon-hover-y)));
}

.adp-cart-button-added-state {
	display: none;
	grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
	align-items: center;
	width: var(--adp-cart-button-width);
	min-width: var(--adp-cart-button-width);
	max-width: 100%;
	gap: 8px;
}

.adp-cart-button-shell.is-added .adp-cart-button-add {
	display: none !important;
}

.adp-cart-button-shell:not(.is-added) .adp-cart-button-added-state {
	display: none !important;
}

.adp-cart-button-shell.is-added .adp-cart-button-added-state {
	display: grid !important;
	animation: adpCartButtonSwap .28s ease both;
}

.adp-cart-button-qty,
.adp-cart-button-added {
	height: var(--adp-cart-button-height);
	border: 0 solid transparent;
	border-radius: 999px;
}

.adp-cart-button-qty {
	display: grid;
	grid-template-columns: var(--adp-cart-qty-action-width) minmax(0, 1fr) var(--adp-cart-qty-action-width);
	column-gap: 0;
	align-items: center;
	background: #fff;
	color: #0f172a;
	box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
}

.adp-cart-button-qty-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0 solid transparent;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: 14px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.adp-cart-button-qty-action:focus {
	outline: none;
}

.adp-cart-button-qty-action::-moz-focus-inner {
	border: 0;
}

.adp-cart-button-qty-action svg,
.adp-cart-button-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.adp-cart-button-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.adp-cart-button-added {
	padding: 0 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #e5e7eb;
	color: #64748b;
	cursor: default;
	border: 0 solid transparent;
	box-shadow: inset 0 0 0 1px rgba(100, 116, 139, .12);
	text-decoration: none;
	white-space: nowrap;
}

.adp-cart-button-added--icon {
	padding: 0;
}

.adp-cart-button-added-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 16px;
	line-height: 1;
}

.adp-cart-button-added-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.adp-cart-button-added-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.adp-cart-button-added--link {
	cursor: pointer;
}

.adp-cart-button-added--link:hover {
	filter: brightness(.95);
}

.adp-cart-delete-icon {
	display: none;
}

.adp-cart-button-shell.is-one .adp-cart-minus-icon {
	display: none;
}

.adp-cart-button-shell.is-one .adp-cart-delete-icon {
	display: inline-flex;
}

.adp-cart-button-shell.is-loading {
	pointer-events: none;
	opacity: .72;
}

.adp-cart-button-shell.has-error .adp-cart-button-add,
.adp-cart-button-shell.has-error .adp-cart-button-qty {
	animation: adpCartButtonShake .32s ease both;
}

.adp-cart-button-variable {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	background: #0f172a;
	color: #fff;
	font-weight: 950 !important;
	text-decoration: none;
}

@keyframes adpCartButtonSwap {
	from { opacity: 0; transform: translateY(8px) scale(.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes adpCartButtonShake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(5px); }
	75% { transform: translateX(-5px); }
}

.adp-checkout {
	--adp-checkout-gap: 28px;
	--adp-checkout-row-gap: 18px;
	--adp-checkout-main-width: 58%;
	--adp-checkout-focus: #2fb5c9;
	--adp-checkout-card-bg: #fff;
	--adp-checkout-card-border: rgba(148, 163, 184, .22);
	--adp-checkout-ink: #0f172a;
	--adp-checkout-muted: #64748b;
	direction: rtl;
	text-align: right;
}

.adp-checkout * {
	box-sizing: border-box;
}

.adp-checkout-header {
	margin-bottom: 22px;
}

.adp-checkout-heading {
	margin: 0 0 8px;
	color: var(--adp-checkout-ink);
	font-size: 30px;
	font-weight: 950;
	line-height: 1.25;
}

.adp-checkout-intro {
	max-width: 760px;
	margin: 0;
	color: var(--adp-checkout-muted);
	font-size: 14px;
	line-height: 1.9;
}

.adp-checkout .woocommerce-notices-wrapper,
.adp-checkout .woocommerce-NoticeGroup,
.adp-checkout .woocommerce-form-login-toggle,
.adp-checkout .woocommerce-form-coupon-toggle,
.adp-checkout form.checkout_coupon,
.adp-checkout form.login {
	margin-bottom: var(--adp-checkout-row-gap);
}

.adp-checkout-hide-login .woocommerce-form-login-toggle,
.adp-checkout-hide-login form.login,
.adp-checkout-hide-coupon .woocommerce-form-coupon-toggle,
.adp-checkout-hide-coupon form.checkout_coupon,
.adp-checkout-hide-notes #order_comments_field,
.adp-checkout-hide-notes .woocommerce-additional-fields {
	display: none !important;
}

.adp-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, var(--adp-checkout-main-width)) minmax(280px, 1fr);
	gap: var(--adp-checkout-row-gap) var(--adp-checkout-gap);
	align-items: start;
}

.adp-checkout-layout-single form.checkout {
	display: block;
}

.adp-checkout-layout-order_first form.checkout {
	grid-template-columns: minmax(280px, 1fr) minmax(0, var(--adp-checkout-main-width));
}

.adp-checkout form.checkout .woocommerce-NoticeGroup,
.adp-checkout form.checkout .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

.adp-checkout .col2-set {
	width: 100% !important;
	float: none !important;
	grid-column: 1;
	grid-row: 1 / span 3;
	display: grid;
	gap: var(--adp-checkout-row-gap);
}

.adp-checkout-layout-order_first .col2-set {
	grid-column: 2;
}

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

.adp-checkout #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
}

.adp-checkout #order_review {
	grid-column: 2;
	grid-row: 2;
}

.adp-checkout-layout-order_first #order_review_heading,
.adp-checkout-layout-order_first #order_review {
	grid-column: 1;
}

.adp-checkout-layout-single #order_review_heading {
	margin-top: var(--adp-checkout-row-gap);
}

.adp-checkout .woocommerce-billing-fields,
.adp-checkout .woocommerce-shipping-fields,
.adp-checkout .woocommerce-additional-fields,
.adp-checkout .woocommerce-checkout-review-order,
.adp-checkout .woocommerce-form-login,
.adp-checkout .checkout_coupon,
.adp-checkout-empty,
.adp-checkout .woocommerce-info,
.adp-checkout .woocommerce-message,
.adp-checkout .woocommerce-error {
	border: 1px solid var(--adp-checkout-card-border);
	border-radius: 24px;
	background: var(--adp-checkout-card-bg);
	box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.adp-checkout .woocommerce-billing-fields,
.adp-checkout .woocommerce-shipping-fields,
.adp-checkout .woocommerce-additional-fields,
.adp-checkout .woocommerce-checkout-review-order,
.adp-checkout .woocommerce-form-login,
.adp-checkout .checkout_coupon,
.adp-checkout-empty {
	padding: 22px;
}

.adp-checkout h3,
.adp-checkout #order_review_heading {
	color: var(--adp-checkout-ink);
	font-size: 20px;
	font-weight: 950;
	line-height: 1.4;
}

.adp-checkout .form-row {
	margin: 0 0 14px;
	padding: 0;
}

.adp-checkout label {
	display: block;
	margin-bottom: 7px;
	color: var(--adp-checkout-ink);
	font-size: 13px;
	font-weight: 900;
}

.adp-checkout input.input-text,
.adp-checkout textarea,
.adp-checkout select,
.adp-checkout .select2-container .select2-selection--single {
	width: 100%;
	min-height: 46px;
	border: 1px solid rgba(148, 163, 184, .34);
	border-radius: 15px;
	background: #fff;
	color: var(--adp-checkout-ink);
	padding: 11px 13px;
	font: inherit;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.adp-checkout textarea {
	min-height: 118px;
}

.adp-checkout input.input-text:focus,
.adp-checkout textarea:focus,
.adp-checkout select:focus,
.adp-checkout .select2-container--open .select2-selection--single {
	border-color: var(--adp-checkout-focus);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--adp-checkout-focus) 16%, transparent);
}

.adp-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0;
	line-height: 22px;
	color: inherit;
}

.adp-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	top: 50%;
	transform: translateY(-50%);
}

.adp-checkout table.shop_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 0;
	margin: 0;
	color: var(--adp-checkout-ink);
}

.adp-checkout table.shop_table th,
.adp-checkout table.shop_table td {
	border-width: 0 0 1px;
	border-style: solid;
	border-color: rgba(148, 163, 184, .22);
	padding: 14px 0;
	text-align: right;
}

.adp-checkout table.shop_table tr:last-child th,
.adp-checkout table.shop_table tr:last-child td {
	border-bottom: 0;
}

.adp-checkout .order-total th,
.adp-checkout .order-total td,
.adp-checkout .order-total .amount {
	font-size: 18px;
	font-weight: 950;
}

.adp-checkout #payment {
	border-radius: 20px;
	background: #f8fafc;
	padding: 16px;
}

.adp-checkout #payment ul.payment_methods {
	border: 0;
	padding: 0;
}

.adp-checkout #payment div.payment_box {
	border-radius: 16px;
	background: #fff;
	color: var(--adp-checkout-muted);
}

.adp-checkout #payment div.form-row {
	padding: 0;
}

.adp-checkout .button,
.adp-checkout button.button,
.adp-checkout #place_order,
.adp-checkout-empty-button {
	-webkit-appearance: none !important;
	appearance: none !important;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, #103642, #2fb5c9);
	color: #fff;
	padding: 13px 18px;
	font-weight: 950;
	line-height: 1.2;
	text-decoration: none;
	text-shadow: none !important;
	box-shadow: 0 14px 30px rgba(47, 181, 201, .22);
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.adp-checkout #place_order {
	width: 100%;
	margin-top: 14px;
	font-size: 16px;
}

.adp-checkout .button:hover,
.adp-checkout button.button:hover,
.adp-checkout #place_order:hover,
.adp-checkout-empty-button:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(47, 181, 201, .28);
}

.adp-checkout .woocommerce-info,
.adp-checkout .woocommerce-message,
.adp-checkout .woocommerce-error {
	padding: 14px 18px;
	background: #f8fafc;
	color: var(--adp-checkout-ink);
	line-height: 1.8;
}

.adp-checkout .woocommerce-error {
	border-color: rgba(239, 68, 68, .28);
}

.adp-checkout-sticky-order .woocommerce-checkout-review-order {
	position: sticky;
	top: 24px;
}

.adp-checkout-empty {
	display: grid;
	justify-items: center;
	gap: 14px;
	padding: 34px 22px;
	text-align: center;
}

.adp-checkout-empty-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(47, 181, 201, .16), rgba(16, 54, 66, .08));
	font-size: 26px;
}

.adp-checkout-empty-text {
	max-width: 540px;
	margin: 0;
	color: var(--adp-checkout-muted);
	font-size: 15px;
	line-height: 1.9;
}

@media (max-width: 900px) {
	.adp-checkout form.checkout,
	.adp-checkout-layout-order_first form.checkout {
		display: block;
	}

	.adp-checkout .col2-set,
	.adp-checkout-layout-order_first .col2-set,
	.adp-checkout #order_review,
	.adp-checkout-layout-order_first #order_review {
		display: block;
		margin-bottom: var(--adp-checkout-row-gap);
	}

	.adp-checkout #order_review_heading {
		margin-top: var(--adp-checkout-row-gap);
		margin-bottom: 10px;
	}

	.adp-checkout-sticky-order .woocommerce-checkout-review-order {
		position: static;
	}
}
