*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	outline-style: none;
}

li {
	list-style: none;
}

a {
	border: none;
	text-decoration: none;
}

a img {
	border: none;
}

:focus {
	outline: none;
}

::-webkit-input-placeholder {
	color: #37203f94;
}

::-moz-placeholder {
	color: #37203f94;
}

:-moz-placeholder {
	color: #37203f94;
}

:-ms-input-placeholder {
	color: #37203f94;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

.d-none {
	display: none;
}

html {
	scroll-behavior: smooth
}

:root {
	--blue: #0B63F6;
	--blue-d: #0A52CE;
	--blue-l: #3B82F8;
	--blue-soft: #E8F0FE;
	--blue-soft2: #F2F7FF;
	--cyan: #06B6D4;
	--cyan-soft: #E0F7FB;
	--bg: #F5F7FA;
	--bg2: #FFFFFF;
	--bg3: #EDF1F6;
	--bg4: #E2E8F0;
	--ln: #E2E8F0;
	--ln2: #CBD5E1;
	--ink: #0F172A;
	--ink2: #475569;
	--ink3: #94A3B8;
	--ink4: #CBD5E1;
	--grn: #0E9F6E;
	--grn-soft: #DEF7EC;
	--amber: #D97706;
	--amber-soft: #FEF3C7;
	--red: #DC2626;
	--sans: 'Inter Tight', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
}

body {
	font-family: var(--sans);
	background: var(--bg);
	color: var(--ink);
	line-height: 1.5;
	overflow-x: hidden
}

a {
	text-decoration: none;
	color: inherit
}

button,
input,
select,
textarea {
	font-family: inherit
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px
}

::-webkit-scrollbar-track {
	background: var(--bg3)
}

::-webkit-scrollbar-thumb {
	background: var(--ln2);
	border-radius: 5px;
	border: 2px solid var(--bg3)
}

.pg {
	display: none
}

.pg.on {
	display: block
}

.mono {
	font-family: var(--mono)
}

/* ─── HEADER (single row, sticky) ─── */
.hdr {
	background: var(--bg2);
	border-bottom: 1px solid var(--ln);
	position: sticky;
	top: 0;
	z-index: 900
}

.hdr-in {
	max-width: 1320px;
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	gap: 22px
}

.logo {
	display: flex;
	align-items: center;
	gap: 11px;
	cursor: pointer;
	flex-shrink: 0
}

.logo-mark {
	width: 40px;
	height: 40px;
	background: var(--blue);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center
}

.logo-mark svg {
	width: 23px;
	height: 23px
}

.logo-name {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink)
}

.logo-name b {
	color: var(--blue)
}

.logo-sub {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ink3);
	margin-top: 1px
}

.hdr-nav ul {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-left: 8px
}

.hdr-nav ul a {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink2);
	padding: 8px 14px;
	border-radius: 8px;
	cursor: pointer;
	white-space: nowrap;
	transition: all .15s
}

.hdr-nav ul a:hover,
.hdr-nav ul li.current-menu-item a {
	background: var(--blue-soft);
	color: var(--blue)
}

.hdr-sp {
	flex: 1
}

.hdr-acts {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0
}

.hbtn {
	position: relative;
	background: none;
	border: none;
	color: var(--ink2);
	cursor: pointer;
	padding: 10px;
	border-radius: 9px;
	transition: all .16s;
	display: flex;
	align-items: center;
	gap: 8px
}

.hbtn:hover {
	background: var(--bg3);
	color: var(--blue)
}

.hbtn svg {
	width: 22px;
	height: 22px
}

.hbtn-price {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700;
	color: var(--ink)
}

.hbdg {
	position: absolute;
	top: 3px;
	right: 3px;
	min-width: 17px;
	height: 17px;
	background: var(--blue);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	font-family: var(--mono);
	border: 2px solid var(--bg2)
}

.hbtn-cart {
	background: var(--blue);
	color: #fff;
	padding: 10px 16px
}

.hbtn-cart:hover {
	background: var(--blue-d);
	color: #fff
}

.hbtn-cart .hbtn-price {
	color: #fff
}

.hbtn-cart .hbdg {
	background: #fff;
	color: var(--blue);
	border-color: var(--blue)
}

/* ─── MINI-CART DROPDOWN (top) ─── */
.mcart-ovl {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, .35);
	z-index: 930;
	opacity: 0;
	pointer-events: none;
	transition: opacity .24s
}

.mcart-ovl.on {
	opacity: 1;
	pointer-events: all
}

.mcart {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--bg2);
	z-index: 935;
	border-bottom: 1px solid var(--ln);
	transform: translateY(-100%);
	transition: transform .32s cubic-bezier(.4, 0, .2, 1);
	box-shadow: 0 24px 50px -20px rgba(15, 23, 42, .25)
}

.mcart.on {
	transform: none
}

.mcart-in {
	max-width: 1320px;
	margin: 0 auto;
	padding: 22px 24px
}

.mcart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px
}

.mcart-title {
	font-size: 19px;
	font-weight: 800;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 10px
}

.mcart-title .mono {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--ink3);
	font-weight: 500
}

.mcart-x {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--bg3);
	border: none;
	color: var(--ink2);
	cursor: pointer;
	font-size: 17px;
	transition: all .16s
}

.mcart-x:hover {
	background: var(--ink);
	color: #fff
}

.mcart-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 28px;
	align-items: start
}

.mcart-items {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-height: 340px;
	overflow-y: auto
}

.mci {
	display: flex;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid var(--ln);
	align-items: center
}

.mci-media {
	width: 60px;
	height: 60px;
	border-radius: 9px;
	background: var(--bg);
	border: 1px solid var(--ln);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.mci-media svg {
	width: 40px
}

.mci-info {
	flex: 1;
	min-width: 0
}

.mci-brand {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 2px
}

.mci-nm {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.3
}

.mci-q {
	display: flex;
	align-items: center;
	gap: 0;
	background: var(--bg);
	border: 1px solid var(--ln2);
	border-radius: 7px;
	overflow: hidden;
	flex-shrink: 0
}

.mci-q button {
	width: 28px;
	height: 28px;
	border: none;
	background: var(--bg2);
	color: var(--ink2);
	cursor: pointer;
	font-size: 14px
}

.mci-q button:hover {
	background: var(--blue);
	color: #fff
}

.mci-q span {
	min-width: 34px;
	text-align: center;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700
}

.mci-pr {
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	min-width: 110px;
	text-align: right;
	flex-shrink: 0
}

.mci-rm {
	background: none;
	border: none;
	color: var(--ink4);
	cursor: pointer;
	font-size: 16px;
	flex-shrink: 0;
	padding: 4px
}

.mci-rm:hover {
	color: var(--red)
}

.mcart-side {
	background: var(--bg);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 20px
}

.mcart-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--ink2);
	margin-bottom: 11px
}

.mcart-row b {
	font-family: var(--mono);
	color: var(--ink);
	font-weight: 700
}

.mcart-tot {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 14px;
	border-top: 2px solid var(--ln);
	margin: 4px 0 16px
}

.mcart-tot-l {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink)
}

.mcart-tot-v {
	font-family: var(--mono);
	font-size: 22px;
	font-weight: 700;
	color: var(--ink)
}

.mcart-empty {
	text-align: center;
	padding: 40px 20px;
	color: var(--ink3);
	grid-column: 1/-1
}

.mcart-empty-ic {
	font-size: 40px;
	margin-bottom: 12px;
	opacity: .4
}

/* ─── BUTTONS ─── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 700;
	padding: 11px 22px;
	border: none;
	border-radius: 9px;
	cursor: pointer;
	transition: all .18s;
	white-space: nowrap
}

.btn-blue {
	background: var(--blue);
	color: #fff
}

.btn-blue:hover {
	background: var(--blue-d)
}

.btn-dark {
	background: var(--ink);
	color: #fff
}

.btn-dark:hover {
	background: #1E293B
}

.btn-out {
	background: var(--bg2);
	border: 1.5px solid var(--ln2);
	color: var(--ink2)
}

.btn-out:hover {
	border-color: var(--blue);
	color: var(--blue)
}

.btn-soft {
	background: var(--blue-soft);
	color: var(--blue)
}

.btn-soft:hover {
	background: var(--blue);
	color: #fff
}

.btn-lg {
	font-size: 15px;
	padding: 14px 28px
}

.btn-sm {
	font-size: 12px;
	padding: 8px 14px
}

.btn-block {
	width: 100%
}

/* ═══ HOME: SEARCH-FIRST HERO ═══ */
.shero {
	background: var(--bg2);
	border-bottom: 1px solid var(--ln);
	position: relative;
	overflow: hidden
}

.shero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(var(--ln) 1px, transparent 1px), linear-gradient(90deg, var(--ln) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: .55;
	mask-image: radial-gradient(ellipse at 50% 30%, #000, transparent 72%)
}

.shero-in {
	max-width: 860px;
	margin: 0 auto;
	padding: 72px 24px 60px;
	text-align: center;
	position: relative;
	z-index: 1
}

.shero-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--blue-soft);
	color: var(--blue-d);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 13px;
	border-radius: 7px;
	margin-bottom: 22px
}

.shero-chip::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--grn);
	box-shadow: 0 0 0 3px var(--grn-soft)
}

.shero-h {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.06;
	color: var(--ink);
	margin-bottom: 16px
}

.shero-h b {
	color: var(--blue)
}

.shero-p {
	font-size: 17px;
	color: var(--ink2);
	line-height: 1.6;
	max-width: 560px;
	margin: 0 auto 34px
}

.bigsearch {
	display: flex;
	align-items: center;
	background: var(--bg2);
	border: 2px solid var(--ink);
	border-radius: 14px;
	padding: 6px 6px 6px 20px;
	max-width: 680px;
	margin: 0 auto;
	box-shadow: 0 16px 40px -20px rgba(15, 23, 42, .25)
}

.bigsearch svg {
	width: 22px;
	height: 22px;
	color: var(--ink3);
	flex-shrink: 0
}

.bigsearch input {
	flex: 1;
	border: none;
	background: none;
	padding: 14px 14px;
	font-size: 16px;
	outline: none;
	color: var(--ink)
}

.bigsearch .dgwt-wcas-sf-wrapp {
	display: flex;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.bigsearch .dgwt-wcas-search-wrapp {
	max-width: unset;
	width: 100%;
}


.bigsearch input::placeholder {
	color: var(--ink3)
}

.bigsearch button {
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background .18s
}

.bigsearch button:hover {
	background: var(--blue-d)
}

.shero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: center;
	margin-top: 24px
}

.schip {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	color: var(--ink2);
	background: var(--bg2);
	border: 1px solid var(--ln2);
	border-radius: 100px;
	padding: 8px 16px;
	cursor: pointer;
	transition: all .15s
}

.schip:hover {
	border-color: var(--blue);
	color: var(--blue);
	background: var(--blue-soft2)
}

.shero-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 42px;
	flex-wrap: wrap
}

.shstat {
	text-align: center
}

.shstat-n {
	font-family: var(--mono);
	font-size: 26px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.02em
}

.shstat-l {
	font-size: 12px;
	color: var(--ink3);
	margin-top: 2px
}

/* ─── INLINE TRUST BAR ─── */
.tbar {
	background: var(--ink);
	color: #fff
}

.tbar-in {
	max-width: 1320px;
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap
}

.tbar-i {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, .85)
}

.tbar-i svg {
	width: 19px;
	height: 19px;
	color: var(--blue-l);
	flex-shrink: 0
}

/* ─── SECTION ─── */
.sec {
	max-width: 1320px;
	margin: 0 auto;
	padding: 60px 24px 0
}

.sec-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 18px;
	flex-wrap: wrap
}

.sec-label {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
	letter-spacing: .04em;
	margin-bottom: 9px;
	display: flex;
	align-items: center;
	gap: 8px
}

.sec-label::before {
	content: '';
	width: 18px;
	height: 2px;
	background: var(--blue)
}

.sec-title {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink);
	line-height: 1.1
}

.sec-link {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px
}

.sec-link:hover {
	gap: 9px
}

/* ─── CATEGORY RAIL (horizontal scroll) ─── */
.crail {
	display: flex;
	gap: 13px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x mandatory
}

.crail::-webkit-scrollbar {
	height: 6px
}

.ccard {
	flex: 0 0 200px;
	scroll-snap-align: start;
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 20px;
	cursor: pointer;
	transition: all .2s
}

.ccard:hover {
	border-color: var(--blue);
	transform: translateY(-2px)
}

.ccard-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px
}

.ccard-ic {
	width: 46px;
	height: 46px;
	border-radius: 11px;
	background: var(--bg3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	transition: all .2s
}

.ccard:hover .ccard-ic {
	background: var(--blue)
}

.ccard-c {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--ink3);
	background: var(--bg3);
	padding: 4px 9px;
	border-radius: 6px
}

.ccard-nm {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 3px
}

.ccard-go {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--blue)
}

.woocommerce-ordering {
	display: none !important;
}

.woocommerce-pagination {
	display: flex;
	justify-content: center;
	margin-top: 36px;
	width: 100%;
}

.woocommerce-pagination .page-numbers {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--ln2);
	border-radius: 8px;
	font-size: 15px;
	background: white;
	cursor: pointer;
	color: var(--ink2);
}

.woocommerce-pagination a:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.woocommerce-pagination .dots {
	border: none;
	cursor: default;
}

.woocommerce-pagination .current {
	background: var(--blue);
	color: white;
	border-color: transparent;
}

/* ═══ PRODUCT CARD — HORIZONTAL ROW (default) ═══ */
.prows {
	display: flex;
	flex-direction: column;
	gap: 12px
}

.prow {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 14px;
	padding: 16px;
	display: grid;
	grid-template-columns: 150px 1fr auto;
	gap: 22px;
	align-items: center;
	transition: all .2s;
	position: relative
}

.prow:hover {
	border-color: var(--blue);
	box-shadow: 0 14px 36px -22px rgba(11, 99, 246, .4)
}

.prow-media {
	width: 150px;
	height: 130px;
	border-radius: 11px;
	border: 1px solid var(--ln);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden
}

.prow-media a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
}

.prow-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: relative;
	transition: transform .3s
}

.prow:hover .prow-media img {
	transform: scale(1.06)
}

.prow-pill {
	position: absolute;
	top: 8px;
	left: 8px;
	font-family: var(--mono);
	font-size: 9px;
	font-weight: 600;
	padding: 3px 7px;
	border-radius: 5px;
	z-index: 1
}

.pp-blue {
	background: var(--blue);
	color: #fff
}

.pp-grn {
	background: var(--grn);
	color: #fff
}

.pp-amber {
	background: var(--amber);
	color: #fff
}

.prow-main {
	min-width: 0
}

.prow-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px
}

.prow-brand {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	color: var(--blue);
	letter-spacing: .04em
}

.prow-art {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--ink3)
}

.prow-avail {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px
}

.av-y {
	color: var(--grn)
}

.av-y::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--grn)
}

.av-o {
	color: var(--amber)
}

.av-o::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--amber)
}

.prow-nm {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.01em;
	margin-bottom: 9px;
	line-height: 1.25
}

.prow-rating {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 11px
}

.prow-stars {
	color: var(--amber);
	font-size: 12px;
	letter-spacing: .5px
}

.prow-rating-n {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--ink3)
}

.prow-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px
}

.prow-spec {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--ink2);
	background: var(--bg);
	border: 1px solid var(--ln);
	border-radius: 6px;
	padding: 4px 9px
}

.prow-buy {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 11px;
	min-width: 200px
}

.prow-price {
	font-family: var(--mono);
	font-size: 23px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.02em;
	text-align: right
}

.prow-price small {
	display: block;
	font-size: 13px;
	color: var(--ink3);
	font-weight: 500;
	text-align: right
}

.prow-lease {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--blue);
	font-weight: 600
}

.prow-acts {
	display: flex;
	gap: 7px
}

.prow-cart {
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 0px 20px;
	height: 40px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all .16s
}

.prow-cart:hover {
	background: var(--blue-d)
}

.prow-ic {
	padding: 0px 20px;
	height: 40px;
	border: 1.5px solid var(--ln2);
	background: var(--bg2);
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	color: var(--ink2);
	transition: all .16s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.prow-ic:hover,
.prow-ic.on {
	border-color: var(--blue);
	color: var(--blue)
}

.prow-ic.fav.on {
	border-color: var(--red);
	color: var(--red)
}

/* compact grid cards for home featured */
.pgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px
}

.pgcard {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 13px;
	overflow: hidden;
	cursor: pointer;
	transition: all .2s;
	display: flex;
	flex-direction: column;
	position: relative
}

.pgcard:hover {
	border-color: var(--blue);
	box-shadow: 0 14px 36px -22px rgba(11, 99, 246, .4)
}

.pgcard-media {
	height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-bottom: 1px solid var(--ln);
	overflow: hidden
}

.pgcard-media a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.pgcard-media a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.pgcard-media svg {
	width: 108px;
	position: relative;
	transition: transform .3s
}

.pgcard:hover .pgcard-media svg {
	transform: scale(1.06)
}

.pgcard-pill {
	position: absolute;
	top: 11px;
	left: 11px;
	font-family: var(--mono);
	font-size: 9px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 5px;
	z-index: 1
}

.pgcard-fav {
	position: absolute;
	top: 11px;
	right: 11px;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--bg2);
	border: 1px solid var(--ln);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--ink3);
	font-size: 14px;
	transition: all .16s;
	z-index: 1
}

.pgcard-fav:hover,
.pgcard-fav.on {
	color: var(--red);
	border-color: var(--red)
}

.pgcard-body {
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column
}

.pgcard-top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px
}

.pgcard-brand {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	color: var(--blue)
}

.pgcard-art {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--ink3)
}

.pgcard-nm {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
	margin-bottom: 9px;
	min-height: 36px
}

.pgcard-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px
}

.pgcard-stars {
	color: var(--amber);
	font-size: 11px
}

.pgcard-rating-n {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--ink3)
}

.pgcard-foot {
	margin-top: auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between
}

.pgcard-price {
	font-family: var(--mono);
	font-size: 18px;
	font-weight: 700;
	color: var(--ink)
}

.pgcard-price small {
	display: block;
	font-family: var(--sans);
	font-size: 12px;
	color: var(--ink3);
	font-weight: 500
}

.pgcard-add {
	background: var(--blue-soft);
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 9px 14px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: all .16s
}

.pgcard-add:hover {
	background: var(--blue);
	color: #fff
}

/* ─── BREADCRUMB ─── */
.bcrumb {
	max-width: 1320px;
	margin: 0 auto;
	padding: 18px 24px 0;
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	font-family: var(--mono);
	font-size: 12px
}

.bcrumb a {
	color: var(--ink3);
	cursor: pointer;
	transition: color .15s
}

.bcrumb a:hover {
	color: var(--blue)
}

.bcrumb span {
	color: var(--ink4)
}

.bcrumb i {
	color: var(--ink2);
	font-weight: 500;
	font-style: normal;
}

/* ═══ CATALOG — TOP FILTER BAR + single column ═══ */
.cwrap {
	max-width: 1320px;
	margin: 0 auto;
	padding: 20px 24px 64px
}

.fbar {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 14px;
	padding: 18px;
	margin-bottom: 20px
}

.fbar-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fbar-row .bapf_sfilter {
	margin: 0;
}

.fbar-row .berocket_single_filter_widget ul {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap
}

.fbar-row .berocket_single_filter_widget .bapf_body {
	display: flex;
	flex-wrap: wrap;
}

.fbar-row+.fbar-row {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--ln)
}

.fbar-lbl {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-right: 4px;
	min-width: 74px
}

.fbar-row .berocket_single_filter_widget ul li {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink2);
	background: var(--bg);
	border: 1.5px solid var(--ln2);
	border-radius: 100px;
	cursor: pointer;
	transition: all .15s;
	display: flex;
	align-items: center;
}

.fbar-row .berocket_single_filter_widget ul li label {
	display: flex !important;
	align-items: center;
	gap: 7px;
	padding: 8px 16px !important;
}

.fbar-row .berocket_single_filter_widget ul li:hover {
	border-color: var(--blue)
}

.fbar-row .bapf_sfilter.bapf_ckbox input[type=checkbox] {
	display: none;
}

.fbar-row .berocket_single_filter_widget ul li.checked {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff
}

.fchip-n {
	font-family: var(--mono);
	font-size: 10px;
	opacity: .7;
}

.bapf_show_hide {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .06em;
	height: 30px;
	margin: 20px auto 0px auto;
	width: 100%;
	color: var(--ink2);
	background: var(--bg);
	border: 1.5px solid var(--ln2);
	border-radius: 100px;
}

.bapf_show_hide:hover {
	border-color: var(--blue)
}

.fbar-price {
	display: flex;
	align-items: center;
	gap: 7px
}

.fbar-price input {
	width: 110px;
	background: var(--bg);
	border: 1.5px solid var(--ln2);
	border-radius: 8px;
	padding: 8px 11px;
	font-size: 13px;
	font-family: var(--mono);
	outline: none
}

.fbar-price input:focus {
	border-color: var(--blue)
}

.fbar-price span {
	color: var(--ink4)
}

.fbar-apply {
	background: var(--ink);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 9px 18px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer
}

.fbar-clear {
	background: none;
	border: none;
	color: var(--ink3);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 8px 12px
}

.fbar-clear:hover {
	color: var(--blue)
}

.cat-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
	gap: 14px;
	flex-wrap: wrap
}

.woocommerce-result-count {
	font-size: 14px;
	color: var(--ink2)
}

.cat-cnt .bapf_sfilter {
	margin: 0;
}

.cat-cnt .bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a {
	display: flex!important;
	align-items: center;
	gap: 15px;
	border: 1.5px solid var(--ln2);
	color: var(--ink2);
	background: #ffffff;
	font-size: 13px;
	padding: 8px 25px 8px 16px;
	border-radius: 100px;
	position: relative;
	font-weight: 600;
}

.cat-cnt .bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a:before {
    content: 'x';
    rotate: none;
    display: block;
    position: absolute;
    right: 10px;
    top: 49%;
    transform: translateY(-50%);
    color: var(--ink2);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    width: auto;
    height: auto;
}

.cat-cnt .bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area a.braapf_unselect_all {
	background: none;
	font-size: 13px;
	color: var(--ink2);
	display: flex;
	align-items: center;
	padding: 0;
	border: none;
}

.cat-cnt b {
	font-family: var(--mono);
	font-weight: 700;
	color: var(--ink)
}

.cat-tools {
	display: flex;
	align-items: center;
	gap: 11px
}

.cat-sort {
	background: var(--bg2);
	border: 1.5px solid var(--ln2);
	border-radius: 8px;
	padding: 9px 13px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink2);
	outline: none;
	cursor: pointer
}

.vsw {
	display: flex;
	gap: 3px;
	background: var(--bg2);
	border: 1.5px solid var(--ln2);
	border-radius: 8px;
	padding: 3px
}

.vbtn {
	width: 32px;
	height: 28px;
	border: none;
	background: none;
	border-radius: 6px;
	color: var(--ink3);
	cursor: pointer;
	font-size: 13px;
	transition: all .15s
}

.vbtn.on {
	background: var(--blue);
	color: #fff
}

/* grid mode for catalog */
.prows.gridv {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px
}

.prows.gridv .prow {
	grid-template-columns: 1fr;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	overflow: hidden
}

.prows.gridv .prow-media {
	width: 100%;
	height: 170px;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid var(--ln)
}

.prows.gridv .prow-main {
	padding: 15px 15px 0
}

.prows.gridv .prow-buy {
	padding: 0 15px 15px;
	align-items: stretch;
	min-width: 0;
	flex-direction: row;
	justify-content: space-between;
	align-items: center
}

.prows.gridv .prow-price {
	font-size: 18px
}

.prows.gridv .prow-specs {
	display: none
}

.prows.gridv .prow-acts .prow-cart {
	padding: 9px 14px
}

/* ═══ DETAIL ═══ */
.det {
	max-width: 1320px;
	margin: 0 auto;
	padding: 20px 24px 64px
}

.det-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 46px
}

.det-media {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 14px;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 12px
}

.det-media a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.det-media a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.det-media-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--blue);
	color: #fff;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	padding: 5px 11px;
	border-radius: 7px;
	z-index: 1
}

.det-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.det-thumb {
	background: var(--bg2);
	border: 1.5px solid var(--ln);
	border-radius: 9px;
	height: 72px;
	width:72px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color .16s
}

.det-thumb img {
	width: 48px
}

.det-thumb:hover,
.det-thumb.on {
	border-color: var(--blue)
}

.det-brand {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	color: var(--blue);
	background: var(--blue-soft);
	padding: 5px 11px;
	border-radius: 7px;
	margin-bottom: 14px
}

.det-name {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink);
	line-height: 1.12;
	margin-bottom: 14px
}

.det-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ln);
	flex-wrap: wrap
}

.det-stars {
	color: var(--amber);
	font-size: 15px;
	letter-spacing: 1px
}

.det-rate-n {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink)
}

.det-rate-link {
	font-size: 13px;
	color: var(--ink3);
	cursor: pointer
}

.det-rate-link:hover {
	color: var(--blue)
}

.det-art {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--ink3)
}

.det-buy {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 22px;
	margin-bottom: 18px
}

.det-price-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 8px
}

.det-price-lbl {
	font-size: 13px;
	color: var(--ink3);
	margin-bottom: 3px
}

.det-price {
	font-family: var(--mono);
	font-size: 36px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.03em;
	line-height: 1
}

.det-lease {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	background: var(--blue-soft);
	padding: 7px 12px;
	border-radius: 8px
}

.det-avail {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--grn);
	margin: 14px 0
}

.det-avail::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--grn)
}

.det-acts {
	display: flex;
	gap: 10px;
}

.det-acts .form_24,
.det-acts form {
	flex: 1;
}

.det-acts form {
	display: flex;
}

.det-acts form button {
	width: 100%;
}

.det-fav-btn {
	flex: 0 0 auto !important;
	width: 52px;
	padding: 0;
	font-size: 18px
}

.det-perks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 18px
}

.det-perk {
	display: flex;
	align-items: center;
	gap: 11px;
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 10px;
	padding: 13px
}

.det-perk-ic {
	color: var(--blue);
	flex-shrink: 0
}

.det-perk-ic svg {
	width: 20px;
	height: 20px
}

.det-perk-t {
	font-size: 12px;
	font-weight: 700;
	color: var(--ink)
}

.det-perk-d {
	font-size: 11px;
	color: var(--ink3)
}

.det-tabs {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	overflow: hidden
}

.det-tabnav {
	display: flex;
	border-bottom: 1px solid var(--ln);
	background: var(--bg);
	padding: 6px;
	gap: 4px
}

.dtab {
	font-size: 13px;
	font-weight: 700;
	padding: 11px 20px;
	background: none;
	border: none;
	color: var(--ink3);
	cursor: pointer;
	border-radius: 8px;
	transition: all .16s
}

.dtab:hover {
	color: var(--ink)
}

.dtab.on {
	background: var(--bg2);
	color: var(--blue);
	box-shadow: 0 2px 8px -3px rgba(15, 23, 42, .15)
}

.dpane {
	display: none;
	padding: 28px
}

.dpane.on {
	display: block
}

.dpane .section_info p {
	font-weight: 400;
	margin-bottom: 10px;
	line-height: 1.4;
	font-size: 14px;
}

.dpane .section_info h2:nth-of-type {
	margin-top: 0;
}

.dpane  .section_info h2 {
	font-size: 18px;
	margin: 40px 0px 20px 0px;
	position: relative;
	line-height: 1;
	font-weight: 600;
}

.dpane .section_info h3 {
	font-size: 16px;
	margin: 40px 0px 20px 0px;
	position: relative;
	font-weight: 600;
}

.dpane .section_info li {
	font-weight: 400;
	line-height: 1.5;
	list-style-type: none;
	position: relative;
	padding-left: 20px;
}

.dpane .section_info li:after {
	content: '';
	position: absolute;
	display: block;
	width: 7px;
	height: 7px;
	background: var(--ink);
	left: 0;
	top: 9px;
	border-radius: 50%;
}

.dpane .section_info strong,
.dpane .section_info em {
	font-weight: 400;
	font-style: normal;
}

.dpane .section_info ul {
	padding-left: 30px;
	margin-bottom: 20px;
	font-size: 14px;
}


.docs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px
}

.doc {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--bg);
	border: 1px solid var(--ln);
	border-radius: 9px;
	padding: 14px;
	cursor: pointer;
	transition: all .16s
}

.doc:hover {
	border-color: var(--blue);
	background: var(--blue-soft2)
}

.doc-ic {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: var(--blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	flex-shrink: 0
}

.doc-nm {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink)
}

.doc-mt {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--ink3)
}

.reviews {
	max-width: 740px
}

.rev {
	border: 1px solid var(--ln);
	border-radius: 10px;
	padding: 18px;
	margin-bottom: 12px
}

.rev-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px
}

.rev-ava {
	width: 42px;
	height: 42px;
	border-radius: 9px;
	background: var(--blue-soft);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0
}

.rev-who {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink)
}

.rev-role {
	font-size: 12px;
	color: var(--ink3)
}

.rev-stars {
	margin-left: auto;
	color: var(--amber);
	font-size: 13px
}

.rev-txt {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.65
}

.rev-vr {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	color: var(--grn);
	margin-top: 10px
}

/* ─── PAGE HEAD ─── */
.phead {
	max-width: 1320px;
	margin: 0 auto;
	padding: 36px 24px 24px
}

.phead-t {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink)
}

.phead-s {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--ink3);
	margin-top: 7px
}

/* ─── CART PAGE ─── */
.cart-layout {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px 64px;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 26px;
	align-items: start
}

.cart-list {
	display: flex;
	flex-direction: column;
	gap: 12px
}

.crow {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 16px;
	display: flex;
	gap: 16px;
	align-items: center
}

.crow-media {
	width: 96px;
	height: 96px;
	border-radius: 10px;
	background: var(--bg);
	border: 1px solid var(--ln);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.crow-media svg {
	width: 64px
}

.crow-info {
	flex: 1;
	min-width: 0
}

.crow-brand {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 5px
}

.crow-nm {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 7px;
	letter-spacing: -.01em
}

.crow-art {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--ink3)
}

.crow-ctrl {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 11px;
	flex-shrink: 0
}

.crow-ctrl .qty .qib-button-wrapper {
	display: flex;
	align-items: center;
	background: var(--bg);
	border: 1px solid var(--ln2);
	border-radius: 8px;
	overflow: hidden
}

.crow-ctrl .qty .qib-button-wrapper div.quantity.wqpmb_quantity {
	height: 30px;
}

.crow-ctrl .qty .qib-button-wrapper button.qib-button {
	width: 32px;
	height: 32px;
	border: none;
	background: var(--bg2);
	color: var(--ink2);
	font-size: 16px;
	cursor: pointer;
	transition: all .15s
}

.crow-ctrl .qty .qib-button-wrapper button.qib-button:hover {
	background: var(--blue);
	color: #fff
}

.crow-ctrl .qty .qib-button-wrapper .quantity input.input-text.qty.text {
	min-width: 42px;
	text-align: center;
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	height: 32px;
	background: none;
	border: none;
	padding: 0px;
}

.crow-price {
	font-family: var(--mono);
	font-size: 18px;
	font-weight: 700;
	color: var(--ink)
}

.crow-price .Null {
	color: var(--ink3) !important;
	font-size: 14px;
}

.woocommerce a.remove.crow-rm {
	background: none;
	border: none;
	color: var(--ink3) !important;
	cursor: pointer;
	font-size: 11px;
	font-weight: 600;
	height: auto;
	width: auto;
}

.crow-rm:hover {
	color: var(--red)
}

.summary {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 14px;
	padding: 24px;
	position: sticky;
	top: 100px
}

.summary-t {
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 20px
}

.summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin-bottom: 12px;
	color: var(--ink2)
}

.summary-row b {
	color: var(--ink);
	font-weight: 700;
	font-family: var(--mono)
}

.summary-promo {
	display: flex;
	gap: 7px;
	margin: 16px 0
}

.summary-promo input {
	flex: 1;
	background: var(--bg);
	border: 1.5px solid var(--ln2);
	border-radius: 8px;
	padding: 10px 13px;
	font-size: 13px;
	outline: none;
	font-family: var(--mono)
}

.summary-promo input:focus {
	border-color: var(--blue)
}

.summary-promo button {
	background: var(--ink);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer
}

.summary-tot {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 16px;
	border-top: 2px solid var(--ln);
	margin: 6px 0 18px
}

.summary-tot-l {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink)
}

.summary-tot-v {
	font-family: var(--mono);
	font-size: 26px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.02em
}

.summary-note {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--ink3);
	text-align: center;
	margin-top: 13px;
	line-height: 1.6
}

/* ═══ CHECKOUT — single screen, no step bar ═══ */
.co {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px 64px;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 26px;
	align-items: start
}

.co-block {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 14px;
	padding: 24px;
	margin-bottom: 16px
}

.co-block-t {
	font-size: 17px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px
}

.co-block-t .num {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	background: var(--blue-soft);
	width: 28px;
	height: 28px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center
}

.fld {
	margin-bottom: 15px
}

.fld2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px
}

.fld-l {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--ink2);
	margin-bottom: 7px
}

.fld input,
.fld select,
.fld textarea {
	width: 100%;
	background: var(--bg);
	border: 1.5px solid var(--ln2);
	border-radius: 9px;
	padding: 11px 14px;
	font-size: 14px;
	color: var(--ink);
	outline: none;
	transition: border-color .16s
}

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
	border-color: var(--blue)
}

.fld textarea {
	resize: vertical;
	min-height: 80px
}

.opt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	background: var(--bg);
	border: 1.5px solid var(--ln2);
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 9px;
	cursor: pointer;
	transition: all .16s
}

.opt:hover {
	border-color: var(--blue-l)
}

.opt.on {
	border-color: var(--blue);
	background: var(--blue-soft2)
}

.opt-l {
	display: flex;
	align-items: center;
	gap: 12px
}

.opt-ic {
	font-size: 20px
}

.opt-nm {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink)
}

.opt-d {
	font-size: 12px;
	color: var(--ink3);
	margin-top: 1px
}

.opt-p {
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 700;
	color: var(--grn)
}

.pays {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 9px
}

.pay {
	background: var(--bg);
	border: 1.5px solid var(--ln2);
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	cursor: pointer;
	transition: all .16s
}

.pay:hover {
	border-color: var(--blue-l)
}

.pay.on {
	border-color: var(--blue);
	background: var(--blue-soft2)
}

.pay-ic {
	font-size: 22px;
	margin-bottom: 6px
}

.pay-nm {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink)
}

.pay-d {
	font-size: 11px;
	color: var(--ink3);
	margin-top: 1px
}

/* ─── EMPTY ─── */
.empty {
	max-width: 520px;
	margin: 0 auto;
	text-align: center;
	padding: 70px 24px
}

.empty-ic {
	width: 84px;
	height: 84px;
	border-radius: 18px;
	background: var(--bg3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	margin: 0 auto 20px
}

.empty-t {
	font-size: 22px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 9px
}

.empty-d {
	font-size: 14px;
	color: var(--ink3);
	margin-bottom: 24px;
	line-height: 1.6
}

/* ─── COMPARE ─── */
.cmp-scroll {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px 64px;
	overflow-x: auto
}

.cmp-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	min-width: 680px;
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	overflow: hidden
}

.cmp-table th,
.cmp-table td {
	padding: 15px;
	text-align: center;
	border-bottom: 1px solid var(--ln);
	border-right: 1px solid var(--ln)
}

.cmp-table th:last-child,
.cmp-table td:last-child {
	border-right: none
}

.cmp-table th:first-child,
.cmp-table td:first-child {
	text-align: left;
	width: 180px;
	color: var(--ink3);
	font-size: 12px;
	background: var(--bg)
}

.cmp-media {
	width: 88px;
	height: 88px;
	border-radius: 10px;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 11px
}

.cmp-media svg {
	width: 58px
}

.cmp-nm {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 6px;
	line-height: 1.3
}

.cmp-pr {
	font-family: var(--mono);
	font-size: 17px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 11px
}

.cmp-table td {
	font-size: 13px;
	color: var(--ink2);
	font-family: var(--mono);
	font-weight: 500
}

/* ─── EDITORIAL ─── */
.editorial {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px 64px
}

.ed-hero {
	padding: 54px 0 44px;
	border-bottom: 1px solid var(--ln);
	margin-bottom: 48px
}

.ed-label {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px
}

.ed-label::before {
	content: '';
	width: 18px;
	height: 2px;
	background: var(--blue)
}

.ed-h {
	font-size: clamp(32px, 4.4vw, 50px);
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--ink);
	line-height: 1.08;
	margin-bottom: 18px
}

.ed-h b {
	color: var(--blue)
}

.ed-p {
	font-size: 17px;
	color: var(--ink2);
	max-width: 620px;
	line-height: 1.7
}

.ed-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 48px
}

.ed-metric {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 24px
}

.ed-metric-n {
	font-family: var(--mono);
	font-size: 34px;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: -.03em
}

.ed-metric-l {
	font-size: 12px;
	color: var(--ink3);
	margin-top: 6px
}

.ed-block {
	margin-bottom: 44px
}

.ed-block-h {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink);
	margin-bottom: 14px
}

.ed-block-p {
	font-size: 15px;
	color: var(--ink2);
	line-height: 1.8;
	max-width: 760px
}

.ed-list {
	margin-top: 18px;
	display: grid;
	gap: 11px;
	max-width: 680px
}

.ed-li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 10px;
	padding: 15px 17px
}

.ed-li-ic {
	width: 24px;
	height: 24px;
	border-radius: 7px;
	background: var(--grn-soft);
	color: var(--grn);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.ed-li-ic svg {
	width: 14px;
	height: 14px
}

.ed-li-tx {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.55
}

.team {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px
}

.tm {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 22px;
	text-align: center
}

.tm-ava {
	width: 72px;
	height: 72px;
	border-radius: 14px;
	background: var(--blue-soft);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 700;
	margin: 0 auto 14px;
	font-family: var(--mono)
}

.tm-nm {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink)
}

.tm-ro {
	font-size: 12px;
	color: var(--ink3);
	margin-top: 3px
}

.tm-ex {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--blue);
	margin-top: 7px
}

.certs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px
}

.cert {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 22px;
	display: flex;
	gap: 14px;
	align-items: flex-start
}

.cert-ic {
	font-size: 26px;
	flex-shrink: 0
}

.cert-nm {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 5px
}

.cert-d {
	font-size: 12px;
	color: var(--ink3);
	line-height: 1.5
}

.srv-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 48px
}

.srv-c {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 24px
}

.srv-c-ic {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--blue-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 16px
}

.srv-c-t {
	font-size: 17px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 8px
}

.srv-c-d {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.6;
	margin-bottom: 13px
}

.srv-c-p {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--blue)
}

.sla {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 48px
}

.sla-c {
	background: var(--ink);
	border-radius: 12px;
	padding: 26px 20px;
	text-align: center;
	position: relative;
	overflow: hidden
}

.sla-c::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 20px 100%
}

.sla-n {
	font-family: var(--mono);
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -.02em;
	position: relative
}

.sla-l {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
	margin-top: 7px;
	position: relative
}

.tariffs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 20px
}

.tariff {
	background: var(--bg2);
	border: 1.5px solid var(--ln);
	border-radius: 14px;
	padding: 26px
}

.tariff.feat {
	border-color: var(--blue);
	position: relative
}

.tariff.feat::before {
	content: 'POPULAR';
	position: absolute;
	top: 14px;
	right: 14px;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	color: var(--blue);
	background: var(--blue-soft);
	padding: 4px 9px;
	border-radius: 5px
}

.tariff-nm {
	font-size: 19px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 5px
}

.tariff-d {
	font-size: 12px;
	color: var(--ink3);
	margin-bottom: 16px;
	min-height: 32px
}

.tariff-pr {
	font-family: var(--mono);
	font-size: 28px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.02em;
	margin-bottom: 4px
}

.tariff-pr span {
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 500;
	color: var(--ink3)
}

.tariff-list {
	list-style: none;
	margin: 18px 0;
	display: flex;
	flex-direction: column;
	gap: 11px
}

.tariff-list li {
	font-size: 13px;
	color: var(--ink2);
	display: flex;
	gap: 9px;
	align-items: flex-start;
	line-height: 1.5
}

.tariff-list li::before {
	content: '✓';
	color: var(--grn);
	font-weight: 700;
	flex-shrink: 0
}

.steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px
}

.step {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 20px 16px;
	text-align: center
}

.step-n {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	background: var(--blue-soft);
	width: 34px;
	height: 34px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px
}

.step-t {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 5px
}

.step-d {
	font-size: 12px;
	color: var(--ink3);
	line-height: 1.5
}

.cnt {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px 64px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px
}

.cnt-method {
	display: flex;
	gap: 15px;
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 13px
}

.cnt-ic {
	width: 48px;
	height: 48px;
	border-radius: 11px;
	background: var(--blue-soft);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	flex-shrink: 0
}

.cnt-l {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--ink3);
	margin-bottom: 4px
}

.cnt-v {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink)
}

.cnt-d {
	font-size: 12px;
	color: var(--ink3);
	margin-top: 2px
}

.cnt-form {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 14px;
	padding: 30px
}

.thx {
	max-width: 600px;
	margin: 0 auto;
	padding: 64px 24px;
	text-align: center
}

.thx-ic {
	width: 88px;
	height: 88px;
	border-radius: 20px;
	background: var(--grn-soft);
	color: var(--grn);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	margin: 0 auto 24px
}

.thx-h {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink);
	margin-bottom: 13px
}

.thx-p {
	font-size: 16px;
	color: var(--ink2);
	line-height: 1.7;
	margin-bottom: 26px
}

.thx-order {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 12px;
	padding: 18px;
	margin-bottom: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.thx-order-l {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--ink3)
}

.thx-order-v {
	font-family: var(--mono);
	font-size: 20px;
	font-weight: 700;
	color: var(--blue)
}

.thx-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 32px
}

.thx-step {
	background: var(--bg2);
	border: 1px solid var(--ln);
	border-radius: 10px;
	padding: 18px;
	text-align: left
}

.thx-step-n {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	background: var(--blue-soft);
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 11px
}

.thx-step-t {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px
}

.thx-step-d {
	font-size: 12px;
	color: var(--ink3);
	line-height: 1.45
}

.thx-acts {
	display: flex;
	gap: 11px;
	justify-content: center;
	flex-wrap: wrap
}

/* ─── MODAL ─── */
.ovl {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, .55);
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .24s;
	padding: 20px;
	backdrop-filter: blur(3px)
}

.ovl.on {
	opacity: 1;
	pointer-events: all
}

.modal {
	background: var(--bg2);
	border-radius: 16px;
	max-width: 470px;
	width: 100%;
	transform: translateY(14px) scale(.98);
	transition: transform .26s;
	overflow: hidden
}

.ovl.on .modal {
	transform: none
}

.modal-h {
	padding: 24px 26px 0;
	display: flex;
	align-items: flex-start;
	gap: 13px;
	position: relative
}

.modal-ic {
	width: 46px;
	height: 46px;
	border-radius: 11px;
	background: var(--blue-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	flex-shrink: 0
}

.modal-t {
	font-size: 19px;
	font-weight: 800;
	color: var(--ink)
}

.modal-s {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--ink3);
	margin-top: 2px
}

.modal-x {
	position: absolute;
	top: 18px;
	right: 20px;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--bg3);
	border: none;
	color: var(--ink2);
	cursor: pointer;
	font-size: 15px
}

.modal-x:hover {
	background: var(--ink);
	color: #fff
}

.modal-b {
	padding: 22px 26px 26px
}

.modal-ok {
	text-align: center;
	padding: 42px 26px
}

.modal-ok-ic {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--grn-soft);
	color: var(--grn);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin: 0 auto 16px
}

.modal-ok-t {
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 8px
}

.modal-ok-d {
	font-size: 13px;
	color: var(--ink3);
	line-height: 1.6;
	margin-bottom: 20px
}

/* ─── TOAST ─── */
.toast {
	position: fixed;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%) translateY(14px);
	background: var(--ink);
	color: #fff;
	padding: 13px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: all .28s;
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	box-shadow: 0 16px 40px -12px rgba(15, 23, 42, .5)
}

.toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0)
}

.toast::before {
	content: '✓';
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700
}

/* ─── FOOTER ─── */
footer {
	background: var(--bg2);
	border-top: 1px solid var(--ln);
	margin-top: 72px
}

.ft-top {
	max-width: 1320px;
	margin: 0 auto;
	padding: 48px 24px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px
}

.ft-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px
}

.ft-logo-mark {
	width: 36px;
	height: 36px;
	background: var(--blue);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center
}

.ft-logo-mark svg {
	width: 20px;
	height: 20px
}

.ft-logo-name {
	font-size: 19px;
	font-weight: 800;
	color: var(--ink)
}

.ft-logo-name b {
	color: var(--blue)
}

.ft-ab {
	font-size: 13px;
	color: var(--ink3);
	line-height: 1.7;
	max-width: 270px;
	margin-bottom: 16px
}

.ft-contact {
	font-family: var(--mono);
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 5px
}

.ft-email {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--ink3)
}

.ft-h {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 15px
}

.ft-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.ft-links a {
	font-size: 13px;
	color: var(--ink3);
	cursor: pointer;
	transition: color .15s
}

.ft-links a:hover {
	color: var(--blue)
}

.ft-bot {
	border-top: 1px solid var(--ln)
}

.ft-bot-in {
	max-width: 1320px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 11px;
	align-items: center
}

.ft-bot-in p {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--ink3)
}

.ft-badges {
	display: flex;
	gap: 8px
}

.ft-badge {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	color: var(--ink3);
	background: var(--bg3);
	padding: 5px 11px;
	border-radius: 6px
}

/* ─── REVEAL ─── */
.rv {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .55s ease, transform .55s ease
}

.rv.in {
	opacity: 1;
	transform: translateY(0)
}

/* ─── RESPONSIVE ─── */
@media(max-width:1080px) {
	.hdr-nav {
		display: none
	}

	.tbar-in {
		justify-content: flex-start;
		gap: 24px
	}

	.mcart-grid {
		grid-template-columns: 1fr
	}

	.pgrid {
		grid-template-columns: repeat(2, 1fr)
	}

	.prow {
		grid-template-columns: 120px 1fr;
		gap: 16px
	}

	.prow-buy {
		grid-column: 1/-1;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		min-width: 0;
		border-top: 1px solid var(--ln);
		padding-top: 14px;
		margin-top: 4px
	}

	.prows.gridv {
		grid-template-columns: repeat(2, 1fr)
	}

	.det-top {
		grid-template-columns: 1fr;
		gap: 30px
	}

	.det-media {
		height: 360px
	}

	.cart-layout,
	.co {
		grid-template-columns: 1fr
	}

	.summary {
		position: static
	}

	.ed-metrics {
		grid-template-columns: repeat(2, 1fr)
	}

	.team {
		grid-template-columns: repeat(2, 1fr)
	}

	.srv-cards,
	.tariffs,
	.certs {
		grid-template-columns: 1fr
	}

	.sla {
		grid-template-columns: repeat(2, 1fr)
	}

	.steps {
		grid-template-columns: repeat(3, 1fr)
	}

	.cnt {
		grid-template-columns: 1fr
	}

	.pays {
		grid-template-columns: repeat(2, 1fr)
	}

	.ft-top {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:680px) {
	.hdr-in {
		padding-left: 16px;
		padding-right: 16px;
		gap: 12px
	}

	.hbtn-price {
		display: none
	}

	.shero-stats {
		gap: 24px
	}

	.pgrid {
		grid-template-columns: 1fr 1fr;
		gap: 11px
	}

	.prow {
		grid-template-columns: 1fr;
		gap: 14px
	}

	.prow-media {
		width: 100%;
		height: 160px
	}

	.prow-buy {
		flex-direction: row;
		justify-content: space-between;
		border-top: 1px solid var(--ln);
		padding-top: 14px
	}

	.prows.gridv {
		grid-template-columns: 1fr 1fr
	}

	.det-perks {
		grid-template-columns: 1fr
	}

	.docs-grid {
		grid-template-columns: 1fr
	}

	.det-tabnav {
		overflow-x: auto
	}

	.ed-metrics {
		grid-template-columns: 1fr 1fr
	}

	.team {
		grid-template-columns: 1fr 1fr
	}

	.sla {
		grid-template-columns: 1fr 1fr
	}

	.steps {
		grid-template-columns: 1fr 1fr
	}

	.thx-steps {
		grid-template-columns: 1fr
	}

	.pays {
		grid-template-columns: 1fr 1fr
	}

	.fld2 {
		grid-template-columns: 1fr
	}

	.ft-top {
		grid-template-columns: 1fr
	}

	.crow {
		flex-wrap: wrap
	}

	.bigsearch {
		flex-direction: column;
		padding: 14px;
		gap: 12px
	}

	.bigsearch input {
		width: 100%;
		text-align: center
	}

	.bigsearch button {
		width: 100%
	}

	.mci {
		flex-wrap: wrap
	}
}