/* WhatsApp side cart — layout only, no new colors (theme classes like .btn-primary/.text-danger already carry the brand palette). */

#side-cart-panel {
	position: fixed;
	top: 0;
	right: -420px;
	width: 400px;
	max-width: 90vw;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 18px rgba(0, 0, 0, 0.15);
	z-index: 1040;
	display: flex;
	flex-direction: column;
	transition: right 0.3s ease;
}

#side-cart-panel.open {
	right: 0;
}

#side-cart-items {
	flex: 1 1 auto;
	overflow-y: auto;
}

#side-cart-items .media img {
	width: 64px;
	height: 64px;
	object-fit: cover;
}

#side-cart-items .cart-qty-input {
	width: 56px;
	display: inline-block;
}

#side-cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1035;
	display: none;
}

/* Order modal above side cart */
#order-modal {
	z-index: 1060;
}
.modal-backdrop {
	z-index: 1050;
}

#side-cart-overlay.open {
	display: block;
}

body.side-cart-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	#side-cart-panel {
		width: 100vw;
		max-width: 100vw;
		right: -100vw;
	}
}

/* Live search dropdown */
.site-search-form {
	position: relative;
}

#live-search-results,
#live-search-results-mobile {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 1050;
	max-height: 400px;
	overflow-y: auto;
}

/* Mobile-only "Filtrat" toggle for the shop sidebar (categories + price).
   The sidebar is `.collapse .d-lg-block`: always shown on desktop, collapsed
   on mobile until this button toggles it. */
.dmix-filter-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 14px;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid #1287cf;
	border-radius: 6px;
	color: #1287cf;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	cursor: pointer;
}
.dmix-filter-toggle:focus { outline: none; box-shadow: 0 0 0 3px rgba(18,135,207,0.18); }
.dmix-filter-caret { transition: transform 0.25s ease; font-size: 12px; }
.dmix-filter-toggle[aria-expanded="true"] { background: #1287cf; color: #fff; }
.dmix-filter-toggle[aria-expanded="true"] .dmix-filter-caret { transform: rotate(180deg); }

/* ===== DyqanMix header (isolated from theme CSS) ===== */
.header-top {
	padding: 12px 0 !important;
}

.dmix-header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	flex-wrap: wrap; /* lets the search drop to its own row on small screens */
}

.dmix-header-left {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	flex: 1 1 auto;
	order: 1;
}
.dmix-header-actions { order: 2; }
.dmix-search        { order: 3; }

/* Desktop/tablet: search sits inline between logo and flags/cart */
@media (min-width: 768px) {
	.dmix-header-bar { flex-wrap: nowrap; }
	.dmix-header-left { flex: 0 0 auto; }
	.dmix-header-bar .dmix-search {
		order: 2;
		flex: 1 1 auto !important;
		width: auto !important;
		max-width: none !important;
		margin: 0 22px !important;
	}
	.dmix-header-actions { order: 3; }
}

.dmix-header-logo {
	flex: 0 0 auto;
	min-width: 0;
}

.dmix-header-logo img {
	max-height: 64px;
	width: auto;
	max-width: 200px;
	display: block;
}

/* Hamburger button */
.dmix-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: #f5f5f5;
	border-radius: 8px;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.dmix-burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: #222;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.2s ease;
}

.dmix-burger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.dmix-burger.is-open span:nth-child(2) {
	opacity: 0;
}
.dmix-burger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.dmix-burger:active {
	transform: scale(0.95);
}

@media (max-width: 991.98px) {
	.dmix-burger {
		display: inline-flex;
	}
}

/* Mobile drawer */
.dmix-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 1090;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dmix-menu-overlay.is-open {
	opacity: 1;
}

.dmix-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: min(320px, 86vw);
	height: 100%;
	background: #fff;
	z-index: 1100;
	transform: translateX(-105%);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex;
	flex-direction: column;
	box-shadow: 8px 0 28px rgba(0,0,0,0.12);
	overflow: hidden;
}

.dmix-mobile-menu.is-open {
	transform: translateX(0);
}

.dmix-mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	background: #111;
	color: #fff;
	flex-shrink: 0;
}

.dmix-menu-close {
	border: none;
	background: transparent;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}

.dmix-mobile-nav,
.dmix-mobile-cats {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dmix-mobile-nav {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	flex-shrink: 0;
}

.dmix-mobile-nav a {
	display: block;
	padding: 12px 18px;
	color: #222;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dmix-mobile-nav a:hover {
	background: #eef7fd;
	color: #1287cf;
	padding-left: 24px;
}

.dmix-mobile-cats-title {
	padding: 14px 18px 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #999;
	flex-shrink: 0;
}

.dmix-mobile-cats {
	overflow-y: auto;
	flex: 1 1 auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 30px;
}

.dmix-mobile-cats > li > a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	color: #222;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #f3f3f3;
	transition: background 0.2s ease, color 0.2s ease;
}

.dmix-mobile-cats > li > a i {
	width: 20px;
	text-align: center;
	color: #1287cf;
}

.dmix-mobile-cats > li > a:hover {
	background: #eef7fd;
	color: #1287cf;
}

.dmix-mobile-cats ul {
	list-style: none;
	margin: 0;
	padding: 0 0 6px 0;
	background: #fafafa;
}

.dmix-mobile-cats ul a {
	display: block;
	padding: 8px 18px 8px 48px;
	color: #555;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.dmix-mobile-cats ul a:hover {
	color: #1287cf;
	padding-left: 54px;
}

body.dmix-menu-open {
	overflow: hidden;
}

.dmix-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: auto;
}

.dmix-header-actions .lang-flag {
	display: inline-flex;
	align-items: center;
	padding: 3px;
	border-radius: 4px;
	border: 1px solid transparent;
	background: #f5f5f5;
	line-height: 0;
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.dmix-header-actions .lang-flag img {
	display: block;
	width: 28px;
	height: 20px;
	object-fit: cover;
	border-radius: 2px;
}

.dmix-header-actions .lang-flag:hover,
.dmix-header-actions .lang-flag.active {
	border-color: #1287cf;
	background: #fff;
	transform: translateY(-1px);
}

.dmix-cart-btn {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	text-decoration: none !important;
	color: inherit;
}

.dmix-cart-btn svg {
	fill: #797979;
}

.dmix-cart-btn:hover svg {
	fill: #1287cf;
}

/* Full-width search — always under logo row */
.dmix-search {
	display: flex !important;
	align-items: stretch;
	width: 100% !important;
	max-width: 100% !important;
	margin-top: 12px;
	height: 48px;
	border: 1px solid #1287cf;
	border-radius: 6px;
	background: #fff;
	overflow: visible;
	position: relative;
	animation: dmixSearchIn 0.35s ease;
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

@keyframes dmixSearchIn {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

.dmix-search-cat {
	flex: 0 0 auto;
	max-width: 160px;
	border: none !important;
	border-right: 1px solid #eee !important;
	background: transparent !important;
	padding: 0 28px 0 12px !important;
	font-size: 12px;
	height: 100% !important;
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 10px center !important;
	cursor: pointer;
}

.dmix-search-input {
	flex: 1 1 auto !important;
	width: 100% !important;
	min-width: 0 !important;
	height: 100% !important;
	border: none !important;
	background: transparent !important;
	padding: 0 12px !important;
	font-size: 15px !important;
	outline: none !important;
	box-shadow: none !important;
	color: #222;
}

.dmix-search-input::placeholder {
	color: #999;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.dmix-search-btn {
	flex: 0 0 auto;
	border: none !important;
	background: #1287cf !important;
	color: #fff !important;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	padding: 0 22px;
	height: 100%;
	cursor: pointer;
	border-radius: 0 5px 5px 0;
	transition: background 0.25s ease, color 0.25s ease;
}

.dmix-search:focus-within {
	border-color: #0f72ad;
	box-shadow: 0 0 0 3px rgba(18, 135, 207, 0.18);
	transform: translateY(-1px);
}

.dmix-search:focus-within .dmix-search-input::placeholder {
	opacity: 0.45;
}

.dmix-search:focus-within .dmix-search-btn {
	background: #0f72ad !important;
}

.dmix-search-btn:hover {
	background: #e08914 !important;
	color: #111 !important;
}

#live-search-results {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 1050;
	max-height: 400px;
	overflow-y: auto;
}

/* Mobile: hide category select, full long input */
@media (max-width: 767px) {
	.dmix-search-cat {
		display: none !important;
	}
	.dmix-search {
		height: 46px;
		margin-top: 10px;
	}
	.dmix-search-btn {
		padding: 0 16px;
		font-size: 12px;
	}
	.dmix-header-logo img {
		max-height: 52px;
		max-width: 160px;
	}
}

@media (min-width: 992px) {
	.dmix-header-logo img {
		max-height: 72px;
		max-width: 240px;
	}
	.dmix-search {
		height: 48px;
		margin-top: 14px;
	}
}

/* Product card: theme forces ALL .main_text links red on hover — hides btn text on red bg */
.product_thumb .main_text a.btn,
.product_thumb .main_text a.btn-primary,
.product_thumb:hover .main_text a.btn,
.product_thumb:hover .main_text a.btn-primary,
.product_thumb:hover .main_text a.btn-primary:hover,
.product_thumb:hover .main_text a.btn-primary:focus {
	color: #fff !important;
}

/* ===== Product gallery (main + thumb strip) ===== */
.dmix-gallery {
	position: relative;
	background: #f6f6f6;
	border-radius: 12px;
	padding: 10px;
	overflow: hidden;
}
.dmix-gallery-main {
	position: relative;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	touch-action: pan-y;
	overflow: hidden;
}
.dmix-gallery-main .dmix-main-photo {
	display: block;
	width: 100%;
	text-align: center;
	line-height: 0;
}
.dmix-gallery-main #selected-photo {
	display: block;
	max-width: 100%;
	max-height: 70vh;
	width: auto;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
	background: #fff;
	opacity: 1;
	transition: opacity 0.15s ease;
}
.dmix-gallery-main #selected-photo.is-fading {
	opacity: 0.2;
}
.dmix-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	box-shadow: 0 2px 10px rgba(0,0,0,0.12);
	color: #222;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 2px;
}
.dmix-gallery-prev { left: 8px; }
.dmix-gallery-next { right: 8px; }
.dmix-gallery-arrow:active { transform: translateY(-50%) scale(0.96); }

/* Thumbnail strip — horizontal native scroll, no empty gaps */
.dmix-gallery-thumbs {
	margin-top: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.dmix-gallery-track {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 8px;
	width: max-content !important;
	margin: 0 !important;
	padding: 2px;
}
.dmix-gallery-thumb {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	padding: 4px;
	margin: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dmix-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	pointer-events: none;
}
.dmix-gallery-thumb.is-active {
	border-color: #1287cf;
	box-shadow: 0 0 0 1px rgba(18, 135, 207,0.12);
}

/* Hide old theme arrows / holders if any leftover CSS still applies */
#photo-view-container > #left,
#photo-view-container > #right {
	display: none !important;
}
.photo-holder { display: none !important; }

@media (max-width: 575px) {
	.dmix-gallery-main {
		min-height: 240px;
	}
	.dmix-gallery-main #selected-photo {
		max-height: 52vh;
	}
	.dmix-gallery-thumb {
		flex-basis: 64px;
		width: 64px;
		height: 64px;
	}
}

/* ===== Mobile homepage products under services ===== */
.dmix-mhome-products .section-title-row {
	padding-right: 0;
	margin-bottom: 0.75rem;
}
.dmix-mhome-products .product_thumb {
	height: 100%;
	padding: 8px;
	border: 1px solid #f0f0f0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.dmix-mhome-products .product_thumb .pro_image {
	min-height: 120px;
}
.dmix-mhome-products .product_thumb .pro_image img {
	max-height: 140px;
	width: 100%;
	object-fit: contain;
}
.dmix-mhome-products .pro-heading {
	font-size: 13px;
	line-height: 1.3;
	min-height: 2.5em;
}
.dmix-mhome-products .pro-heading a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.dmix-mhome-products .price {
	font-size: 14px;
}
.dmix-mhome-products .btn-sm {
	font-size: 11px;
	padding: 5px 8px;
	width: 100%;
}
.dmix-mhome-products .main_text {
	padding-top: 8px !important;
}
.dmix-mhome-products .col-6 {
	padding-left: 6px;
	padding-right: 6px;
}

/* ===== Mobile bottom nav (app-style) ===== */
.dmix-bottom-nav {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1050;
	height: 64px;
	padding: 4px 6px 2px;
	padding-bottom: calc(2px + env(safe-area-inset-bottom, 0));
	background: rgba(255,255,255,0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(0,0,0,0.06);
	box-shadow: 0 -6px 24px rgba(0,0,0,0.07);
	align-items: stretch;
	justify-content: space-around;
}
.dmix-bnav-item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 0;
	padding: 4px 2px;
	border: 0;
	background: transparent;
	color: #8a8a8a;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.15px;
	text-decoration: none !important;
	text-transform: none;
	line-height: 1.15;
	cursor: pointer;
	transition: color 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}
.dmix-bnav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 28px;
	border-radius: 16px;
	transition: background 0.22s ease, transform 0.18s ease, color 0.2s ease;
}
.dmix-bnav-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}
.dmix-bnav-item > span:last-child {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 10.5px;
}
.dmix-bnav-item:hover,
.dmix-bnav-item:focus {
	color: #1287cf;
	outline: 0;
	text-decoration: none !important;
}
.dmix-bnav-item:hover .dmix-bnav-icon,
.dmix-bnav-item:focus .dmix-bnav-icon {
	background: rgba(18, 135, 207,0.08);
}
.dmix-bnav-item.active {
	color: #1287cf;
}
.dmix-bnav-item.active .dmix-bnav-icon {
	background: rgba(18, 135, 207,0.12);
	transform: translateY(-1px);
}
.dmix-bnav-item.active .dmix-bnav-icon svg {
	stroke-width: 2.1;
}
@media (max-width: 991.98px) {
	.dmix-bottom-nav {
		display: flex;
	}
	body {
		padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
	}
	.floating-whatsapp {
		bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
	}
}

/* Floating WhatsApp button (global) */
.floating-whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 1040;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none !important;
	animation: wa-pulse 2s infinite;
}

.floating-whatsapp:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
	color: #fff !important;
}

body.side-cart-open .floating-whatsapp,
body.modal-open .floating-whatsapp {
	display: none !important;
}

/* Cart/order flow must sit above the mobile bottom nav (z-index 1050),
   which otherwise covers the "Porosit në WhatsApp" button. Hide the nav
   while the cart or order modal is open. */
body.side-cart-open .dmix-bottom-nav,
body.modal-open .dmix-bottom-nav {
	display: none !important;
}

@keyframes wa-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
	70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ensure left-banner column and products column share the same row height */
.row.com_lap_ {
	align-items: stretch;
}

/* Left promotional banner (side_banner column) fills full carousel height */
.left-bnr {
	display: flex;
	align-items: stretch;
}
.left-bnr a {
	display: block;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
}
.left-bnr img,
.left-bnr picture img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

/* Showcase carousel: larger product cards on desktop */
.showcase-carousel .product_thumb {
	min-height: 210px;
	padding: 14px 16px;
}

.showcase-carousel .product_thumb .pro_image {
	flex: 0 0 44%;
	max-width: 44%;
}

.showcase-carousel .product_thumb .pro_image img {
	width: 100%;
	height: 160px;
	object-fit: contain;
}

.showcase-carousel .pro-heading {
	font-size: 14px;
	line-height: 1.35;
	margin-bottom: 6px !important;
}

.showcase-carousel .price {
	font-size: 16px;
}

/* Button compact — never wraps onto two lines */
.showcase-carousel .btn-sm {
	font-size: 11px;
	padding: 5px 8px !important;
	white-space: nowrap;
}

@media (min-width: 992px) {
	.showcase-carousel .product_thumb {
		min-height: 230px;
	}
	.showcase-carousel .product_thumb .pro_image img {
		height: 180px;
	}
	.showcase-carousel .pro-heading {
		font-size: 15px;
	}
	.showcase-carousel .price {
		font-size: 17px;
	}
	.showcase-carousel .btn-sm {
		font-size: 12px;
		padding: 5px 10px !important;
	}
}

@media (min-width: 1200px) {
	.showcase-carousel .product_thumb {
		min-height: 250px;
		padding: 18px 20px;
	}
	.showcase-carousel .product_thumb .pro_image img {
		height: 200px;
	}
	.showcase-carousel .pro-heading {
		font-size: 16px;
	}
	.showcase-carousel .price {
		font-size: 18px;
	}
	.showcase-carousel .btn-sm {
		font-size: 13px;
		padding: 6px 12px !important;
	}
}

/* ===== Site-wide animations ===== */
.service,
.banner,
.category-card,
.pro-cat-thumb,
.pro_thumb {
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
	will-change: transform;
}

.dmix-hover-lift,
.service:hover,
.pro-cat-thumb:hover,
.dmix-cat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.dmix-cat-card {
	border: 1px solid #eee;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.dmix-cat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}
@media (min-width: 576px) {
	.dmix-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
	.dmix-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.dmix-cat-img {
	overflow: hidden;
	background: #fafafa;
}
.dmix-cat-img img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.dmix-cat-title {
	display: block;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	transition: color 0.25s ease;
}
.dmix-cat-card:hover .dmix-cat-title {
	color: #1287cf !important;
}

.dmix-btn-pop {
	animation: dmixBtnPop 0.28s ease;
}

@keyframes dmixBtnPop {
	0% { transform: scale(1); }
	40% { transform: scale(0.96); }
	100% { transform: scale(1); }
}

.dmix-observe {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.dmix-observe.dmix-inview {
	opacity: 1;
	transform: translateY(0);
}

.main-menu li a,
.header_bottom a {
	transition: color 0.2s ease;
}

.carousel-item {
	transition: transform 0.6s ease-in-out, opacity 0.6s ease;
}

.badge {
	animation: dmixBadgeIn 0.4s ease both;
}

@keyframes dmixBadgeIn {
	from { opacity: 0; transform: scale(0.7); }
	to { opacity: 1; transform: scale(1); }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.dmix-observe {
		opacity: 1;
		transform: none;
	}
}

/* Section title + "Shiko të gjitha" — leave room for owl arrows */
.section-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 1rem;
	padding-right: 70px;
	position: relative;
	min-height: 28px;
}

.section-title-row h5 {
	margin-bottom: 0 !important;
	flex: 1 1 auto;
	min-width: 0;
}

.section-view-all {
	flex: 0 0 auto;
	white-space: nowrap;
	font-size: 13px;
	letter-spacing: 0.3px;
	color: #222;
	text-decoration: none;
	margin-right: 4px;
}

.section-view-all:hover {
	color: #1287cf;
}

.showcase-carousel.owl-theme .owl-nav {
	top: -42px;
	right: 0;
	width: auto;
	left: auto;
}

.showcase-carousel.owl-theme .owl-nav [class*="owl-"] {
	margin: 0 2px;
}

@media (max-width: 575px) {
	.section-title-row {
		padding-right: 68px;
		gap: 8px;
	}
	.section-title-row h5 {
		font-size: 16px;
	}
	.section-view-all {
		font-size: 12px;
	}
}

/* Services: 2 per row on mobile */
@media (max-width: 767px) {
	.main_services .m_service {
		padding-left: 6px;
		padding-right: 6px;
		padding-bottom: 12px;
	}
	.main_services .service {
		padding: 14px 8px;
		height: 100%;
	}
	.main_services .service li.ser-svg {
		margin: 0 auto 8px auto !important;
		display: flex !important;
		justify-content: center;
	}
	.main_services .service .ser-t {
		text-align: center !important;
		display: block !important;
	}
	.main_services .service .ser-t h6 {
		font-size: 13px;
		margin-bottom: 2px;
		line-height: 1.25;
	}
	.main_services .service .ser-t p {
		font-size: 11px;
		line-height: 1.3;
	}
}

@media (max-width: 575px) {
	.lang-switch .lang-flag span {
		display: none;
	}
	.floating-whatsapp {
		width: 52px;
		height: 52px;
		right: 14px;
		bottom: 14px;
		font-size: 26px;
	}
}

/* Footer text visibility: force all text/labels light on the dark footer */
.footer .third_footer,
.footer .fifth_footer {
	color: #c8c8c8;
}

.footer .third_footer h5,
.footer .third_footer .footer_title h5 {
	color: #ffffff !important;
}

.footer .third_footer p,
.footer .third_footer li,
.footer .third_footer .data1 {
	color: #c8c8c8;
}

/* Mobile: horizontal showcase cards go vertical to fit 2-per-row */
@media (max-width: 767px) {
	.showcase-carousel .product_thumb.d-flex {
		flex-direction: column !important;
		padding: 8px;
		min-height: 0;
	}
	.showcase-carousel .product_thumb .pro_image {
		max-width: 100%;
		flex: 0 0 100%;
		padding: 0 !important;
		margin-bottom: 6px;
	}
	.showcase-carousel .product_thumb .pro_image img {
		width: 100%;
		height: 110px;
		object-fit: contain;
	}
	.showcase-carousel .product_thumb .text-left {
		max-width: 100%;
		flex: 0 0 100%;
		padding: 0 !important;
	}
	.showcase-carousel .pro-heading {
		font-size: 12px;
		line-height: 1.3;
	}
	.showcase-carousel .price {
		font-size: 13px;
	}
	.showcase-carousel .btn-sm {
		font-size: 10px;
		padding: 4px 6px !important;
		white-space: nowrap;
	}
}

/* ===== Order / contact form fields: theme makes .form-control border transparent,
   so on white backgrounds the inputs become invisible. Force a visible style. ===== */
.modal .form-control,
#order-form .form-control,
.contact-form .form-control,
#c_address .form-control {
	background-color: #fff;
	border: 1px solid #ced4da;
	color: #333;
	border-radius: 6px;
}
.modal .form-control:focus,
#order-form .form-control:focus,
.contact-form .form-control:focus,
#c_address .form-control:focus {
	background-color: #fff;
	border-color: #1287cf;
	box-shadow: 0 0 0 0.2rem rgba(18, 135, 207, 0.15);
	outline: 0;
}
.modal .form-group > label,
#order-form .form-group > label {
	color: #222;
}

/* =====================================================================
   Visual polish layer (2026) — brand-consistent palette + refined cards.
   Loaded last so it settles ordering ties. All additive & reversible.
   ===================================================================== */
:root {
	/* Dyqan Mix brand palette — derived from the logo (blue circle + gold ring) */
	--brand: #1287cf;        /* primary blue — buttons, links, nav, section bars */
	--brand-dark: #0f72ad;   /* blue hover / active / focus */
	--brand-light: #4bb4f0;  /* exact logo blue — glows & light accents */
	--gold: #e08914;         /* logo gold — deals, discount & "new" badges */
	--gold-dark: #c1740f;    /* gold hover */
	--dmix-ink: #1f2530;
	--dmix-muted: #8a94a6;
	/* Back-compat aliases (earlier rules reference these names) */
	--dmix-red: var(--brand);
	--dmix-red-dark: var(--brand-dark);
}

/* --- Deal badges (discount %, "new") wear the brand GOLD so offers pop --- */
.badge-danger,
.product_thumb .badge-danger {
	background-color: var(--gold) !important;
	color: #fff !important;
	box-shadow: 0 2px 6px rgba(224, 137, 20, 0.30);
	border-radius: 40px;
	padding: 4px 9px;
	font-weight: 700;
	letter-spacing: 0.2px;
}
.badge-warning,
.product_thumb .badge-warning {
	background-color: var(--gold) !important;
	color: #fff !important;
	border-radius: 40px;
	padding: 4px 9px;
	font-weight: 700;
}
.section-title-row h5 .text-danger,
.title_outer h5 .text-danger,
.dmix-mhome-products .section-title-row .text-danger {
	color: var(--dmix-red) !important;
}

/* --- Section titles: bold, uppercase, red accent bar (dyqan.taxi look) --- */
.section-title-row h5,
.dmix-mhome-products .section-title-row h5 {
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	font-size: 19px;
	position: relative;
	padding-left: 14px;
}
.section-title-row h5::before,
.dmix-mhome-products .section-title-row h5::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 20px;
	border-radius: 3px;
	background: var(--dmix-red);
}
@media (max-width: 575px) {
	.section-title-row h5,
	.dmix-mhome-products .section-title-row h5 {
		font-size: 15px;
		padding-left: 11px;
	}
	.section-title-row h5::before,
	.dmix-mhome-products .section-title-row h5::before {
		height: 15px;
		width: 4px;
	}
}

/* --- Add-to-cart CTA: bigger tap target, bolder, tactile hover --- */
.js-add-to-cart.btn,
.product_thumb .main_text a.btn-primary {
	font-weight: 700;
	letter-spacing: 0.3px;
	font-size: 12px;
	padding: 7px 14px;
	border-radius: 6px;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.js-add-to-cart.btn:hover,
.product_thumb:hover .main_text a.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(18, 135, 207, 0.30);
	background-color: var(--dmix-red-dark) !important;
	border-color: var(--dmix-red-dark) !important;
}
.js-add-to-cart.btn:active {
	transform: translateY(0);
}
.js-add-to-cart .fas {
	margin-right: 3px;
}

/* --- Price: strengthen current price, soften the struck-through old price --- */
.product_thumb .price {
	color: var(--dmix-ink);
	font-weight: 700;
}
.product_thumb del.text-muted {
	font-size: 12px;
	opacity: 0.7;
}

/* --- Brief added-to-cart confirmation pulse on the header cart button --- */
@keyframes dmixCartPop {
	0%   { transform: scale(1); }
	35%  { transform: scale(1.25); }
	100% { transform: scale(1); }
}
.dmix-cart-btn.dmix-cart-pop svg {
	animation: dmixCartPop 0.4s ease;
}
#cart-count {
	background: var(--gold);
	color: #fff !important;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	border-radius: 40px;
	font-size: 11px;
	text-align: center;
	display: inline-block;
	padding: 0 4px;
	vertical-align: top;
	margin-left: -6px;
	visibility: hidden; /* JS (renderCart) reveals it once qty > 0 */
}

/* --- Homepage category tiles: smaller icon-style image + full name (no ellipsis) --- */
.top_thumb {
	padding: 18px 8px 12px !important;
}
.top_thumb .main_text {
	padding-top: 12px !important;
}
.top_thumb .pro_image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 92px;
}
.top_thumb .pro_image img {
	max-height: 84px;
	width: auto !important;
	max-width: 100%;
	object-fit: contain;
	margin: 0 auto;
}
.top_thumb .pro-heading {
	white-space: normal;      /* was nowrap → let the full name wrap */
	overflow: visible;
	text-overflow: clip;
	font-size: 12px;
	line-height: 1.3;
	min-height: 2.6em;        /* reserve ~2 lines so tiles stay aligned */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2px;
}
.top_thumb .pro-heading a {
	white-space: normal;
	display: inline-block;
}
@media (max-width: 575px) {
	.top_thumb .pro_image {
		height: 74px;
	}
	.top_thumb .pro_image img {
		max-height: 66px;
	}
	.top_thumb .pro-heading {
		font-size: 11px;
	}
}

/* --- Footer credit link (Said Dulevic) --- */
.demo_link {
	font-size: 13px;
	line-height: 1.7;
}
.dmix-credit {
	display: inline-block;
	margin-left: 4px;
}
.footer .demo_link .dmix-credit a {
	color: #fff !important;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.footer .demo_link .dmix-credit a:hover {
	color: var(--dmix-red) !important;
}

/* --- Remap Bootstrap's red .text-danger accent onto the brand blue --- */
.text-danger {
	color: var(--brand) !important;
}

/* --- Brand accents tied to the logo (blue UI + gold "KATEGORITË" bar) --- */
.cat_menu.bg-warning {
	background-color: var(--gold) !important;
}
.cat_menu.bg-warning a {
	color: #fff !important;
}
/* "OFERTAT TONA!" deal link in the desktop nav → gold to flag savings */
.header_bottom .text-right a {
	color: var(--gold) !important;
	font-weight: 700;
}
.header_bottom .text-right a:hover {
	color: var(--gold-dark) !important;
}

/* =====================================================================
   Ofertat Tona — countdown timer badge
   ===================================================================== */
.dmix-countdown {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	background: var(--gold);
	color: #fff;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.5px;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 5px;
	margin-left: 10px;
	box-shadow: 0 2px 6px rgba(224, 137, 20, 0.30);
}
@media (max-width: 575px) {
	.dmix-countdown {
		font-size: 10px;
		padding: 3px 7px;
		margin-left: 6px;
	}
}

/* =====================================================================
   Category showcase homepage block — wide banner + tabs + recommended
   ===================================================================== */
.dmix-showcase-quicklinks {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-left: auto;
}
.dmix-showcase-quicklinks a {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dmix-ink);
	padding: 5px 12px;
	border-radius: 40px;
	background: #f2f4f7;
	transition: background 0.2s ease, color 0.2s ease;
}
.dmix-showcase-quicklinks a:hover {
	background: var(--brand);
	color: #fff;
}

.dmix-showcase-banner {
	margin-bottom: 16px;
	border-radius: 8px;
	overflow: hidden;
}
.dmix-showcase-banner img {
	width: 100%;
	display: block;
}

.dmix-showcase-tabs {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid #eef0f3;
	margin-bottom: 16px;
}
.dmix-showcase-tab {
	background: none;
	border: none;
	padding: 8px 4px 10px;
	margin-right: 18px;
	font-weight: 700;
	font-size: 14px;
	color: var(--dmix-muted);
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.dmix-showcase-tab:hover {
	color: var(--dmix-ink);
}
.dmix-showcase-tab.active {
	color: var(--brand);
	border-bottom-color: var(--brand);
}

.dmix-showcase-panel[hidden] {
	display: none;
}

.dmix-showcase-recommend {
	background: #fff;
	border-radius: 8px;
	border: 1px solid #eef0f3;
	padding: 16px;
	height: 100%;
}
.dmix-showcase-recommend h6 {
	font-size: 13px;
	letter-spacing: 0.4px;
	color: var(--dmix-ink);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eef0f3;
}

.dmix-mini-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid #f5f6f8;
	text-decoration: none !important;
}
.dmix-mini-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.dmix-mini-item-img {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 6px;
	overflow: hidden;
	background: #f7f8fa;
	display: block;
}
.dmix-mini-item-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.dmix-mini-item-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.dmix-mini-item-name {
	font-size: 13px;
	color: var(--dmix-ink);
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.dmix-mini-item-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--brand);
}
@media (max-width: 991px) {
	.dmix-showcase-recommend {
		margin-top: 16px;
	}
}

/* =====================================================================
   Footer trust bar — 4 reassurance badges above the main footer columns
   ===================================================================== */
.dmix-trust-bar {
	background: #f4f6f8;
	padding: 22px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dmix-trust-bar-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
}
.dmix-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1 1 200px;
}
.dmix-trust-item i {
	font-size: 26px;
	color: var(--gold);
	flex-shrink: 0;
}
.dmix-trust-item div {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
.dmix-trust-item strong {
	font-size: 14px;
	color: var(--dmix-ink);
}
.dmix-trust-item span {
	font-size: 12.5px;
	color: var(--dmix-muted);
}
@media (max-width: 767px) {
	.dmix-trust-bar {
		padding: 16px 0;
	}
	.dmix-trust-bar-row {
		justify-content: flex-start;
	}
	.dmix-trust-item {
		flex: 1 1 45%;
	}
	.dmix-trust-item i {
		font-size: 20px;
	}
}

/* =====================================================================
   Static content pages (Garancia, Si të Blejmë Online, …) — the theme's
   global `body { text-transform: capitalize }` title-cases every word,
   which reads fine on short UI labels but breaks long-form paragraphs.
   ===================================================================== */
.dmix-static-page p,
.dmix-static-page li,
.dmix-static-page ol,
.dmix-static-page ul {
	text-transform: none;
}
.dmix-static-page h5 {
	text-transform: none;
	font-size: 17px;
}
.dmix-static-page .lead {
	font-size: 16px;
	color: var(--dmix-ink);
}
.dmix-static-page ol,
.dmix-static-page ul {
	padding-left: 20px;
}
.dmix-static-page li {
	margin-bottom: 6px;
	line-height: 1.6;
}
.dmix-static-page p {
	line-height: 1.7;
	color: #444;
}
