/* ==========================================================================
   Blocksy Child — Eshop Kamagra · Phase 1
   Additive, scoped enhancements over Blocksy + WooCommerce.
   Brand: purple #8a1fd2 / #6d17a8  +  orange CTA #ff6a2a
   ========================================================================== */

:root {
	--ek-trust: #6d17a8;
	--ek-trust-strong: #4e1183;
	--ek-trust-tint: #f4eafb;
	--ek-accent: #ff6a2a;
	--ek-accent-dark: #da5313;
	--ek-text: #262626;
	--ek-muted: #666;
	--ek-border: #e3e3df;
	--ek-star: #f6a417;
	--ek-shadow-sm: 0 1px 2px rgba(20, 12, 40, 0.05), 0 6px 18px rgba(20, 12, 40, 0.05);
	--ek-shadow-lg: 0 14px 34px rgba(20, 12, 40, 0.12), 0 28px 64px rgba(20, 12, 40, 0.08);
}

/* --------------------------------------------------------------------------
   Brand CTA — WooCommerce primary buttons in orange (the action accent)
   -------------------------------------------------------------------------- */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce .single_add_to_cart_button,
.wc-block-components-button:not(.is-link),
.ek-cta-orange {
	background-color: var(--ek-accent) !important;
	border-color: var(--ek-accent) !important;
	color: #fff !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce .single_add_to_cart_button:hover,
.wc-block-components-button:not(.is-link):hover {
	background-color: var(--ek-accent-dark) !important;
	border-color: var(--ek-accent-dark) !important;
}

/* Price emphasis in the brand purple-orange family */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ek-accent-dark);
	font-weight: 800;
}

/* --------------------------------------------------------------------------
   Premium polish — product cards get a lighter resting shadow + hover lift
   -------------------------------------------------------------------------- */
.woocommerce ul.products li.product,
.wc-block-grid__product,
.products .product .ct-media-container {
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.woocommerce ul.products li.product:hover,
.wc-block-grid__product:hover {
	transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
	.woocommerce ul.products li.product,
	.wc-block-grid__product {
		transition: none;
	}
	.woocommerce ul.products li.product:hover,
	.wc-block-grid__product:hover {
		transform: none;
	}
}

/* --------------------------------------------------------------------------
   Trust / reassurance band — drop anywhere via the [ek_trustband] markup
   (Gutenberg HTML block / Blocksy hook). Additive, never auto-injected.
   -------------------------------------------------------------------------- */
.ek-proofbar {
	background: #fff;
	border-block: 1px solid var(--ek-border);
}

.ek-proofbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 28px;
	padding-block: 16px;
	max-width: 1200px;
	margin: 0 auto;
}

.ek-proofbar__inner li,
.ek-proofbar__inner > span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--ek-text);
	list-style: none;
}

.ek-proofbar__inner svg {
	width: 20px;
	height: 20px;
	flex: none;
	color: var(--ek-trust);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   App-like bottom tab bar (mobile only) — additive overlay
   -------------------------------------------------------------------------- */
.ek-tabbar {
	display: none;
}

@media (max-width: 760px) {
	.ek-tabbar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9990;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		align-items: stretch;
		background: #fff;
		border-top: 1px solid var(--ek-border);
		box-shadow: 0 -6px 20px rgba(13, 16, 24, 0.08);
		padding-bottom: env(safe-area-inset-bottom);
	}

	.ek-tabbar__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 3px;
		min-height: 58px;
		padding: 6px 2px;
		border: 0;
		background: transparent;
		color: var(--ek-muted);
		font: inherit;
		font-size: 0.66rem;
		font-weight: 700;
		line-height: 1.1;
		text-decoration: none;
		cursor: pointer;
	}

	.ek-tabbar__item svg {
		width: 23px;
		height: 23px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.7;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.ek-tabbar__item:hover,
	.ek-tabbar__item:focus-visible,
	.ek-tabbar__item.is-active {
		color: var(--ek-trust);
	}

	.ek-tabbar__item--accent {
		color: var(--ek-trust);
	}

	.ek-tabbar__accent-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		margin-top: -16px;
		border-radius: 999px;
		background: var(--ek-trust);
		color: #fff;
		box-shadow: 0 8px 18px rgba(109, 23, 168, 0.35);
	}

	.ek-tabbar__accent-icon svg {
		width: 22px;
		height: 22px;
		stroke: #fff;
	}

	/* keep page content + Blocksy's back-to-top clear of the bar */
	body {
		padding-bottom: calc(60px + env(safe-area-inset-bottom));
	}

	.ct-back-to-top {
		bottom: calc(74px + env(safe-area-inset-bottom)) !important;
	}
}

@media (min-width: 761px) {
	.ek-tabbar {
		display: none !important;
	}
}

/* ==========================================================================
   Top utility / trust bar (above Blocksy header) — Phase 2
   ========================================================================== */
.ek-utilitybar {
	background: var(--ek-trust);
	color: #fff;
	font-size: 0.8rem;
}

.ek-utilitybar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: 1290px;
	margin: 0 auto;
	padding: 7px 20px;
	min-height: 38px;
}

.ek-utilitybar__trust,
.ek-utilitybar__links {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ek-utilitybar__trust li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
}

.ek-utilitybar__trust svg {
	width: 15px;
	height: 15px;
	flex: none;
	fill: none;
	stroke: var(--ek-accent);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ek-utilitybar__links a {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 700;
	text-decoration: none;
}

.ek-utilitybar__links a:hover,
.ek-utilitybar__links a:focus-visible {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 880px) {
	.ek-utilitybar__trust li:nth-child(n+2) {
		display: none;
	}
}

@media (max-width: 600px) {
	.ek-utilitybar__inner {
		justify-content: center;
		gap: 14px;
	}
	.ek-utilitybar__links li:nth-child(n+2) {
		display: none;
	}
}

/* ==========================================================================
   Phase 3 — Product page conversion: reassurance row + sticky buy-bar
   ========================================================================== */
.ek-reassure {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 16px 0 4px;
	padding: 0;
	list-style: none;
}

.ek-reassure li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ek-text);
}

.ek-reassure svg {
	width: 18px;
	height: 18px;
	flex: none;
	fill: none;
	stroke: var(--ek-trust);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Sticky buy-bar -------------------------------------------------------- */
.ek-buybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9980;
	background: #fff;
	border-top: 1px solid var(--ek-border);
	box-shadow: 0 -8px 24px rgba(13, 16, 24, 0.1);
	transform: translateY(110%);
	transition: transform 0.28s ease, visibility 0.28s ease;
	padding-bottom: env(safe-area-inset-bottom);
	visibility: hidden;
}

.ek-buybar.is-visible {
	transform: translateY(0);
	visibility: visible;
}

.ek-buybar__inner {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 18px;
}

.ek-buybar__name {
	font-weight: 800;
	font-size: 0.95rem;
	color: var(--ek-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1 1 auto;
	min-width: 0;
}

.ek-buybar__price {
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--ek-accent-dark);
	white-space: nowrap;
	flex: none;
}

.ek-buybar__price del {
	color: var(--ek-muted);
	font-weight: 600;
	font-size: 0.82rem;
	margin-right: 5px;
}

.ek-buybar__cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: none;
	border: 0;
	border-radius: 10px;
	padding: 11px 20px;
	background: var(--ek-accent);
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.18s ease;
}

.ek-buybar__cta:hover,
.ek-buybar__cta:focus-visible {
	background: var(--ek-accent-dark);
}

.ek-buybar__cta svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 760px) {
	/* sit above the app tab bar */
	.ek-buybar {
		bottom: calc(60px + env(safe-area-inset-bottom));
	}
	.ek-buybar__name {
		font-size: 0.85rem;
	}
	.ek-buybar__cta {
		padding: 10px 16px;
	}
}

@media (max-width: 420px) {
	.ek-buybar__name {
		display: none;
	}
}

/* Phase 4 — proof band spacing on archives */
.woocommerce .ek-proofbar,
.ek-proofbar {
	margin: 4px 0 22px;
}

/* Phase 4 — unify archive prices to brand purple (theme uses off-brand green) */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price .amount,
.woocommerce ul.products li.product .price ins .amount,
.woocommerce ul.products li.product .price ins {
	color: #6d17a8 !important;
	font-weight: 800;
}
.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price del .amount {
	color: var(--ek-muted) !important;
	font-weight: 600;
}

/* Phase 4 — compact 2x2 proof band on small screens */
@media (max-width: 600px) {
	.ek-proofbar__inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px 14px;
		justify-items: start;
		padding-inline: 16px;
	}
	.ek-proofbar__inner li,
	.ek-proofbar__inner > span {
		font-size: 0.78rem;
		gap: 7px;
	}
}

/* ==========================================================================
   Premium off-canvas (burger) menu — styles Blocksy's NATIVE panel
   (menu items stay editable via WP menus; we only restyle the panel)
   ========================================================================== */
.ct-panel.ct-header .ct-panel-inner {
	width: min(86vw, 400px) !important;
	background: #fff !important;
	box-shadow: 0 0 50px rgba(20, 12, 40, 0.35) !important;
}
.ct-panel.ct-header .ct-panel-actions {
	background: var(--ek-trust) !important;
	min-height: 62px !important;
	padding: 0 20px !important;
	display: flex !important;
	align-items: center !important;
}
.ct-panel.ct-header .ct-panel-actions::before {
	content: "Izbornik";
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.2px;
	margin-right: auto;
}
.ct-panel.ct-header .ct-toggle-close { color: #fff !important; opacity: 1 !important; }
.ct-panel.ct-header .ct-toggle-close svg * { stroke: #fff !important; }
.ct-panel.ct-header .ct-panel-content-inner ul { margin: 0 !important; padding: 0 !important; list-style: none !important; }
.ct-panel.ct-header .ct-panel-content-inner li { list-style: none !important; border-bottom: 1px solid var(--ek-border) !important; }
.ct-panel.ct-header .ct-panel-content-inner li a {
	display: block !important;
	padding: 15px 22px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: var(--ek-text) !important;
	text-decoration: none !important;
}
.ct-panel.ct-header .ct-panel-content-inner li a:hover,
.ct-panel.ct-header .ct-panel-content-inner li.current-menu-item > a {
	background: var(--ek-trust-tint) !important;
	color: var(--ek-trust) !important;
}

/* Mobile header — compact, premium search bar (clean filled field) */
@media (max-width: 999.98px) {
	html body .ct-header [data-row] { min-height: 54px !important; }
	.dgwt-wcas-search-wrapp,
	.dgwt-wcas-search-form,
	.dgwt-wcas-sf-wrapp { height: 46px !important; min-height: 0 !important; position: relative !important; }
	.dgwt-wcas-search-input {
		height: 46px !important;
		border-radius: 10px !important;
		background: rgba(255, 255, 255, 0.16) !important;
		color: #fff !important;
	}
	.dgwt-wcas-search-input::placeholder { color: rgba(255, 255, 255, 0.75) !important; }
	.dgwt-wcas-search-submit {
		position: absolute !important; right: 0; top: 0;
		height: 46px !important; width: 46px !important; margin: 0 !important; background: transparent !important;
	}
	.dgwt-wcas-preloader, .dgwt-wcas-voice-search { display: none !important; }
}

/* Mobile/tablet header — collapse the search COLUMN (was stuck at 70px) so the
   compact 46px search bar no longer leaves an empty band. The logo column is a
   separate column and keeps its own height (icons fit in 52px). */
@media (max-width: 999.98px) {
	html body .ct-header [data-column] { min-height: 52px !important; }
}

/* FiboSearch submit button — render INSIDE the field on the right (it was
   stacking below the input on every breakpoint). Applies on all widths. */
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp { position: relative !important; }
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit {
	position: absolute !important;
	right: 0; top: 0; bottom: 0;
	height: auto !important;
	width: 48px !important;
	margin: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.dgwt-wcas-search-wrapp .dgwt-wcas-search-input { padding-right: 50px !important; }
.dgwt-wcas-preloader, .dgwt-wcas-voice-search { display: none !important; }

/* ==========================================================================
   Premium homepage (front page) — scoped under .ek-home
   ========================================================================== */
/* full-width breakout from Blocksy's content container + hide page chrome */
.ek-home-active .entry-content,
.ek-home-active .ct-container,
.ek-home-active article > .entry-content { max-width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }
.ek-home-active .page-title, .ek-home-active .entry-header, .ek-home-active .ct-page-title { display: none !important; }
.ek-home { width: 100vw; margin-left: calc(50% - 50vw); color: #1d1a2e; line-height: 1.6; }
.ek-home * { box-sizing: border-box; }
.ek-home-wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.ek-home-center { text-align: center; margin-top: 30px; }
.ek-home-btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; padding: 14px 24px; font-weight: 800; font-size: 15px; text-decoration: none; border: 0; cursor: pointer; transition: .18s; line-height: 1.1; }
.ek-home-btn--primary { background: var(--ek-accent); color: #fff; }
.ek-home-btn--primary:hover { background: var(--ek-accent-dark); color: #fff; }
.ek-home-btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.ek-home-btn--ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.ek-home-btn--out { background: #fff; color: var(--ek-trust); border: 1.5px solid var(--ek-border); }
.ek-home-btn--out:hover { border-color: var(--ek-trust); background: var(--ek-trust-tint); }
.ek-home-kicker { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #8a1fd2; margin: 0 0 10px; }
.ek-home-h2 { font-size: 30px; font-weight: 800; margin: 0 0 12px; letter-spacing: -.02em; color: #1d1a2e; }
.ek-home-lead { color: #6b6680; font-size: 16px; margin: 0 auto; max-width: 640px; }
.ek-home-sec { padding: 60px 0; }
.ek-home-sec--tint { background: var(--ek-trust-tint); }
.ek-home-head { text-align: center; margin: 0 auto 36px; max-width: 680px; }

.ek-home-hero { background: linear-gradient(135deg,#6d17a8 0%,#8a1fd2 55%,#4e1183 100%); color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden; }
.ek-home-hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(255,105,42,.35),transparent 70%); }
.ek-home-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; position: relative; z-index: 1; }
.ek-home-hero h1 { font-size: 42px; line-height: 1.12; font-weight: 800; margin: 8px 0 16px; letter-spacing: -.02em; color: #fff; }
.ek-home-hero__sub { font-size: 18px; color: rgba(255,255,255,.9); margin: 0 0 26px; max-width: 520px; }
.ek-home-hero .ek-home-kicker { color: #ffd9c4; }
.ek-home-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.ek-home-hero__badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.ek-home-hero__badges span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; }
.ek-home-hero__badges svg { width: 18px; height: 18px; fill: none; stroke: #ffd9c4; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ek-home-hero__card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: 20px; padding: 26px; }
.ek-home-hero__card h2 { margin: 0 0 16px; font-size: 18px; color: #fff; }
.ek-home-tier { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.ek-home-tier:last-child { border-bottom: 0; }
.ek-home-tier b { font-size: 15px; color: #fff; }
.ek-home-pct { font-size: 22px; font-weight: 800; color: #ffd9c4; }

.ek-home-proof { background: #fff; border-bottom: 1px solid var(--ek-border); }
.ek-home-proof__in { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: center; padding: 18px 0; margin: 0; list-style: none; }
.ek-home-proof__in li { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; list-style: none; }
.ek-home-proof__in svg { width: 20px; height: 20px; fill: none; stroke: var(--ek-trust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.ek-home-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.ek-home-card { background: #fff; border: 1px solid var(--ek-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: .2s; }
.ek-home-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(40,20,80,.12); }
.ek-home-card__img { display: block; aspect-ratio: 1; background: var(--ek-trust-tint); overflow: hidden; }
.ek-home-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ek-home-card__b { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ek-home-card__name { font-weight: 800; font-size: 15px; margin: 0; color: #1d1a2e; text-decoration: none; }
.ek-home-card__price { font-weight: 800; color: #8a1fd2; font-size: 18px; }
.ek-home-card__price .amount { color: #8a1fd2 !important; }
.ek-home-card__cta { margin-top: auto; display: block; text-align: center; background: var(--ek-accent); color: #fff; border-radius: 10px; padding: 10px; font-weight: 800; font-size: 14px; text-decoration: none; }
.ek-home-card__cta:hover { background: var(--ek-accent-dark); color: #fff; }

.ek-home-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ek-home-cat { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--ek-border); border-radius: 14px; padding: 18px 20px; text-decoration: none; color: #1d1a2e; transition: .18s; }
.ek-home-cat:hover { border-color: var(--ek-trust); background: var(--ek-trust-tint); }
.ek-home-cat__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--ek-trust-tint); display: flex; align-items: center; justify-content: center; flex: none; }
.ek-home-cat__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--ek-trust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ek-home-cat b { display: block; font-size: 15px; }
.ek-home-cat small { color: #6b6680; }

.ek-home-trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ek-home-tcard { background: #fff; border: 1px solid var(--ek-border); border-radius: 16px; padding: 24px 22px; }
.ek-home-tcard__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--ek-trust-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ek-home-tcard__ic svg { width: 26px; height: 26px; fill: none; stroke: var(--ek-trust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ek-home-tcard h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: #1d1a2e; }
.ek-home-tcard p { margin: 0; color: #6b6680; font-size: 14px; }

.ek-home-arts { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ek-home-art { background: #fff; border: 1px solid var(--ek-border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: .2s; display: block; }
.ek-home-art:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(40,20,80,.1); }
.ek-home-art__img { height: 160px; background: linear-gradient(135deg,#8a1fd2,#4e1183); overflow: hidden; }
.ek-home-art__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ek-home-art__b { padding: 16px 18px; }
.ek-home-art__tag { font-size: 12px; font-weight: 800; color: #8a1fd2; text-transform: uppercase; letter-spacing: .05em; }
.ek-home-art__b h3 { margin: 6px 0 0; font-size: 16px; font-weight: 800; line-height: 1.35; color: #1d1a2e; }

.ek-home-faq { max-width: 820px; margin: 0 auto; }
.ek-home-faq details { background: #fff; border: 1px solid var(--ek-border); border-radius: 12px; margin-bottom: 12px; padding: 0 20px; }
.ek-home-faq summary { cursor: pointer; font-weight: 800; font-size: 15px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.ek-home-faq summary::-webkit-details-marker { display: none; }
.ek-home-faq summary::after { content: "+"; font-size: 22px; color: var(--ek-trust); }
.ek-home-faq details[open] summary::after { content: "\2212"; }
.ek-home-faq p { margin: 0 0 16px; color: #6b6680; font-size: 14.5px; }

.ek-home-cta { background: linear-gradient(135deg,#6d17a8,#4e1183); color: #fff; border-radius: 22px; padding: 44px; text-align: center; }
.ek-home-cta h2 { font-size: 30px; font-weight: 800; margin: 0 0 10px; color: #fff; }
.ek-home-cta p { color: rgba(255,255,255,.88); margin: 0 auto 22px; max-width: 560px; }

@media (max-width: 900px) {
	.ek-home-grid, .ek-home-trust { grid-template-columns: repeat(2,1fr); }
	.ek-home-cats, .ek-home-arts { grid-template-columns: 1fr; }
	.ek-home-hero__grid { grid-template-columns: 1fr; gap: 28px; }
	.ek-home-hero h1 { font-size: 32px; }
}
@media (max-width: 560px) {
	.ek-home-h2, .ek-home-cta h2 { font-size: 24px; }
	.ek-home-hero h1 { font-size: 28px; }
	.ek-home-sec { padding: 44px 0; }
	.ek-home-cta { padding: 32px 22px; }
}

/* ==========================================================================
   Cart dropdown — hide the EMPTY mini-cart (was showing as a dark empty bar
   on the cached homepage; shows normally once fragments populate it).
   ========================================================================== */
.ct-header-cart .ct-cart-content:empty { display: none !important; }

/* ==========================================================================
   Homepage "Zašto baš nas" client banner image
   ========================================================================== */
.ek-home-banner { padding: 22px 0 6px; }
.ek-home-banner__frame {
	max-width: 1000px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(40, 20, 80, 0.18);
	line-height: 0;
}
.ek-home-banner__frame img { width: 100%; height: auto; display: block; }

/* ==========================================================================
   Premium footer (.mc-custom-footer)
   ========================================================================== */
.mc-custom-footer {
	background: linear-gradient(180deg, #241f3a, #171327) !important;
	color: #b9b2cf !important;
	border-top: 3px solid var(--ek-accent) !important;
}
.mc-custom-footer__inner { padding: 50px 24px 0 !important; max-width: 1180px; margin: 0 auto !important; }
.mc-custom-footer__grid {
	display: grid !important;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr !important;
	gap: 34px 26px !important;
	text-align: left !important;
}
.mc-custom-footer h3, .mc-custom-footer h4,
.mc-custom-footer__grid strong, .mc-custom-footer__grid > div > b,
.mc-custom-footer__grid > div > span:first-child {
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 14px !important;
	display: block;
}
.mc-custom-footer a { color: #b9b2cf !important; text-decoration: none !important; font-size: 14px; line-height: 2.15; transition: color 0.15s; }
.mc-custom-footer a:hover { color: #fff !important; }
.mc-custom-footer__brand { color: #cfc9e0; }
.mc-custom-footer__brand a { color: #c9a2f0 !important; }
.mc-custom-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	margin-top: 40px;
	padding: 18px 0 !important;
	font-size: 13px;
	color: #8e87a6 !important;
	text-align: center;
}
.mc-custom-footer__bottom a { color: #c9a2f0 !important; }
@media (max-width: 880px) { .mc-custom-footer__grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 520px) { .mc-custom-footer__grid { grid-template-columns: 1fr !important; } }

/* ==========================================================================
   Custom off-canvas drawer (mobile/tablet) — rich local-style menu
   ========================================================================== */
.ek-drawer { position: fixed; inset: 0; z-index: 100000; visibility: hidden; opacity: 0; transition: opacity .25s ease; }
.ek-drawer.is-open { visibility: visible; opacity: 1; }
.ek-drawer__overlay { position: absolute; inset: 0; background: rgba(20,12,40,.5); }
.ek-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 400px); background: #fff; box-shadow: -10px 0 50px rgba(20,12,40,.3); transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column; overflow-y: auto; }
.ek-drawer.is-open .ek-drawer__panel { transform: translateX(0); }
.ek-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; min-height: 62px; background: var(--ek-trust); color: #fff; flex: none; }
.ek-drawer__title { font-weight: 800; font-size: 18px; color: #fff; }
.ek-drawer__close { background: transparent; border: 0; color: #fff; cursor: pointer; padding: 6px; line-height: 0; }
.ek-drawer__close svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }
.ek-drawer__search { display: flex; align-items: center; gap: 8px; margin: 16px; padding: 0 14px; background: var(--ek-trust-tint); border-radius: 12px; flex: none; }
.ek-drawer__search svg { width: 18px; height: 18px; flex: none; fill: none; stroke: var(--ek-trust); stroke-width: 1.8; stroke-linecap: round; }
.ek-drawer__search input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 13px 0; font: inherit; outline: none; color: var(--ek-text); }
.ek-drawer__quick { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 0 16px 8px; flex: none; }
.ek-drawer__quick a { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 4px; border: 1px solid var(--ek-border); border-radius: 12px; text-decoration: none; color: var(--ek-text); font-size: 12px; font-weight: 700; text-align: center; }
.ek-drawer__quick a:hover { background: var(--ek-trust-tint); border-color: var(--ek-trust); color: var(--ek-trust); }
.ek-drawer__quick svg { width: 22px; height: 22px; fill: none; stroke: var(--ek-trust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ek-drawer__nav { padding: 6px 0 0; }
.ek-drawer__menu, .ek-drawer__group ul { list-style: none; margin: 0; padding: 0; }
.ek-drawer__nav a { display: block; padding: 13px 22px; text-decoration: none; color: var(--ek-text); font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--ek-border); }
.ek-drawer__nav a:hover, .ek-drawer__nav .current-menu-item > a { background: var(--ek-trust-tint); color: var(--ek-trust); }
.ek-drawer__group { border-bottom: 1px solid var(--ek-border); }
.ek-drawer__group summary { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ek-trust); cursor: pointer; list-style: none; }
.ek-drawer__group summary::-webkit-details-marker { display: none; }
.ek-drawer__group ul a { border-bottom: 1px solid var(--ek-border); padding-left: 34px; font-weight: 500; }
.ek-drawer__chev { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.ek-drawer__group[open] .ek-drawer__chev { transform: rotate(180deg); }
.ek-drawer__trust { margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 16px 22px; background: var(--ek-trust-tint); font-size: 12.5px; font-weight: 600; color: var(--ek-trust); flex: none; }
.ek-drawer__trust svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--ek-trust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
html.ek-drawer-lock { overflow: hidden !important; }
@media (min-width: 1000px) { .ek-drawer { display: none !important; } }

/* ==========================================================================
   Blog single-post — E-E-A-T trust, related products, CTA (appended block)
   ========================================================================== */
.ek-article-extra { margin: 38px 0 8px; display: flex; flex-direction: column; gap: 22px; }
.ek-article-disclaimer { display: flex; gap: 12px; align-items: flex-start; background: var(--ek-trust-tint); border-left: 4px solid var(--ek-trust); border-radius: 12px; padding: 16px 18px; }
.ek-article-disclaimer svg { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--ek-trust); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.ek-article-disclaimer p { margin: 0; font-size: 14px; color: var(--ek-text); line-height: 1.55; }
.ek-article-author { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--ek-border); border-bottom: 1px solid var(--ek-border); }
.ek-article-author__av { width: 44px; height: 44px; border-radius: 50%; background: var(--ek-trust); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex: none; }
.ek-article-author__copy strong { display: block; font-size: 15px; color: var(--ek-text); }
.ek-article-author__copy small { color: var(--ek-muted); font-size: 13px; }
.ek-article-related__title { font-size: 18px; font-weight: 800; margin: 0 0 14px; color: var(--ek-text); }
.ek-article-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ek-article-prod { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--ek-border); border-radius: 14px; overflow: hidden; text-decoration: none; color: var(--ek-text); transition: .18s ease; }
.ek-article-prod:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(40,20,80,.12); }
.ek-article-prod__img { aspect-ratio: 1; background: var(--ek-trust-tint); display: block; }
.ek-article-prod__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ek-article-prod__name { padding: 12px 12px 2px; font-weight: 700; font-size: 13.5px; }
.ek-article-prod__price { padding: 0 12px 12px; font-weight: 800; color: #8a1fd2; font-size: 15px; }
.ek-article-prod__price .amount { color: #8a1fd2 !important; }
.ek-article-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: linear-gradient(135deg, #6d17a8, #4e1183); color: #fff; border-radius: 18px; padding: 26px 28px; }
.ek-article-cta h3 { margin: 0 0 4px; font-size: 19px; color: #fff; }
.ek-article-cta p { margin: 0; color: rgba(255,255,255,.85); font-size: 14px; }
.ek-article-cta .ek-home-btn { flex: none; }
@media (max-width: 600px) { .ek-article-related__grid { grid-template-columns: 1fr 1fr; } .ek-article-cta { flex-direction: column; align-items: flex-start; } }

/* Blog archive — premium post cards */
body.blog .entry-card, body.archive .entry-card, body.search .entry-card {
	border: 1px solid var(--ek-border) !important;
	border-radius: 16px !important;
	overflow: hidden;
	background: #fff;
	transition: transform .2s ease, box-shadow .2s ease;
}
body.blog .entry-card:hover, body.archive .entry-card:hover, body.search .entry-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(40, 20, 80, .12);
}
body.blog .entry-card .entry-title a, body.archive .entry-card .entry-title a { color: var(--ek-text); }
body.blog .entry-card .entry-title a:hover, body.archive .entry-card .entry-title a:hover { color: var(--ek-trust); }

/* ==========================================================================
   Contact page trust band
   ========================================================================== */
.ek-contact-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 30px; }
.ek-contact-band__item { display: flex; align-items: center; gap: 12px; background: var(--ek-trust-tint); border-radius: 14px; padding: 16px 18px; }
.ek-contact-band__item svg { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--ek-trust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ek-contact-band__item strong { display: block; font-size: 14.5px; color: var(--ek-text); }
.ek-contact-band__item small { color: var(--ek-muted); font-size: 12.5px; }
@media (max-width: 700px) { .ek-contact-band { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ — premium Elementor accordion
   ========================================================================== */
.elementor-accordion .elementor-accordion-item { border: 1px solid var(--ek-border) !important; border-radius: 12px !important; margin-bottom: 12px !important; overflow: hidden; background: #fff; }
.elementor-accordion .elementor-tab-title { border: 0 !important; padding: 16px 20px !important; font-weight: 800 !important; font-size: 15px !important; color: var(--ek-text) !important; transition: background .15s ease; }
.elementor-accordion .elementor-tab-title:hover { background: var(--ek-trust-tint) !important; }
.elementor-accordion .elementor-tab-title.elementor-active,
.elementor-accordion .elementor-tab-title.elementor-active a { background: var(--ek-trust) !important; color: #fff !important; }
.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon,
.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon i { color: #fff !important; }
.elementor-accordion .elementor-tab-content { border: 0 !important; padding: 16px 20px !important; color: var(--ek-muted) !important; font-size: 14.5px; line-height: 1.6; }

/* ==========================================================================
   Blog conversion — mid-article CTA + floating shop CTA
   ========================================================================== */
.ek-article-midcta {
	display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	background: var(--ek-trust-tint); border: 1px solid var(--ek-border); border-left: 4px solid var(--ek-accent);
	border-radius: 14px; padding: 18px 22px; margin: 32px 0;
}
.ek-article-midcta__copy strong { display: block; font-size: 16px; font-weight: 800; color: var(--ek-text); }
.ek-article-midcta__copy span { font-size: 13.5px; color: var(--ek-muted); }
.ek-article-midcta .ek-home-btn { flex: none; }

.ek-float-cta {
	position: fixed; right: 20px; bottom: 24px; z-index: 9985;
	display: inline-flex; align-items: center; gap: 9px;
	background: var(--ek-accent); color: #fff; border-radius: 999px;
	padding: 13px 20px; font-weight: 800; font-size: 14.5px; text-decoration: none;
	box-shadow: 0 10px 30px rgba(218, 83, 19, .42);
	transform: translateY(150%); opacity: 0;
	transition: transform .3s ease, opacity .3s ease, background .18s ease;
}
.ek-float-cta.is-visible { transform: translateY(0); opacity: 1; }
.ek-float-cta:hover { background: var(--ek-accent-dark); color: #fff; }
.ek-float-cta svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 760px) {
	.ek-float-cta { bottom: calc(70px + env(safe-area-inset-bottom)); right: 14px; padding: 12px 17px; font-size: 13.5px; }
}

/* ==========================================================================
   Cart + checkout buy-step trust (ek-buy-*)
   ========================================================================== */
.ek-buy-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0 0 22px; }
.ek-buy-trust__item { display: flex; align-items: center; gap: 10px; background: var(--ek-trust-tint); border: 1px solid var(--ek-border); border-radius: 12px; padding: 12px 14px; }
.ek-buy-trust__item svg { width: 24px; height: 24px; flex: none; fill: none; stroke: var(--ek-trust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ek-buy-trust__item strong { display: block; font-size: 13.5px; font-weight: 800; color: var(--ek-text); line-height: 1.2; }
.ek-buy-trust__item span { font-size: 12px; color: var(--ek-muted); }
@media (max-width: 880px) { .ek-buy-trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ek-buy-trust { grid-template-columns: 1fr; } }
.ek-buy-reassure { display: flex; align-items: center; gap: 9px; margin: 12px 0 0; font-size: 12.5px; line-height: 1.4; color: var(--ek-muted); }
.ek-buy-reassure svg { width: 18px; height: 18px; flex: none; fill: none; stroke: var(--ek-trust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================================
   GDPR cookie consent banner (ek-consent)
   ========================================================================== */
.ek-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990; padding: 12px; pointer-events: none; }
.ek-consent[hidden] { display: none; }
.ek-consent__inner { max-width: 1080px; margin: 0 auto; pointer-events: auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; background: #fff; border: 1px solid var(--ek-border); border-radius: 14px; padding: 14px 18px; box-shadow: 0 12px 44px rgba(0,0,0,.2); }
.ek-consent__text { flex: 1 1 320px; margin: 0; font-size: 13px; line-height: 1.45; color: var(--ek-text); }
.ek-consent__text a { color: var(--ek-trust); font-weight: 700; }
.ek-consent__btns { display: flex; gap: 10px; flex: none; }
.ek-consent__btn { border-radius: 999px; padding: 10px 22px; font-weight: 800; font-size: 13.5px; cursor: pointer; border: 1px solid var(--ek-border); }
.ek-consent__btn--ghost { background: #fff; color: var(--ek-muted); }
.ek-consent__btn--ghost:hover { color: var(--ek-text); border-color: var(--ek-muted); }
.ek-consent__btn--accept { background: var(--ek-accent); color: #fff; border-color: var(--ek-accent); }
.ek-consent__btn--accept:hover { background: var(--ek-accent-dark); border-color: var(--ek-accent-dark); }
@media (max-width: 760px) { .ek-consent { bottom: calc(58px + env(safe-area-inset-bottom)); } }
@media (max-width: 560px) { .ek-consent__inner { flex-direction: column; align-items: stretch; } .ek-consent__btn { flex: 1; } }

/* ==========================================================================
   Premium shop / category product cards (layered over Blocksy's Woo cards)
   ========================================================================== */
/* Sale badge: off-brand yellow -> brand orange. */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	background-color: var(--ek-accent) !important;
	color: #fff !important;
	box-shadow: 0 6px 16px rgba(218, 83, 19, .32);
	font-weight: 800;
}
/* Card hover lift + image zoom for a premium feel (Blocksy already boxes the card). */
.woocommerce ul.products li.product { transition: transform .22s ease, box-shadow .22s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(109, 23, 168, .14); }
.woocommerce ul.products li.product .ct-media-container { overflow: hidden; }
.woocommerce ul.products li.product .ct-media-container img { transition: transform .4s ease; }
.woocommerce ul.products li.product:hover .ct-media-container img { transform: scale(1.05); }
/* Add-to-cart hover -> accent (button is already brand purple). */
.woocommerce ul.products li.product .button.add_to_cart_button:hover { background: var(--ek-accent) !important; color: #fff !important; }

/* ==========================================================================
   Language switcher (Polylang) in the utility bar
   ========================================================================== */
.ek-utilitybar__links .ek-langswitch { display: inline-flex; }
.ek-langswitch > ul { display: inline-flex; align-items: center; gap: 0; margin: 0; padding: 0; list-style: none; }
.ek-langswitch .lang-item { display: inline-flex; margin: 0; }
.ek-langswitch .lang-item a { text-transform: uppercase; font-weight: 800; font-size: 11px; letter-spacing: .04em; padding: 0 7px; opacity: 1; }
.ek-langswitch .lang-item + .lang-item { border-left: 1px solid currentColor; }
.ek-langswitch .lang-item.current-lang a { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.ek-langswitch .lang-item a:hover { opacity: 1; }

/* Product-category SEO description (Blocksy archive doesn't render it) */
.ek-cat-desc { max-width: 900px; margin: 4px 0 22px; color: var(--ek-muted); font-size: 14.5px; line-height: 1.6; }
.ek-cat-desc p { margin: 0 0 10px; }
.ek-cat-desc p:last-child { margin-bottom: 0; }

/* Product → educational blog internal link */
.ek-prod-learn { display:flex; align-items:center; gap:11px; max-width:900px; margin:14px 0 4px; padding:12px 16px; background:var(--ek-trust-tint); border:1px solid var(--ek-border); border-radius:12px; }
.ek-prod-learn svg { width:22px; height:22px; flex:none; color:var(--ek-trust); fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.ek-prod-learn p { margin:0; font-size:14.5px; color:var(--ek-text); }
.ek-prod-learn__k { font-weight:700; color:var(--ek-trust); }
.ek-prod-learn a { color:var(--ek-trust-strong); font-weight:700; text-decoration:underline; }

/* Free-shipping progress bar (cart) */
.ek-freeship { display:flex; align-items:center; gap:12px; margin:0 0 18px; padding:13px 16px; background:var(--ek-trust-tint); border:1px solid var(--ek-border); border-radius:12px; }
.ek-freeship svg { width:24px; height:24px; flex:none; color:var(--ek-trust); fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.ek-freeship.is-done { background:#eafaf0; border-color:#bfe6cd; }
.ek-freeship.is-done svg { color:#1e9e57; }
.ek-freeship__body { flex:1; min-width:0; }
.ek-freeship__body p { margin:0 0 7px; font-size:14.5px; color:var(--ek-text); }
.ek-freeship__bar { height:7px; background:#e6def0; border-radius:99px; overflow:hidden; }
.ek-freeship__bar span { display:block; height:100%; background:var(--ek-accent); border-radius:99px; transition:width .4s ease; }
.ek-freeship.is-done .ek-freeship__bar span { background:#1e9e57; }

/* Empty-cart recovery */
.ek-empty-cart { margin:26px 0 8px; }
.ek-empty-cart h2 { font-size:1.15rem; margin:0 0 16px; text-align:center; }
.ek-empty-cart__cta { text-align:center; margin-top:18px; }

/* Category → related guides */
.ek-cat-guides { max-width:900px; margin:22px 0 6px; padding:12px 16px; background:var(--ek-trust-tint); border:1px solid var(--ek-border); border-radius:12px; font-size:14.5px; }
.ek-cat-guides__k { font-weight:700; color:var(--ek-trust); margin-right:6px; }
.ek-cat-guides ul { display:inline; margin:0; padding:0; list-style:none; }
.ek-cat-guides li { display:inline; }
.ek-cat-guides li:not(:last-child)::after { content:" · "; color:var(--ek-muted); }
.ek-cat-guides a { color:var(--ek-trust-strong); font-weight:700; text-decoration:underline; }
