/* =========================================================
   Crystal Export — Modern UI layer
   Keeps brand colors (#ff793f, #333, #232323) with cleaner cards
   ========================================================= */

:root {
	--ce-orange: #ff793f;
	--ce-orange-dark: #e8652d;
	--ce-dark: #333333;
	--ce-ink: #2a2a2a;
	--ce-muted: #6b6b6b;
	--ce-line: #ebebeb;
	--ce-soft: #f6f6f6;
	--ce-white: #ffffff;
	--ce-radius: 12px;
	--ce-radius-sm: 8px;
	--ce-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	--ce-shadow-hover: 0 14px 32px rgba(255, 121, 63, 0.18);
	--ce-transition: 0.25s ease;
}

/* ---------- Section shells ---------- */
.borderBox-crystal {
	box-shadow: var(--ce-shadow) !important;
	border: 1px solid var(--ce-line);
	border-radius: var(--ce-radius);
	padding: 22px 20px !important;
	background: var(--ce-white);
}

.cmn-label-dsgn h4 {
	font-size: 26px !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em;
	color: var(--ce-ink) !important;
	margin-bottom: 18px !important;
	padding-bottom: 12px !important;
	border-bottom: 2px solid var(--ce-line) !important;
	position: relative;
}

.cmn-label-dsgn h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 72px;
	height: 2px;
	background: var(--ce-orange);
}

.cmn-label-dsgn .bld-fnt {
	color: var(--ce-orange);
}

/* ---------- Product cards (home slider + grid) ---------- */
.cmn-lst-sldr-box {
	background: var(--ce-white);
	border: 1px solid var(--ce-line);
	border-radius: 8px;
	overflow: hidden;
	transition: transform var(--ce-transition), box-shadow var(--ce-transition), border-color var(--ce-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
	padding-bottom: 6px;
}

.cmn-lst-sldr-box:hover {
	transform: translateY(-3px);
	box-shadow: var(--ce-shadow-hover);
	border-color: rgba(255, 121, 63, 0.45);
}

.productListPage .item,
.categoryPage .item {
	border: none !important;
	outline: none !important;
	padding: 0 !important;
	margin: 0 0 8px 0 !important;
	background: transparent !important;
}

.productListPage .item:hover,
.categoryPage .item:hover {
	outline: none !important;
	border: none !important;
}

.cmn-lst-sldr-box .prdct-img {
	border: none !important;
	border-radius: 0 !important;
	overflow: hidden;
	background: #ffffff !important;
	margin: 0 !important;
	position: relative;
	padding-bottom: 100%;
	height: 0 !important;
	min-height: 0 !important;
	aspect-ratio: auto;
}

.cmn-lst-sldr-box:hover .prdct-img {
	border: none !important;
}

.cmn-lst-sldr-box .prdct-img img {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: auto !important;
	height: auto !important;
	max-width: calc(100% - 8px) !important;
	max-height: calc(100% - 8px) !important;
	object-fit: contain;
	padding: 0 !important;
	margin: 0 !important;
}

.prdct-tag {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 3;
}

.prdct-tag > span {
	display: inline-block;
	background: var(--ce-orange) !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 5px 10px !important;
	border-radius: 999px !important;
	box-shadow: 0 4px 10px rgba(255, 121, 63, 0.35);
}

.prdct-action {
	background: rgba(35, 35, 35, 0.55) !important;
	backdrop-filter: blur(2px);
	transition: opacity var(--ce-transition);
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
}

.prdct-action > div {
	position: static !important;
	transform: none !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	width: 100%;
	text-align: center !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}

.cmn-lst-sldr-box:hover .prdct-action > div {
	top: auto !important;
}

.prdct-action a {
	display: block !important;
	border-radius: 999px !important;
	border: 1px solid #fff !important;
	padding: 8px 14px !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.03em;
	margin: 0 auto 10px !important;
	width: 142px !important;
	text-align: center !important;
	float: none !important;
	transition: background var(--ce-transition), border-color var(--ce-transition);
}

.prdct-action a:last-child {
	margin-bottom: 0 !important;
}

.prdct-action a:hover {
	background: var(--ce-orange) !important;
	border-color: var(--ce-orange) !important;
}

.cmn-lst-sldr-box .prdct-title,
.cmn-lst-sldr-box .prdct-title a {
	color: var(--ce-ink) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	min-height: 0 !important;
	transition: color var(--ce-transition);
}

/* Fixed title block so long names never overlap login/price */
.cmn-lst-sldr-box .prdct-title,
.productListPage .prdct-title,
.productListPage .prdct-title.single-line-name,
.cmn-lst-sldr-box .prdct-title.single-line-name,
.single-line-name {
	height: 42px !important;
	max-height: 42px !important;
	min-height: 42px !important;
	overflow: hidden !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal !important;
	text-overflow: ellipsis;
	margin: 0 0 4px 0 !important;
	padding: 6px 8px 0 !important;
	box-sizing: border-box !important;
	flex-shrink: 0;
}

.cmn-lst-sldr-box .prdct-title a,
.productListPage .prdct-title a,
.productListPage .prdct-title * {
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: auto !important;
	max-height: 36px !important;
	min-height: 0 !important;
	overflow: hidden !important;
	line-height: 1.35 !important;
	font-size: 13px !important;
	padding: 0 !important;
	margin: 0 !important;
	word-break: break-word;
}

.cmn-lst-sldr-box:hover .prdct-title,
.cmn-lst-sldr-box:hover .prdct-title a,
.cmn-lst-sldr-box:hover .prdct-price,
.cmn-lst-sldr-box:hover .prodPrice {
	color: var(--ce-orange) !important;
}

.cmn-lst-sldr-box .prdct-price,
.cmn-lst-sldr-box .prodPrice,
.productListPage .prodPrice {
	color: var(--ce-orange) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	padding: 4px 8px 6px !important;
}

/* Home + product-detail sliders — center price */
.lates-product .cmn-lst-sldr-box .prdct-price,
.lates-product .cmn-lst-sldr-box .prodPrice,
.discount-product .cmn-lst-sldr-box .prdct-price,
.discount-product .cmn-lst-sldr-box .prodPrice,
.lates-product .prodPrice,
.discount-product .prodPrice,
.lates-product .prdct-price,
.discount-product .prdct-price,
.rlted-product .cmn-lst-sldr-box .prdct-price,
.rlted-product .cmn-lst-sldr-box .prodPrice,
.rlted-product .prodPrice,
.rlted-product .prdct-price,
.recently-product .cmn-lst-sldr-box .prdct-price,
.recently-product .cmn-lst-sldr-box .prodPrice,
.recently-product .prodPrice,
.recently-product .prdct-price,
.intrst-product .cmn-lst-sldr-box .prdct-price,
.intrst-product .cmn-lst-sldr-box .prodPrice,
.intrst-product .prodPrice,
.intrst-product .prdct-price {
	text-align: center !important;
	display: block !important;
	width: 100%;
	margin-left: auto !important;
	margin-right: auto !important;
}

.prodPrice strike {
	color: #999 !important;
	font-size: 13px;
	font-weight: 500;
	margin-left: 6px;
}

/* Guest login CTA — replaces tiny login image */
.ce-login-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--ce-orange) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 10px 18px !important;
	margin: 6px 12px 10px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.03em;
	line-height: 1.2 !important;
	text-decoration: none !important;
	text-align: center;
	box-shadow: 0 6px 14px rgba(255, 121, 63, 0.3);
	transition: background var(--ce-transition), transform var(--ce-transition), box-shadow var(--ce-transition);
	min-width: 150px;
}

.cmn-lst-sldr-box .ce-login-btn {
	display: flex !important;
	width: calc(100% - 24px);
	margin-left: 12px !important;
	margin-right: 12px !important;
	box-sizing: border-box;
	padding: 8px 14px !important;
	font-size: 12px !important;
	min-width: 0;
	min-height: 34px;
}

/* Home / related / interested-in sliders — longer pill */
.sliderproductds .ce-login-btn,
.rlted-product .ce-login-btn,
.recently-product .ce-login-btn,
.intrst-product .ce-login-btn {
	width: calc(100% - 20px) !important;
	margin: 4px 10px 8px !important;
	padding: 9px 12px !important;
	font-size: 12px !important;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

/* Home: Latest + Discount — larger product name & CTA */
.lates-product .cmn-lst-sldr-box .prdct-title,
.discount-product .cmn-lst-sldr-box .prdct-title,
.lates-product .cmn-lst-sldr-box .prdct-title.single-line-name,
.discount-product .cmn-lst-sldr-box .prdct-title.single-line-name {
	height: 48px !important;
	max-height: 48px !important;
	min-height: 48px !important;
	padding: 6px 10px 0 !important;
	margin-bottom: 6px !important;
}

.lates-product .cmn-lst-sldr-box .prdct-title,
.lates-product .cmn-lst-sldr-box .prdct-title a,
.lates-product .cmn-lst-sldr-box .prdct-title *,
.discount-product .cmn-lst-sldr-box .prdct-title,
.discount-product .cmn-lst-sldr-box .prdct-title a,
.discount-product .cmn-lst-sldr-box .prdct-title * {
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	max-height: 42px !important;
}

.lates-product .ce-login-btn,
.discount-product .ce-login-btn,
.lates-product .cmn-lst-sldr-box .ce-login-btn,
.discount-product .cmn-lst-sldr-box .ce-login-btn,
.lates-product .sliderproductds .ce-login-btn,
.discount-product .sliderproductds .ce-login-btn {
	width: calc(100% - 20px) !important;
	margin: 6px 10px 10px !important;
	padding: 11px 14px !important;
	font-size: 13px !important;
	min-height: 40px !important;
	letter-spacing: 0.02em;
}

.ce-login-btn:hover,
.ce-login-btn:focus {
	background: var(--ce-orange-dark) !important;
	color: #fff !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(255, 121, 63, 0.4);
}

.ce-login-btn-lg {
	padding: 14px 28px !important;
	font-size: 15px !important;
	min-width: 200px;
	margin: 8px 0 16px !important;
}

.listImageMain .ce-login-btn {
	margin: 4px 0 12px !important;
	width: auto;
}

.loginBtn_img {
	padding: 4px 12px 10px;
}

.loginBtn_img img {
	max-height: 28px;
	width: auto;
}

/* Meta rows under cards — one-line each (Code : value), readable size */
.prod-meta {
	display: block;
	padding: 0;
	margin-top: auto;
	border: 1px solid var(--ce-line);
	border-radius: 4px;
	margin-left: 6px;
	margin-right: 6px;
	margin-bottom: 4px;
	overflow: hidden;
	background: #fff;
}

.prod-meta span {
	display: block;
	overflow: hidden;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 5px 8px;
	font-size: 13px;
	line-height: 1.35;
	color: var(--ce-ink);
	min-width: 0;
	max-width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	box-sizing: border-box;
	border-bottom: 1px solid var(--ce-line);
}

.prod-meta span:last-child {
	border-bottom: none;
}

.prod-meta span:nth-child(odd) {
	background: #f7f7f7;
}

.prod-meta span b {
	display: inline;
	float: left;
	width: 34%;
	color: var(--ce-orange);
	font-weight: 700;
	margin: 0;
	font-size: 13px;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.35;
}

.prod-meta span b::after {
	content: " :";
}

.prod-meta span em {
	display: block;
	float: left;
	width: 66%;
	font-style: normal;
	font-weight: 600;
	color: #464646;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-left: 2px;
	box-sizing: border-box;
	font-size: 13px;
}

.sliderproductds .prod-meta,
.rlted-product .prod-meta,
.recently-product .prod-meta,
.intrst-product .prod-meta {
	padding: 0;
	margin-left: 6px;
	margin-right: 6px;
	margin-bottom: 4px;
}

.sliderproductds .prod-meta span,
.rlted-product .prod-meta span,
.recently-product .prod-meta span,
.intrst-product .prod-meta span {
	font-size: 13px;
	padding: 5px 8px;
}

/* Product list — 4 cards, tighter spacing */
.productListPage .row.gategory-product {
	margin-left: -4px;
	margin-right: -4px;
}

.productListPage .gategory-product-list {
	padding-left: 4px !important;
	padding-right: 4px !important;
	margin-bottom: 8px !important;
}

.productListPage .item {
	padding: 0 !important;
	margin: 0 0 8px 0 !important;
}

.productListPage .cmn-lst-sldr-box {
	padding-bottom: 4px;
}

.productListPage .cmn-lst-sldr-box .prdct-price,
.productListPage .cmn-lst-sldr-box .prodPrice,
.productListPage .prodPrice {
	font-size: 16px !important;
	padding: 4px 8px 6px !important;
	margin: 2px 0 6px !important;
	font-weight: 700 !important;
	letter-spacing: 0.01em;
}

.productListPage .prodPrice strike {
	font-size: 13px !important;
}

.productListPage .ce-login-btn {
	padding: 6px 8px !important;
	font-size: 11px !important;
	min-height: 28px;
	margin: 6px 6px 6px !important;
	width: calc(100% - 12px);
	flex-shrink: 0;
}

/* Mobile-only Add to Cart (shown under price on small screens) */
.ce-mobile-cart {
	display: none;
}

.productListPage .cmn-lst-sldr-box .prdct-price,
.productListPage .prodPrice {
	margin: 4px 0 6px !important;
}

.cmn-lst-sldr .item {
	padding: 4px !important;
}

.cmn-lst-sldr-box .ce-login-btn {
	margin-left: 6px !important;
	margin-right: 6px !important;
	width: calc(100% - 12px);
}

/* Keep old table readable if still present */
.cmn-lst-sldr-box .prodDetailTable {
	width: calc(100% - 24px);
	margin: 4px 12px 0;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: var(--ce-radius-sm);
	border: 1px solid var(--ce-line);
}

.cmn-lst-sldr-box .prodDetailTable tr.odd {
	background: #fafafa !important;
}

.cmn-lst-sldr-box .prodDetailTable tr td {
	padding: 6px 10px !important;
	font-size: 12px !important;
	border: none !important;
}

.cmn-lst-sldr-box .prodDetailTable tr td.labeltext {
	color: var(--ce-orange) !important;
	font-weight: 700 !important;
}

/* ---------- List view cards ---------- */
.listImageMain {
	background: var(--ce-white);
	border: 1px solid var(--ce-line);
	border-radius: var(--ce-radius);
	padding: 16px;
	margin-bottom: 16px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
	transition: box-shadow var(--ce-transition), border-color var(--ce-transition);
}

.listImageMain:hover {
	box-shadow: var(--ce-shadow-hover);
	border-color: rgba(255, 121, 63, 0.4);
}

.listImageInner,
.listImageMain .hvrbox {
	border-radius: var(--ce-radius-sm);
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ce-line);
}

.listImageMain .hvrbox img,
.listImageMain .hvrbox-layer_bottom {
	width: 100%;
	height: auto;
	max-height: 260px;
	object-fit: contain;
	padding: 10px;
}

.listImageMain .prodName {
	font-size: 18px;
	font-weight: 700;
	color: var(--ce-ink);
	margin-bottom: 8px;
}

.listImageMain .price {
	color: var(--ce-orange);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.listImageMain .prodDescriTitle {
	font-weight: 700;
	color: var(--ce-dark);
	margin-bottom: 6px;
}

.listImageMain .prodDescriContent {
	color: var(--ce-muted);
	font-size: 13px;
	line-height: 1.5;
	max-height: 120px;
	overflow: hidden;
}

/* ---------- Product list toolbar ---------- */
.filterBox {
	background: var(--ce-white);
	border: 1px solid var(--ce-line);
	border-radius: var(--ce-radius);
	padding: 14px 16px;
	margin-bottom: 18px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.prodResult {
	font-weight: 600;
	color: var(--ce-ink);
}

.breadcrumbMain ul {
	padding: 10px 0 18px;
}

.breadcrumbMain li,
.breadcrumbMain li a {
	color: var(--ce-muted);
	font-size: 13px;
}

.breadcrumbMain li a:hover {
	color: var(--ce-orange);
}

/* ---------- Product detail ---------- */
.pro-dtl-sctn {
	padding-top: 6px;
}

.pro-dtl-rgt .prdt-title {
	font-size: 28px !important;
	font-weight: 700 !important;
	color: var(--ce-ink) !important;
	line-height: 1.25 !important;
	margin-bottom: 10px !important;
}

.pro-dtl-rgt .prdt-price,
.pro-dtl-rgt .prodPrice {
	color: var(--ce-orange) !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	margin-bottom: 18px !important;
}

/* Specs list — keep original one-line layout from style.css
   (Item Code / Size / MOQ / Weight each on a single row) */

.prdt-dtl-lst .lst-lbl-val a {
	color: var(--ce-orange);
	text-decoration: underline;
}

.xzoom-container {
	background: #ffffff;
	border: 1px solid var(--ce-line);
	border-radius: var(--ce-radius);
	padding: 14px;
}

.xzoom-container img#xzoom-fancy,
.xzoom-container .xzoom4 {
	border-radius: var(--ce-radius-sm);
	background: #ffffff;
}

.xzoom-thumbs {
	margin-top: 12px;
}

.xzoom-thumbs img,
.xzoom-gallery4 {
	border-radius: 8px !important;
	border: 2px solid transparent !important;
	transition: border-color var(--ce-transition);
}

.xzoom-thumbs a:hover img,
.xzoom-thumbs a.active img {
	border-color: var(--ce-orange) !important;
}

/* Qty controls — match cart page (dash.png + arrow images) */
.prd-dtl-qty {
	margin-top: 6px;
	overflow: hidden;
}

.prd-dtl-qty > label {
	font-weight: 700;
	color: var(--ce-ink);
	float: left;
	margin-top: 3px;
}

.prd-dtl-qty .qty-input {
	margin-left: 50px;
	background: rgba(0, 0, 0, 0) url("../images/dash.png") no-repeat scroll 0 0 !important;
	width: 110px;
}

.qty-input {
	background: rgba(0, 0, 0, 0) url("../images/dash.png") no-repeat scroll 0 0 !important;
	margin: 0 auto;
	width: 110px;
}

.qty-input button,
.prd-dtl-qty .btn-number,
.qty-input .btn-number {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	box-shadow: none !important;
	line-height: 1 !important;
}

.qty-input button img,
.prd-dtl-qty .btn-number img {
	display: inline-block;
	vertical-align: middle;
	max-width: none;
}

.qty-input input.input-number,
.prd-dtl-qty .qty-input .form-control,
.prd-dtl-qty .qty-input input.input-number {
	max-width: 60px !important;
	width: 60px !important;
	text-align: center !important;
	box-shadow: none !important;
	background: transparent !important;
	height: 30px !important;
	border: none !important;
	border-radius: 0 !important;
	font-weight: 600;
	padding: 0 !important;
}

.add-cart .crt-button,
.crt-button {
	background: var(--ce-orange) !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 12px 28px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 8px 18px rgba(255, 121, 63, 0.35);
	transition: background var(--ce-transition), transform var(--ce-transition), box-shadow var(--ce-transition);
}

.add-cart .crt-button:hover,
.crt-button:hover {
	background: var(--ce-orange-dark) !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(255, 121, 63, 0.42);
}

.prdes-lbl-dsgn h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--ce-ink);
}

.prdes-lbl-dsgn .borderBottom {
	border-bottom: 2px solid var(--ce-line) !important;
	position: relative;
}

.prdes-lbl-dsgn .borderBottom::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 64px;
	height: 2px;
	background: var(--ce-orange);
}

/* Product description panel */
.ce-product-desc {
	margin-top: 28px;
	border: 1px solid var(--ce-line);
	border-radius: var(--ce-radius);
	background: #fff;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.ce-product-desc-head {
	background: linear-gradient(90deg, rgba(255, 121, 63, 0.1) 0%, #fff 70%);
	border-bottom: 1px solid var(--ce-line);
	padding: 14px 20px;
	position: relative;
}

.ce-product-desc-head::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--ce-orange);
}

.ce-product-desc-head h4 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--ce-ink);
	letter-spacing: 0.02em;
}

.ce-product-desc-body,
.prdt-dscrptn {
	color: var(--ce-ink);
	font-size: 15px;
	line-height: 1.75;
	padding: 18px 20px 22px;
}

.ce-product-desc-body p,
.prdt-dscrptn p {
	margin: 0 0 14px;
	color: #555;
}

.ce-product-desc-body p:last-child,
.prdt-dscrptn p:last-child {
	margin-bottom: 0;
}

.ce-product-desc-body ul,
.ce-product-desc-body ol {
	margin: 0 0 14px 18px;
	padding: 0;
	color: #555;
}

.ce-product-desc-body li {
	margin-bottom: 6px;
}

.ce-desc-empty {
	color: var(--ce-muted) !important;
	font-style: italic;
}

.prd-buy-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 24px;
	margin-top: 8px;
	padding-top: 4px;
	clear: both;
	width: 100%;
}

.prd-buy-row .prd-dtl-qty {
	margin: 0 !important;
	float: none !important;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.prd-buy-row .prd-dtl-qty > label {
	float: none !important;
	margin: 0 8px 0 0 !important;
	white-space: nowrap;
}

.prd-buy-row .prd-dtl-qty .qty-input {
	margin-left: 0 !important;
	float: none !important;
}

.prd-buy-row .add-cart {
	margin: 0 !important;
	float: none !important;
	flex: 0 0 auto;
}

/* Quick view modal — keep qty + cart side by side without overlap */
#quick-view .prd-buy-row,
.cmn-pop .prd-buy-row {
	display: flex !important;
	flex-wrap: nowrap;
	align-items: center;
	gap: 18px;
	margin-top: 12px;
	width: 100%;
}

#quick-view .prd-buy-row .prd-dtl-qty,
.cmn-pop .prd-buy-row .prd-dtl-qty {
	width: auto !important;
	max-width: none;
}

#quick-view .prd-buy-row .add-cart,
.cmn-pop .prd-buy-row .add-cart {
	margin-left: 0 !important;
}

#quick-view .prd-buy-row .crt-button,
.cmn-pop .prd-buy-row .crt-button {
	white-space: nowrap;
}

@media (max-width: 480px) {
	#quick-view .prd-buy-row,
	.cmn-pop .prd-buy-row {
		flex-wrap: wrap;
	}
}

.prdt-nxt-prev a {
	opacity: 0.9;
	transition: opacity var(--ce-transition), transform var(--ce-transition);
}

.prdt-nxt-prev a:hover {
	opacity: 1;
	transform: scale(1.05);
}

/* ---------- Home store / trust blocks ---------- */
.our-str-bx {
	background: var(--ce-white);
	border: 1px solid var(--ce-line);
	border-radius: var(--ce-radius);
	padding: 24px;
	box-shadow: var(--ce-shadow);
}

.our-str-bx > h4 span {
	color: var(--ce-orange);
}

.stre-gray-bx {
	border-radius: var(--ce-radius) !important;
	overflow: hidden;
	transition: transform var(--ce-transition), box-shadow var(--ce-transition);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.stre-gray-bx:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* ---------- Category cards ---------- */
.viewSubCatBtn {
	padding: 0 10px 10px;
	margin-top: auto;
	text-align: center;
}

.viewSubCatBtn a,
.viewSubCatBtn .addCart {
	display: inline-block;
	background: var(--ce-orange) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 7px 14px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em;
	line-height: 1.2 !important;
	max-width: 100%;
	transition: background var(--ce-transition), transform var(--ce-transition);
}

.viewSubCatBtn a:hover,
.viewSubCatBtn .addCart:hover {
	background: var(--ce-orange-dark) !important;
	transform: translateY(-1px);
	color: #fff !important;
}

.categoryPage .cmn-lst-sldr-box .prdct-title,
.categoryPage .prdct-title {
	text-align: center;
	padding: 8px 8px 4px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--ce-ink) !important;
	height: 40px !important;
	max-height: 40px !important;
	min-height: 40px !important;
	overflow: hidden !important;
	line-height: 1.3 !important;
}

.categoryPage .item {
	margin: 0 0 10px 0 !important;
	padding: 0 !important;
	border: none !important;
}

.categoryPage .viewSubCatBtn a {
	margin: 4px 0 0 !important;
	padding: 6px 12px !important;
	font-size: 11px !important;
}

.ce-link-short {
	display: none;
}

.ce-link-full {
	display: inline;
}

/* Left category menu */
.ce-left-menu-toggle {
	display: none;
	width: 100%;
	background: var(--ce-orange);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	margin-bottom: 8px;
}

.ce-left-menu-toggle i {
	float: right;
	margin-top: 2px;
}

.ce-left-menu .categoryListInner h1 {
	font-size: 16px !important;
	margin: 0 0 10px !important;
	padding: 10px 12px !important;
}

.ce-left-menu .panel-title {
	font-size: 13px !important;
}

.ce-left-menu .panel-title a {
	font-size: 13px !important;
	line-height: 1.35 !important;
}

.ce-left-menu .panel-collapse li a {
	font-size: 12px !important;
	padding: 6px 10px !important;
}

/* Top header links */
.ce-top-link {
	list-style: none;
}

.ce-top-link a {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
}

.ce-top-link a img {
	width: 14px;
	height: 14px;
	margin: 0 !important;
}

/* Currency dropdown with scroll */
.ce-currency-form {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}

.ce-currency-label {
	color: #fff;
	font-size: 12px;
	white-space: nowrap;
}

.ce-currency-wrap {
	position: relative;
	display: inline-block;
}

.ce-currency-btn {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	border-radius: 6px;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 600;
	min-width: 78px;
	cursor: pointer;
}

.ce-currency-btn i {
	margin-left: 4px;
}

.ce-currency-panel {
	display: none;
	position: absolute;
	right: 0;
	top: calc(100% + 4px);
	z-index: 9999;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	min-width: 110px;
	max-height: 180px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 4px;
}

.ce-currency-panel.is-open {
	display: block;
}

.ce-currency-option {
	display: block;
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	padding: 8px 10px;
	font-size: 12px;
	font-weight: 600;
	color: #333;
	border-radius: 4px;
	cursor: pointer;
}

.ce-currency-option:hover,
.ce-currency-option.is-active {
	background: #ff793f;
	color: #fff;
}

/* ---------- Owl nav arrows (product sliders) ---------- */
.cmn-lst-sldr .owl-nav,
.borderBox-crystal .owl-nav,
.rlted-product .owl-nav,
.recently-product .owl-nav,
.intrst-product .owl-nav {
	background: #fff !important;
	position: absolute !important;
	right: 8px !important;
	top: -48px !important;
	padding-left: 12px !important;
	margin: 0 !important;
	z-index: 5;
}

.cmn-lst-sldr .owl-nav button,
.cmn-lst-sldr .owl-nav [class*='owl-'],
.owl-theme.cmn-lst-sldr .owl-nav [class*='owl-'],
.sliderproductds .owl-nav button,
.sliderproductds .owl-nav [class*='owl-'] {
	background-color: transparent !important;
	background-repeat: no-repeat !important;
	background-position: 0 0 !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: transparent !important;
	font-size: 0 !important;
	line-height: 0 !important;
	width: 30px !important;
	height: 30px !important;
	margin: 0 4px 0 0 !important;
	padding: 0 !important;
	opacity: 1 !important;
	transform: none !important;
}

.cmn-lst-sldr .owl-nav button.owl-prev,
.sliderproductds .owl-nav button.owl-prev,
.owl-theme.cmn-lst-sldr .owl-nav .owl-prev {
	background-image: url("../images/sldr-arw-lft.png") !important;
}

.cmn-lst-sldr .owl-nav button.owl-next,
.sliderproductds .owl-nav button.owl-next,
.owl-theme.cmn-lst-sldr .owl-nav .owl-next {
	background-image: url("../images/sldr-arw-rgt.png") !important;
}

.cmn-lst-sldr .owl-nav button.owl-prev:hover,
.cmn-lst-sldr .owl-nav button.owl-next:hover,
.sliderproductds .owl-nav button.owl-prev:hover,
.sliderproductds .owl-nav button.owl-next:hover {
	background-color: transparent !important;
	background-position: 0 -30px !important;
	transform: none !important;
}

.cmn-lst-sldr .owl-nav .disabled,
.sliderproductds .owl-nav .disabled {
	opacity: 0.35 !important;
	cursor: default !important;
}

.cmn-lst-sldr .owl-nav button span,
.sliderproductds .owl-nav button span {
	display: none !important;
}

.borderBox-crystal {
	overflow: visible;
}

.borderBox-crystal .cmn-label-dsgn {
	padding-right: 80px;
}

/* ---------- Buttons / common CTAs ---------- */
.cmn-btn-dsgn {
	border-radius: 999px !important;
	background: var(--ce-orange) !important;
	border: none !important;
	padding: 10px 22px !important;
	font-weight: 700 !important;
	transition: background var(--ce-transition), transform var(--ce-transition);
}

.cmn-btn-dsgn:hover {
	background: var(--ce-orange-dark) !important;
	transform: translateY(-1px);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
	.main-menu {
		position: relative;
		z-index: 100;
	}

	.main-menu .navbar-default {
		position: relative;
		z-index: 100;
	}

	.main-menu .navbar-toggle {
		background: var(--ce-orange) !important;
		border: none !important;
		border-radius: 6px !important;
		padding: 8px 10px !important;
		margin: 8px 15px 8px 0 !important;
	}

	.main-menu .navbar-toggle .icon-bar {
		background: #fff !important;
		width: 22px;
	}

	/* Push content down instead of covering banner */
	.main-menu .navbar-collapse,
	.main-menu .navbar-collapse.collapse.in,
	.main-menu .navbar-collapse.collapsing {
		position: static !important;
		width: 100% !important;
		margin: 0 !important;
		float: none !important;
		background: #333 !important;
		border-radius: 0 0 8px 8px;
		box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
		max-height: none !important;
		overflow: visible !important;
		z-index: 100;
	}

	.main-menu .nav li a {
		padding: 12px 16px !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		font-size: 14px !important;
	}

	.main-menu .nav li a:hover,
	.main-menu .nav li.active a {
		background: rgba(255, 121, 63, 0.2) !important;
		color: #fff !important;
	}
}

@media (max-width: 767px) {
	.cmn-label-dsgn h4 {
		font-size: 18px !important;
		margin-bottom: 12px !important;
		padding-bottom: 8px !important;
	}

	.pro-dtl-rgt .prdt-title {
		font-size: 20px !important;
	}

	.borderBox-crystal {
		padding: 12px 10px 16px !important;
		border-radius: 8px;
		overflow: visible !important;
	}

	.borderBox-crystal .cmn-label-dsgn {
		padding-right: 70px;
		margin-bottom: 8px;
	}

	/* Related / recently / interested sections must stay visible */
	.rlted-product,
	.recently-product,
	.intrst-product,
	.lates-product,
	.discount-product {
		overflow: visible !important;
		clear: both;
		display: block !important;
		width: 100%;
	}

	.rlted-product .sliderproductds,
	.recently-product .sliderproductds,
	.intrst-product .sliderproductds,
	.lates-product .sliderproductds,
	.discount-product .sliderproductds,
	.sliderproductds.owl-carousel {
		display: block !important;
		width: 100% !important;
		visibility: visible !important;
		opacity: 1 !important;
		min-height: 180px;
	}

	.sliderproductds .owl-stage-outer,
	.sliderproductds .owl-stage {
		width: 100% !important;
	}

	.cmn-lst-sldr .owl-nav,
	.borderBox-crystal .owl-nav,
	.rlted-product .owl-nav,
	.recently-product .owl-nav,
	.intrst-product .owl-nav {
		position: absolute !important;
		top: -42px !important;
		right: 4px !important;
		z-index: 5;
	}

	/* Top account / orders / login buttons */
	.header-top {
		padding: 8px 0 !important;
		overflow: visible !important;
		position: relative;
		z-index: 120;
	}

	.head-tp-lft {
		float: none !important;
		width: 100%;
		margin-bottom: 0 !important;
	}

	.head-tp-lft ul {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		margin: 0;
		padding: 0;
		list-style: none;
		align-items: center;
	}

	.head-tp-lft li,
	.head-tp-lft .ce-top-link {
		margin: 0 !important;
		padding: 0 !important;
		float: none !important;
		position: static !important;
	}

	.head-tp-lft li::before {
		display: none !important;
	}

	.head-tp-lft li a,
	.head-tp-lft .ce-top-link a {
		display: inline-flex !important;
		align-items: center;
		gap: 5px;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 999px;
		padding: 7px 12px !important;
		font-size: 12px !important;
		line-height: 1.2 !important;
		color: #fff !important;
		white-space: nowrap;
		text-decoration: none !important;
	}

	.head-tp-lft .ce-top-register a {
		background: var(--ce-orange) !important;
		border-color: var(--ce-orange) !important;
		font-weight: 700;
	}

	.head-tp-lft li a img,
	.head-tp-lft .ce-top-link a img {
		width: 12px;
		height: 12px;
		margin: 0 !important;
	}

	/* Only short labels on mobile — avoid My Account + Account twice */
	.head-tp-lft .ce-link-full {
		display: none !important;
	}

	.head-tp-lft .ce-link-short {
		display: inline !important;
	}

	.head-tp-rght {
		float: none !important;
		width: 100%;
		margin-top: 8px;
		position: relative;
		z-index: 130;
	}

	.head-tp-rght ul {
		display: block;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.head-tp-rght li {
		padding-left: 0 !important;
		width: auto !important;
		max-width: 180px;
		float: none !important;
		position: relative;
	}

	.head-tp-rght li::before {
		display: none !important;
	}

	/* Currency — compact button + scrollable panel */
	.lng-slct-bx {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		width: auto;
		max-width: 220px;
		font-size: 12px;
		color: #fff;
		position: relative;
		z-index: 140;
	}

	.ce-currency-label {
		font-size: 11px;
	}

	.ce-currency-btn {
		min-width: 72px;
		padding: 6px 8px;
		font-size: 11px;
		background: #fff;
		color: #222;
		border: 1px solid #ddd;
	}

	.ce-currency-btn i {
		color: #666;
	}

	.ce-currency-panel {
		left: 0;
		right: auto;
		min-width: 100px;
		max-height: 160px;
		overflow-y: auto !important;
	}

	.ce-currency-option {
		padding: 7px 8px;
		font-size: 11px;
	}

	/* Compact product list cards on mobile */
	.productListPage .cmn-lst-sldr-box {
		padding-bottom: 2px !important;
	}

	.productListPage .cmn-lst-sldr-box .prdct-img {
		padding-bottom: 78% !important;
	}

	.productListPage .cmn-lst-sldr-box .prdct-img img {
		max-width: calc(100% - 4px) !important;
		max-height: calc(100% - 4px) !important;
	}

	.productListPage .prod-meta {
		margin-left: 3px !important;
		margin-right: 3px !important;
		margin-bottom: 3px !important;
	}

	.productListPage .prod-meta span {
		padding: 2px 4px !important;
	}

	.productListPage .prod-meta span,
	.productListPage .prod-meta span b,
	.productListPage .prod-meta span em {
		font-size: 10px !important;
	}

	.productListPage .gategory-product-list {
		margin-bottom: 6px !important;
	}

	/* Related / recent / interested / home — reliable 2-column grid on mobile */
	.sliderproductds.ce-mobile-grid,
	.rlted-product .sliderproductds,
	.recently-product .sliderproductds,
	.intrst-product .sliderproductds,
	.lates-product .sliderproductds,
	.discount-product .sliderproductds {
		display: flex !important;
		flex-wrap: wrap !important;
		width: 100% !important;
		margin: 0 -3px !important;
		min-height: 0 !important;
	}

	.sliderproductds.ce-mobile-grid .item,
	.rlted-product .sliderproductds .item,
	.recently-product .sliderproductds .item,
	.intrst-product .sliderproductds .item,
	.lates-product .sliderproductds .item,
	.discount-product .sliderproductds .item,
	.sliderproductds.ce-mobile-grid .owl-item,
	.rlted-product .sliderproductds .owl-item,
	.recently-product .sliderproductds .owl-item,
	.intrst-product .sliderproductds .owl-item {
		width: 50% !important;
		max-width: 50% !important;
		flex: 0 0 50% !important;
		float: left !important;
		padding: 3px !important;
		box-sizing: border-box !important;
		display: block !important;
	}

	.sliderproductds.ce-mobile-grid .owl-stage-outer,
	.sliderproductds.ce-mobile-grid .owl-stage,
	.rlted-product .sliderproductds.ce-mobile-grid .owl-stage-outer,
	.recently-product .sliderproductds.ce-mobile-grid .owl-stage-outer,
	.intrst-product .sliderproductds.ce-mobile-grid .owl-stage-outer {
		display: contents !important;
		width: 100% !important;
		transform: none !important;
	}

	.sliderproductds.ce-mobile-grid .owl-nav,
	.rlted-product .sliderproductds.ce-mobile-grid .owl-nav,
	.recently-product .sliderproductds.ce-mobile-grid .owl-nav,
	.intrst-product .sliderproductds.ce-mobile-grid .owl-nav {
		display: none !important;
	}

	.rlted-product .cmn-lst-sldr-box .prdct-img,
	.recently-product .cmn-lst-sldr-box .prdct-img,
	.intrst-product .cmn-lst-sldr-box .prdct-img,
	.lates-product .cmn-lst-sldr-box .prdct-img,
	.discount-product .cmn-lst-sldr-box .prdct-img {
		padding-bottom: 85% !important;
	}

	.rlted-product .prod-meta span,
	.recently-product .prod-meta span,
	.intrst-product .prod-meta span,
	.rlted-product .prod-meta span b,
	.recently-product .prod-meta span b,
	.intrst-product .prod-meta span b,
	.rlted-product .prod-meta span em,
	.recently-product .prod-meta span em,
	.intrst-product .prod-meta span em {
		font-size: 10px !important;
	}

	.rlted-product,
	.recently-product,
	.intrst-product {
		margin-top: 16px !important;
		margin-bottom: 16px !important;
		display: block !important;
		visibility: visible !important;
	}

	.rlted-product .borderBox-crystal,
	.recently-product .borderBox-crystal,
	.intrst-product .borderBox-crystal {
		padding: 10px 6px 12px !important;
		overflow: visible !important;
	}

	/* Add to cart — full-width stacked on mobile (best UX) */
	.prd-buy-row {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 10px !important;
		width: 100% !important;
		margin-top: 12px !important;
	}

	.prd-buy-row .prd-dtl-qty {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		background: #f7f7f7;
		border: 1px solid #ebebeb;
		border-radius: 8px;
		padding: 8px 12px;
		box-sizing: border-box;
	}

	.prd-buy-row .prd-dtl-qty > label {
		float: none !important;
		margin: 0 !important;
		font-size: 14px;
		font-weight: 700;
		color: #333;
	}

	.prd-buy-row .prd-dtl-qty .qty-input {
		margin: 0 !important;
		float: none !important;
	}

	.prd-buy-row .add-cart {
		width: 100% !important;
		margin: 0 !important;
	}

	.prd-buy-row .crt-button,
	.add-cart .crt-button {
		width: 100% !important;
		display: block !important;
		padding: 14px 16px !important;
		font-size: 15px !important;
		border-radius: 10px !important;
		text-align: center;
		box-shadow: 0 6px 14px rgba(255, 121, 63, 0.35);
	}

	.productListPage .ce-login-btn,
	.cmn-lst-sldr-box .ce-login-btn,
	.sliderproductds .ce-login-btn {
		width: calc(100% - 8px) !important;
		margin: 4px 4px !important;
		padding: 8px 6px !important;
		font-size: 11px !important;
		min-height: 32px;
		border-radius: 8px !important;
	}

	/* Left category + product list together on mobile */
	.ce-left-menu {
		margin-bottom: 12px;
	}

	.ce-left-menu-toggle {
		display: block !important;
	}

	#ceLeftCategoryMenu.collapse:not(.in) {
		display: none;
	}

	#ceLeftCategoryMenu.collapse.in {
		display: block;
		background: #fff;
		border: 1px solid var(--ce-line);
		border-radius: 8px;
		padding: 8px;
		margin-bottom: 10px;
		max-height: 280px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.ce-left-menu .categoryList {
		box-shadow: none !important;
		border: none !important;
		margin: 0 !important;
	}

	.ce-left-menu .categoryListInner h1 {
		font-size: 14px !important;
		padding: 8px 10px !important;
	}

	.innerContent .col-md-4.col-lg-3,
	.innerContent .col-xs-12.col-sm-12.col-md-4 {
		margin-bottom: 4px;
	}

	/* Product count — compact inline bar, no empty space */
	.filterBox,
	.filterBox.ce-filter-bar {
		background: transparent !important;
		border: none !important;
		box-shadow: none !important;
		padding: 0 !important;
		margin: 0 0 4px 0 !important;
		border-radius: 0 !important;
		min-height: 0 !important;
	}

	.filterBox .row,
	.filterBox .ce-filter-row {
		margin: 0 !important;
		display: flex !important;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 6px;
	}

	.filterBox .row > [class*="col-"],
	.filterBox .ce-filter-row > [class*="col-"] {
		padding: 0 !important;
		margin: 0 !important;
		float: none;
		min-height: 0 !important;
		width: auto !important;
	}

	.ce-filter-count {
		flex: 1 1 auto;
		min-width: 0;
	}

	.ce-filter-perpage,
	.ce-filter-sort {
		flex: 0 0 auto;
		max-width: none;
	}

	.prodResult {
		display: inline !important;
		float: none !important;
		padding: 0 !important;
		margin: 0 !important;
		font-size: 12px !important;
		font-weight: 600 !important;
		color: #464646 !important;
		line-height: 1.2 !important;
		white-space: nowrap;
	}

	.perPageDropdown.floatRight {
		float: none !important;
		width: auto;
		display: inline-block;
	}

	.filterBox .jplist-panel {
		margin: 0 !important;
		padding: 0 !important;
		display: inline-block;
		vertical-align: middle;
	}

	.filterBox .jplist-panel.box {
		padding: 0 !important;
	}

	.filterBox .jplist-drop-down {
		float: none !important;
		margin: 0 !important;
	}

	.filterBox .jplist-dd-panel,
	.filterBox .jplist-select {
		font-size: 11px !important;
		padding: 4px 6px !important;
		min-height: 0 !important;
		height: auto !important;
		line-height: 1.2 !important;
	}

	.sortByText {
		display: none;
	}

	/* Mobile: hide Quick View overlay; show direct Add to Cart */
	.productListPage .prdct-action,
	.cmn-lst-sldr-box .prdct-action,
	.listImageMain .hvrbox-layer_top {
		display: none !important;
	}

	.ce-mobile-cart {
		display: block !important;
		width: calc(100% - 8px);
		margin: 4px 4px 6px !important;
		padding: 7px 8px !important;
		background: var(--ce-orange) !important;
		color: #fff !important;
		border: none !important;
		border-radius: 4px !important;
		font-size: 11px !important;
		font-weight: 700 !important;
		text-align: center;
		text-transform: uppercase;
		letter-spacing: 0.02em;
		line-height: 1.2;
		text-decoration: none !important;
	}

	.listImageMain .ce-mobile-cart {
		width: 100%;
		margin: 8px 0 0 !important;
	}

	.ce-mobile-cart:hover,
	.ce-mobile-cart:focus {
		background: #e86a32 !important;
		color: #fff !important;
		text-decoration: none !important;
	}

	.productListPage .ce-login-btn,
	.cmn-lst-sldr-box .ce-login-btn {
		margin-bottom: 4px !important;
	}

	.breadcrumbMain ul {
		padding: 6px 0 8px !important;
		margin: 0 !important;
	}

	.rightPart {
		padding-top: 0 !important;
	}

	.gridView.cmn-lst-sldr.productListPage {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	/* Categories page — smaller type & buttons */
	.categoryPage .prdct-title,
	.categoryPage .cmn-lst-sldr-box .prdct-title {
		font-size: 12px !important;
		height: 34px !important;
		max-height: 34px !important;
		min-height: 34px !important;
		padding: 4px 6px 0 !important;
	}

	.categoryPage .viewSubCatBtn {
		padding: 0 6px 8px !important;
	}

	.categoryPage .viewSubCatBtn a,
	.categoryPage .viewSubCatBtn .addCart {
		padding: 5px 8px !important;
		font-size: 10px !important;
		margin: 2px 0 0 !important;
		width: auto !important;
		min-width: 0;
		letter-spacing: 0;
	}

	.lates-product .cmn-label-dsgn h4 {
		font-size: 16px !important;
	}

	.crystalExportsTitle .cmn-label-dsgn h4 {
		font-size: 16px !important;
	}

	.crystalExportsTitle .cmn-label-dsgn p {
		font-size: 13px;
		line-height: 1.5;
	}

	.secnd-header {
		position: relative;
		z-index: 90;
		overflow: visible !important;
		padding-bottom: 8px;
	}

	.secnd-header .row {
		display: block;
	}

	.header-logo {
		text-align: center;
		margin: 0 0 10px 0 !important;
		float: none !important;
		width: 100%;
		position: relative;
		z-index: 1;
	}

	.header-logo img {
		max-height: 52px;
		width: auto !important;
		max-width: 160px;
		margin: 0 auto;
		display: block;
	}

	/* Cart must NOT sit on top of logo */
	.cart-box,
	#shopping-cart-out {
		position: static !important;
		float: none !important;
		width: 100% !important;
		margin: 8px 0 0 0 !important;
		padding: 0 !important;
		clear: both;
	}

	.cart-items {
		position: static !important;
		right: auto !important;
		top: auto !important;
		left: auto !important;
		display: block !important;
		width: 100% !important;
		text-align: center;
		padding: 10px 14px !important;
		font-size: 13px !important;
		border-radius: 8px !important;
		margin: 0 !important;
	}

	.cart-items > a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
	}

	.cart-items .dropdown-menu {
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
	}

	.top-searchbar {
		margin-bottom: 0;
	}

	.top-searchbar .form-control {
		height: 40px;
		font-size: 14px;
	}

	.top-searchbar .input-group-btn button {
		height: 40px;
		padding: 0 14px;
	}

	/* 2-column product grid on mobile */
	.productListPage .row.gategory-product {
		margin-left: -4px !important;
		margin-right: -4px !important;
	}

	.productListPage .gategory-product-list,
	.categoryPage .col-xs-6 {
		padding-left: 4px !important;
		padding-right: 4px !important;
		margin-bottom: 8px !important;
		float: left;
		width: 50%;
	}

	.productListPage .item,
	.categoryPage .item {
		margin: 0 0 6px 0 !important;
	}

	.cmn-lst-sldr-box {
		border-radius: 6px;
		padding-bottom: 4px;
	}

	.cmn-lst-sldr-box .prdct-title,
	.productListPage .prdct-title,
	.productListPage .prdct-title.single-line-name,
	.cmn-lst-sldr-box .prdct-title.single-line-name,
	.single-line-name {
		height: 36px !important;
		max-height: 36px !important;
		min-height: 36px !important;
		font-size: 12px !important;
		padding: 4px 6px 0 !important;
	}

	.cmn-lst-sldr-box .prdct-title a,
	.productListPage .prdct-title a,
	.productListPage .prdct-title * {
		font-size: 12px !important;
		max-height: 32px !important;
	}

	.lates-product .cmn-lst-sldr-box .prdct-title,
	.discount-product .cmn-lst-sldr-box .prdct-title,
	.lates-product .cmn-lst-sldr-box .prdct-title.single-line-name,
	.discount-product .cmn-lst-sldr-box .prdct-title.single-line-name {
		height: 40px !important;
		max-height: 40px !important;
		min-height: 40px !important;
		padding: 4px 6px 0 !important;
	}

	.lates-product .cmn-lst-sldr-box .prdct-title,
	.lates-product .cmn-lst-sldr-box .prdct-title a,
	.lates-product .cmn-lst-sldr-box .prdct-title *,
	.discount-product .cmn-lst-sldr-box .prdct-title,
	.discount-product .cmn-lst-sldr-box .prdct-title a,
	.discount-product .cmn-lst-sldr-box .prdct-title * {
		font-size: 13px !important;
		max-height: 36px !important;
	}

	.productListPage .ce-login-btn,
	.cmn-lst-sldr-box .ce-login-btn {
		padding: 5px 6px !important;
		font-size: 10px !important;
		min-height: 26px;
		min-width: 0;
		margin: 4px 4px 4px !important;
		width: calc(100% - 8px);
		letter-spacing: 0;
	}

	.lates-product .ce-login-btn,
	.discount-product .ce-login-btn,
	.lates-product .cmn-lst-sldr-box .ce-login-btn,
	.discount-product .cmn-lst-sldr-box .ce-login-btn {
		padding: 8px 10px !important;
		font-size: 11px !important;
		min-height: 32px !important;
		margin: 4px 6px 6px !important;
		width: calc(100% - 12px) !important;
	}

	.prod-meta {
		margin-left: 4px;
		margin-right: 4px;
		margin-bottom: 4px;
	}

	.prod-meta span,
	.prod-meta span b,
	.prod-meta span em {
		font-size: 11px !important;
		padding-top: 3px;
		padding-bottom: 3px;
	}

	.prod-meta span {
		padding-left: 5px;
		padding-right: 5px;
	}

	.prdct-action a {
		width: 110px !important;
		padding: 6px 8px !important;
		font-size: 10px !important;
		margin: 0 auto 6px !important;
	}

	.cmn-lst-sldr .item,
	.sliderproductds .item {
		padding: 3px !important;
	}

	.stre-gray-bx {
		margin-bottom: 10px;
	}

	.our-str-bx {
		padding: 14px !important;
	}

	.ce-product-desc-head {
		padding: 10px 14px;
	}

	.ce-product-desc-body,
	.prdt-dscrptn {
		padding: 12px 14px 16px;
		font-size: 14px;
	}

	.pro-dtl-sctn .col-md-5,
	.pro-dtl-sctn .col-md-7,
	.pro-dtl-sctn .col-sm-5,
	.pro-dtl-sctn .col-sm-7 {
		width: 100%;
		float: none;
	}
}

@media (max-width: 480px) {
	#quick-view .prd-buy-row,
	.cmn-pop .prd-buy-row {
		flex-wrap: wrap;
	}

	.head-tp-lft li a,
	.head-tp-lft .ce-top-link a {
		font-size: 11px !important;
		padding: 6px 10px !important;
	}

	.lng-slct-bx select,
	.lng-slct-bx select.currency-select-scroll {
		width: 78px !important;
		min-width: 78px !important;
		max-width: 86px !important;
		font-size: 11px !important;
		height: 30px !important;
		min-height: 30px !important;
		max-height: 30px !important;
	}

	.ce-currency-panel {
		max-height: 140px !important;
	}

	.ce-currency-btn {
		min-width: 68px;
		font-size: 11px;
		padding: 5px 7px;
	}

	.categoryPage .prdct-title,
	.categoryPage .cmn-lst-sldr-box .prdct-title {
		font-size: 11px !important;
		height: 32px !important;
		max-height: 32px !important;
		min-height: 32px !important;
	}

	.categoryPage .viewSubCatBtn a {
		font-size: 9px !important;
		padding: 4px 6px !important;
	}

	.cmn-lst-sldr-box .prdct-title,
	.productListPage .prdct-title,
	.single-line-name {
		height: 32px !important;
		max-height: 32px !important;
		min-height: 32px !important;
	}

	.cmn-lst-sldr-box .prdct-title a,
	.productListPage .prdct-title a {
		font-size: 11px !important;
		max-height: 28px !important;
	}

	.prod-meta span,
	.prod-meta span b,
	.prod-meta span em {
		font-size: 10px !important;
	}

	.productListPage .ce-login-btn,
	.cmn-lst-sldr-box .ce-login-btn {
		font-size: 9px !important;
		padding: 5px 4px !important;
	}

	.cart-items {
		top: auto !important;
		position: static !important;
	}

	.header-logo img {
		width: auto !important;
		max-width: 140px;
	}
}

/* ========== Cart / Checkout mobile — compact ========== */
@media (max-width: 767px) {
	#step-cart .breadcrumbMain ul,
	.main-container .breadcrumbMain ul {
		padding: 4px 0 6px !important;
		margin: 0 !important;
		font-size: 12px;
	}

	#step-cart .cmn-label-dsgn h4 {
		font-size: 18px !important;
		margin: 0 0 2px !important;
	}

	.shp-crt-cntnt {
		margin-top: 4px !important;
	}

	.no-of-ordr {
		position: static !important;
		display: block;
		margin: 0 0 8px !important;
		font-size: 12px;
		top: auto !important;
	}

	/* Simple step pills — no arrow chrome */
	.shp-crt-step {
		overflow: visible !important;
		margin: 0 0 10px !important;
	}

	.shp-crt-step > ul {
		display: flex !important;
		flex-wrap: nowrap !important;
		justify-content: space-between;
		gap: 4px;
		width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}

	.shp-crt-step li,
	.shp-crt-step li:last-child {
		flex: 1 1 0;
		float: none !important;
		display: block !important;
		margin: 0 !important;
		padding: 7px 4px !important;
		border: 1px solid #ddd !important;
		border-radius: 6px !important;
		background: #f7f7f7 !important;
		text-align: center;
		position: relative;
		min-width: 0;
	}

	.shp-crt-step li.active {
		background: var(--ce-orange, #ff793f) !important;
		border-color: var(--ce-orange, #ff793f) !important;
	}

	.shp-crt-step li a {
		display: block !important;
		font-size: 10px !important;
		font-weight: 700 !important;
		line-height: 1.2 !important;
		color: #555 !important;
		padding: 0 !important;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.shp-crt-step li.active a {
		color: #fff !important;
	}

	/* Kill desktop arrow decorations on mobile */
	.shp-crt-step li::before,
	.shp-crt-step li::after,
	.shp-crt-step a::before,
	.shp-crt-step a::after,
	.shp-crt-step li.active::before,
	.shp-crt-step li.active::after,
	.shp-crt-step li.active a::before,
	.shp-crt-step li.active a::after {
		content: none !important;
		display: none !important;
		background: none !important;
		width: 0 !important;
		height: 0 !important;
	}

	.shp-crt-step li:nth-child(1) a { font-size: 0 !important; }
	.shp-crt-step li:nth-child(1) a::after { content: "Cart" !important; display: inline !important; font-size: 10px !important; font-weight: 700; color: inherit; position: static !important; width: auto !important; height: auto !important; background: none !important; transform: none !important; right: auto !important; top: auto !important; }
	.shp-crt-step li.active:nth-child(1) a::after { color: #fff !important; }
	.shp-crt-step li:nth-child(2) a { font-size: 0 !important; }
	.shp-crt-step li:nth-child(2) a::after { content: "Address" !important; display: inline !important; font-size: 10px !important; font-weight: 700; color: inherit; position: static !important; width: auto !important; height: auto !important; background: none !important; transform: none !important; right: auto !important; top: auto !important; }
	.shp-crt-step li.active:nth-child(2) a::after { color: #fff !important; }
	.shp-crt-step li:nth-child(3) a { font-size: 0 !important; }
	.shp-crt-step li:nth-child(3) a::after { content: "Ship" !important; display: inline !important; font-size: 10px !important; font-weight: 700; color: inherit; position: static !important; width: auto !important; height: auto !important; background: none !important; transform: none !important; right: auto !important; top: auto !important; }
	.shp-crt-step li.active:nth-child(3) a::after { color: #fff !important; }
	.shp-crt-step li:nth-child(4) a { font-size: 0 !important; }
	.shp-crt-step li:nth-child(4) a::after { content: "Review" !important; display: inline !important; font-size: 10px !important; font-weight: 700; color: inherit; position: static !important; width: auto !important; height: auto !important; background: none !important; transform: none !important; right: auto !important; top: auto !important; }
	.shp-crt-step li.active:nth-child(4) a::after { color: #fff !important; }

	.chkout-table.table-responsive {
		border: none !important;
		margin-bottom: 8px !important;
	}

	#step-cart .chkout-table table,
	#step-cart .chkout-table thead,
	#step-cart .chkout-table tbody,
	#step-cart .chkout-table tfoot,
	#step-cart .chkout-table tr,
	#step-cart .chkout-table th,
	#step-cart .chkout-table td,
	#step-orderreview .chkout-table table,
	#step-orderreview .chkout-table thead,
	#step-orderreview .chkout-table tbody,
	#step-orderreview .chkout-table tfoot,
	#step-orderreview .chkout-table tr,
	#step-orderreview .chkout-table th,
	#step-orderreview .chkout-table td {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}

	#step-cart .chkout-table thead,
	#step-orderreview .chkout-table thead {
		display: none !important;
	}

	/* Compact product card */
	#step-cart .chkout-table tbody > tr {
		display: grid !important;
		grid-template-columns: 56px 1fr 1fr 1fr;
		grid-template-areas:
			"img code code check"
			"img name name name"
			"price qty total total"
			"cmt cmt cmt cmt";
		column-gap: 8px;
		row-gap: 4px;
		align-items: center;
		background: #fff;
		border: 1px solid #e8e8e8;
		border-radius: 8px;
		margin-bottom: 8px;
		padding: 8px;
		overflow: hidden;
	}

	#step-cart .chkout-table tbody > tr td {
		border: none !important;
		padding: 0 !important;
		margin: 0 !important;
		text-align: left !important;
		float: none !important;
		width: auto !important;
		clear: none !important;
		display: block !important;
	}

	#step-cart .chkout-table tbody > tr td::before {
		display: block !important;
		font-size: 10px !important;
		font-weight: 600 !important;
		color: #888 !important;
		line-height: 1.2;
		margin-bottom: 1px;
	}

	#step-cart .chkout-table tbody > tr td:nth-child(1) {
		grid-area: check;
		justify-self: end;
		align-self: start;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(1)::before { content: none !important; }

	#step-cart .chkout-table tbody > tr td:nth-child(2) {
		grid-area: code;
		font-size: 12px;
		font-weight: 700;
		color: var(--ce-orange, #ff793f);
		line-height: 1.2;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(2)::before { content: none !important; }
	#step-cart .chkout-table tbody > tr td:nth-child(2) .cmn-txt-15 { font-size: 12px !important; }

	#step-cart .chkout-table tbody > tr td:nth-child(3) { grid-area: img; }
	#step-cart .chkout-table tbody > tr td:nth-child(3)::before { content: none !important; }
	#step-cart .chkout-table tbody > tr td:nth-child(3) .pro-thmbnl,
	#step-cart .chkout-table tbody > tr td:nth-child(3) .pro-thmbnl a {
		display: block;
		margin: 0;
		padding: 0;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(3) img {
		width: 56px !important;
		height: 56px !important;
		max-width: 56px !important;
		object-fit: cover;
		border-radius: 4px;
	}

	#step-cart .chkout-table tbody > tr td:nth-child(4) {
		grid-area: name;
		font-size: 12px;
		line-height: 1.25;
		color: #333;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(4)::before { content: none !important; }
	#step-cart .chkout-table tbody > tr td:nth-child(4) .cmn-txt-15 {
		font-size: 12px !important;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	#step-cart .chkout-table tbody > tr td:nth-child(5) {
		grid-area: price;
		font-size: 12px;
		padding-top: 4px !important;
		border-top: 1px solid #f0f0f0 !important;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(5)::before { content: "Price"; }
	#step-cart .chkout-table tbody > tr td:nth-child(5) .prodPrice,
	#step-cart .chkout-table tbody > tr td:nth-child(5) .prdct-prc {
		display: block !important;
		padding: 0 !important;
		margin: 0 !important;
		font-size: 12px !important;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(5) strike {
		font-size: 10px;
		color: #999;
	}

	#step-cart .chkout-table tbody > tr td:nth-child(6) {
		grid-area: qty;
		padding-top: 4px !important;
		border-top: 1px solid #f0f0f0 !important;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(6)::before { content: "Qty"; }

	#step-cart .chkout-table tbody > tr td:nth-child(7) {
		grid-area: total;
		font-size: 12px;
		font-weight: 700;
		text-align: right !important;
		padding-top: 4px !important;
		border-top: 1px solid #f0f0f0 !important;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(7)::before { content: "Total"; text-align: right; }
	#step-cart .chkout-table tbody > tr td:nth-child(7) .prdct-prc { text-align: right; }

	#step-cart .chkout-table tbody > tr td:nth-child(8) {
		grid-area: cmt;
		padding-top: 2px !important;
	}
	#step-cart .chkout-table tbody > tr td:nth-child(8)::before { content: none !important; }
	#step-cart .chkout-table tbody > tr td:nth-child(8) .add-cmnt-btn,
	#step-cart .chkout-table tbody > tr td:nth-child(8) .clickedit,
	#step-cart .chkout-table tbody > tr td:nth-child(8) .clickadd {
		display: inline-block !important;
		padding: 3px 8px !important;
		font-size: 11px !important;
		margin: 0 !important;
		width: auto !important;
	}

	.chkout-table .qty-input {
		display: inline-block;
		vertical-align: middle;
	}
	.chkout-table .qty-input .input-group {
		display: inline-flex !important;
		align-items: center;
		width: auto !important;
		max-width: none;
	}
	.chkout-table .qty-input .form-control {
		width: 36px !important;
		min-width: 36px;
		height: 26px !important;
		padding: 2px 2px !important;
		font-size: 12px !important;
		text-align: center;
		display: inline-block;
	}
	.chkout-table .qty-input .btn,
	.chkout-table .qty-input .btn-number {
		padding: 2px 3px !important;
		height: 26px;
		line-height: 1;
	}
	.chkout-table .qty-input .btn img {
		width: 11px;
		height: 11px;
	}

	#step-orderreview .chkout-table tbody > tr {
		display: grid !important;
		grid-template-columns: 56px 1fr 1fr 1fr;
		grid-template-areas:
			"img code code code"
			"img name name name"
			"price qty total total";
		column-gap: 8px;
		row-gap: 4px;
		align-items: center;
		background: #fff;
		border: 1px solid #e8e8e8;
		border-radius: 8px;
		margin-bottom: 8px;
		padding: 8px;
	}

	#step-orderreview .chkout-table tbody > tr td {
		border: none !important;
		padding: 0 !important;
		margin: 0 !important;
		float: none !important;
		width: auto !important;
		clear: none !important;
		display: block !important;
		text-align: left !important;
	}
	#step-orderreview .chkout-table tbody > tr td::before {
		display: block !important;
		font-size: 10px !important;
		font-weight: 600 !important;
		color: #888 !important;
	}
	#step-orderreview .chkout-table tbody > tr td:nth-child(1) {
		grid-area: code;
		font-size: 12px;
		font-weight: 700;
		color: var(--ce-orange, #ff793f);
	}
	#step-orderreview .chkout-table tbody > tr td:nth-child(1)::before { content: none !important; }
	#step-orderreview .chkout-table tbody > tr td:nth-child(2) { grid-area: img; }
	#step-orderreview .chkout-table tbody > tr td:nth-child(2)::before { content: none !important; }
	#step-orderreview .chkout-table tbody > tr td:nth-child(2) img {
		width: 56px !important;
		height: 56px !important;
		max-width: 56px !important;
		object-fit: cover;
		border-radius: 4px;
	}
	#step-orderreview .chkout-table tbody > tr td:nth-child(3) {
		grid-area: name;
		font-size: 12px;
		line-height: 1.25;
	}
	#step-orderreview .chkout-table tbody > tr td:nth-child(3)::before { content: none !important; }
	#step-orderreview .chkout-table tbody > tr td:nth-child(4) {
		grid-area: price;
		font-size: 12px;
		padding-top: 4px !important;
		border-top: 1px solid #f0f0f0 !important;
	}
	#step-orderreview .chkout-table tbody > tr td:nth-child(4)::before { content: "Price"; }
	#step-orderreview .chkout-table tbody > tr td:nth-child(5) {
		grid-area: qty;
		font-size: 12px;
		padding-top: 4px !important;
		border-top: 1px solid #f0f0f0 !important;
	}
	#step-orderreview .chkout-table tbody > tr td:nth-child(5)::before { content: "Qty"; }
	#step-orderreview .chkout-table tbody > tr td:nth-child(6) {
		grid-area: total;
		font-size: 12px;
		font-weight: 700;
		text-align: right !important;
		padding-top: 4px !important;
		border-top: 1px solid #f0f0f0 !important;
	}
	#step-orderreview .chkout-table tbody > tr td:nth-child(6)::before { content: "Total"; }

	/* Totals / footer rows */
	#step-cart .chkout-table tbody > tr:has(td[colspan]),
	#step-orderreview .chkout-table tbody > tr:has(td[colspan]) {
		display: block !important;
		padding: 10px;
	}

	#step-cart .chkout-table tbody > tr td[colspan],
	#step-orderreview .chkout-table tbody > tr td[colspan] {
		display: block !important;
		width: 100% !important;
		float: none !important;
		clear: both !important;
		border: none !important;
		padding: 4px 0 !important;
		grid-area: auto !important;
	}

	#step-cart .chkout-table tbody > tr td[colspan]::before,
	#step-orderreview .chkout-table tbody > tr td[colspan]::before {
		content: none !important;
	}

	.ordr-ttl-row {
		display: flex !important;
		justify-content: space-between;
		align-items: center;
		gap: 8px;
		padding: 4px 0 !important;
		font-size: 13px;
	}

	.chkout-table .ttl-lbl,
	.chkout-table .ttl-val {
		float: none !important;
		width: auto !important;
		text-align: left !important;
	}

	.chkout-table .ttl-val {
		text-align: right !important;
		font-weight: 700;
	}

	#step-cart .chkout-table tfoot > tr,
	#step-orderreview .chkout-table tfoot > tr {
		display: block !important;
		background: transparent;
		border: none;
		padding: 0;
		margin: 0;
	}

	#step-cart .chkout-table tfoot td,
	#step-orderreview .chkout-table tfoot td {
		display: block !important;
		padding: 4px 0 !important;
		border: none !important;
		width: 100% !important;
	}

	.chkout-table tfoot .blk-btn,
	.chkout-table tfoot .updt-btn,
	.chkout-table tfoot .chkout-btn,
	.shipping-checkout-btn a,
	.shipping-checkout-btn button,
	.chkout-frm .blk-btn,
	.chkout-frm .updt-btn,
	.chkout-frm .chkout-btn,
	.chkout-frm .shipping-checkout-btn a {
		display: block !important;
		width: 100% !important;
		margin: 0 0 6px 0 !important;
		padding: 10px 12px !important;
		text-align: center !important;
		box-sizing: border-box;
		font-size: 13px !important;
	}

	.min-prce,
	.ordr-tagline {
		text-align: left !important;
		margin-bottom: 4px;
		font-size: 12px;
	}

	.shipby > ul {
		display: flex !important;
		flex-wrap: wrap;
		gap: 8px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.shipby li {
		float: none !important;
		display: block !important;
		width: calc(50% - 4px) !important;
		margin: 0 !important;
	}

	.shipby li img {
		max-width: 100%;
		height: auto;
	}

	.chkout-frm .col-md-3 { margin-bottom: 10px; }
	.chkout-frm .form-group { margin-bottom: 10px; }

	.bilng-adrs li {
		display: block !important;
		width: 100% !important;
		padding-left: 0 !important;
		margin-bottom: 4px;
	}
	.bilng-adrs li::before { display: none !important; }

	.myCartList {
		max-height: 180px;
		overflow-y: auto;
	}
}

/* ========== Modern footer ========== */
.footer-gray.ce-footer-perks {
	background: linear-gradient(135deg, #2f2f2f 0%, #3f3f3f 50%, #2a2a2a 100%) !important;
	padding: 22px 0 !important;
	border-top: 3px solid var(--ce-orange);
}

.ce-footer-perks .advntg-box {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 12px 14px;
	min-height: 58px;
	margin-bottom: 10px;
	transition: background var(--ce-transition), border-color var(--ce-transition);
}

.ce-footer-perks .advntg-box:hover {
	background: rgba(255, 121, 63, 0.12);
	border-color: rgba(255, 121, 63, 0.35);
}

.ce-footer-perks .advntg-box > img {
	margin-right: 0 !important;
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex-shrink: 0;
}

.ce-footer-perks .advntg-box > span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.3;
	color: #fff;
}

footer.ce-site-footer,
.ce-site-footer {
	background: #1b1b1b !important;
	padding: 42px 0 18px !important;
	position: relative;
}

.ce-site-footer::before {
	content: "";
	display: block;
	height: 3px;
	width: 100%;
	background: linear-gradient(90deg, transparent, var(--ce-orange), transparent);
	position: absolute;
	top: 0;
	left: 0;
}

.ce-footer-grid {
	margin-left: -12px;
	margin-right: -12px;
}

.ce-footer-col {
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: 28px;
}

.ce-site-footer .cmn-ftr-label {
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff !important;
	margin-bottom: 16px !important;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(255, 121, 63, 0.45);
	display: inline-block;
	min-width: 120px;
}

.ce-site-footer .ftr-adrs-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px !important;
}

.ce-site-footer .ftr-adrs-row img {
	float: none !important;
	margin-top: 2px !important;
	width: 16px;
	height: 16px;
	opacity: 0.9;
	flex-shrink: 0;
}

.ce-site-footer .fltr-ad-des {
	margin-left: 0 !important;
	color: #cfcfcf !important;
	font-size: 13px !important;
	line-height: 1.5 !important;
	font-weight: 400 !important;
}

.ce-site-footer .fotter-links ul {
	margin: 0;
	padding: 0;
}

.ce-site-footer .fotter-links li {
	margin: 0 0 8px 0;
}

.ce-site-footer .fotter-links a {
	color: #cfcfcf !important;
	font-size: 13px !important;
	line-height: 1.4 !important;
	text-decoration: none !important;
	transition: color var(--ce-transition), padding-left var(--ce-transition);
	display: inline-block;
}

.ce-site-footer .fotter-links a:hover {
	color: var(--ce-orange) !important;
	padding-left: 4px;
}

.ce-footer-social.footer-social-link {
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	margin-top: 8px !important;
	padding-top: 18px;
	text-align: center;
}

.ce-footer-social ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.ce-footer-social li {
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 50% !important;
	width: 36px !important;
	height: 36px !important;
	margin: 0 !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	transition: background var(--ce-transition), border-color var(--ce-transition), transform var(--ce-transition);
}

.ce-footer-social li:hover {
	background: var(--ce-orange) !important;
	border-color: var(--ce-orange) !important;
	transform: translateY(-2px);
}

.ce-footer-social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff !important;
	text-decoration: none;
}

.ce-footer-social li a i {
	font-size: 14px;
	line-height: 1;
}

.footer-bottom.ce-footer-bottom {
	background: #121212 !important;
	color: #9a9a9a !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	padding: 14px 0 !important;
	text-align: center !important;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 767px) {
	.productListPage .cmn-lst-sldr-box .prdct-price,
	.productListPage .cmn-lst-sldr-box .prodPrice,
	.productListPage .prodPrice {
		font-size: 14px !important;
		padding: 3px 6px 4px !important;
	}

	.ce-footer-perks .advntg-box {
		min-height: 0;
		padding: 10px 12px;
		margin-bottom: 8px;
	}

	.ce-footer-col {
		margin-bottom: 22px;
	}

	.ce-site-footer {
		padding: 28px 0 12px !important;
	}

	.ce-site-footer .cmn-ftr-label {
		font-size: 14px !important;
		min-width: 0;
		width: 100%;
	}
}

