/* Groceria Custom - Main styles (starter) */

:root {
	/* Kamindi SELFRIDGES brand */
	--g-bg: #ffffff;
	--g-text: #1a2332;
	--g-muted: #64748b;
	--g-border: #dfe7f2;
	--g-primary: #ed1c24;
	--g-primary-600: #c4161d;
	--g-secondary: #005daa;
	--g-secondary-600: #004a88;
	--g-accent-soft: rgba(237, 28, 36, 0.1);
	--g-blue-soft: rgba(0, 93, 170, 0.1);
	--g-surface: #f4f8fc;
	--g-radius: 16px;
	--g-shadow: 0 10px 32px rgba(0, 45, 90, 0.1);
	--g-container: 1550px;
	--g-hero-1: url("../img/hero-1.png");
	--g-hero-2: url("../img/hero-2.png");
	--g-banner-household: url("../img/banner-household.png");
	--g-bg-green: url("../img/bg-green.png");
}

/* Ensure HTML `hidden` attribute always wins over component display rules. */
[hidden] {
	display: none !important;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--g-text);
	background: var(--g-bg);
	font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
		"Segoe UI Emoji";
	line-height: 1.5;
}

.g-font-display,
.h-hero__title,
.hp-topcat__name,
.hp-benefit__title,
.hp-promo__title,
.h-section__title,
.hp-pgrid__title,
.hp-banner__title,
.shop-archive__title,
.shop-widget__title,
.c-drawer__title,
.c-footer__heading,
.widget__title,
.woocommerce-loop-product__title {
	font-family: "Fredoka", "Open Sans", system-ui, -apple-system, sans-serif;
	letter-spacing: 0.01em;
}

.c-header .custom-logo-link img,
.c-header .kamindi-brand-logo,
.c-footer .custom-logo-link img,
.c-footer .kamindi-brand-logo {
	max-height: 72px;
	width: auto;
	display: block;
}

.c-header .custom-logo-link img,
.c-header .kamindi-brand-logo {
	max-height: 90px;
}

.c-header .c-brand.c-brand--text {
	color: #fff;
	font-weight: 700;
	font-size: 1.35rem;
	text-shadow: 0 1px 2px rgba(0, 45, 90, 0.25);
}

@media (max-width: 640px) {
	.c-header .kamindi-brand-logo {
		max-height: 54px;
	}
}

/* Icon buttons on light sections (hero, etc.) stay readable */
.h-hero .c-icon-btn {
	border: 1px solid var(--g-border);
	background: #fff;
	color: var(--g-text);
}

/* Homepage */
.h-home {
	padding: 20px 0 32px 0;
}

.hp-topcats {
	margin: 6px 0 14px 0;
	width: 100%;
	padding: 12px 8px;
	background: #fff;
	border-top: 1px solid var(--g-border);
	border-bottom: 1px solid var(--g-border);
}

.hp-topcats__row {
	display: flex;
	gap: 14px;
	align-items: start;
	overflow: auto hidden;
	padding: 6px 2px 2px 2px;
	scrollbar-width: thin;
	width: 100%;
	justify-content: space-between;
}

.hp-topcat {
	min-width: 90px;
	display: grid;
	justify-items: center;
	gap: 8px;
	color: var(--g-text);
	flex: 1 1 0;
}

.hp-topcat__icon {
	width: 66px;
	height: 66px;
	border-radius: 999px;
	border: 1px solid var(--g-border);
	background: #fff;
	display: grid;
	place-items: center;
	overflow: hidden;
	box-shadow: 0 1px 0 rgba(2, 6, 23, 0.02);
}

.hp-topcat__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hp-topcat__ph {
	width: 28px;
	height: 28px;
	border-radius: 10px;
	background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.hp-topcat__name {
	font-weight: 900;
	font-size: 13px;
	text-align: center;
	line-height: 1.2;
}

.hp-benefits {
	margin-top: 14px;
}

.hp-benefits__row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.hp-benefit {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 12px 12px;
	border: 1px solid var(--g-border);
	border-radius: var(--g-radius);
	background: #fff;
}

.hp-benefit__icon {
	width:100px;
	height: 100px;
	border-radius: 16px;
	background: var(--g-surface);
	display: grid;
	place-items: center;
	font-size: 60px;
	flex-shrink: 0;
}

.hp-benefit__title {
	margin: 0;
	font-weight: 950;
	font-size: 22px;
}

.hp-benefit__text {
	margin: 2px 0 0 0;
	color: var(--g-muted);
	font-weight: 650;
	font-size: 13px;
}

.hp-promo {
	margin-top: 22px;
	border-radius: calc(var(--g-radius) + 6px);
	background: linear-gradient(90deg, var(--g-secondary-600), var(--g-secondary));
	color: #fff;
	overflow: hidden;
}

.hp-promo__inner {
	padding: 18px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px 14px;
	align-items: center;
}

.hp-promo__title {
	margin: 0;
	font-weight: 950;
	font-size: 18px;
}

.hp-promo__text {
	margin: 0;
	opacity: 0.9;
	font-weight: 650;
	grid-column: 1 / 2;
}

.h-section {
	margin-top: 26px;
}

.h-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}

.h-section__title {
	margin: 0;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -0.01em;
}

.h-section__link {
	font-weight: 800;
	color: var(--g-primary);
}

.h-section__stack {
	display: grid;
	gap: 4px;
}

.h-muted {
	margin: 0;
	color: var(--g-muted);
	font-weight: 600;
}

.h-grid {
	display: grid;
	gap: 14px;
}

.h-grid--cats {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.h-grid--posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.h-grid--products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Hero / slider: wide letterbox (~3.5:1 width:height) like reference banner */
.h-hero {
	border: 1px solid var(--g-border);
	border-radius: 18px;
	background: linear-gradient(180deg, #fdfcfa 0%, #faf7f2 100%);
	box-shadow: 0 4px 22px rgba(0, 45, 90, 0.07);
	padding: 12px 16px 14px;
}

.h-hero__track {
	position: relative;
	width: 100%;
	/* Height scales with viewport, capped → ~300–352px tall at desktop content widths (~3.5–4:1) */
	height: clamp(260px, 27vw, 352px);
	overflow: hidden;
	border-radius: 14px;
}

.h-hero__slide {
	display: none;
	grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.82fr);
	align-items: center;
	gap: clamp(14px, 2.8vw, 28px);
	height: 100%;
	min-height: 0;
	box-sizing: border-box;
	padding: clamp(12px, 2.8vw, 28px) clamp(14px, 3vw, 36px);
}

.h-hero__slide.is-active {
	display: grid;
}

.h-hero__eyebrow {
	margin: 0 0 4px 0;
	color: var(--g-primary);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 1.35;
}

.h-hero__title {
	margin: 0 0 6px 0;
	font-size: clamp(1.2rem, 2.55vw + 0.55rem, 1.95rem);
	line-height: 1.14;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--g-secondary);
}

.h-hero__text {
	margin: 0 0 10px 0;
	color: var(--g-muted);
	font-weight: 600;
	max-width: 46ch;
	font-size: clamp(12px, 1.05vw + 10px, 14px);
	line-height: 1.45;
}

.h-hero__content {
	align-self: center;
	min-width: 0;
	min-height: 0;
	padding: 0;
}

.h-hero__content .c-btn {
	padding: 8px 16px;
	font-size: 13px;
}

.h-hero__media {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	min-height: 0;
	max-height: 100%;
	align-self: stretch;
}

.h-hero__blob {
	width: 280px;
	height: 220px;
	border-radius: 42% 58% 57% 43% / 51% 40% 60% 49%;
	background: radial-gradient(circle at 30% 30%, #ffc8ca, var(--g-primary));
	filter: saturate(1.1);
}

.h-hero__blob--alt {
	background: radial-gradient(circle at 30% 30%, #dbeafe, #0ea5e9);
}

.h-hero__photo {
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	max-height: 100%;
	min-height: 0;
	border-radius: 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center right;
	border: 0;
	box-sizing: border-box;
}

.h-hero__photo--veg {
	background-image: var(--g-hero-1);
}

.h-hero__photo--basket {
	background-image: var(--g-hero-2);
}

.hp-promo {
	position: relative;
	isolation: isolate;
}

.hp-promo::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--g-bg-green);
	background-size: cover;
	background-position: center;
	opacity: 0.16;
	z-index: -1;
}

.hp-promo__inner .c-btn {
	background: #ffcf33;
	color: #0b1220;
}

.hp-promo__inner .c-btn:hover {
	background: #ffbf00;
}

.hp-banner {
	border-radius: calc(var(--g-radius) + 6px);
	border: 1px solid var(--g-border);
	background: #fff;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr;
	min-height: 170px;
	position: relative;
}

.hp-banner--household {
	background-image: var(--g-banner-household);
	background-size: cover;
	background-position: center;
}

.hp-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11, 18, 32, 0.72), rgba(11, 18, 32, 0.12));
}

.hp-banner__content {
	position: relative;
	padding: 18px;
	color: #fff;
	max-width: 60ch;
	display: grid;
	gap: 10px;
	align-content: center;
}

.hp-banner__title {
	margin: 0;
	font-weight: 950;
	font-size: 22px;
	line-height: 1.15;
}

.hp-banner__text {
	margin: 0;
	opacity: 0.92;
	font-weight: 650;
}

/* Homepage promo grid (5 tiles) — text column + anchored product art (no full-bleed cover / overlay ghosting) */
.hp-pgrid {
	margin-top: 18px;
}

.hp-pgrid__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

.hp-pgrid__tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: calc(var(--g-radius) + 6px);
	border: 1px solid rgba(226, 232, 240, 0.65);
	box-shadow: 0 2px 12px rgba(0, 45, 90, 0.05);
	min-height: 240px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hp-pgrid__tile:focus-visible {
	outline: 3px solid var(--g-primary);
	outline-offset: 3px;
}

.hp-pgrid__tile:hover {
	box-shadow: 0 12px 32px rgba(0, 45, 90, 0.1);
	transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
	.hp-pgrid__tile,
	.hp-pgrid__tile .hp-pgrid__img {
		transition: none;
	}

	.hp-pgrid__tile:hover {
		transform: none;
	}

	.hp-pgrid__tile:hover .hp-pgrid__img {
		transform: none;
	}
}

/* Tile tints complement the bundled artwork */
.hp-pgrid__tile--a {
	background: linear-gradient(148deg, #eaf8f0 0%, #f2faf5 52%, #e2f4eb 100%);
}

.hp-pgrid__tile--b {
	background: linear-gradient(148deg, #e8f3fc 0%, #f4f9fe 52%, #ddeef9 100%);
}

.hp-pgrid__tile--c {
	background: linear-gradient(148deg, #e8eef5 0%, #f5f7fa 55%, #dde5ef 100%);
}

.hp-pgrid__tile--d {
	background: linear-gradient(148deg, #f0ebe3 0%, #faf7f2 52%, #e8e2d8 100%);
}

.hp-pgrid__tile--e {
	background: linear-gradient(148deg, #e9f2ea 0%, #f4faf5 52%, #ddece0 100%);
}

.hp-pgrid__media {
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(54%, 360px);
	height: 92%;
	max-height: 280px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	pointer-events: none;
	z-index: 1;
	padding: 0 8px 4px 0;
	box-sizing: border-box;
}

.hp-pgrid__tile--c .hp-pgrid__media,
.hp-pgrid__tile--d .hp-pgrid__media,
.hp-pgrid__tile--e .hp-pgrid__media {
	width: min(58%, 300px);
	max-height: 240px;
}

.hp-pgrid__img {
	position: relative;
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: right bottom;
	transform-origin: center bottom;
	transition: transform 0.35s ease;
}

.hp-pgrid__tile:hover .hp-pgrid__img {
	transform: scale(1.05);
}

.hp-pgrid__text {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	min-height: min(268px, 100%);
	max-width: min(22rem, calc(100% - 8.5rem));
	padding: clamp(22px, 4vw, 36px);
	padding-right: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 10px;
}

.hp-pgrid__tile--a .hp-pgrid__text,
.hp-pgrid__tile--b .hp-pgrid__text {
	max-width: min(26rem, calc(58% - 1rem));
	min-height: 272px;
}

.hp-pgrid__tile--c .hp-pgrid__text,
.hp-pgrid__tile--d .hp-pgrid__text,
.hp-pgrid__tile--e .hp-pgrid__text {
	min-height: 240px;
	max-width: min(18.5rem, calc(62% - 1rem));
	gap: 8px;
}

.hp-pill {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(226, 232, 240, 0.9);
	font-weight: 950;
	font-size: 11px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.85);
}

.hp-pgrid__title {
	margin: 0;
	font-weight: 700;
	font-size: clamp(1.35rem, 2.2vw, 1.65rem);
	line-height: 1.22;
	color: var(--g-secondary);
	text-wrap: balance;
}

.hp-pgrid__title--sm {
	font-size: clamp(1.1rem, 1.85vw, 1.35rem);
	line-height: 1.28;
}

.hp-pgrid__desc {
	margin: 0;
	color: var(--g-muted);
	font-weight: 600;
	font-size: 13px;
	line-height: 1.55;
	max-width: 36ch;
}

.hp-pgrid__link {
	display: inline-flex;
	margin-top: 6px;
	width: fit-content;
	text-decoration: none;
}

.hp-pgrid__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 18px;
	border-radius: 999px;
	border: 2px solid var(--g-primary);
	background: #fff;
	color: var(--g-primary);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	box-shadow: 0 4px 14px rgba(237, 28, 36, 0.12);
}

.hp-pgrid__tile:hover .hp-pgrid__cta {
	background: var(--g-primary);
	color: #fff;
	border-color: var(--g-primary);
}

.hp-pgrid__value {
	margin: 4px 0 0;
	font-weight: 700;
	font-size: clamp(1.6rem, 3.2vw, 2rem);
	line-height: 1.05;
	color: var(--g-secondary);
	letter-spacing: -0.02em;
}

/* Tile layout (~58% / 42% top row ≈ 1.6fr : 1fr) */
.hp-pgrid__tile--a {
	grid-column: 1 / span 7;
	min-height: 278px;
}

.hp-pgrid__tile--b {
	grid-column: 8 / span 5;
	min-height: 278px;
}

.hp-pgrid__tile--c {
	grid-column: 1 / span 4;
	min-height: 252px;
}

.hp-pgrid__tile--d {
	grid-column: 5 / span 4;
	min-height: 252px;
}

.hp-pgrid__tile--e {
	grid-column: 9 / span 4;
	min-height: 252px;
}

@media (max-width: 1100px) {
	.hp-pgrid__tile--a {
		grid-column: 1 / span 12;
	}

	.hp-pgrid__tile--b {
		grid-column: 1 / span 12;
	}

	.hp-pgrid__media {
		width: min(48%, 300px);
		max-height: 240px;
	}

	.hp-pgrid__tile--a .hp-pgrid__text,
	.hp-pgrid__tile--b .hp-pgrid__text {
		max-width: min(24rem, 58%);
	}
}

.h-hero__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 10px;
}

.h-hero__dots {
	display: inline-flex;
	gap: 8px;
}

.h-hero__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 1px solid var(--g-border);
	background: #fff;
	cursor: pointer;
}

.h-hero__dot.is-active {
	background: var(--g-primary);
	border-color: var(--g-primary);
}

.h-cat {
	border: 1px solid var(--g-border);
	background: #fff;
	border-radius: var(--g-radius);
	padding: 12px;
	display: grid;
	gap: 10px;
	transition: transform 120ms ease, box-shadow 120ms ease;
}

.h-cat:hover {
	transform: translateY(-1px);
	box-shadow: var(--g-shadow);
}

.h-cat__img {
	height: 110px;
	border-radius: 12px;
	background: var(--g-surface);
	display: grid;
	place-items: center;
	overflow: hidden;
}

.h-cat__ph {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.h-cat__name {
	font-weight: 900;
}

.h-cat__count {
	color: var(--g-muted);
	font-weight: 700;
	font-size: 13px;
}

.h-deals {
	border: 1px solid var(--g-border);
	border-radius: calc(var(--g-radius) + 6px);
	background: linear-gradient(180deg, #ffffff, #f8fafc);
	padding: 16px;
}

.h-countdown {
	display: grid;
	justify-items: end;
	gap: 6px;
}

.h-countdown__label {
	color: var(--g-muted);
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.h-countdown__grid {
	display: inline-flex;
	gap: 8px;
}

.h-countdown__unit {
	min-width: 58px;
	border: 1px solid var(--g-border);
	border-radius: 14px;
	background: #fff;
	padding: 8px 10px;
	text-align: center;
}

.h-countdown__unit span {
	display: block;
	font-weight: 950;
	font-size: 16px;
}

.h-countdown__unit small {
	display: block;
	color: var(--g-muted);
	font-weight: 800;
	font-size: 11px;
}

.h-banners {
	margin-top: 26px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.h-banner {
	border-radius: calc(var(--g-radius) + 6px);
	padding: 18px;
	color: #fff;
	display: grid;
	gap: 8px;
	min-height: 140px;
	align-content: center;
}

.h-banner--green {
	background: linear-gradient(135deg, var(--g-primary), #ff4d55);
}

.h-banner--dark {
	background: linear-gradient(135deg, #0b1220, #334155);
}

.h-banner__eyebrow {
	margin: 0;
	opacity: 0.9;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 12px;
}

.h-banner__title {
	margin: 0;
	font-weight: 950;
	font-size: 20px;
	line-height: 1.15;
}

.h-banner__cta {
	font-weight: 900;
	opacity: 0.95;
}

.h-post {
	border: 1px solid var(--g-border);
	border-radius: var(--g-radius);
	background: #fff;
	overflow: hidden;
	display: grid;
	grid-template-rows: auto 1fr;
}

.h-post__media {
	display: block;
	background: var(--g-surface);
}

.h-post__ph {
	display: block;
	height: 160px;
	background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.h-post__body {
	padding: 12px;
	display: grid;
	gap: 6px;
}

.h-post__meta {
	margin: 0;
	color: var(--g-muted);
	font-weight: 800;
	font-size: 12px;
}

.h-post__title {
	margin: 0;
	font-weight: 950;
	font-size: 16px;
	line-height: 1.2;
}

.h-post__excerpt {
	margin: 0;
	color: var(--g-muted);
	font-weight: 600;
	font-size: 14px;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.l-container {
	width: min(100% - 32px, var(--g-container));
	margin-inline: auto;
}

.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: var(--g-primary);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.c-btn:hover {
	background: var(--g-primary-600);
}

.c-btn--ghost {
	background: transparent;
	color: var(--g-text);
	border-color: var(--g-border);
}

.c-btn--ghost:hover {
	background: var(--g-surface);
}

.c-header {
	position: relative;
	z-index: 200;
	background: var(--g-secondary);
	backdrop-filter: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.96);
}

/* Top announcement bar (pill + locator left, utilities right) */
.c-topbar {
	background: var(--g-secondary-600);
	color: #fff;
	font-size: 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.c-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: nowrap;
	padding: 10px 0;
}

.c-topbar__left,
.c-topbar__right {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	flex-wrap: nowrap;
}

.c-topbar__pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(120, 188, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.01em;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.c-topbar__link {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	text-decoration: none;
}

.c-topbar__link:hover,
.c-topbar__link:focus-visible {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.c-topbar__menu {
	list-style: none;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	margin: 0;
	padding: 0;
}

.c-topbar__menu a {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	text-decoration: none;
}

.c-topbar__menu a:hover,
.c-topbar__menu a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
	color: #fff;
}

.c-header__main {
	background: transparent;
}


.c-header__burger {
	display: inline-flex;
	flex: 0 0 auto;
	order: 1;
}

.c-icon-btn {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.c-header .c-icon-btn {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.c-drawer .c-icon-btn {
	border: 1px solid var(--g-border);
	background: #fff;
	color: var(--g-text);
}

.c-icon-btn__icon {
	font-size: 18px;
	line-height: 1;
}

.c-cats {
	position: relative;
	flex: 0 0 auto;
	order: 3;
}

.c-cats__btn {
	white-space: nowrap;
}

.c-header__brand {
	flex: 0 0 auto;
	order: 2;
}

.c-header__search {
	min-width: 0;
	flex: 1 1 620px;
	max-width: 610px;
	order: 4;
}

.c-search {
	display: grid;
	grid-template-columns: 180px 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 999px;
	border: 1px solid var(--g-border);
	background: #fff;
	box-shadow: 0 1px 0 rgba(2, 6, 23, 0.02);
}

.c-search__select,
.c-search__input {
	border: 0;
	outline: none;
	font-size: 14px;
	background: transparent;
	padding: 10px 10px;
}

.c-search__select {
	border-right: 1px solid var(--g-border);
	padding-right: 12px;
}

.c-search__submit {
	height: 42px;
}

.c-header__nav {
	padding-bottom: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 6px;
}

.c-nav {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, 0.95);
}

.c-nav a {
	color: rgba(255, 255, 255, 0.94);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 8px;
	border-radius: 10px;
}

.c-nav a:hover {
	background: rgba(255, 255, 255, 0.12);
}

.c-header__actions {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	margin-left: auto;
	order: 5;
	white-space: nowrap;
}

@media (max-width: 1180px) {
	.c-header__row {
		gap: 12px;
	}

	.c-header .kamindi-brand-logo {
		max-height: 62px;
	}

	.c-header__search {
		flex-basis: 420px;
		max-width: none;
	}

	.c-search {
		grid-template-columns: 150px 1fr auto;
	}

	.c-icon-link {
		padding-inline: 9px;
	}
}

.c-icon-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.95);
}

.c-icon-link__icon {
	font-size: 16px;
	line-height: 1;
}

.c-icon-link__label {
	font-weight: 700;
	font-size: 13px;
}

.c-mini-cart {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.96);
	cursor: pointer;
}

.c-mini-cart__subtotal {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
	font-size: 13px;
}

.c-mini-cart__count {
	min-width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--g-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.c-overlay {
	position: fixed;
	inset: 0;
	background: rgba(2, 6, 23, 0.42);
	z-index: 999;
}

.c-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: min(92vw, 420px);
	background: #fff;
	z-index: 1000;
	box-shadow: var(--g-shadow);
	display: grid;
	grid-template-rows: auto 1fr auto;
}

.c-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--g-border);
}

.c-drawer__title {
	margin: 0;
	font-size: 16px;
}

.c-drawer__title--cart {
	font-weight: 700;
	font-size: 17px;
	color: var(--g-secondary);
}

.c-drawer__title-items {
	font-weight: 600;
}

.c-drawer__content {
	padding: 14px 16px;
	overflow: auto;
}

.c-drawer__footer {
	padding: 14px 16px;
	border-top: 1px solid var(--g-border);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

/* Side cart */
.c-drawer--cart {
	width: min(92vw, 400px);
}

.c-drawer--cart .c-drawer__content {
	padding: 0;
}

.c-sidecart {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 56px);
}

.c-sidecart--empty {
	justify-content: center;
}

.c-sidecart__list {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 14px 14px 10px;
	display: grid;
	gap: 12px;
	align-content: start;
	scrollbar-color: #cbd5e1 #f1f5f9;
	scrollbar-width: thin;
}

.c-sidecart__list::-webkit-scrollbar {
	width: 6px;
}

.c-sidecart__list::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 6px;
}

.c-sidecart__item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: start;
	padding: 10px;
	border: 1px solid #e8edf0;
	border-radius: 12px;
	background: #fff;
}

.c-sidecart__thumb {
	line-height: 0;
}

.c-sidecart__thumb img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid #e8edf0;
}

.c-sidecart__name {
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--g-secondary);
}

.c-sidecart__name a {
	color: inherit;
}

.c-sidecart__name a:hover {
	text-decoration: underline;
}

.c-sidecart__unit {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.35;
	color: var(--g-secondary);
}

.c-sidecart__unit del,
.c-sidecart__unit-regular {
	margin: 0 8px 0 0;
	color: #94a3b8;
	font-weight: 500;
}

.c-sidecart__unit .amount,
.c-sidecart__unit-sale,
.c-sidecart__unit-current {
	font-weight: 700;
	color: var(--g-secondary);
}

.c-sidecart__excerpt {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: #64748b;
}

.c-sidecart__controls {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.c-sidecart .c-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid #dce3e9;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.c-sidecart .c-qty__btn {
	width: 30px;
	height: 30px;
	border: 0;
	background: #f4f7f9;
	cursor: pointer;
	font-size: 16px;
	color: var(--g-secondary);
	transition: background 0.15s ease;
}

.c-sidecart .c-qty__btn:hover {
	background: #e8eef2;
}

.c-sidecart .c-qty__input {
	width: 34px;
	height: 30px;
	border: 0;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--g-secondary);
	background: #fff;
}

.c-sidecart__remove {
	position: relative;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border: 0;
	padding: 0;
	background: transparent;
	color: #64748b;
	cursor: pointer;
	border-radius: 8px;
	transition: color 0.15s ease, background 0.15s ease;
}

.c-sidecart__remove:hover {
	color: var(--g-secondary);
	background: #f4f7f9;
}

.c-sidecart__remove::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	margin-inline: auto;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 3v1H4v2h1.05l1.12 13.06A2 2 0 008.16 21h7.69a2 2 0 011.98-1.86L17.93 6H20V4h-5V3H9zm2 2h2v1h-2V5zm-2.06 2h10.12l-1.05 12.07a.4.4 0 01-.4.37H8.16a.4.4 0 01-.4-.36L6.94 7zM10 9h2v8h-2V9zm4 0h2v8h-2V9z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 3v1H4v2h1.05l1.12 13.06A2 2 0 008.16 21h7.69a2 2 0 011.98-1.86L17.93 6H20V4h-5V3H9zm2 2h2v1h-2V5zm-2.06 2h10.12l-1.05 12.07a.4.4 0 01-.4.37H8.16a.4.4 0 01-.4-.36L6.94 7zM10 9h2v8h-2V9zm4 0h2v8h-2V9z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.c-sidecart__totals {
	text-align: right;
	min-width: 4.5rem;
}

.c-sidecart__line-total {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--g-secondary);
	line-height: 1.25;
}

.c-sidecart__line-total .amount {
	font-weight: 700;
}

.c-sidecart__save {
	display: inline-block;
	margin: 8px 0 0;
	padding: 4px 8px;
	border-radius: 6px;
	background: var(--g-accent-soft);
	font-size: 12px;
	font-weight: 600;
	color: var(--g-primary-600);
	line-height: 1.2;
}

.c-sidecart__save .amount {
	font-weight: 700;
	color: var(--g-primary);
}

.c-sidecart__bottom {
	padding: 14px 16px 18px;
	border-top: 1px solid #e8edf0;
	background: #fff;
	display: grid;
	gap: 10px;
}

.c-sidecart__subtotal-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}

.c-sidecart__subtotal-label,
.c-sidecart__subtotal-value {
	font-size: 18px;
	font-weight: 700;
	color: var(--g-secondary);
}

.c-sidecart__disclaimer {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	color: #64748b;
}

.c-sidecart__actions {
	display: grid;
	gap: 10px;
}

.c-sidecart__actions .c-btn {
	width: 100%;
	justify-content: center;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.c-btn--cart-outline {
	background: #fff;
	color: var(--g-secondary);
	border: 2px solid var(--g-secondary);
}

.c-btn--cart-outline:hover {
	background: #f4faf7;
	color: #0a2e27;
	border-color: #0a2e27;
}

.c-btn--cart-solid {
	background: var(--g-primary);
	border: 2px solid var(--g-primary);
	color: #fff;
}

.c-btn--cart-solid:hover {
	background: var(--g-primary-600);
	border-color: var(--g-primary-600);
}

.c-sidecart__empty {
	padding: 28px 16px;
	margin: 0;
	text-align: center;
	color: var(--g-muted);
}

.c-mobile-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 6px;
}

.c-mobile-nav a {
	display: block;
	padding: 12px 10px;
	border-radius: 12px;
	border: 1px solid var(--g-border);
	background: var(--g-surface);
	font-weight: 700;
}

.c-mega {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	width: min(calc(100vw - 32px), 1280px);
	z-index: 120;
}

.c-mega__panel {
	background: #fff;
	border: 1px solid var(--g-border);
	border-radius: var(--g-radius);
	box-shadow: var(--g-shadow);
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	max-height: calc(100vh - 190px);
	overflow: hidden;
}

.c-mega__parents {
	background: #f3f6fa;
	border-right: 1px solid var(--g-border);
	display: grid;
	align-content: start;
	max-height: calc(100vh - 190px);
	overflow-y: auto;
	padding: 8px 0;
}

.c-mega__parent {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #42566d;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	padding: 14px 16px;
}

.c-mega__parent:hover,
.c-mega__parent:focus-visible,
.c-mega__parent.is-active {
	background: #fff;
	color: var(--g-primary);
}

.c-mega__subpanels {
	position: relative;
	min-height: 430px;
	max-height: calc(100vh - 190px);
	overflow-y: auto;
	padding: 18px 20px 20px;
}

.c-mega__subpanel {
	display: none;
}

.c-mega__subpanel.is-active {
	display: block;
}

.c-mega__subgrid {
	display: grid;
	grid-template-columns: repeat(4, minmax(145px, 1fr));
	align-content: start;
	gap: 26px 34px;
	padding-right: 280px;
}

.c-mega__col {
	min-width: 0;
}

.c-mega__title {
	display: inline-block;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0;
	line-height: 1.25;
	margin-bottom: 8px;
	color: #006b5d;
}

.c-mega__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.c-mega__item a {
	color: var(--g-muted);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.45;
}

.c-mega__item a:hover {
	color: var(--g-text);
}

.c-mega__empty {
	color: var(--g-muted);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.c-mega__promo-card {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 240px;
	min-height: 230px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--g-primary), #ff5a62);
	color: #fff;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.c-mega__promo-eyebrow {
	margin: 0;
	opacity: 0.9;
	font-weight: 700;
}

.c-mega__promo-title {
	margin: 10px 0 14px 0;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.c-mega__promo-card .c-btn {
	align-self: flex-start;
	background: #fff;
	border-color: #fff;
	color: var(--g-primary);
}

.c-mega__promo-card .c-btn:hover,
.c-mega__promo-card .c-btn:focus-visible {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 255, 255, 0.92);
	color: var(--g-primary-600);
}

@media (max-width: 1100px) {
	.c-mega {
		left: 50%;
		transform: translateX(-50%);
	}

	.c-mega__panel {
		grid-template-columns: 220px minmax(0, 1fr);
	}

	.c-mega__subgrid {
		grid-template-columns: repeat(2, minmax(145px, 1fr));
		padding-right: 0;
	}

	.c-mega__promo-card {
		display: none;
	}
}

.c-footer {
	margin-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	background: var(--g-secondary);
	color: rgba(255, 255, 255, 0.94);
	font-size: 14px;
}

.c-footer .c-brand.c-brand--text {
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
}

.c-footer .custom-logo-link {
	display: inline-block;
	line-height: 0;
	margin-bottom: 10px;
}

.c-footer-hours {
	margin: 14px 0 0;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
}

.c-footer-contact {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.c-footer-contact__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.c-footer-contact__icon {
	flex-shrink: 0;
	color: rgba(255, 255, 255, 0.92);
	margin-top: 1px;
	display: flex;
}

.c-footer-contact__text,
.c-footer-contact__link {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.c-footer-contact__link {
	text-decoration: none;
}

.c-footer-contact__link:hover {
	text-decoration: underline;
	color: #fff;
}

.c-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.9fr)) minmax(0, 1fr);
	gap: 28px 24px;
	align-items: start;
	padding: 44px 0 28px;
}

.c-footer__col--brand {
	padding-right: 8px;
}

.c-footer__heading {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	line-height: 1.25;
}

.c-footer__heading--app {
	margin-top: 22px;
}

.c-footer-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.c-footer-nav__list > li > a,
.c-footer-nav__link {
	font-size: 13px;
	line-height: 1.45;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.c-footer-nav__list > li > a:hover,
.c-footer-nav__link:hover {
	text-decoration: underline;
	color: #fff;
}

.c-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
	transition: background 0.15s ease;
}

.c-footer-social__link:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.c-footer-social__link svg {
	display: block;
}

.c-footer-app {
	display: inline-block;
	line-height: 0;
	margin-top: 4px;
}

.c-footer-app__badge {
	max-width: min(164px, 100%);
	height: auto;
	display: block;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

/* Region / currency (Woo-aware label) */
.c-footer-region {
	position: relative;
	color: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	min-width: 0;
}

.c-footer-region::-webkit-details-marker {
	display: none;
}

.c-footer-region__summary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	user-select: none;
}

.c-footer-region__summary::-moz-list-bullet {
	display: none;
}

.c-footer-region__summary::marker {
	content: '';
}

.c-footer-region__chev::after {
	content: '';
	display: inline-block;
	width: 0.42em;
	height: 0.42em;
	border-right: 2px solid rgba(255, 255, 255, 0.9);
	border-bottom: 2px solid rgba(255, 255, 255, 0.9);
	transform: rotate(45deg) translateY(-2px);
	margin-left: 2px;
	vertical-align: middle;
}

details.c-footer-region[open] .c-footer-region__chev::after {
	transform: rotate(225deg) translateY(1px);
}

.c-footer-region__panel {
	position: absolute;
	z-index: 5;
	left: 0;
	bottom: calc(100% + 8px);
	min-width: 260px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid var(--g-border);
	background: #fff;
	box-shadow: 0 8px 28px rgba(0, 45, 90, 0.15);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
	color: #64748b;
}

.c-footer-region__note {
	margin: 0;
}

/* Bottom bar */
.c-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 18px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.c-footer__legal {
	margin: 0;
	margin-left: auto;
	text-align: right;
	max-width: 100%;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1100px) {
	.c-footer__main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.c-footer__col--social {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.c-footer__main {
		grid-template-columns: minmax(0, 1fr);
		padding-top: 32px;
	}

	.c-footer__bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.c-footer__legal {
		margin-left: 0;
		text-align: left;
	}
}

/* WooCommerce - modern product card */
.products {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Shop/archive page layout */
.shop-archive {
	padding: 16px 0 34px 0;
}

.shop-archive__head {
	margin-bottom: 8px;
}

.shop-archive__crumbs {
	font-size: 12px;
	color: var(--g-muted);
}

.shop-archive__crumbs .breadcrumb {
	margin: 0;
}

.shop-archive__title {
	margin: 8px 0 6px 0;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 850;
	color: var(--g-secondary);
}

.shop-archive__desc {
	color: var(--g-muted);
	font-size: 14px;
}

.shop-archive__cats {
	margin-top: 12px;
}

.shop-archive__banner {
	display: block;
	margin-top: 12px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--g-border);
	background-image: var(--g-bg-green);
	background-size: cover;
	background-position: center;
}

.shop-archive__banner-inner {
	padding: 16px;
	text-align: center;
	color: #fff;
	background: rgba(0, 45, 90, 0.55);
}

.shop-archive__banner-label {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
}

.shop-archive__banner-text {
	margin: 2px 0 0 0;
	font-size: 13px;
	font-weight: 500;
	opacity: 0.95;
}

.shop-archive__layout {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 18px;
	margin-top: 14px;
}

.shop-archive__sidebar {
	padding-right: 6px;
}

.shop-widget {
	margin-bottom: 16px;
}

.shop-widget__title {
	margin: 0 0 8px 0;
	font-size: 16px;
	font-weight: 800;
	color: var(--g-secondary);
}

.shop-cat-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.shop-cat-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	font-size: 13px;
}

.shop-cat-list li a {
	color: var(--g-text);
}

.shop-cat-list .count {
	color: var(--g-muted);
	font-size: 12px;
}

.shop-side-banner {
	display: grid;
	gap: 4px;
	padding: 18px 12px;
	border-radius: 10px;
	background: #efe2cd;
	color: var(--g-secondary);
	text-align: center;
	margin-bottom: 16px;
}

.shop-side-banner__text {
	font-weight: 800;
}

.shop-side-banner__sub {
	font-size: 13px;
	color: var(--g-muted);
}

.shop-archive__content .woocommerce-result-count {
	margin: 0;
	font-size: 12px;
	color: var(--g-muted);
	float: none !important;
	display: block;
}

.shop-archive__content .woocommerce-ordering {
	margin: 0 0 12px 0;
	float: none !important;
	display: block;
	text-align: right;
}

.shop-archive__content .woocommerce-ordering select {
	border: 1px solid var(--g-border);
	padding: 8px 10px;
	border-radius: 6px;
	background: #fff;
	font-size: 13px;
}

.shop-archive__content .products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 14px !important;
	align-items: stretch;
	clear: both;
	padding: 0;
	margin: 0;
}

.shop-archive__content ul.products::before,
.shop-archive__content ul.products::after {
	content: none !important;
	display: none !important;
}

/* Force reset WooCommerce default float/width rules inside our custom grid */
.shop-archive__content ul.products li.product,
.shop-archive__content ul.products li.type-product {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	clear: none !important;
	display: block;
	padding: 0 !important;
	left: auto !important;
	right: auto !important;
}

.shop-archive__content ul.products li.product.first,
.shop-archive__content ul.products li.product.last,
.shop-archive__content ul.products li.type-product.first,
.shop-archive__content ul.products li.type-product.last {
	clear: none !important;
}

.g-card {
	margin: 0;
}

.g-card__inner {
	border: 1px solid var(--g-border);
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	transition: box-shadow 140ms ease;
}

.g-card__inner:hover {
	box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
}

.g-card__media {
	position: relative;
	background: #f5f6f7;
	height: 210px;
	display: grid;
	place-items: center;
	overflow: visible;
}

.g-card__link {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 18px;
}

.g-card__media img {
	max-height: 145px;
	width: auto;
	object-fit: contain;
}

.g-card__badges {
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
}

.g-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 900;
	border: 0;
}

.g-badge--sale {
	background: rgba(34, 197, 94, 0.92);
	color: #fff;
}

.g-badge--oos {
	background: rgba(15, 23, 42, 0.86);
	color: #fff;
}

.g-card__tools {
	display: none;
}

.g-card__inner:hover .g-card__tools {
	display: none;
}


.g-card__body {
	padding: 12px 14px 16px 14px;
	display: grid;
	gap: 6px;
}

.g-card__cat {
	margin: 0;
	color: var(--g-muted);
	font-size: 13px;
	font-weight: 500;
}

.g-card__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--g-secondary);
}

.g-card__title,
.g-card__title a {
	font-size: 18px;
}

.g-card__title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.g-card__price {
	color: var(--g-primary);
	font-weight: 700;
	font-size: 15px;
}

.g-card__price .price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}

.g-card__price del {
	color: var(--g-muted);
	font-weight: 500;
	font-size: 13px;
}

.g-card__price ins {
	text-decoration: none;
}

.g-card__footer {
	margin-top: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.g-card__cta a.button,
.g-card__cta button.button {
	width: auto;
	min-width: 92px;
	padding: 8px 12px !important;
	border-radius: 12px !important;
	font-weight: 700;
	font-size: 13px;
	background: var(--g-primary) !important;
	color: #fff !important;
	border: 2px solid var(--g-primary) !important;
	text-transform: none;
	line-height: 1.2;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.g-card__cta a.button.loading,
.g-card__cta button.button.loading {
	opacity: 0.75;
	pointer-events: none;
}

.g-card__cta a.button:hover,
.g-card__cta button.button:hover {
	background: var(--g-primary-600) !important;
	border-color: var(--g-primary-600) !important;
	color: #fff !important;
}

.g-card__cta a.button.added,
.g-card__cta button.button.added {
	border-color: var(--g-secondary) !important;
	background: var(--g-secondary) !important;
	color: #fff !important;
}

.g-card__cta a.added_to_cart {
	display: inline-flex;
	margin-top: 0;
	font-weight: 700;
	font-size: 12px;
	color: var(--g-primary);
}

@media (max-width: 900px) {
	.c-topbar__inner,
	.c-topbar__left,
	.c-topbar__right {
		flex-wrap: wrap;
	}

	.c-header__row {
		display: grid;
		grid-template-columns: auto 1fr auto;
	}

	.c-header__burger {
		display: inline-flex;
		order: 1;
	}

	.c-cats,
	.c-header__nav,
	.c-icon-link--hide-sm {
		display: none;
	}

	.c-header__brand {
		order: 2;
	}

	.c-header__actions {
		margin-left: 0;
		order: 3;
	}

	.c-header__search {
		grid-column: 1 / -1;
		max-width: none;
		order: 4;
	}

	.c-search {
		grid-template-columns: 1fr auto;
	}

	.c-search__select {
		display: none;
	}

	.h-hero__track {
		height: auto;
		min-height: 280px;
		max-height: none;
		overflow: visible;
		border-radius: 14px;
	}

	.h-hero__slide.is-active {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		height: auto;
		min-height: 280px;
		padding: 16px;
	}

	.h-hero__content {
		order: 1;
		padding-bottom: 0;
	}

	.h-hero__media {
		display: flex;
		order: 2;
		height: clamp(200px, 48vw, 280px);
		max-height: 46vh;
		min-height: 180px;
		justify-content: center;
		align-items: flex-end;
	}

	.h-hero__photo {
		height: 100%;
		max-height: 280px;
		min-height: 160px;
		background-position: center bottom;
	}

	.h-grid--cats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.h-grid--posts {
		grid-template-columns: 1fr;
	}

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

	.h-banners {
		grid-template-columns: 1fr;
	}

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

	.shop-archive__content .products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.shop-archive__content ul.products li.product,
	.shop-archive__content ul.products li.type-product {
		width: auto !important;
	}

	.hp-benefits__row {
		grid-template-columns: 1fr;
	}

	.hp-promo__inner {
		grid-template-columns: 1fr;
	}

	.hp-pgrid__grid {
		grid-template-columns: 1fr;
	}

	.hp-pgrid__tile {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.hp-pgrid__text {
		max-width: none;
		width: 100%;
		min-height: 0;
		padding: 22px 22px 8px;
		flex: 0 0 auto;
	}

	.hp-pgrid__tile--a .hp-pgrid__text,
	.hp-pgrid__tile--b .hp-pgrid__text {
		max-width: none;
		min-height: 0;
	}

	.hp-pgrid__media {
		position: relative;
		inset: auto;
		right: auto;
		bottom: auto;
		width: 100%;
		height: clamp(168px, 48vw, 240px);
		max-height: none;
		flex: 1 1 auto;
		justify-content: center;
		align-items: flex-end;
		padding: 0 14px 20px;
		margin-top: auto;
	}

	.hp-pgrid__tile--c .hp-pgrid__media,
	.hp-pgrid__tile--d .hp-pgrid__media,
	.hp-pgrid__tile--e .hp-pgrid__media {
		width: 100%;
		height: clamp(172px, 50vw, 234px);
	}

	.hp-pgrid__img {
		max-height: min(232px, 100%);
		object-position: center bottom;
	}

	.hp-topcats__row {
		justify-content: flex-start;
	}

	.hp-topcat {
		flex: 0 0 auto;
	}

	.hp-pgrid__tile--a,
	.hp-pgrid__tile--b,
	.hp-pgrid__tile--c,
	.hp-pgrid__tile--d,
	.hp-pgrid__tile--e {
		grid-column: auto;
	}

	.g-card__tools {
		opacity: 1;
		transform: none;
	}
}

/* ─── WooCommerce global accents (matches Kamindi branding) ─── */
.woocommerce span.onsale {
	background: var(--g-primary);
	color: #fff;
	border-radius: 999px;
	min-height: auto;
	min-width: auto;
	padding: 6px 10px;
	line-height: 1;
	border: 0;
	box-shadow: 0 4px 12px rgba(237, 28, 36, 0.25);
}

.woocommerce ul.products li.product .price {
	color: var(--g-primary);
	font-weight: 700;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	color: var(--g-primary);
	font-weight: 700;
}

.woocommerce ul.products li.product .price del {
	font-weight: 600;
	opacity: 0.65;
	color: var(--g-muted);
}

.single-product div.product .summary .price,
.single-product div.product .summary .price ins {
	color: var(--g-primary);
	font-weight: 800;
}

.woocommerce-cart .checkout-button.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce div.product form.cart button.single_add_to_cart_button {
	background-color: var(--g-primary);
	border-radius: var(--g-radius);
	color: #fff;
	border-color: var(--g-primary);
}

.woocommerce-cart .checkout-button.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
	background-color: var(--g-primary-600);
	border-color: var(--g-primary-600);
	color: #fff;
}

/* ─── Single product page cleanup & modern layout ─── */
.single-product .site-content {
	padding-top: 14px;
}

.single-product .woocommerce-breadcrumb {
	font-size: 12px;
	color: var(--g-muted);
	margin-bottom: 14px;
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 0;
	align-items: stretch;
	background: #fff;
	border: 1px solid var(--g-border);
	border-radius: 18px;
	box-shadow: 0 6px 32px rgba(2, 6, 23, 0.08);
	overflow: hidden;
}

/* Keep all sections after summary/gallery on full width rows */
.single-product div.product > .woocommerce-tabs,
.single-product div.product > .related.products,
.single-product div.product > .upsells.products,
.single-product div.product > .woocommerce-tabs + .related.products {
	grid-column: 1 / -1;
	width: 100%;
}

.single-product div.product > .related.products,
.single-product div.product > .upsells.products {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery {
	margin: 0;
	padding: 28px;
	border: none;
	border-radius: 0;
	border-right: 1px solid var(--g-border);
	background: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
}

.single-product div.product .summary {
	margin: 0;
	padding: 32px 28px;
	border: none;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
}

.single-product div.product .product_title {
	margin: 0 0 8px;
	color: var(--g-secondary);
	font-size: clamp(24px, 2vw, 32px);
	line-height: 1.15;
}

.single-product div.product .summary .price {
	margin: 4px 0 12px;
	font-size: 24px;
}

.single-product div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 14px 0;
}

.single-product div.product form.cart .quantity .qty {
	min-height: 42px;
	border: 1px solid var(--g-border);
	border-radius: 10px;
	padding: 0 10px;
}

.single-product div.product .product_meta {
	padding-top: 12px;
	margin-top: 12px;
	border-top: 1px solid var(--g-border);
	font-size: 13px;
	color: var(--g-muted);
}

.single-product .woocommerce-tabs {
	margin-top: 26px;
	padding: 18px;
	border: 1px solid var(--g-border);
	border-radius: 14px;
	background: #fff;
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 !important;
	margin: 0 0 14px !important;
	border: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li {
	border: 1px solid var(--g-border) !important;
	background: #f8fafc !important;
	border-radius: 999px !important;
	padding: 0 !important;
	margin: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	content: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
	padding: 8px 14px !important;
	font-weight: 700 !important;
	color: var(--g-secondary) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active {
	background: var(--g-secondary) !important;
	border-color: var(--g-secondary) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	color: #fff !important;
}

.single-product .related.products {
	margin-top: 28px;
}

.single-product .related.products > h2 {
	font-size: 24px;
	margin: 0 0 12px;
	color: var(--g-secondary);
}

.single-product .related.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px !important;
}

.single-product .related.products ul.products li.product,
.single-product .related.products ul.products li.type-product,
.single-product .upsells.products ul.products li.product,
.single-product .upsells.products ul.products li.type-product {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	clear: none !important;
}

.single-product .related.products ul.products li.product.first,
.single-product .related.products ul.products li.product.last,
.single-product .related.products ul.products li.type-product.first,
.single-product .related.products ul.products li.type-product.last {
	clear: none !important;
}

@media (max-width: 980px) {
	.single-product div.product {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.single-product div.product .woocommerce-product-gallery {
		border-right: none !important;
		border-bottom: 1px solid var(--g-border) !important;
	}

	.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ─── Shop branch picker ─── */
body.groceria-branch-modal-open {
	overflow: hidden;
}

.g-branch-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 16px;
}

.g-branch-modal[hidden] {
	display: none !important;
}

.g-branch-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 35, 50, 0.55);
	backdrop-filter: blur(4px);
}

.g-branch-modal__panel {
	position: relative;
	z-index: 1;
	max-width: 420px;
	width: 100%;
	background: var(--g-bg);
	border-radius: var(--g-radius);
	box-shadow: var(--g-shadow);
	padding: clamp(24px, 5vw, 32px);
}

.g-branch-modal__title {
	margin: 0 0 8px;
	font-family: Fredoka, var(--g-font-display, system-ui), sans-serif;
	font-size: 1.55rem;
}

.g-branch-modal__lead {
	margin: 0 0 24px;
	color: var(--g-muted);
	font-size: 0.98rem;
}

.g-branch-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.g-branch-modal__pick {
	justify-content: center;
	width: 100%;
	min-height: 48px;
}

.g-branch-modal__status {
	margin: 16px 0 0;
	color: var(--g-muted);
	font-size: 0.92rem;
}

.c-branch-chip {
	background: transparent;
	border: 0;
	color: inherit;
	font: inherit;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
	padding: 0 8px 0 0;
}

.c-branch-chip:hover {
	color: var(--g-secondary);
}

button.c-icon-link {
	font: inherit;
	color: inherit;
	cursor: pointer;
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.1);
}

.c-wish-badge {
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	font-size: 11px;
	font-weight: 800;
	line-height: 18px;
	text-align: center;
	border-radius: 999px;
	background: var(--g-primary);
	color: #fff;
}

/* Product card wishlist / quick view */
.g-card__tools {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transition: opacity 0.18s ease;
}

.g-card__inner:hover .g-card__tools,
.g-card:focus-within .g-card__tools {
	opacity: 1;
}

@media (hover: none) {
	.g-card__tools {
		opacity: 1;
	}
}

.g-card__tool {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--g-border);
	background: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
	padding: 0;
	color: var(--g-secondary);
}

.g-card__tool:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(2, 6, 23, 0.12);
	border-color: var(--g-secondary);
}

.g-card__tool svg {
	display: block;
	pointer-events: none;
}

.g-card__tool--wishlist:not(.is-in-wishlist) .g-card__tool-icon--wish-added {
	display: none;
}

.g-card__tool--wishlist.is-in-wishlist {
	border-color: var(--g-primary);
	color: var(--g-primary);
}

.g-card__tool--wishlist.is-in-wishlist .g-card__tool-icon--wish {
	display: none;
}

/* Product card footer like button */
.g-card__footer-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.g-card__like {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--g-border);
	background: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	transition: border-color 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
	padding: 0;
}

.g-card__like:hover {
	border-color: var(--g-primary);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(237, 28, 36, 0.18);
}

.g-card__like svg {
	display: block;
	color: var(--g-muted);
	pointer-events: none;
	transition: color 0.15s ease;
}

.g-card__like:not(.is-in-wishlist) .g-card__like-icon--on {
	display: none;
}

.g-card__like.is-in-wishlist {
	border-color: var(--g-primary);
	background: #fff0f0;
}

.g-card__like.is-in-wishlist .g-card__like-icon--off {
	display: none;
}

.g-card__like.is-in-wishlist svg {
	color: var(--g-primary);
}

/* Product card inline qty control (- 1 +) */
.g-card-qty {
	display: flex;
	align-items: stretch;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid var(--g-primary);
	height: 36px;
}

.g-card-qty__btn {
	width: 36px;
	flex-shrink: 0;
	background: var(--g-primary);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 20px;
	font-weight: 700;
	display: grid;
	place-items: center;
	padding: 0;
	line-height: 1;
	transition: background 0.12s ease;
}

.g-card-qty__btn:hover:not(:disabled) {
	background: var(--g-primary-600, #c8151c);
}

.g-card-qty__btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.g-card-qty__val {
	flex: 1;
	min-width: 30px;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
	color: var(--g-secondary);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	user-select: none;
}

/* Wishlist drawer */
.c-wlist-loading,
.c-wlist-error,
.c-wlist-empty {
	margin: 0;
	padding: 12px;
	color: var(--g-muted);
}

.c-wlist-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--g-border);
}

.c-wlist-item:last-child {
	border-bottom: 0;
}

.c-wlist-item__thumb img {
	max-width: 72px;
	height: auto;
	border-radius: 8px;
}

.c-wlist-item__meta {
	display: grid;
	gap: 6px;
	min-width: 0;
	flex: 1;
}

.c-wlist-item__title {
	font-weight: 700;
	color: var(--g-secondary);
	text-decoration: none;
}

.c-wlist-item__price {
	font-size: 14px;
}

.c-wlist-item__row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

/* Quick view */
body.groceria-qv-open {
	overflow: hidden;
}

.g-qv {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: grid;
	place-items: center;
	padding: 18px;
}

.g-qv[hidden] {
	display: none !important;
}

.g-qv__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
	cursor: pointer;
	border: 0;
	padding: 0;
	z-index: 0;
}

.g-qv__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	max-height: min(90vh, 860px);
	overflow: auto;
	background: var(--g-bg);
	border-radius: var(--g-radius);
	box-shadow: var(--g-shadow);
	padding: clamp(14px, 3vw, 22px);
}

.g-qv__close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
}

.g-qv__inner {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr minmax(0, 340px);
}

@media (max-width: 782px) {
	.g-qv__inner {
		grid-template-columns: 1fr;
	}
}

.g-qv__gallery {
	background: var(--g-surface);
	border-radius: 12px;
	padding: 12px;
	display: grid;
	place-items: center;
	min-height: 220px;
}

.g-qv__img {
	max-width: 100%;
	height: auto;
	max-height: 360px;
	object-fit: contain;
}

.g-qv__title {
	margin: 0 0 10px;
	font-size: clamp(20px, 3vw, 26px);
}

.g-qv__title a {
	text-decoration: none;
	color: var(--g-secondary);
}

.g-qv__price {
	margin-bottom: 10px;
	color: var(--g-primary);
	font-weight: 800;
	font-size: 1.2rem;
}

.g-qv__excerpt {
	color: var(--g-muted);
	font-size: 0.94rem;
	margin-bottom: 12px;
}

.g-qv__cart-wrap form.cart {
	margin-top: 0;
}

.g-qv__full {
	display: inline-block;
	margin-top: 14px;
	font-weight: 700;
	text-decoration: none;
	color: var(--g-secondary);
}

.g-qv__loading,
.g-qv__error {
	margin: 0;
	padding: 24px;
	text-align: center;
	color: var(--g-muted);
}

/* Desktop header redesign to match reference layout. */
@media (min-width: 700px) {
	.c-header {
		background: #fff !important;
		color: var(--g-text) !important;
		border-bottom: 1px solid #e6ecef;
	}

	.c-topbar {
		background: #226699 !important;
		color: #fff !important;
		border-bottom: 0 !important;
	}

	.c-topbar__inner {
		min-height: 30px;
		padding: 6px 0 !important;
	}

	.c-topbar__pill {
		background: transparent !important;
		border: 0 !important;
		padding: 0 !important;
		font-size: 11px;
	}

	.c-topbar__link,
	.c-topbar__menu a {
		font-size: 11px;
		color: rgba(255, 255, 255, 0.92) !important;
	}

	.c-header__main {
		background: #fff !important;
	}

	.c-header__main > .l-container {
		width: 100% !important;
		max-width: none !important;
		padding-left: 8px;
		padding-right: 8px;
	}

	.c-header__row {
		display: grid !important;
		grid-template-columns: auto 1fr auto !important;
		grid-template-areas: "brand search actions" !important;
		align-items: center !important;
		gap: 20px !important;
		padding: 14px 0 10px !important;
		width: 100% !important;
	}

	.c-header__burger {
		display: none !important;
	}

	.c-cats {
		display: block !important;
	}

	.c-cats__btn {
		border-radius: 999px !important;
		padding: 9px 14px !important;
		height: 40px;
		background: var(--g-primary) !important;
		border: 1px solid var(--g-primary) !important;
		color: #fff !important;
	}

	.c-header__brand {
		order: 2 !important;
		grid-area: brand !important;
	}

	.c-header .c-brand.c-brand--text {
		color: #0f172a !important;
		text-shadow: none !important;
	}

	.c-header .custom-logo-link img,
	.c-header .kamindi-brand-logo {
		max-height: 44px !important;
		width: auto !important;
	}

	.c-header__search {
		order: 3 !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		grid-area: search !important;
	}

	.c-search {
		grid-template-columns: 180px minmax(0, 1fr) auto !important;
		width: 100% !important;
		padding: 4px 6px !important;
		border-radius: 8px !important;
		border: 1px solid #d7e2e8 !important;
		background: #fff !important;
	}

	.c-search__select {
		display: block !important;
		border-right: 1px solid #d7e2e8 !important;
	}

	.c-search__input {
		padding: 9px 10px !important;
		font-size: 13px !important;
	}

	.c-search__submit {
		height: 34px !important;
		border-radius: 6px !important;
		padding-inline: 14px !important;
	}

	.c-header__actions {
		order: 4 !important;
		display: inline-flex !important;
		gap: 8px !important;
		white-space: nowrap !important;
		justify-self: end !important;
		grid-area: actions !important;
	}

	.c-icon-link,
	.c-mini-cart,
	button.c-icon-link {
		background: #fff !important;
		border: 1px solid #d7e2e8 !important;
		color: #1f2937 !important;
		padding: 8px !important;
		min-width: 34px;
		height: 34px;
		justify-content: center;
	}

	.c-icon-link__label,
	.c-mini-cart__label,
	.c-mini-cart__subtotal {
		display: inline !important;
	}

	.c-header__nav {
		border-top: 0 !important;
		padding: 0 0 10px !important;
	}

	.c-nav {
		color: #334155 !important;
		gap: 12px !important;
	}

	.c-nav a {
		color: #334155 !important;
		padding: 6px 8px !important;
		font-size: 13px !important;
	}

	.c-nav a:hover {
		background: #f1f5f9 !important;
	}
}

@media (min-width: 700px) and (max-width: 1280px) {
	.c-header__main > .l-container {
		padding-left: 14px;
		padding-right: 14px;
	}

	.c-header__row {
		grid-template-columns: auto 1fr auto !important;
		gap: 12px !important;
	}

	.c-search {
		grid-template-columns: 145px minmax(0, 1fr) auto !important;
	}
}

/* Fresh header lock: full-width single-row layout */
@media (min-width: 700px) {
	.c-header .c-header__row--fresh {
		display: grid !important;
		grid-template-columns: max-content max-content minmax(360px, 1fr) max-content !important;
		grid-template-areas: "cats brand search actions" !important;
		align-items: center !important;
		column-gap: 14px !important;
		width: 100% !important;
	}

	.c-header .c-cats--fresh {
		grid-area: cats !important;
	}

	.c-header .c-header__brand--fresh {
		grid-area: brand !important;
	}

	.c-header .c-header__search--fresh {
		grid-area: search !important;
		min-width: 0 !important;
		width: 100% !important;
	}

	.c-header .c-search--fresh {
		width: 100% !important;
	}

	.c-header .c-header__actions--fresh {
		grid-area: actions !important;
		justify-self: end !important;
	}
}

/* Final demo-style header (matches provided reference screenshot). */
@media (min-width: 700px) {
	.c-header--demo {
		background: #fff !important;
		border-bottom: 1px solid #e5e7eb !important;
	}

	.c-header--demo .c-topbar {
		background: #006838 !important;
	}

	.c-header--demo .c-topbar__inner {
		display: grid !important;
		grid-template-columns: 1fr 1fr 1fr;
		align-items: center;
		gap: 10px;
		min-height: 28px;
		padding: 4px 0 !important;
	}

	.c-header--demo .c-topbar__left {
		justify-self: start;
	}

	.c-header--demo .c-topbar__center {
		justify-self: center;
		text-align: center;
	}

	.c-header--demo .c-topbar__promo {
		color: #fff;
		font-size: 10px;
		font-weight: 600;
		letter-spacing: 0.01em;
	}

	.c-header--demo .c-topbar__right--icons {
		justify-self: end;
		display: inline-flex;
		gap: 8px;
	}

	.c-header--demo .c-topbar__icon {
		color: #fff;
		font-size: 10px;
		font-weight: 700;
		line-height: 1;
	}

	.c-header--demo .c-topbar__pill {
		font-size: 10px;
		color: #fff;
	}

	.c-header--demo .c-header__main > .l-container {
		width: min(100% - 28px, 1360px) !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.c-header--demo .c-header__row--fresh {
		grid-template-columns: max-content minmax(460px, 1fr) max-content !important;
		grid-template-areas: "brand search actions" !important;
		column-gap: 18px !important;
		padding: 14px 0 8px !important;
	}

	.c-header--demo .c-header__burger,
	.c-header--demo .c-cats,
	.c-header--demo .c-cats--fresh {
		display: none !important;
	}

	.c-header--demo .c-header__brand--fresh {
		grid-area: brand !important;
	}

	.c-header--demo .custom-logo-link img,
	.c-header--demo .kamindi-brand-logo {
		max-height: 42px !important;
	}

	.c-header--demo .c-header__search--fresh {
		grid-area: search !important;
	}

	.c-header--demo .c-search--fresh {
		grid-template-columns: minmax(0, 1fr) auto !important;
		border-radius: 6px !important;
		border: 1px solid #d8e3db !important;
		padding: 2px !important;
	}

	.c-header--demo .c-search__select {
		display: none !important;
	}

	.c-header--demo .c-search__input {
		font-size: 12px !important;
		padding: 10px 12px !important;
	}

	.c-header--demo .c-search__submit {
		height: 34px !important;
		min-width: 36px;
		padding: 0 12px !important;
		border-radius: 4px !important;
		background: #16a34a !important;
		border-color: #16a34a !important;
	}

	.c-header--demo .c-header__actions--fresh {
		grid-area: actions !important;
	}

	.c-header--demo .c-icon-link,
	.c-header--demo .c-mini-cart,
	.c-header--demo button.c-icon-link {
		width: 32px;
		height: 32px;
		min-width: 32px;
		padding: 0 !important;
		border-radius: 4px !important;
		border: 1px solid #d8e3db !important;
		background: #fff !important;
	}

	.c-header--demo .c-icon-link__label,
	.c-header--demo .c-mini-cart__label,
	.c-header--demo .c-mini-cart__subtotal,
	.c-header--demo .c-mini-cart__count {
		display: none !important;
	}

	.c-header--demo .c-header__nav {
		border-top: 0 !important;
		padding: 0 0 10px !important;
	}

	.c-header--demo .c-nav {
		gap: 8px !important;
	}

	.c-header--demo .c-nav a {
		font-size: 11px !important;
		font-weight: 600 !important;
		padding: 6px 8px !important;
		color: #111827 !important;
	}
}

/* Final product page polish (strong override) */
.single-product .site-content {
	width: min(100% - 24px, 1320px);
	margin-inline: auto;
}

.single-product .product {
	margin-top: 10px;
}

.single-product div.product div.images img {
	max-height: 520px;
	width: auto;
	object-fit: contain;
	margin-inline: auto;
}

.single-product div.product .woocommerce-product-gallery {
	background: #f8fafc !important;
	border: none !important;
	border-right: 1px solid var(--g-border) !important;
	border-radius: 0 !important;
}

.single-product div.product .summary {
	background: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 32px 28px !important;
}

.single-product div.product .summary .product_title {
	font-size: clamp(30px, 2.6vw, 42px) !important;
	line-height: 1.1 !important;
	margin-bottom: 10px !important;
}

.single-product div.product .summary .price {
	font-size: 32px !important;
	margin: 8px 0 14px !important;
}

.single-product div.product form.cart .quantity .qty {
	min-width: 64px;
	min-height: 40px;
}

.single-product div.product form.cart .single_add_to_cart_button {
	min-height: 40px;
	padding-inline: 18px !important;
	font-weight: 700 !important;
}

.single-product .woocommerce-tabs {
	margin-top: 22px !important;
	padding: 20px !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 16px !important;
	background: #fff !important;
}

.single-product .woocommerce-tabs .panel {
	margin: 0 !important;
	padding: 10px 2px 0 !important;
}

.single-product #reviews #comments ol.commentlist li .comment-text {
	border: 1px solid #e2e8f0 !important;
	border-radius: 10px !important;
	padding: 12px !important;
}

.single-product #review_form_wrapper {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed #e2e8f0;
}

.single-product #review_form .comment-form-rating,
.single-product #review_form .comment-form-comment,
.single-product #review_form .comment-form-author,
.single-product #review_form .comment-form-email {
	margin-bottom: 12px !important;
}

.single-product #review_form input[type="text"],
.single-product #review_form input[type="email"],
.single-product #review_form textarea {
	width: 100%;
	border: 1px solid #dbe4ee;
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 14px;
}

.single-product #review_form #submit {
	background: var(--g-primary) !important;
	border: 1px solid var(--g-primary) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 10px 18px !important;
	font-weight: 700 !important;
}

/* ── Nav row: two-row header redesign ── */
@media (min-width: 700px) {
	/* Separator between logo row and nav row */
	.c-header__nav {
		border-top: 1px solid #e8ecef !important;
		padding: 0 !important;
	}

	/* Flex row wrapping cats btn + primary nav + promo links */
	.c-nav-row {
		display: flex;
		align-items: center;
		gap: 4px;
		padding: 4px 0;
	}

	/* All Categories button in the nav row */
	.c-cats--nav {
		display: flex !important;
		position: relative;
		flex: 0 0 auto;
		align-self: stretch;
		align-items: center;
		margin-right: 4px;
	}

	.c-cats--nav .c-cats__btn {
		background: #226699 !important;
		border-color: #226699 !important;
		color: #fff !important;
		border-radius: 6px !important;
		height: 36px !important;
		padding: 0 14px !important;
		font-size: 13px !important;
		font-weight: 600 !important;
		white-space: nowrap;
	}

	/* Category nav: horizontal list of top-level categories */
	.c-cat-nav {
		display: flex;
		align-items: center;
		gap: 2px;
		list-style: none;
		margin: 0;
		padding: 0;
		flex-wrap: nowrap;
		flex: 1 1 0;       /* take only available flex space */
		min-width: 0;      /* allow shrinking inside flex row */
		overflow-x: clip;  /* clip excess items; positioned dropdowns are unaffected */
	}

	.c-cat-nav__item {
		position: relative;
	}

	.c-cat-nav__link {
		display: inline-flex;
		align-items: center;
		padding: 8px 10px;
		color: #1f2937;
		font-size: 13px;
		font-weight: 600;
		text-decoration: none;
		border-radius: 6px;
		white-space: nowrap;
		line-height: 1;
	}

	.c-cat-nav__link:hover {
		background: #f1f5f9;
		color: #0a6b45;
	}

	/* Chevron for categories that have sub-items */
	.c-cat-nav__item.has-sub > .c-cat-nav__link::after {
		content: " ▾";
		font-size: 10px;
		opacity: 0.55;
		margin-left: 2px;
	}

	/* Sub-category dropdown */
	.c-cat-nav__sub {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 190px;
		background: #fff;
		border: 1px solid #e5e7eb;
		border-radius: 8px;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
		list-style: none;
		margin: 4px 0 0;
		padding: 6px 0;
		z-index: 400;
	}

	.c-cat-nav__item:hover > .c-cat-nav__sub {
		display: block;
	}

	.c-cat-nav__sub li a {
		display: block;
		padding: 8px 16px;
		color: #1f2937;
		font-size: 13px;
		font-weight: 500;
		text-decoration: none;
		white-space: nowrap;
	}

	.c-cat-nav__sub li a:hover {
		background: #f0fdf4;
		color: #0a6b45;
	}

	/* Separator between cats btn and cat nav */
	.c-cats--nav {
		border-right: 1px solid #e5e7eb;
		padding-right: 10px;
		margin-right: 6px;
	}

	/* Primary nav fills remaining space */
	.c-nav-row > .c-nav {
		flex: 1 1 auto;
		flex-wrap: wrap;
		padding: 0;
	}

	/* Sub-menu dropdown — hidden by default, shown on hover */
	.c-nav > li {
		position: relative;
	}

	.c-nav .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 200px;
		background: #fff;
		border: 1px solid #e5e7eb;
		border-radius: 8px;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
		list-style: none;
		margin: 4px 0 0;
		padding: 6px 0;
		z-index: 400;
	}

	.c-nav > li:hover > .sub-menu {
		display: block;
	}

	.c-nav .sub-menu a {
		display: block !important;
		padding: 8px 16px !important;
		color: #1f2937 !important;
		font-size: 13px !important;
		font-weight: 500 !important;
		background: transparent !important;
		border-radius: 0 !important;
		white-space: nowrap;
		text-decoration: none;
	}

	.c-nav .sub-menu a:hover {
		background: #f0fdf4 !important;
		color: #0a6b45 !important;
	}

	/* Down-chevron indicator for items with children */
	.c-nav > li.menu-item-has-children > a::after {
		content: " ▾";
		font-size: 10px;
		opacity: 0.55;
		margin-left: 2px;
	}

	/* Promo links on the far right of the nav bar */
	.c-nav-promos {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-left: auto;
		padding-left: 16px;
		border-left: 1px solid #e5e7eb;
		flex-shrink: 0;
	}

	.c-nav-promo {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		color: #ed1c24;
		font-weight: 700;
		font-size: 12px;
		text-decoration: none;
		white-space: nowrap;
	}

	.c-nav-promo:hover {
		text-decoration: underline;
		text-underline-offset: 2px;
	}
}

/* Hide the nav row on mobile (parent .c-header__nav is already hidden) */
@media (max-width: 699px) {
	.c-nav-row {
		display: none;
	}
}

.c-footer-region {
	display: flex;
	align-items: center;
}

.c-footer-region__summary {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	cursor: default;
}

.c-footer-region summary::-webkit-details-marker {
	display: none;
}

.c-footer-region__label {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.c-footer-region__logo {
	width: 90px;   /* adjust size here */
	height: auto;
	display: block;
	object-fit: contain;
}

/* ═══════════════════════════════════════════
   CART PAGE – full redesign
═══════════════════════════════════════════ */

/* Page wrapper spacing */
.woocommerce-cart .site-content {
	padding-top: 28px;
	padding-bottom: 56px;
}

/* Page title */
.woocommerce-cart h1.entry-title,
.woocommerce-cart .woocommerce > h1 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 24px;
	color: var(--g-text);
}

/* ── Two-column layout ── */
.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 24px;
	align-items: start;
}

.woocommerce-cart-form,
.cart-collaterals {
	float: none !important;
	width: auto !important;
}

/* ── Cart form card ── */
.woocommerce-cart-form {
	background: #fff;
	border: 1px solid var(--g-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(2,6,23,.05);
}

/* Table */
.woocommerce-cart .shop_table.cart {
	width: 100%;
	border-collapse: collapse;
	margin: 0 !important;
}

.woocommerce-cart .shop_table.cart thead tr {
	background: #f8fafc;
	border-bottom: 1px solid var(--g-border);
}

.woocommerce-cart .shop_table.cart thead th {
	padding: 13px 18px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--g-muted);
	text-align: left;
}

.woocommerce-cart .shop_table.cart thead th.product-remove,
.woocommerce-cart .shop_table.cart thead th.product-thumbnail {
	width: 40px;
}

/* Rows */
.woocommerce-cart .woocommerce-cart-form__cart-item {
	border-bottom: 1px solid var(--g-border);
	transition: background .15s;
}

.woocommerce-cart .woocommerce-cart-form__cart-item:hover {
	background: #fafbff;
}

.woocommerce-cart .woocommerce-cart-form__cart-item td {
	padding: 16px 18px;
	vertical-align: middle;
}

/* Remove button */
.woocommerce-cart .product-remove a.remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50% !important;
	background: #fef2f2 !important;
	color: #dc2626 !important;
	font-size: 20px !important;
	line-height: 1 !important;
	text-decoration: none !important;
	transition: background .2s;
}

.woocommerce-cart .product-remove a.remove:hover {
	background: #fee2e2 !important;
}

/* Thumbnail */
.woocommerce-cart .product-thumbnail img {
	width: 76px !important;
	height: 76px !important;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid var(--g-border);
	display: block;
}

/* Product name */
.woocommerce-cart td.product-name a {
	font-weight: 700;
	font-size: 15px;
	color: var(--g-text);
	text-decoration: none;
	line-height: 1.35;
}

.woocommerce-cart td.product-name a:hover {
	color: var(--g-primary);
}

/* Price & subtotal */
.woocommerce-cart .product-price .woocommerce-Price-amount,
.woocommerce-cart .product-subtotal .woocommerce-Price-amount {
	font-weight: 700;
	font-size: 15px;
	color: var(--g-text);
}

.woocommerce-cart .product-subtotal .woocommerce-Price-amount {
	color: var(--g-primary);
}

/* Quantity input */
.woocommerce-cart .product-quantity .input-text.qty {
	width: 58px !important;
	padding: 7px 10px;
	border: 1px solid var(--g-border);
	border-radius: 9px;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
}

/* Coupon + Update cart actions row */
.woocommerce-cart .actions {
	padding: 16px 18px !important;
	background: #f8fafc;
	display: flex !important;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	border-top: 1px solid var(--g-border);
}

.woocommerce-cart .coupon {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 auto;
}

.woocommerce-cart .coupon #coupon_code {
	border: 1px solid var(--g-border) !important;
	border-radius: 9px !important;
	padding: 8px 14px !important;
	font-size: 14px !important;
	min-width: 160px;
	outline: none;
}

.woocommerce-cart .coupon #coupon_code:focus {
	border-color: var(--g-primary) !important;
	box-shadow: 0 0 0 3px rgba(10,107,69,.12);
}

.woocommerce-cart .coupon .button {
	background: #fff !important;
	border: 1px solid var(--g-border) !important;
	color: var(--g-text) !important;
	border-radius: 9px !important;
	padding: 8px 16px !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	cursor: pointer !important;
	transition: border-color .2s, color .2s;
}

.woocommerce-cart .coupon .button:hover {
	border-color: var(--g-primary) !important;
	color: var(--g-primary) !important;
}

/* Update cart button */
.woocommerce-cart button[name="update_cart"] {
	background: #fff !important;
	border: 1px solid var(--g-border) !important;
	color: var(--g-muted) !important;
	border-radius: 9px !important;
	padding: 8px 16px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: border-color .2s, color .2s;
}

.woocommerce-cart button[name="update_cart"]:hover {
	border-color: var(--g-primary) !important;
	color: var(--g-primary) !important;
}

/* ── Cart totals card ── */
.cart_totals {
	background: #fff;
	border: 1px solid var(--g-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(2,6,23,.05);
	float: none !important;
	width: auto !important;
}

.cart_totals h2 {
	padding: 16px 22px;
	margin: 0 !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--g-muted) !important;
	background: #f8fafc;
	border-bottom: 1px solid var(--g-border);
}

.cart_totals .shop_table {
	width: 100%;
	border-collapse: collapse;
}

.cart_totals .shop_table tr {
	border-bottom: 1px solid var(--g-border);
}

.cart_totals .shop_table th,
.cart_totals .shop_table td {
	padding: 14px 22px;
	font-size: 14px;
	vertical-align: middle;
}

.cart_totals .shop_table th {
	font-weight: 600;
	color: var(--g-muted);
}

.cart_totals .shop_table td {
	text-align: right;
	font-weight: 600;
}

/* Order total row */
.cart_totals .order-total {
	border-bottom: none;
}

.cart_totals .order-total th {
	font-size: 15px;
	font-weight: 800;
	color: var(--g-text);
}

.cart_totals .order-total td {
	font-size: 22px;
	font-weight: 800;
}

.cart_totals .order-total td .woocommerce-Price-amount {
	color: var(--g-primary);
}

/* Proceed to checkout button */
.wc-proceed-to-checkout {
	padding: 20px 22px !important;
	background: #f0fdf4;
	border-top: 1px solid var(--g-border);
}

.wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout .checkout-button {
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	padding: 15px 20px !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	letter-spacing: .03em !important;
	border-radius: 14px !important;
	background: var(--g-primary) !important;
	color: #fff !important;
	border: none !important;
	text-decoration: none !important;
	cursor: pointer !important;
	box-shadow: 0 4px 18px rgba(10,107,69,.28);
	transition: background .2s, transform .15s, box-shadow .15s;
}

.wc-proceed-to-checkout a.checkout-button:hover,
.wc-proceed-to-checkout .checkout-button:hover {
	background: #085c3a !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(10,107,69,.35) !important;
}

/* Responsive – stack on narrow screens */
@media (max-width: 860px) {
	.woocommerce-cart .woocommerce {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════
   WooCommerce BLOCKS cart & checkout buttons
═══════════════════════════════════════════ */

/* ── Proceed to Checkout (block cart submit) ── */
.wc-block-cart__submit-button,
.wc-block-cart__submit-container .wc-block-cart__submit-button {
	background-color: #ed1c24 !important;
	background: #ed1c24 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 14px !important;
	padding: 15px 24px !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	letter-spacing: .03em !important;
	box-shadow: 0 4px 18px rgba(10,107,69,.28) !important;
	transition: background .2s, transform .15s, box-shadow .15s !important;
	width: 100% !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-container .wc-block-cart__submit-button:hover {
	background-color: #ed1c24 !important;
	background: #ed1c24 !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(10,107,69,.35) !important;
}

/* ── Apply coupon button ── */
.wc-block-components-totals-coupon__button,
.wc-block-components-totals-coupon .wc-block-components-button {
	background-color: #ed1c24 !important;
	background: #ed1c24 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 9px !important;
	padding: 10px 18px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	transition: background .2s !important;
}

.wc-block-components-totals-coupon__button:hover,
.wc-block-components-totals-coupon .wc-block-components-button:hover {
	background-color: #ed1c24 !important;
	background: #ed1c24 !important;
	color: #fff !important;
}

/* ── Quantity +/- buttons ── */
.wc-block-components-quantity-selector__button {
	color: #ed1c24 !important;
	border-color: #ed1c24 !important;
}

.wc-block-components-quantity-selector__button:hover {
	background: #f0fdf4 !important;
	color: #ed1c24 !important;
}

/* ── Remove item button ── */
.wc-block-cart-item__remove-link {
	color: #dc2626 !important;
}

/* ── Classic cart fallback (also target here for safety) ── */
.woocommerce a.checkout-button,
.woocommerce a.checkout-button.button,
.woocommerce a.checkout-button.alt {
	background-color: #ed1c24 !important;
	background: #ed1c24 !important;
	color: #fff !important;
	border-color: #ed1c24 !important;
	border-radius: 14px !important;
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	padding: 15px 20px !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	box-shadow: 0 4px 18px rgba(10,107,69,.28) !important;
}

.woocommerce a.checkout-button:hover {
	background-color: #ed1c24 !important;
	background: #ed1c24 !important;
	color: #fff !important;
}

.wc-block-components-checkout-place-order-button {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    padding: 18px 30px !important;
    background-color: #ed1c24 !important;
    color: #ffffff !important;
    border-color: #ed1c24 !important;
	font-size: 15px !important;
    font-weight: 600 !important;
}

.mpesa-img {
    max-height: 100px !important;
    width: 200px;
    margin: -40px 0px 0px;
}


