/* ==============================================
CONTAINER
============================================== */
:root {
	--blue: #1a6fc4;
	--blue-dark: #145ea8;
	--blue-light: #e8f2fd;
	--green: #4caf50;
	--green-light: #e8f5e9;
	--red: #e53935;
	--red-light: #fdecea;
	--text: #1a2332;
	--text-muted: #6b7a90;
	--border: #d9e2ef;
	--bg: #f4f7fb;
	--white: #ffffff;
	--card-shadow: 0 8px 40px rgba(26, 111, 196, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
	--radius: 12px;
	--input-radius: 8px;
}

body {
	overflow-x: hidden;
}

.cw-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==============================================
TOP BAR
============================================== */
.cw-topbar {
	display: flex;
	height: 36px;
}

.cw-topbar-blue {
	background: #1e88c9;
	flex: 1;
	display: flex;
	align-items: center;
	padding: 0 20px;
	justify-content: center;
}

.cw-topbar-blue span {
	color: #fff;
	font-size: 13px;
	font-weight: 400;
}

.cw-topbar-green {
	background: #8dc63f;
	min-width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	gap: 8px;
}

.cw-topbar-green a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 7px;
}

.cw-topbar-green a:hover {
	text-decoration: underline;
}

.cw-topbar-green svg {
	flex-shrink: 0;
}

/* ==============================================
MAIN HEADER
============================================== */
.cw-header {
	background: #fff;
	border-bottom: 1px solid #e8e8e8;
	padding: 12px 0;
}

.cw-header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
}

/* Logo */
.cw-logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.cw-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 10px;
}

.cw-logo img {
	height: 70px;
	width: auto;
}


/* Search */
.cw-search {
	flex: 1;
	max-width: 520px;
}

.cw-search form {
	display: flex;
	border: 1.5px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
}

.cw-search input[type="search"],
.cw-search input[type="text"] {
	flex: 1;
	border: none;
	outline: none;
	padding: 10px 14px;
	font-size: 14px;
	color: #444;
	background: #fff;
	font-family: 'Open Sans', Arial, sans-serif;
}

.cw-search input::placeholder {
	color: #aaa;
}

.cw-search button {
	background: #1e88c9;
	border: none;
	padding: 0 16px;
	cursor: pointer;
	display: flex;
	color: #fff;
	font-weight: 600;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.cw-search button:hover {
	background: #1670a8;
}

.cw-search button svg {
	stroke: #fff;
}

/* Header Actions */
.cw-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
}

.cw-action-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: #333;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
	background: #fff;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
	font-family: 'Open Sans', Arial, sans-serif;
}

.cw-action-btn:hover {
	border-color: #1e88c9;
	background: #f0f8ff;
	color: #1e88c9;
}

.cw-action-btn svg {
	stroke: #555;
	flex-shrink: 0;
}

.cw-action-btn:hover svg {
	stroke: #1e88c9;
}

.cw-cart-btn {
	background: #fff;
	border-color: #ddd;
}

/* Mobile Toggle */
.cw-mobile-toggle {
	display: none;
	background: none;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	padding: 6px 8px;
	margin-left: 8px;
}

.cw-mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #333;
	margin: 4px 0;
	transition: all 0.3s;
}

/* ==============================================
PRIMARY NAV
============================================== */
.cw-nav {
	background: #fff;
	border-bottom: 2px solid #eaeaea;
	position: relative;
	z-index: 9999;
}

.cw-nav-inner {
	display: flex;
	align-items: center;
}

.cw-primary-menu {
	display: flex;
	justify-content: space-evenly;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

.cw-primary-menu-mobile {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

.cw-primary-menu>li {
	position: static;
	padding: 14px 0;
	border-bottom: 3px solid transparent;
}

.cw-primary-menu>li:hover {
	border-bottom-color: #1e88c9;
}

.cw-primary-menu>li>a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s, border-color 0.2s;
	cursor: pointer;
	user-select: none;
}

.cw-primary-menu>li>a .cw-arr {
	font-size: 10px;
	color: #888;
	transition: transform 0.2s;
	line-height: 1;
}

.cw-primary-menu>li>a:hover {
	color: #1e88c9;
}

/* Active/open state */
.cw-primary-menu>li.cw-open>a {
	color: #1e88c9;
	border-bottom-color: #1e88c9;
}

.cw-primary-menu>li.cw-open>a .cw-arr {
	transform: rotate(180deg);
	color: #1e88c9;
}

/* ==============================================
MEGA MENU
Shown via .cw-open class (click-triggered),
NOT via CSS :hover — see JS below.
============================================== */
.cw-mega-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 3px solid #1e88c9;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	z-index: 10000;
	min-height: 300px;
}

/* KEY: open on .cw-open (click), not :hover */
.cw-primary-menu>li.cw-open .cw-mega-menu {
	display: flex;
	max-width: 1200px;
	margin: 0px auto;
}

/* Mega Col 1 — Category list */
.mega-col-cats {
	width: 400px;
	flex-shrink: 0;
	padding: 16px 0;
	border-right: 1px solid #e5e5e5;
	background: #fff;
}

.mega-cat-heading {
	padding: 8px 20px 12px;
	font-size: 18px;
	font-weight: 700;
	color: #222;
	border-bottom: 1px solid #eee;
	margin-bottom: 8px;
}

.mega-shopall-btn {
	display: inline-block;
	margin: 0 20px 12px;
	padding: 7px 18px;
	border: 2px solid #1e88c9;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	color: #1e88c9;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.mega-shopall-btn:hover {
	background: #1e88c9;
	color: #fff;
}

.mega-cat-list {
	list-style: none;
}

.mega-cat-list>li.mc-trigger>a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 20px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.mega-cat-list>li.mc-trigger>a:hover,
.mega-cat-list>li.mc-trigger.mc-active>a {
	background: #f0f8ff;
	color: #1e88c9;
}

.mega-cat-list>li.mc-trigger.mc-active>a {
	background: #e8f4fd;
}

.mega-thumb-wrap {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mega-thumb-wrap img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 4px;
	background: #f5f5f5;
}

.mega-thumb-placeholder {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	color: #aaa;
	text-align: center;
	line-height: 1.2;
}

.mega-cat-info-wrap {
	flex: 1;
	min-width: 0;
}

.mega-cat-name {
	display: block;
	line-height: 1.3;
}

.mega-cat-sub-label {
	font-size: 11px;
	color: #888;
	font-weight: 400;
}

.mega-chevron {
	margin-left: auto;
	color: #1e88c9;
	font-size: 16px;
	line-height: 1;
}

/* Mega Col 2 — Subcategory list */
.mega-col-subs {
	width: 350px;
	flex-shrink: 0;
	padding: 16px 0;
	border-right: 1px solid #e5e5e5;
}

.mega-sub-heading {
	padding: 8px 24px 14px;
	font-size: 16px;
	font-weight: 700;
	color: #1e88c9;
	border-bottom: 1px solid #eee;
	margin-bottom: 8px;
}

.mega-sub-list {
	list-style: none;
}

.mega-sub-list>li>a {
	display: block;
	padding: 9px 24px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	transition: color 0.15s, background 0.15s;
}

.mega-sub-list>li>a .mega-sub-note {
	display: block;
	font-size: 11px;
	font-weight: 400;
	color: #888;
}

.mega-sub-list>li>a:hover {
	color: #1e88c9;
	background: #f5fbff;
}

/* Mega Col 3 — Featured panel */
.mega-col-featured {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.mega-feat-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #888;
	margin-bottom: 10px;
}

.mega-feat-title {
	font-size: 17px;
	font-weight: 700;
	color: #222;
	text-align: center;
	margin-bottom: 6px;
	line-height: 1.3;
}

.mega-feat-desc {
	font-size: 13px;
	color: #666;
	text-align: center;
	margin-bottom: 18px;
}

.mega-feat-img-box {
	width: 100%;
	max-width: 220px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.mega-feat-img-box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 6px;
}

.mega-feat-no-img {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	border-radius: 6px;
	font-size: 13px;
	color: #aaa;
}

.mega-shopall-green {
	display: inline-block;
	padding: 10px 32px;
	background: #8dc63f;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.2s;
}

.mega-shopall-green:hover {
	background: #76a832;
}

/* ==============================================
MOBILE OVERLAY
============================================== */
.cw-mobile-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.5);
}

.cw-mobile-overlay.cw-open {
	display: block;
}

.cw-mobile-panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	background: #fff;
	overflow-y: auto;
	padding: 20px;
}

.cw-mobile-close {
	float: right;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	color: #333;
	line-height: 1;
}

.cw-mobile-footer {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid #eee;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cw-mobile-footer a {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
}

.cw-mobile-footer a:hover {
	color: #1e88c9;
}

.cw-mobile-nav-list {
	list-style: none;
	margin-top: 30px;
}

.cw-mobile-nav-list li a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
}

.cw-mobile-nav-list li a:hover {
	color: #1e88c9;
}

/* ==============================================
RESPONSIVE
============================================== */
@media (max-width: 1024px) {
	.cw-nav {
		display: none;
	}

	.cw-mobile-toggle {
		display: block;
	}

	.cw-search {
		max-width: 340px;
	}
}

@media (max-width: 768px) {
	.cw-topbar-blue span {
		font-size: 11px;
	}

	.cw-header-actions .cw-action-btn:not(.cw-cart-btn):not(.cw-wishlist-btn) {
		display: none;
	}
}

@media (max-width: 640px) {
	.cw-header-inner {
		flex-wrap: wrap;
	}

	.cw-search {
		order: 3;
		max-width: 100%;
		width: 100%;
	}

	.cw-logo img {
		height: 50px;
	}

	.cw-logo-text .cw-ln1,
	.cw-logo-text .cw-ln2 {
		font-size: 17px;
	}
}


/* ═══════════════════════════════════════════════
HERO
═══════════════════════════════════════════════ */
.hero {
	background: var(--clr-dark);
	position: relative;
	overflow: hidden;
	padding: 80px 0 90px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0057A8 0%, #1A1F2E 60%, #003E7E 100%);
}

.hero-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 32px 32px;
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 60px;
	align-items: center;
}

.hero-badge {
	margin-bottom: 20px;
}

.hero-title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 20px;
	white-space: pre-line;
}

.hero-title span {
	color: #4ADE80;
}

.hero-subtitle {
	color: rgba(255, 255, 255, .75);
	font-size: 1.05rem;
	margin-bottom: 32px;
	max-width: 520px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.btn-lg {
	padding: 14px 32px;
	font-size: 1rem;
}

.btn-outline-white {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .4);
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	transition: all var(--transition);
	cursor: pointer;
	gap: 8px;
}

.btn-outline-white:hover {
	border-color: #fff;
	color: #fff;
	background: rgba(255, 255, 255, .1);
}

.hero-stats {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}

.hero-stat {
	text-align: left;
}

.hero-stat strong {
	display: block;
	font-size: 1.6rem;
	font-weight: 800;
	color: #fff;
	font-family: var(--font-head);
}

.hero-stat span {
	font-size: .8rem;
	color: rgba(255, 255, 255, .6);
	text-transform: uppercase;
	letter-spacing: .06em;
}

/* Hero right column cards */
.hero-image-col {
	position: relative;
	height: 380px;
}

.hero-card {
	position: absolute;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: var(--radius-lg);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	min-width: 200px;
}

.hero-card strong {
	display: block;
	font-size: .95rem;
	font-weight: 700;
}

.hero-card span {
	font-size: .8rem;
	color: rgba(255, 255, 255, .65);
}

.hcard-icon {
	font-size: 2rem;
}

.hero-card-1 {
	top: 20px;
	left: 0;
	animation: floatCard 3s ease-in-out infinite;
}

.hero-card-2 {
	top: 130px;
	right: 20px;
	animation: floatCard 3s ease-in-out infinite .8s;
}

.hero-card-3 {
	bottom: 60px;
	left: 30px;
	animation: floatCard 3s ease-in-out infinite 1.5s;
}

.hero-circle {
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--clr-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 32px rgba(0, 168, 79, .4);
}

.hero-circle-inner {
	text-align: center;
	color: #fff;
}

.hero-circle-num {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	font-family: var(--font-head);
}

.hero-circle-label {
	font-size: .65rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	opacity: .8;
}

@keyframes floatCard {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

/* ═══════════════════════════════════════════════
USP BAR
═══════════════════════════════════════════════ */
.usp-bar {
	background: var(--clr-white);
	border-bottom: 1px solid var(--clr-border);
	padding: 0;
}

.usp-bar-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.usp-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	flex: 1;
	border-right: 1px solid var(--clr-border);
	min-width: 180px;
}

.usp-item:last-child {
	border-right: none;
}

.usp-icon {
	font-size: 1.6rem;
}

.usp-item strong {
	display: block;
	font-size: .9rem;
	font-weight: 700;
	color: var(--clr-dark);
}

.usp-item span {
	font-size: .78rem;
	color: var(--clr-muted);
}

/* ═══════════════════════════════════════════════
SECTIONS
═══════════════════════════════════════════════ */
.section-categories,
.section-featured,
.section-brands,
.section-why {
	padding: 60px 0;
}

.section-categories {
	background: var(--clr-bg);
}

.section-featured {
	background: var(--clr-white);
}

.section-brands {
	background: var(--clr-primary-lt);
	padding: 32px 0;
}

.section-why {
	background: var(--clr-bg);
}

.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 32px;
	gap: 16px;
}

.section-link {
	color: var(--clr-primary);
	font-weight: 600;
	font-size: .9rem;
	white-space: nowrap;
}

.section-link:hover {
	color: var(--clr-primary-dk);
}

/* ═══════════════════════════════════════════════
CATEGORY CARDS
═══════════════════════════════════════════════ */
.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.cat-card {
	background: var(--cat-bg, var(--clr-white));
	border: 1.5px solid var(--clr-border);
	border-radius: var(--radius-lg);
	padding: 24px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	text-decoration: none;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.cat-card:hover {
	border-color: var(--clr-primary);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.cat-card-icon {
	font-size: 2.6rem;
	flex-shrink: 0;
}

.cat-card-body {
	flex: 1;
}

.cat-card-body h3 {
	font-size: 1.1rem;
	color: var(--clr-dark);
	margin-bottom: 4px;
}

.cat-count {
	font-size: .8rem;
	color: var(--clr-muted);
	margin-bottom: 10px;
}

.cat-subcats {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.cat-subcats li {
	font-size: .78rem;
	color: var(--clr-mid);
	padding-left: 10px;
	position: relative;
}

.cat-subcats li::before {
	content: '›';
	position: absolute;
	left: 0;
	color: var(--clr-primary);
}

.cat-subcats li.more {
	color: var(--clr-primary);
	font-weight: 600;
}

.cat-card-arrow {
	font-size: 1.2rem;
	color: var(--clr-primary);
	opacity: 0;
	transition: all var(--transition);
	margin-left: auto;
	align-self: center;
}

.cat-card:hover .cat-card-arrow {
	opacity: 1;
	transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
PRODUCT GRID & CARDS
SHOP ARCHIVE — COMPLETE STYLES
═══════════════════════════════════════════════════════════ */



/* ═══════════════════════════════════════════════
SINGLE PRODUCT PAGE
═══════════════════════════════════════════════ */
.product-page {
	padding: 32px 0 80px;
	background-color: #fff;
}

.product-meta-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.product-cat-link {
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--clr-primary);
	font-weight: 700;
	background: var(--clr-primary-lt);
	padding: 4px 12px;
	border-radius: 99px;
}

/* ═══════════════════════════════════════════════
FOOTER
═══════════════════════════════════════════════ */
.site-footer {
	background: var(--clr-dark);
	color: rgba(255, 255, 255, .8);
	margin-top: auto;
}

.footer-top {
	padding: 60px 0 40px;
}

.footer-top-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: 40px;
}

.footer-logo {
	font-family: var(--font-head);
	font-size: 1.6rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 14px;
}

.footer-logo strong {
	color: var(--clr-accent);
}

.footer-brand>p {
	font-size: .88rem;
	line-height: 1.7;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, .1);
	border-radius: var(--radius-md);
	color: rgba(255, 255, 255, .7);
	transition: all var(--transition);
}

.footer-social a:hover {
	background: var(--clr-primary);
	color: #fff;
}

.footer-col h5 {
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 16px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
}

.footer-col ul li a {
	font-size: .87rem;
	color: rgba(255, 255, 255, .65);
	transition: color var(--transition);
}

.footer-col ul li a:hover {
	color: #fff;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .87rem;
	margin-bottom: 10px;
}

.footer-contact-list a {
	color: rgba(255, 255, 255, .65);
}

.footer-contact-list a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 18px 0;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: .82rem;
}

.footer-bottom p {
	color: rgba(255, 255, 255, .5);
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	gap: 16px;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, .5);
}

.footer-bottom-links a:hover {
	color: #fff;
}

.payment-icons {
	display: flex;
	gap: 6px;
}

.pay-icon {
	background: rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .7);
	font-size: .65rem;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 4px;
	letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-image-col {
		display: none;
	}

	.why-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.header-inner {
		grid-template-columns: auto auto;
	}

	.header-search {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.site-nav {
		display: none;
	}

	.shop-layout {
		grid-template-columns: 1fr;
	}

	.shop-sidebar {
		position: static;
	}

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

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.usp-bar-inner {
		gap: 0;
	}

	.usp-item {
		min-width: 50%;
		border-right: none;
		border-bottom: 1px solid var(--clr-border);
	}
}

@media (max-width: 600px) {
	.category-grid {
		grid-template-columns: 1fr;
	}

	.products-grid {
		grid-template-columns: 1fr 1fr;
	}

	.hero-stats {
		gap: 20px;
	}

	.hero-actions {
		flex-direction: column;
	}

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

	.top-bar-right {
		display: none;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

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


/* ── Custom Login Page Layout ── */
.cw-login-wrapper {
	display: flex;
	align-items: stretch;
	gap: 0;
	min-height: 480px;
	font-family: 'Segoe UI', Arial, sans-serif;
}

/* ── LEFT COLUMN ── */
.cw-login-left {
	flex: 0 0 55%;
	max-width: 55%;
	padding: 0 48px 0 0;
}

/* Section headings */
.cw-login-left h2 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 6px;
	padding-bottom: 8px;
	border-bottom: 3px solid #1e73be;
	display: inline-block;
}

/* Input rows */
.cw-login-left .woocommerce-form-row {
	margin-bottom: 14px;
}

.cw-login-left label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.cw-login-left label .required {
	color: #e2001a;
	margin-left: 2px;
}

/* Password wrapper for the eye icon */
.cw-pw-wrap {
	position: relative;
}

.cw-pw-wrap .woocommerce-Input {
	padding-right: 42px;
}

.cw-pw-toggle {
	position: absolute;
	right: 12px;
	top: 30%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #666;
	display: flex;
	align-items: center;
}

.cw-pw-toggle svg {
	width: 20px;
	height: 20px;
}

/* Text inputs */
.cw-login-left .woocommerce-Input--text {
	width: 100%;
	box-sizing: border-box;
	border: 1.5px solid #d0d0d0;
	border-radius: 4px;
	padding: 10px 14px;
	font-size: 0.9rem;
	color: #333;
	background: #fff;
	transition: border-color 0.2s;
	outline: none;
}

.cw-login-left .woocommerce-Input--text::placeholder {
	color: #aaa;
}

.cw-login-left .woocommerce-Input--text:focus {
	border-color: #1e73be;
	box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.12);
}

/* Remember me row */
.cw-login-left .form-row {
	margin-bottom: 14px;
}

.cw-rememberme-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
}

.cw-rememberme-row input[type="checkbox"] {
	width: 15px;
	height: 15px;
	accent-color: #1e73be;
	cursor: pointer;
}

.cw-rememberme-row span {
	font-size: 0.875rem;
	color: #444;
	font-weight: 500;
}

/* Buttons */
.cw-btn {
	display: inline-block;
	padding: 11px 38px;
	font-size: 0.95rem;
	font-weight: 700;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	letter-spacing: 0.01em;
	transition: background 0.2s, transform 0.1s;
}

.cw-btn-primary {
	background: #1e73be;
	color: #fff;
}

.cw-btn-primary:hover {
	background: #155d9a;
	transform: translateY(-1px);
}

/* Lost password */
.cw-lost-pw {
	display: block;
	margin-top: 12px;
	font-size: 0.875rem;
	color: #1e73be;
	text-decoration: none;
}

.cw-lost-pw:hover {
	text-decoration: underline;
}

/* Divider between login & new-customer */
.cw-divider {
	border: none;
	border-top: 1px solid #e8e8e8;
	margin: 28px 0;
}

/* New Customer section */
.cw-new-customer-desc {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.6;
	margin: 10px 0 18px;
}

/* ── RIGHT COLUMN – banner image ── */
.cw-login-right {
	flex: 0 0 45%;
	max-width: 45%;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}

.cw-login-right img {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
	display: block;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.cw-login-wrapper {
		flex-direction: column;
	}

	.cw-login-left,
	.cw-login-right {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}

	.cw-login-right {
		height: 220px;
		margin-top: 24px;
	}
}

/* register form style */
.register-card {
	background: var(--white);
	border-radius: 18px;
	box-shadow: var(--card-shadow);
	width: 100%;
	max-width: 780px;
	padding: 44px 48px 48px;
	position: relative;
	overflow: hidden;
	animation: cardIn .5s cubic-bezier(.22, 1, .36, 1) both;
	margin: 25px auto;
}

@keyframes cardIn {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

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

.register-card::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 140px;
	height: 140px;
	background: radial-gradient(circle, rgba(76, 175, 80, .13) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.register-card::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 110px;
	height: 110px;
	background: radial-gradient(circle, rgba(26, 111, 196, .10) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.section-title {
	font-family: 'Nunito', sans-serif;
	color: var(--blue);
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-title .dot {
	width: 8px;
	height: 8px;
	background: var(--green);
	border-radius: 50%;
	display: inline-block;
}

.step {
	display: none;
	animation: stepIn .4s cubic-bezier(.22, 1, .36, 1) both;
}

.step.active {
	display: block;
}

@keyframes stepIn {
	from {
		opacity: 0;
		transform: translateX(24px);
	}

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

.progress-bar {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 32px;
}

.pb-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	transition: color .3s;
}

.pb-item.done {
	color: var(--green);
}

.pb-item.active {
	color: var(--blue);
}

.pb-num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	transition: background .3s, color .3s;
	color: var(--text-muted);
}

.pb-item.done .pb-num {
	background: var(--green);
	color: #fff;
}

.pb-item.active .pb-num {
	background: var(--blue);
	color: #fff;
}

.pb-line {
	flex: 1;
	height: 2px;
	background: var(--border);
	margin: 0 8px;
	min-width: 24px;
	transition: background .3s;
}

.pb-line.done {
	background: var(--green);
}

.field-group {
	margin-bottom: 20px;
}

.field-row {
	display: grid;
	gap: 16px;
	margin-bottom: 20px;
}

.field-row.cols-2 {
	grid-template-columns: 1fr 1fr;
}

.field-row.cols-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 7px;
}

label .req {
	color: var(--red);
	margin-left: 2px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
select {
	width: 100%;
	padding: 11px 16px;
	border: 1.5px solid var(--border);
	border-radius: var(--input-radius);
	font-size: 14px;
	font-family: inherit;
	color: var(--text);
	background: #fafbfd;
	transition: border-color .2s, box-shadow .2s, background .2s;
	outline: none;
}

input:focus,
select:focus {
	border-color: var(--blue);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(26, 111, 196, .12);
}

input.valid {
	border-color: var(--green);
}

input.error {
	border-color: var(--red);
	background: var(--red-light);
}

.field-error {
	color: var(--red);
	font-size: 12px;
	margin-top: 5px;
	display: none;
}

.field-error.show {
	display: block;
	animation: fadeIn .2s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

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

.email-row {
	display: flex;
	gap: 12px;
	align-items: flex-end;
}

.email-row .field-group {
	flex: 1;
	margin-bottom: 0;
}

.email-verified-badge {
	display: none;
	align-items: center;
	gap: 6px;
	color: var(--green);
	font-size: 13px;
	font-weight: 700;
	padding: 11px 14px;
	background: var(--green-light);
	border-radius: var(--input-radius);
	white-space: nowrap;
	animation: popIn .3s cubic-bezier(.34, 1.56, .64, 1);
}

.email-verified-badge.show {
	display: flex;
}

@keyframes popIn {
	from {
		opacity: 0;
		transform: scale(.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.otp-container {
	display: none;
	margin-top: 18px;
	animation: stepIn .35s cubic-bezier(.22, 1, .36, 1) both;
}

.otp-container.show {
	display: block;
}

.otp-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 10px;
}

.otp-sub {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 14px;
}

.otp-inputs {
	display: flex;
	gap: 10px;
}

.otp-inputs input {
	width: 48px;
	height: 52px;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	border-radius: 10px;
	border: 2px solid var(--border);
	padding: 0;
	caret-color: var(--blue);
}

.otp-inputs input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(26, 111, 196, .15);
}

.otp-inputs input.filled {
	border-color: var(--blue);
	background: var(--blue-light);
	color: var(--blue);
}

.otp-inputs input.verified {
	border-color: var(--green);
	background: var(--green-light);
	color: var(--green);
}

.otp-inputs input.otp-error {
	border-color: var(--red);
	background: var(--red-light);
	animation: shake .4s;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	20% {
		transform: translateX(-5px);
	}

	40% {
		transform: translateX(5px);
	}

	60% {
		transform: translateX(-4px);
	}

	80% {
		transform: translateX(4px);
	}
}

.otp-actions {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.resend-btn {
	background: none;
	border: none;
	color: var(--blue);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
}

.resend-btn:disabled {
	color: var(--text-muted);
	text-decoration: none;
	cursor: not-allowed;
}

.pw-wrap {
	position: relative;
}

.pw-wrap input {
	padding-right: 44px;
}

.pw-toggle {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--blue);
	border: none;
	cursor: pointer;
	color: #fff;
	border-radius: 6px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.pw-strength {
	height: 4px;
	border-radius: 4px;
	margin-top: 7px;
	background: var(--border);
	overflow: hidden;
}

.pw-strength-bar {
	height: 100%;
	border-radius: 4px;
	width: 0;
	transition: width .4s, background .4s;
}

.user-type-group {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.user-type-card {
	flex: 1;
	border: 2px solid var(--border);
	border-radius: 12px;
	padding: 16px 20px;
	cursor: pointer;
	transition: all .25s;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fafbfd;
}

.user-type-card:hover {
	border-color: var(--blue);
	background: var(--blue-light);
}

.user-type-card.selected {
	border-color: var(--blue);
	background: var(--blue-light);
	box-shadow: 0 0 0 3px rgba(26, 111, 196, .12);
}

.user-type-card input[type=radio] {
	display: none;
}

.utc-icon {
	font-size: 26px;
	line-height: 1;
}

.utc-label {
	font-weight: 700;
	font-size: 15px;
	color: var(--text);
}

.utc-sub {
	font-size: 12px;
	color: var(--text-muted);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	transition: transform .15s, box-shadow .15s, background .2s;
	position: relative;
	overflow: hidden;
}

.btn:active {
	transform: scale(.97);
}

.btn-primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 4px 14px rgba(26, 111, 196, .35);
}

.btn-primary:hover {
	background: var(--blue-dark);
	box-shadow: 0 6px 20px rgba(26, 111, 196, .45);
}

.btn-success {
	background: var(--green);
	color: #fff;
	box-shadow: 0 4px 14px rgba(76, 175, 80, .35);
}

.btn-success:hover {
	background: #43a047;
	box-shadow: 0 6px 20px rgba(76, 175, 80, .45);
}

.btn-sm {
	padding: 10px 18px;
	font-size: 13px;
}

.btn:disabled {
	opacity: .6;
	cursor: not-allowed;
	transform: none;
}

.btn::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, .3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width .4s, height .4s, opacity .4s;
	opacity: 0;
}

.btn:active::after {
	width: 200px;
	height: 200px;
	opacity: 1;
	transition: 0s;
}

.spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, .4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin .6s linear infinite;
	display: none;
}

.btn.loading .spinner {
	display: block;
}

.btn.loading .btn-text {
	opacity: .6;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.divider {
	border: none;
	border-top: 1.5px solid var(--border);
	margin: 28px 0;
}

.success-screen {
	display: none;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 0;
	animation: stepIn .4s cubic-bezier(.22, 1, .36, 1) both;
}

.success-screen.show {
	display: flex;
}

.success-icon {
	width: 72px;
	height: 72px;
	background: var(--green-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	margin-bottom: 20px;
	animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) .1s both;
}

.success-screen h2 {
	font-family: 'Nunito', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 10px;
}

.success-screen p {
	color: var(--text-muted);
	font-size: 15px;
}

.toast {
	position: fixed;
	bottom: 28px;
	right: 28px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	padding: 16px 22px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	transform: translateY(80px);
	opacity: 0;
	transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .35s;
	z-index: 9999;
	min-width: 220px;
	border-left: 4px solid var(--blue);
}

.toast.show {
	transform: translateY(0);
	opacity: 1;
}

.toast.success {
	border-left-color: var(--green);
}

.toast.error {
	border-left-color: var(--red);
}

.toast-icon {
	font-size: 20px;
}

.form-footer {
	margin-top: 28px;
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

.form-footer a {
	color: var(--blue);
	text-decoration: underline;
}

@media (max-width: 620px) {
	.register-card {
		padding: 28px 18px 32px;
	}

	.field-row.cols-2,
	.field-row.cols-3 {
		grid-template-columns: 1fr;
	}

	.email-row {
		flex-direction: column;
		align-items: stretch;
	}

	.user-type-group {
		flex-direction: column;
	}
}

/* user dashboard page  */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Uses your existing root variables ── */
/* --blue, --blue-dark, --blue-light, --green, --red, --text, --text-muted,
--border, --bg, --white, --card-shadow, --radius are already defined globally */

/* ── Local aliases & additions only ── */
.qr-dashboard {
	--qr-shadow-sm: 0 1px 4px rgba(26, 111, 196, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
	--qr-shadow-md: var(--card-shadow);
	--qr-teal: #0ea5a0;
	--qr-teal-light: #e6f7f7;
	--qr-orange: #e07b39;
	--qr-orange-light: #fdf0e8;
	--qr-purple: #7c5cbf;
	--qr-purple-light: #f0ebfa;
	min-width: 1200px;
}

/* ── Page reset ── */
.woocommerce-MyAccount-content {
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: var(--bg);
	min-height: 80vh;
}

/* ── Dashboard wrapper ── */
.qr-dashboard {
	padding: 0 0 48px;
	animation: dashFadeIn 0.5s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes dashFadeIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

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

/* ════════════════════════════════════════
HERO — clean, professional, understated
════════════════════════════════════════ */
.qr-hero {
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	padding: 28px 32px;
	margin-bottom: 24px;
	box-shadow: var(--qr-shadow-sm);
	position: relative;
	overflow: hidden;
}

/* subtle left accent stripe */
.qr-hero::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--blue);
	border-radius: var(--radius) 0 0 var(--radius);
}

.qr-hero-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

/* left: avatar + greeting */
.qr-hero-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.qr-hero-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--blue-light);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.qr-hero-text h2 {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 3px;
	line-height: 1.3;
}

.qr-hero-text h2 strong {
	color: var(--blue);
}

.qr-hero-text .qr-hero-email {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin: 0;
}

/* right: credit badge + logout */
.qr-hero-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.qr-credit-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--blue-light);
	border: 1px solid rgba(26, 111, 196, 0.15);
	border-radius: 8px;
	padding: 8px 14px;
	color: var(--blue);
	font-size: 0.82rem;
	font-weight: 500;
	white-space: nowrap;
	transition: background 0.2s;
}

.qr-credit-badge:hover {
	background: #d6e8f9;
}

.qr-credit-badge svg {
	flex-shrink: 0;
	opacity: 0.75;
}

.qr-credit-badge .badge-amount {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--blue-dark);
}

/* logout button */
.qr-logout-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--text-muted);
	font-size: 0.82rem;
	font-weight: 500;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
	white-space: nowrap;
}

.qr-logout-btn svg {
	transition: transform 0.2s;
}

.qr-logout-btn:hover {
	border-color: #fca5a5;
	color: var(--red);
	background: #fff8f8;
	box-shadow: 0 1px 6px rgba(229, 57, 53, 0.10);
}

.qr-logout-btn:hover svg {
	transform: translateX(2px);
}

/* ── Cards grid ── */
.qr-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

@media (max-width: 680px) {
	.qr-cards-grid {
		grid-template-columns: 1fr;
	}

	.qr-hero {
		padding: 20px 20px 20px 26px;
	}

	.qr-hero-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.qr-hero-right {
		width: 100%;
	}
}

/* ── Individual card ── */
.qr-card {
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	padding: 22px 22px 18px;
	box-shadow: var(--qr-shadow-sm);
	transition: transform 0.32s cubic-bezier(.34, 1.56, .64, 1),
		box-shadow 0.32s ease,
		border-color 0.25s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	animation: cardReveal 0.5s cubic-bezier(.4, 0, .2, 1) both;
}

.qr-card:nth-child(1) {
	animation-delay: 0.10s;
}

.qr-card:nth-child(2) {
	animation-delay: 0.18s;
}

.qr-card:nth-child(3) {
	animation-delay: 0.26s;
}

.qr-card:nth-child(4) {
	animation-delay: 0.34s;
}

@keyframes cardReveal {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.97);
	}

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

.qr-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: var(--radius) var(--radius) 0 0;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.qr-card:hover::before {
	transform: scaleX(1);
}

.qr-card:hover {
	transform: translateY(-4px) scale(1.005);
	box-shadow: var(--card-shadow);
	border-color: rgba(26, 111, 196, 0.3);
}

/* card color accent variants */
.qr-card[data-color="blue"]::before {
	background: var(--blue);
}

.qr-card[data-color="teal"]::before {
	background: var(--qr-teal);
}

.qr-card[data-color="orange"]::before {
	background: var(--qr-orange);
}

.qr-card[data-color="purple"]::before {
	background: var(--qr-purple);
}

.qr-card[data-color="blue"] {
	--icon-bg: var(--blue-light);
	--icon-color: var(--blue);
}

.qr-card[data-color="teal"] {
	--icon-bg: var(--qr-teal-light);
	--icon-color: var(--qr-teal);
}

.qr-card[data-color="orange"] {
	--icon-bg: var(--qr-orange-light);
	--icon-color: var(--qr-orange);
}

.qr-card[data-color="purple"] {
	--icon-bg: var(--qr-purple-light);
	--icon-color: var(--qr-purple);
}

/* ── Card header ── */
.qr-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border);
}

.qr-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--icon-bg, #e6eeff);
	color: var(--icon-color, var(--primary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1),
		background 0.3s;
}

.qr-card:hover .qr-card-icon {
	transform: scale(1.15) rotate(-4deg);
}

.qr-card-title {
	font-family: 'Sora', sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text);
	margin: 0;
}

/* ── Card list items ── */
.qr-card-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.qr-card-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.4;
	transition: color 0.2s, transform 0.2s;
}

.qr-card:hover .qr-card-list li {
	color: var(--text);
}

.qr-card-list li:nth-child(1) {
	transition-delay: 0.00s;
}

.qr-card-list li:nth-child(2) {
	transition-delay: 0.04s;
}

.qr-card-list li:nth-child(3) {
	transition-delay: 0.08s;
}

.qr-card-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--icon-color, var(--primary));
	flex-shrink: 0;
	transition: transform 0.25s cubic-bezier(.34, 1.56, .64, 1);
}

.qr-card:hover .qr-card-list li::before {
	transform: scale(1.6);
}

/* ── Card CTA link ── */
.qr-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--icon-color, var(--primary));
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: gap 0.2s;
}

.qr-card-cta:hover {
	gap: 10px;
}

.qr-card-cta svg {
	transition: transform 0.2s;
}

.qr-card-cta:hover svg {
	transform: translateX(3px);
}

/* ── Ripple effect on click ── */
.qr-card .ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(26, 111, 196, 0.08);
	transform: scale(0);
	animation: rippleAnim 0.6s linear;
	pointer-events: none;
}

@keyframes rippleAnim {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
	z-index: 10;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.slide.active {
	opacity: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

/* Content */
.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 5;
}

.title {
	background: #2f6fb6;
	color: #fff;
	padding: 10px 25px;
	border-radius: 6px;
	margin-bottom: 15px;
	display: inline-block;
}

.desc {
	background: #7bc043;
	color: #fff;
	padding: 10px 25px;
	border-radius: 4px;
	margin-bottom: 20px;
}


/* Arrows */
.prev,
.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #7bc043;
	color: #fff;
	font-size: 22px;
	padding: 12px 16px;
	cursor: pointer;
	border-radius: 50%;
	z-index: 9999;
}

.prev {
	left: 15px;
}

.next {
	right: 15px;
}

.footer {
	background: #f3f3f3;
	font-family: 'Open Sans', sans-serif;
}

.footer-container {
	max-width: 1200px;
	margin: auto;
	padding: 40px 15px 0;
}

/* Logo */
.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	width: 170px;
}

/* Grid */
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	/* reduced gap */
}

/* Column */
.footer-col h4 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 6px;
}

.footer-col ul li a {
	text-decoration: none;
	color: #333;
	font-size: 13.5px;
	transition: 0.25s;
}

/* Hover */
.footer-col ul li a:hover {
	color: #7dbb2f;
}

.highlight {
	color: #7dbb2f;
}

/* Contact */
.footer-col p {
	font-size: 13.5px;
	margin-bottom: 8px;
}

.community {
	font-weight: 600;
	margin-top: 10px;
}

/* Social Icons (FIXED) */
.social {
	display: flex;
	gap: 8px;
	margin-top: 5px;
}

.social a {
	width: 34px;
	height: 34px;
	background: #444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.25s;
}

.social a i {
	color: #fff;
	/* WHITE ICON */
	font-size: 14px;
}

.social a:hover {
	background: #7dbb2f;
}

/* Newsletter */
.newsletter input {
	width: 100%;
	padding: 8px;
	margin-bottom: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 13px;
}

.newsletter button {
	background: #444;
	color: #fff;
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: 0.25s;
}

.newsletter button:hover {
	background: #7dbb2f;
}

/* Bottom */
.footer-bottom {
	background: #000;
	color: #fff;
	text-align: center;
	padding: 12px;
	margin-top: 30px;
	font-size: 12.5px;
}

.feature-bar {
	background: #efefef;
	padding: 20px 0;
}

.feature-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* Each Box */
.feature-box {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 8px 15px;
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	background: #f7f7f7;
	transition: 0.25s;
	flex: 0 0 100%;
	margin-bottom: 10px;
	max-width: 100%;
}

/* Hover effect (subtle like design) */
.feature-box:hover {
	background: #ffffff;
	border-color: #cfcfcf;
}

/* Icon */
.feature-box img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

/* Text */
.feature-box h4 {
	font-size: 13px;
	font-weight: 600;
	margin: 0;
	color: #333;
}

.feature-box p {
	font-size: 11px;
	margin: 3px 0 0;
	color: #777;
}

.shop-section {
	background: #f5f5f5;
	padding: 50px 0;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
}

.shop-title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #2d3748;
}

.shop-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.shop-card {
	background: #fff;
	border-radius: 12px;
	padding: 18px 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	width: 100%;
	border: 1px solid transparent;
	/* important */
	transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.shop-card:hover {
	box-shadow: 0 0 8px #277ccd;
	transform: translateY(-8px);
}

.shop-card:hover .img-box img {
	transform: scale(1.08);
}

/* Image */
.img-box {
	margin-bottom: 12px;
}

.img-box img {
	width: 100%;
	height: 130px;
	object-fit: contain;
}

/* Text */
.shop-card p {
	font-size: 14.5px;
	font-weight: 500;
	color: #333;
	margin: 0;
}

.about-section {
	background: #fff;
	padding: 50px 20px;
	font-family: 'Open Sans', sans-serif;
}

.about-container {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

.about-title {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #222;
}

.about-line {
	width: 80px;
	height: 2px;
	background: #2b6cb0;
	margin: 0 auto 25px;
}

.about-text {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	text-align: justify;
}

/* hidden content */
.more-text {
	display: none;
}

/* button */
.read-more-btn {
	font-weight: 600;
	cursor: pointer;
	margin-left: 5px;
	color: #333;
}

.read-more-btn:hover {
	color: #2b6cb0;
}

.avail-status {
	font-size: 13px;
	font-weight: 500;
	display: inline-block;
	min-height: 18px;
	margin-top: 4px;
	transition: color .2s;
}

.avail-status.checking {
	color: #888;
}

.avail-status.ok {
	color: #4caf50;
}

.avail-status.err {
	color: #e53935;
}

/* ════════════════════════════════════════
Custom Homepage Category Grid 
════════════════════════════════════════ */
.product-catalog {
	padding: 23px 0 60px 0;
	background-color: #fff;
}

.product-catalog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.product-catalog__header {
	text-align: center;
	margin-bottom: 3rem;
}

.product-catalog__title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
}

.product-catalog__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
	.product-catalog__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.footer-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.shop-card {
		width: calc(50% - 20px*5/4);
	}
}

@media(min-width:992px) {
	.shop-card {
		width: calc(25% - 20px*5/4);
	}
}

@media (min-width: 1024px) {
	.product-catalog__grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

.product-catalog .product-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	padding: 1rem;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	background-color: #fff;
	transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.product-catalog .product-card:hover {
	box-shadow: 0 0 8px #277ccd;
	transform: translateY(-3px);
}

.product-catalog .product-card__image-wrapper {
	width: 100%;
	max-width: 150px;
	margin-bottom: 1rem;
	background-color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #f0f0f0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.product-catalog .product-card:hover .product-card__image-wrapper {
	border-color: #277ccd;
	box-shadow: 0 0 12px rgba(39, 124, 205, 0.2);
}

.product-catalog .product-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.2s ease-out;
}

.product-catalog .product-card:hover .product-card__image {
	transform: scale(1.1);
}

.product-catalog .product-card__name {
	font-size: 0.9rem;
	font-weight: 500;
	color: #333;
	line-height: 1.3;
}

@media(min-width: 992px) {
	.feature-box {
		-ms-flex: 0 0 calc(25% - 20px*5/4);
		flex: 0 0 calc(25% - 20px*5/4);
		max-width: calc(25% - 20px*5/4)%;
		width: 100%
	}
}

/* ════════════════════════════════════════
Brand Carousel Styling
════════════════════════════════════════ */
.brand-carousel-section {
	background-color: #fff;
	position: relative;
}

.logo-carousel-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 40px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.logo-carousel {
	display: flex;
	transition: transform 0.5s ease;
}

.logo-item {
	flex: 0 0 calc(100% / 6);
	box-sizing: border-box;
	padding: 0;
}

.logo-carousel-container img {
	width: 100%;
	height: auto;
}

.logo-carousel-container .swiper-button-prev,
.logo-carousel-container .swiper-button-next {
	top: 70px;
}

.logo-carousel-container .swiper-wrapper {
	align-items: center;
}

.brand-carousel-section .swiper-button-prev:after,
.brand-carousel-section .swiper-button-next:after {
	display: none !important;
}

.brand-carousel-section .swiper-button-prev:hover,
.brand-carousel-section .swiper-button-next:hover {
	transform: translateY(-50%) scale(1.1) !important;
}

.brand-carousel-section .swiper-nav-icon {
	width: 20px !important;
	height: 20px !important;
	stroke: white;
	fill: none;
	stroke-width: 3px;
}

.brand-carousel-section .swiper-button-prev,
.brand-carousel-section .swiper-button-next {
	position: absolute;
	top: 60% !important;
	transform: translateY(-50%) !important;
	z-index: 10;
	width: 44px !important;
	height: 44px !important;
	cursor: pointer;
	transition: all 0.2s ease;
	outline: none;
	border: none;
	display: flex !important;
	align-items: center;
	justify-content: center;
	visibility: visible !important;
}

.brand-carousel-section .swiper-button-prev {
	left: 70px !important;
}

.brand-carousel-section .swiper-button-next {
	right: 70px !important;
}

.swiper-container-logo .swiper-wrapper {
	transition-timing-function: linear !important;
	margin: 0 auto;
}

@media(min-width:992px) {

	.logo-carousel-container .swiper-button-prev,
	.logo-carousel-container .swiper-button-next {
		top: 110px;
	}
}

.woocommerce-breadcrumb {
	font-size: .85rem;
	color: #000;
	margin-bottom: 24px;
	padding: 12px 0;
	border-bottom: 1px solid var(--clr-border);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 600;
}

.woocommerce-breadcrumb a {
	color: var(--clr-muted) !important;
	text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
	color: #0057A8 !important;
}

/* ==========================================================================
1. MAIN PRODUCT INFO
========================================================================== */


.product-view__content {
	display: flex;
	gap: 30px;
	padding-top: 20px;
}

.product-view__media {
	flex: 1 1 40%;
	display: flex;
	gap: 10px;
}

.product-view__thumbnails {
	width: 70px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.product-view__thumbnails-img {
	width: 100%;
	border: 2px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	opacity: 0.7;
}

.product-view__thumbnails-img--active {
	border-color: #277ccd;
	opacity: 1;
}

.product-view__main-image-container {
	flex-grow: 1;
	position: relative;
	border: 1px solid #ddd;
}

.product-view__main-image {
	width: 100%;
	height: 340px;
	object-fit: contain;
}

.stock-check-icon {
	fill: none;
	stroke: currentColor;
	stroke-width: 4px;
	align-items: center;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 17px;
	justify-content: center;
	margin-right: 3px;
	padding: 3px;
	width: 17px;
}

.product-view__info {
	flex: 1 1 60%;
	padding-left: 20px;
	font-family: Poppins, sans-serif;
}

.product-view__name {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	font-family: Poppins, sans-serif;
}

.product-view__price {
	font-size: 32px;
	font-weight: 700;
	color: #181818;
}

.product-view__price del {
	color: #e11d48;
}

.product-view__stock {
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.product-view__stock.in-stock {
	color: #329128;
}

.product-view__stock.out-stock {
	color: #16a34a;
}

.product-view__favourite-link:hover {
	color: #e11d48;
}

.product-view__stock.in-stock .stock-check-icon {
	background-color: #329128;
}

.product-view__stock.out-stock .stock-check-icon {
	background-color: #16a34a;
}

/* ==========================================================================
2. TABS & SPECIFICATIONS
========================================================================== */
.product-tabs {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-top: 40px;
	overflow: hidden;
}

.tab-buttons {
	display: flex;
	background: #f7fafc;
	border-bottom: 1px solid #e2e8f0;
	justify-content: center;
}

.tab-btn {
	padding: 12px 24px;
	font-size: 16px;
	border: none;
	background: none;
	cursor: pointer;
	color: #277ccd;
	font-weight: 600;
}

.tab-btn:hover {
	background-color: #277ccd;
	border-radius: 5px;
	color: #fff;
}

.tab-btn.active {
	background: #fff;
	border-bottom: 3px solid #277ccd;
}

.tab-btn.active:hover {
	color: #277ccd;
}

.tab-content {
	padding: 20px;
	display: none;
}

.tab-content.active {
	display: block;
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
}

.spec-table tr:nth-child(odd) {
	background-color: #f7fafc;
}

.spec-table tr td:first-child {
	font-weight: bold;
	width: 30%;
}

.spec-table td {
	padding: 12px;
	border: 1px solid #eee;
}

/* ==========================================================================
3. RELATED PRODUCTS SLIDER 
========================================================================== */
.related-prod {
	background: #FFF;
	position: relative;
	padding: 20px 0 50px 0;
}

.product-catlog__head {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.product-catlog__head-title {
	width: 80%;
}

.shop-viewall {
	text-align: end;
	width: 12%;
}

.shop-view-btn {
	border: 1px solid #277CCD;
	display: inline-block;
	border-radius: 5px;
	padding: 2px 41px;
	font-size: 18px;
	margin-bottom: 36px;
	transition: .3s ease-in-out;
}

.shop-view-btn:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
}

.product-slider-container {
	overflow: hidden;
	padding: 64px 23px;
	background: #F0F0F0;
}

.product-slider-container .swiper-button-next {
	right: 50px;
}

.product-slider-container .swiper-button-prev {
	left: 50px;
}

.product-slider-container .swiper-button-prev:after,
.product-slider-container .swiper-button-next:after {
	content: none;
}

.product-catalog__title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
	font-family: Poppins, sans-serif;
}

.product-catalog__divider {
	height: 3px;
	width: 60px;
	background: #277ccd;
	margin: 0.75rem auto 36px;
}

.products-swiper {
	padding: 5px;
}

/* Blue Specials Variation */
.sale-special-section .product-slider-container {
	background: #277CCD;
	padding: 50px 0;
}

.sale-special-section .swiper-products--flex {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.sale-special-section .swiper-products--flex .sales-badge {
	color: #fff;
	background: #91CB43;
	width: 177px;
	border-radius: 0 7px 7px 0;
	padding-left: 40px;
	display: flex;
	align-items: center;
	font-size: 31px;
	font-weight: 500;
}

.sale-special-section .swiper-products--flex .sales-title {
	font-size: 33px;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	padding-left: 24px;
	padding-top: 37px;
}

.sale-special-section .products-swiper {
	padding: 5px;
	width: calc(83% - 32px * 3 / 2);
	margin-left: 0;
}

.sale-special-section .sales-flex {
	width: calc(17% - 32px*3/2);
}

.swiper-products--flex-active {
	display: flex;
	background: #277ccd !important;
	padding-left: 0 !important;
}

.swiper-products--flex-active h2 {
	color: #fff;
	background: #91cb44;
	padding: 8px 30px;
	border-radius: 0 20px 20px 0;
	margin-top: 35px;
}

.product-view-all-btn {
	border: 1px solid #fff;
	border-radius: 5px;
	font-size: 18px;
	margin-left: 23px;
	text-align: center;
	color: #fff;
	display: inline-block;
	font-weight: 600;
	width: 144px;
	height: 33px;
	margin-top: 25px;
}

.product-view-all-btn:hover {
	background: #fff;
	color: #0057a8;
}

@media(max-width:680px) {
	.product-slider-container {
		padding: 20px;
	}

	.product-slider-container .swiper-button-next {
		right: 0px;
	}

	.product-slider-container .swiper-button-prev {
		left: 0px;
	}

	.sale-special-section .product-slider-container .swiper-button-prev,
	.sale-special-section .product-slider-container .swiper-button-next {
		transform: translateY(190px);
	}

	.sale-special-section .products-swiper,
	.sale-special-section .sales-flex {
		width: 100%;
	}
}

@media(max-width:992px) {
	.product-catlog__head-title {
		width: 100%;
	}

	.shop-viewall {
		display: flex;
		justify-content: center;
		width: 100%;
	}
}

/* The Product Cards inside Slider */
.product-card {
	background: #fff;
	padding: 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.view-all-cta {
	display: flex;
	text-align: end;
	margin-left: auto;
	width: 112px;
	background-color: transparent;
	color: #277ccd;
	font-size: 14px;
	padding: 5px 25px;
	font-weight: 600;
	border: 1px solid #277ccd;
	border-radius: 5px;
	transition: .5s;
}

.product-name {
	height: 45px;
	color: #3A474E;
	margin-bottom: 5px;
	transition: .5s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: 500;
}

.product--code {
	height: 16px;
	font-size: 10px;
	color: #94a3b8;
	font-weight: 500;
	margin-bottom: 5px;
}

.product-price {
	font-weight: 600;
	font-size: 18px;
	color: #3A474E;
	margin-bottom: 0px;
}

.product-price ins {
	text-decoration: none;
}

.product-price del {
	color: #ff0000;
	font-weight: 600;
	font-size: 15px;
}

.product-price span.stock-kp-unit {
	font-size: 12px;
	color: #909598;
	text-transform: lowercase;
	font-weight: 500;
	padding-left: 2px;
}

.product-price span.unit {
	font-size: 12px;
	color: #909598;
}

.product-card:hover {
	box-shadow: 0 0 8px #277ccd;
}

.product-image-wrapper {
	position: relative;
	height: 200px;
	margin-bottom: 10px;
	text-align: center;
}

.product-image-wrapper a {
	position: relative;
	border-bottom: 1px solid #eee;
	display: inline-block;
}

.product-img {
	height: 200px;
	object-fit: cover;
	width: 100%;
}

.product-cta {
	position: absolute;
	bottom: 15px;
	left: 40px;
	text-align: center;
	display: none;
	transition: .5s;
}

.product-slider-container .product-card:hover .product-cta {
	display: block;
}

.product-slider-container .quick-view-btn {
	background-color: #fff;
	border: 1px solid #277ccd;
	color: #277ccd;
	box-shadow: 0 0 10px #bebebe;
	padding: 5px 18px;
	border-radius: 5px;
	text-align: center;
	font-size: 12px !important;
	display: inline-block;
	font-weight: 700;
	letter-spacing: normal !important;
	text-transform: capitalize;
	transition: .3s ease-in-out;
}

.product-slider-container .quick-view-btn:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
	font-weight: 700;
}

.product-slider-container .product-image-wrapper:hover .product-img {
	transform: scale(1.1);
}

.swiper-products--flex .swiper-button-next::after,
.swiper-products--flex .swiper-button-prev::after {
	display: none;
}

.products-swiper-home .swiper-button-next::after,
.products-swiper-home .swiper-button-prev::after {
	display: none;
}

.details-prod .related-prod {
	background: #FFF;
	position: relative;
	padding: 50px 0;
}

.details-prod .product-slider-container {
	background-color: #fff;
	padding: 0;
}

/* ==========================================================================
4. WOOCOMMERCE ADD TO CART SYNC
========================================================================== */

/* Main Product Qty Input */
.product-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin: 8px 0;
}

.product-view__code {
	margin: 0;
}

.quantity {
	display: flex;
	border: 0.5px solid #B8B8B8;
	overflow: hidden;
}

.quantity input {
	text-align: center;
	width: 42px;
	height: 25px;
	font-size: 11px;
	font-weight: 600;
	padding: 0px 10px;
	border-top: 0.5px solid #B8B8B8;
	border-bottom: 0.5px solid #B8B8B8;
	border-radius: 0;
}

.quantity input::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.qty-plus,
.qty-minus {
	padding: 0;
	border-radius: 0;
	width: 20px;
	height: 25px;
	font-size: 16px;
	font-weight: 600;
	border: 0.5px solid #B8B8B8;
	cursor: pointer;
	background: #F0F0F0;
	color: #3A474E;
}

.product-view__cart-actions .qty-plus,
.product-view__cart-actions .qty-minus {
	background-color: #e2e2e2;
	width: 40px;
	height: 40px;
	font-size: 18px;
	border: 0.5px solid #B8B8B8;
	cursor: pointer;
	border-radius: 0;
}

.product-view__cart-actions .quantity input.qty {
	font-size: 18px;
	width: 40px;
	height: 40px;
}

.add_to_cart_button.has-svg {
	height: 26.6px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #277ccd;
	border-radius: 5px;
	border: none;
	width: 91px;
	font-size: 10px;
	font-weight: 600;
	color: #fff;
	padding: 5px 19px;
}

.add_to_cart_button.has-svg:hover {
	background-color: #1e5fa0 !important;
}

.add_to_cart_button.has-svg svg {
	flex-shrink: 0;
	stroke: currentColor;
}

.product-view__cart-actions .cart {
	display: flex;
	margin-bottom: 15px;
}

.product-view__price-section {
	border-bottom: 1px solid #eee;
}

.product-view__favourite-link {
	display: flex;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	color: #277ccd;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	padding: 0;
	margin-bottom: 8px;
}

.product-view__cart-actions .single_add_to_cart_button {
	padding: 10px 25px;
	font-size: 16px;
	width: 140px;
	border-radius: 4px;
}

/* ==========================================================================
5. MAGNIFIER
========================================================================== */
.magnifier__lens {
	position: absolute;
	border: 2px solid #277ccd;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	pointer-events: none;
	display: none;
	z-index: 100;
}

.magnifier__zoom-view {
	position: absolute;
	top: 0;
	left: calc(100% + 20px);
	width: 400px;
	height: 400px;
	background-repeat: no-repeat;
	background-color: white;
	border: 1px solid #ddd;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	z-index: 1004;
	display: none;
}

@media (max-width: 768px) {

	.product-view__content,
	.product-view__media {
		flex-direction: column;
	}

	.product-view__info {
		padding-left: 0;
	}

	.magnifier__zoom-view {
		display: none !important;
	}

	.view-all-cta {
		margin-left: auto;
		margin-right: auto;
		margin-top: 10px;
	}
}

/* ==========================================================================
6. QUICK VIEW MODAL (Overlay & Layout)
========================================================================= */
/* --- MODAL BASE --- */
#quickViewModal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	overflow-y: auto;
}

.modal-content {
	background: #fff;
	margin: 5% auto;
	padding: 30px;
	border-radius: 8px;
	width: 90%;
	max-width: 1000px;
	position: relative;
}

.modal-product-view {
	display: flex;
	gap: 20px;
	padding-top: 20px;
}

/* --- MEDIA SECTION --- */
.modal-product-media {
	flex: 0 0 45%;
	display: flex;
	gap: 10px;
	padding-left: 20px;
}

.modal-thumbnail-gallery {
	width: 70px;
	flex-shrink: 0;
}

.modal-thumbnail-gallery img {
	width: 100%;
	border: 1px solid #ddd;
	padding: 2px;
}

.modal-main-image-container {
	position: relative;
	flex-grow: 1;
	height: 400px;
	border: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
}

#modalMainImage {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* --- MAGNIFIER --- */
.magnifier-lens {
	position: absolute;
	width: 100px;
	height: 100px;
	border: 1px solid #277ccd;
	background: rgba(39, 124, 205, 0.1);
	cursor: crosshair;
	display: none;
	z-index: 10;
}

.magnified-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-color: #fff;
	z-index: 11;
	display: none;
	pointer-events: none;
}

/* --- INFO SECTION --- */
.modal-product-info {
	flex: 1;
	padding-left: 10px;
}

.modal-product-name {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.2;
	font-family: Poppins, sans-serif;
}

.modal-price {
	font-size: 28px;
	font-weight: 700;
	color: #277ccd;
}

/* --- BUTTONS & QTY --- */
.modal-add-to-cart {
	display: flex;
	gap: 15px;
	align-items: center;
	margin: 13px 0;
}

.modal-add-to-cart .quantity-control {
	display: flex;
	border: 1px solid #ccc;
	height: 40px;
}

.modal-add-to-cart .quantity-control button {
	width: 40px;
	height: 38px;
	background: #eee;
	border: none;
	cursor: pointer;
	font-size: 18px;
}

.add-to-favourites {
	display: flex;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	color: #277ccd;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	padding: 0;
	margin-bottom: 20px;
}

.add-to-favourites:hover {
	color: #e11d48;
}

.modal-add-to-cart .quantity-control input {
	width: 51px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	border-radius: 0;
}

.large-btn {
	background: #277ccd;
	color: #fff;
	padding: 0 25px;
	height: 40px;
	border-radius: 5px;
	text-decoration: none;
	display: flex;
	align-items: center;
	font-weight: 600;
	gap: 10px;
	border: none;
}

.large-btn:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
}

.view-details-btn {
	background: white;
	color: #277ccd;
	border: 1px solid #277ccd;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	margin-top: 20px;
	transition: background-color 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
}

.view-details-btn:hover {
	background-color: #277ccd;
	color: white;
}

.modal-categories {
	font-weight: 600;
}

.modal-price del {
	color: #e11d48;
}

.modal-price ins {
	text-decoration: none;
}

.view-details-btn::after {
	content: "→";
	font-size: 16px;
	font-weight: 700;
	transition: margin-left 0.2s;
}

.modal-product-stock {
	display: flex;
	align-items: center;
	font-weight: 600;
}

.modal-content .close-btn {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 20px;
	cursor: pointer;
	z-index: 1003;
}

@media (max-width: 768px) {
	.modal-product-view {
		flex-direction: column;
	}

	.modal-main-image-container {
		height: 300px;
	}

	.magnifier-lens,
	.magnified-image {
		display: none !important;
	}
}

/* home page slider products */
.home-product-slider {
	background-color: #E9E9E9;
	padding: 60px 0;
}

.products-swiper-home .product-cta {
	left: 45px;
}

.products-swiper-home {
	padding: 10px
}

.home-product-slider .product-catalog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.home-product-slider .swiper-button-next,
.home-product-slider .swiper-button-prev {
	color: #277ccd;
}

.home-product-slider .view-all-cta:hover {
	background-color: #277ccd;
	color: #fff !important;
}

.btn-add-to-cart {
	align-items: center !important;
	background-color: #277ccd;
	border: none !important;
	border-radius: 5px !important;
	color: #fff !important;
	display: flex !important;
	font-size: 9px !important;
	font-weight: 500 !important;
	height: 26.6px !important;
	justify-content: center !important;
	padding: 5px 8px !important;
	text-decoration: none !important;
	width: 83px !important;
	cursor:pointer;
}

.btn-add-to-cart:disabled {
	background: #e11d48 !important;
}

.btn-text {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* --- add cart popup Layout --- */
#cartModal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	align-items: center;
	justify-content: center;
}

.cart-modal-content {
	background: #fff;
	width: 95%;
	max-width: 650px;
	padding: 25px;
	border-radius: 8px;
	position: relative;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cart-modal-close {
	position: absolute;
	right: 15px;
	top: 10px;
	cursor: pointer;
	font-size: 28px;
	color: #666;
	line-height: 1;
}

/* --- Success Banner --- */
.cart-success-banner {
	display: flex;
	align-items: center;
	background: #f0fdf4;
	border: 1px solid #16a34a;
	color: #16a34a;
	padding: 12px;
	margin-bottom: 20px;
	border-radius: 5px;
}

.success-check {
	background: #16a34a;
	color: #fff;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-weight: bold;
	font-size: 12px;
}

/* --- Product Preview Area --- */
.cart-modal-body {
	display: flex;
	align-items: center;
	border: 1px solid #eee;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 20px;
}

#modalCartImg {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-right: 20px;
}

.cart-modal-info {
	flex-grow: 1;
}

.cart-modal-info h4 {
	margin: 0 0 5px 0;
	font-size: 16px;
	color: #1e293b;
}

.cart-modal-info p {
	margin: 0;
	font-size: 13px;
	color: #64748b;
}

.cart-modal-stock {
	margin-top: 5px !important;
	color: #16a34a !important;
	font-weight: bold;
}

.cart-modal-price-wrap del.modal-old-price {
	font-size: 13px;
	color: #e11d48;
	margin-right: 8px;
}

.cart-modal-price-wrap ins.modal-sale-price {
	color: #16a34a;
	font-size: 19px !important;
	text-decoration: none;
}

.cart-modal-price-wrap {
	text-align: right;
	font-weight: bold;
	font-size: 16px;
}

/* --- cart popup footer actions --- */
.cart-modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
}

.btn-continue {
	background: #fff;
	border: 1px solid #cbd5e1;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	color: #475569;
}

.btn-view-cart {
	background: #fff;
	color: #277ccd;
	border: 1px solid #277ccd;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
}

.btn-view-cart:hover {
	background: #277ccd;
	color: #fff;
}

.btn-add-to-cart.loading .btn-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 0.8s linear infinite;
	margin-right: 8px;
	vertical-align: middle;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.no-products-message {
	padding: 40px;
	text-align: center;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px dashed #ccc;
	margin-top: 40px;
}

.no-products-message p {
	font-size: 18px;
	color: #666;
	margin: 0;
}

.btn-add-to-cart:disabled {
	cursor: not-allowed;
}

.cw-toast-notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #333333;
	color: #ffffff;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 999999;
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease-in-out;
}

.cw-toast-notification a.toast-view-link {
	color: #8dc63f;
	text-decoration: underline;
	font-weight: bold;
	font-size: 14px;
}

.cw-toast-notification.show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.qv-quote-btn {
	width: 252px;
	background: #fff;
	color: #8dc63f;
	border: 2px solid #8dc63f;
	border-radius: 4px;
	padding: 11px 16px;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.16s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	white-space: nowrap;
	font-family: inherit;
	position: relative;
	overflow: hidden;
	margin: 10px 0;
}

.qv-quote-btn:hover {
	background: #8dc63f;
	color: #fff;
}

.qv-quote-btn.loading {
	pointer-events: none;
	opacity: 0.75;
}

.qv-quote-btn.added {
	background: #8dc63f;
	color: #fff;
}

.qv-quote-spinner {
	position: absolute;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: cwSpin 0.7s linear infinite;
	display: none;
}

.qv-quote-btn.loading .qv-quote-spinner {
	display: block;
}

.qv-quote-btn.loading .qv-quote-text {
	opacity: 0;
}


/* ═══════════════════════════════════════════════
   GLOBAL: Replace "Out of Stock" → "Available to Order"
   Green color + clock icon across shop, category, single product
═══════════════════════════════════════════════ */

/* WooCommerce default .stock.out-of-stock tag */
p.stock.out-of-stock,
.woocommerce-variation-availability .stock.out-of-stock,
.out-of-stock,
.product-view__stock.out-stock,
.product-stock.out-stock {
	color: #16a34a !important;
	font-weight: 600;
}

/* Hide the default WC text and replace via ::before with clock icon + label */
p.stock.out-of-stock {
	font-size: 0 !important;
	display: flex !important;
	align-items: center;
	gap: 5px;
}

p.stock.out-of-stock::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-color: #16a34a;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

p.stock.out-of-stock::after {
	content: 'Available to Order';
	font-size: 14px;
	color: #16a34a;
	font-weight: 600;
}

/* Stock badge on product card image corner */
.stock-badge.out-of-stock {
	background: #dcfce7 !important;
	color: #16a34a !important;
}

/* Disabled "out of stock" button on cards */
.btn-add-to-cart:disabled {
	background: #16a34a !important;
	opacity: 0.85;
	cursor: not-allowed;
}

/* single-product.php inline out-of-stock paragraph */
p.out-of-stock {
	color: #16a34a !important;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
}