/* ==========================================================================
   Breakfast Club — Theme core (tokens, base, header/footer, buttons, utils)
   Mobile-first. Pisavi: Poppins (naslovi) + Montserrat (body).
   ========================================================================== */

:root {
	/* Brand barve — pastelna paleta (minimalistično, po vzoru simploo.si) */
	--bc-primary:      #E58A72;  /* mehka pastelna korala (CTA/akcenti) */
	--bc-primary-dark: #D3735B;  /* hover */
	--bc-secondary:    #9CBFA6;  /* pastelna žajbelj zelena */
	--bc-secondary-dk: #6E9A7C;
	--bc-accent:       #F2C879;  /* pastelno maslo / akcijska cena */
	--bc-accent-dark:  #E0AE58;

	/* Pastelna ozadja sekcij */
	--bc-cream:   #FBF6F1;  /* topla off-white */
	--bc-cream-2: #F7EBE3;  /* nežna breskev */
	--bc-blush:   #F8E7E1;  /* pastelna korala */
	--bc-sage:    #E9F0E8;  /* pastelna zelena */
	--bc-butter:  #FBF1DA;  /* pastelno rumena */
	--bc-sky:     #E7EFF2;  /* pastelno modra */
	--bc-lilac:   #EEE8F1;  /* pastelna sivka (simploo) */
	--bc-violet:  #E3D7F0;  /* pastelna vijolična */
	--bc-violet-dk: #9B7BC4;  /* nasičena vijolična za prelive/akcente */

	--bc-white:   #ffffff;
	--bc-ink:     #3B342F;  /* mehka temna */
	--bc-body:    #5A524B;
	--bc-muted:   #9A928A;
	--bc-line:    #F0E7DF;

	--bc-success: #6E9A7C;
	--bc-sale:    #E07B6A;

	/* Tipografija — Montserrat povsod */
	--bc-font-head: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
	--bc-font-body: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;

	/* Radiji, sence, razmiki */
	--bc-r-sm: 10px;
	--bc-r:    16px;
	--bc-r-lg: 24px;
	--bc-r-pill: 999px;

	--bc-shadow-sm: 0 2px 10px rgba(42, 37, 33, .06);
	--bc-shadow:    0 10px 30px rgba(42, 37, 33, .08);
	--bc-shadow-lg: 0 20px 50px rgba(42, 37, 33, .12);

	--bc-container: 1200px;
	--bc-container-wide: 1360px;
	--bc-gap: 24px;
	--bc-header-h: 76px;
}

/* ------- Reset / base ------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.bc-theme {
	margin: 0;
	font-family: var(--bc-font-body);
	color: var(--bc-body);
	background: var(--bc-white);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bc-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--bc-primary-dark); }

h1, h2, h3, h4, h5 {
	font-family: var(--bc-font-head);
	color: var(--bc-ink);
	line-height: 1.15;
	margin: 0 0 .5em;
	font-weight: 700;
	letter-spacing: -.01em;
}
/* Varovalka: prepiši morebitne globalne (Elementor kit) barve naslovov v naših sekcijah.
   Ne zadene temnih sekcij (tam eksplicitno belo nižje). */
body.bc-theme .bc-section__title,
body.bc-theme .bc-hero__title,
body.bc-theme .bc-shop-hero__title,
body.bc-theme .bc-product__title,
body.bc-theme .bc-pcard__title a,
body.bc-theme .bc-page__title,
body.bc-theme .bc-about-hero__title,
body.bc-theme .bc-ablock__title,
body.bc-theme .bc-astats__title { color: var(--bc-ink); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2em; }

/* ------- Layout helpers ------- */
.bc-container { width: 100%; max-width: var(--bc-container); margin: 0 auto; padding: 0 20px; }
.bc-container--wide { max-width: var(--bc-container-wide); }
.bc-section { padding: clamp(48px, 8vw, 96px) 0; }
.bc-section--tight { padding: clamp(32px, 5vw, 56px) 0; }
/* .bc-section--cream { background: var(--bc-cream); }
.bc-section--cream2 { background: var(--bc-cream-2); } */
.bc-section--blush { background: var(--bc-blush); }
.bc-section--sage { background: var(--bc-sage); }
.bc-section--butter { background: var(--bc-butter); }
.bc-section--sky { background: var(--bc-sky); }
.bc-section--lilac { background: var(--bc-lilac); }
.bc-section--violet { background: var(--bc-violet); }
.bc-section--ink { background: var(--bc-ink); color: #EDE7E1; }
body.bc-theme .bc-section--ink h2,
body.bc-theme .bc-section--ink h3,
body.bc-theme .bc-section--ink .bc-section__title { color: #fff; }

.bc-section__head { max-width: 720px; margin: 0 auto clamp(28px, 4vw, 48px); }
.bc-align-center { text-align: center; margin-left: auto; margin-right: auto; }
.bc-align-left { text-align: left; }
.bc-section__title { margin: 0 0 .4em; }
.bc-section__subtitle { color: var(--bc-muted); font-size: 1.05rem; margin: 0; }
/* Privzeto drobna oznaka nad naslovom (kartice, sekcije). Velika različica je
   rezervirana za naslove strani — glej .bc-eyebrow--lg. */
.bc-eyebrow {
	display: inline-block; font-family: var(--bc-font-head); font-weight: 700;
	text-transform: uppercase; letter-spacing: .14em; font-size: .82rem;
	color: var(--bc-primary); margin-bottom: .8em;
}
/* Naslovi strani: Trgovina, Recepti, O meni. */
.bc-eyebrow--lg { font-weight: 600; letter-spacing: .12em; font-size: clamp(1.05rem, 2.2vw, 1.58rem); }
.bc-eyebrow::before { content: "•"; margin-right: .5em; color: var(--bc-accent); }

/* ------- Icons ------- */
.bc-icon { display: inline-block; vertical-align: middle; flex: 0 0 auto; }

/* ------- Buttons ------- */
.bc-btn {
	--_bg: var(--bc-primary); --_fg: #fff; --_bd: var(--bc-primary);
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--bc-font-head); font-weight: 600; font-size: 1rem;
	line-height: 1; text-align: center; cursor: pointer;
	padding: 15px 28px; border-radius: var(--bc-r-pill);
	background: var(--_bg); color: var(--_fg); border: 2px solid var(--_bd);
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
	box-shadow: var(--bc-shadow-sm);
}
.bc-btn:hover { color: var(--_fg); transform: translateY(-2px); box-shadow: var(--bc-shadow); }
.bc-btn:active { transform: translateY(0); }
.bc-btn--secondary { --_bg: var(--bc-secondary); --_bd: var(--bc-secondary); }
.bc-btn--accent { --_bg: var(--bc-accent); --_bd: var(--bc-accent); --_fg: var(--bc-ink); }
.bc-btn--ink { --_bg: var(--bc-ink); --_bd: var(--bc-ink); }
.bc-btn--outline { --_bg: transparent; --_fg: var(--bc-ink); --_bd: var(--bc-ink); box-shadow: none; }
.bc-btn--outline:hover { --_bg: var(--bc-ink); --_fg: #fff; }
.bc-btn--ghost { --_bg: transparent; --_fg: var(--bc-primary); --_bd: transparent; box-shadow: none; }
.bc-btn--block { display: flex; width: 100%; }
.bc-btn--lg { padding: 18px 36px; font-size: 1.08rem; }

/* ------- Focus: brez grde obrobe ob kliku, viden obroba le za tipkovnico ------- */
body.bc-theme button:focus,
body.bc-theme a:focus,
body.bc-theme .bc-btn:focus,
body.bc-theme .bc-tab:focus,
body.bc-theme .bc-iconbtn:focus,
body.bc-theme .bc-popup__x:focus,
body.bc-theme .bc-chip:focus { outline: none; box-shadow: none; }

body.bc-theme button:focus-visible,
body.bc-theme a:focus-visible,
body.bc-theme .bc-tab:focus-visible,
body.bc-theme .bc-iconbtn:focus-visible,
body.bc-theme .bc-popup__x:focus-visible,
body.bc-theme input:focus-visible {
	outline: 2px solid var(--bc-primary);
	outline-offset: 2px;
}

/* ------- Cards / pills ------- */
.bc-card { background: #fff; border-radius: var(--bc-r-lg); box-shadow: var(--bc-shadow); overflow: hidden; }
.bc-pill {
	display: inline-flex; align-items: center; gap: .4em; padding: 6px 14px;
	border-radius: var(--bc-r-pill); background: var(--bc-cream-2); color: var(--bc-ink);
	font-family: var(--bc-font-head); font-weight: 600; font-size: .82rem;
}
.bc-pill--sale { background: var(--bc-sale); color: #fff; }
.bc-pill--accent { background: var(--bc-accent); color: var(--bc-ink); }

/* ------- Stars ------- */
.bc-stars { display: inline-flex; gap: 2px; color: var(--bc-accent); }
.bc-star.is-empty { color: #E3D8CC; }

/* ==========================================================================
   Header
   ========================================================================== */
.bc-header {
	position: sticky; top: 0; z-index: 200;
	background: rgba(255,255,255,.92); backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid var(--bc-line);
}
.bc-header__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	min-height: var(--bc-header-h);
}
.bc-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--bc-font-head); font-weight: 800; font-size: 1.25rem; color: var(--bc-ink); }
.bc-brand:hover { color: var(--bc-ink); }
.bc-brand__mark {
	width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
	background: var(--bc-primary); color: #fff;
}
.bc-brand img { max-height: 44px; width: auto; }

.bc-nav { display: none; }
.bc-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 28px; }
.bc-nav a {
	font-family: var(--bc-font-head); font-weight: 600; font-size: .98rem;
	color: #E68B72; text-transform: uppercase; letter-spacing: .04em;
}
.bc-nav a:hover { color: var(--bc-primary-dark); }
/* Aktivna stran = enaka barva kot hover. Pokrijemo vse razrede, ki jih doda WP
   (navadna stran, arhiv, nadrejena stran, CPT arhiv …).
   POZOR: Storefront ima `ul.menu li.current-menu-item > a { color:#43454b }`
   s specifičnostjo (0,2,3), zato mora izbirnik za WP meni vključevati tudi
   `ul.menu` — sicer nas nadrejena tema prepiše. Drugi izbirnik pokriva rezervni
   meni (bc_nav_fallback_list), ki razreda `menu` nima. */
:is(.bc-nav, .bc-mobile-nav) ul.menu li:is(
	.current-menu-item,
	.current_page_item,
	.current-menu-parent,
	.current_page_parent,
	.current-menu-ancestor,
	.current_page_ancestor
) > a,
:is(.bc-nav, .bc-mobile-nav) li:is(
	.current-menu-item,
	.current_page_item,
	.current-menu-parent,
	.current_page_parent,
	.current-menu-ancestor,
	.current_page_ancestor
) > a { color: var(--bc-primary-dark); }

.bc-header__end { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.bc-header__actions { display: flex; align-items: center; gap: 8px; }
.bc-iconbtn {
	width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
	background: var(--bc-cream); color: var(--bc-ink); border: none; cursor: pointer;
	position: relative; transition: background .2s ease;
}
.bc-iconbtn:hover { background: var(--bc-cream-2); color: var(--bc-primary); }
.bc-cart-count {
	position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; padding: 0 5px;
	border-radius: var(--bc-r-pill); background: var(--bc-primary); color: #fff;
	font-size: .7rem; font-weight: 700; display: grid; place-items: center; font-family: var(--bc-font-head);
}
.bc-burger { display: grid; }

/* Mobilni meni (off-canvas) */
.bc-mobile-nav {
	position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
	background: #fff; z-index: 400; transform: translateX(100%);
	transition: transform .3s ease; box-shadow: var(--bc-shadow-lg);
	padding: 24px; overflow-y: auto;
}
.bc-mobile-nav.is-open { transform: translateX(0); }
.bc-mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.bc-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.bc-mobile-nav li { border-bottom: 1px solid var(--bc-line); }
.bc-mobile-nav a {
	display: block; padding: 14px 4px; font-family: var(--bc-font-head); font-weight: 600; font-size: 1.05rem;
	color: #E68B72; text-transform: uppercase; letter-spacing: .04em;
}
.bc-mobile-nav a:hover { color: var(--bc-primary-dark); }
.bc-overlay {
	position: fixed; inset: 0; background: rgba(42,37,33,.5); z-index: 390;
	opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.bc-overlay.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   Footer
   ========================================================================== */
/* ==== Footer — slog žive strani (sivka ozadje + zeleni gumbi) ==== */
.bc-footer {
	--bc-foot-bg:      #E1D4EE;  /* pastelna sivka (svetlejša) */
	--bc-foot-green:   #A7C57E;  /* zeleni gumb */
	--bc-foot-green-d: #96B96B;  /* hover */
	background: var(--bc-foot-bg); color: #fff;
}
.bc-footer a { color: #fff; }
.bc-footer a:hover { color: #fff; opacity: .78; }

/* Footer gumbi (pill) */
.bc-footer__btn {
	display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
	border-radius: var(--bc-r-pill); font-family: var(--bc-font-head); font-weight: 600; box-shadow: none;
}
.bc-footer__btn:hover { transform: translateY(-2px); box-shadow: none; }
.bc-footer__btn--green { --_bg: var(--bc-foot-green); --_bd: var(--bc-foot-green); --_fg:#fff; }
.bc-footer__btn--green:hover { --_bg: var(--bc-foot-green-d); --_bd: var(--bc-foot-green-d); color:#fff; }
/* Prepiši .bc-footer a { color:#fff } — gumbi rabijo svojo barvo besedila. */
.bc-footer .bc-footer__btn { color: var(--_fg); }
.bc-footer .bc-footer__btn:hover { color: var(--_fg); opacity: 1; }
.bc-footer__btn .bc-icon { flex: 0 0 auto; }

/* Glavna vrstica: logo + podatki | meni | newsletter (vsi poravnani na vrh) */
.bc-footer__main {
	display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; align-content: start;
	padding: clamp(36px, 5vw, 64px) 0 clamp(22px, 3vw, 38px);
}
.bc-footer__menu, .bc-footer__newsletter { align-self: start; }
.bc-footer__logo-img, .bc-footer__logo img { max-width: 210px; height: auto; }
.bc-footer__logo-text { font-family: var(--bc-font-head); font-weight: 800; font-size: 1.4rem; color: #fff; }
.bc-footer__company { display: block; margin-bottom: 6px; color: #fff; font-family: var(--bc-font-head); font-weight: 700; font-size: 1.05rem; }
.bc-footer__address { margin: 0 0 14px; line-height: 1.6; color: rgba(255,255,255,.92); }
.bc-footer__menu ul { list-style: none; margin: 0; padding: 0; }
.bc-footer__menu li { margin-bottom: 7px; }
.bc-footer__menu a { font-family: var(--bc-font-head); font-weight: 600; font-size: 1.05rem; }

/* Levi stolpec: logo + podatki podjetja (logo zgoraj, pod njim naslov in telefon) */
.bc-footer__brand { display: grid; gap: 18px; align-content: start; justify-items: start; }
.bc-footer__brand .bc-footer__logo { margin: 0; }
.bc-footer__menu li:last-child { margin-bottom: 0; }

/* Newsletter (desno) */
.bc-footer__nl-title { margin: 0 0 8px; color: #fff; font-family: var(--bc-font-head); font-weight: 700; font-size: 1.05rem; }
.bc-footer__nl-text { margin: 0 0 14px; max-width: 34ch; color: rgba(255,255,255,.9); font-size: .92rem; line-height: 1.6; }
.bc-footer__nl-row {
	display: flex; gap: 6px; max-width: 340px; background: #fff;
	border-radius: var(--bc-r-pill); padding: 5px 5px 5px 8px;
}
.bc-footer__nl-row input[type=email],
.bc-footer__nl-row input[type=email]:focus {
	flex: 1; min-width: 0; border: none; outline: none; box-shadow: none; background: transparent; color: var(--bc-ink);
	padding: 11px 10px; font-size: .95rem; font-family: var(--bc-font-body); -webkit-appearance: none; appearance: none;
}
.bc-footer__nl-row input[type=email]::placeholder { color: #9a938c; }
.bc-footer__nl-btn {
	flex: 0 0 auto; width: 42px; height: 42px; padding: 0; border-radius: 50%;
	--_bg: var(--bc-foot-green); --_bd: var(--bc-foot-green); --_fg: #fff; box-shadow: none;
}
.bc-footer__nl-btn:hover { transform: none; box-shadow: none; --_bg: var(--bc-foot-green-d); --_bd: var(--bc-foot-green-d); }
.bc-footer__nl-gdpr { display: flex; align-items: flex-start; gap: 8px; margin-top: 10px; font-size: .72rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.bc-footer__nl-gdpr a { color: #fff; text-decoration: underline; }
.bc-footer__nl-gdpr input { margin-top: 3px; }

/* Spodnja vrstica */
.bc-footer__bar { border-top: 1px solid rgba(255,255,255,.35); }
.bc-footer__bar-inner {
	display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center;
	padding: 20px 0; font-size: .9rem; color: rgba(255,255,255,.9);
}
.bc-footer__credit a { text-decoration: none; }

/* Trust bar (uporabljena na več straneh) */
.bc-trustbar { background: var(--bc-cream); border-top: 1px solid var(--bc-line); border-bottom: 1px solid var(--bc-line); }
.bc-trustbar__grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; padding: 26px 0;
}
.bc-trust {
	display: flex; align-items: center; gap: 12px; font-family: var(--bc-font-head);
	font-weight: 600; font-size: .9rem; color: var(--bc-ink);
}
.bc-trust .bc-icon { color: var(--bc-secondary); }

/* ------- Citati (poljubno vstavljeni med sekcije) -------
   Namenoma brez kartice: poudarek nosita velikost in narekovaj, tako se citat
   loči od .bc-ahighlight (kremna kartica s črto) in pusti ozadje z oblikami vidno. */
.bc-aquote { margin: 0; max-width: 760px; margin-inline: auto; text-align: center; }
.bc-aquote__mark {
	display: block; font-family: var(--bc-font-head); font-weight: 800;
	font-size: clamp(3.4rem, 8vw, 5rem); line-height: .62; color: var(--bc-primary);
	opacity: .38; margin-bottom: .18em;
}
.bc-aquote__text {
	margin: 0; padding: 0; border: 0;
	font-family: var(--bc-font-head); font-weight: 500;
	font-size: clamp(1.2rem, 2.8vw, 1.7rem); line-height: 1.45; color: var(--bc-ink);
}
.bc-aquote__text p { margin: 0 0 .6em; }
.bc-aquote__text p:last-child { margin-bottom: 0; }
.bc-aquote__text strong { color: var(--bc-primary-dark); font-weight: 800; }
.bc-aquote__author {
	margin-top: clamp(16px, 2.2vw, 22px);
	font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: var(--bc-muted);
}

/* Bullet list s kljukicami */
.bc-checklist { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.bc-checklist li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.bc-checklist .bc-icon { color: var(--bc-secondary); margin-top: 2px; }

/* ------- Shared: placeholder ------- */
.bc-placeholder {
	display: grid; place-items: center; width: 100%; aspect-ratio: 1/1;
	background: linear-gradient(135deg, var(--bc-cream-2), var(--bc-cream));
	color: var(--bc-primary); min-height: 160px;
}

/* ------- Shared: tabs (trgovina + recepti — enak videz) ------- */
.bc-tabs {
	--bc-tab-active: #C6DDB4;   /* zelena; za vijolično: #CCC3E0 */
	--bc-tab-ink: #33513A;
	display: flex; flex-wrap: nowrap; gap: 10px; overflow-x: auto; padding: 24px 0;
	justify-content: safe center; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.bc-tabs::-webkit-scrollbar { display: none; }
.bc-tab {
	flex: 0 0 auto; cursor: pointer; border: 2px solid var(--bc-line); background: #fff;
	color: var(--bc-ink); font-family: var(--bc-font-head); font-weight: 600; font-size: .95rem;
	padding: 11px 20px; border-radius: var(--bc-r-pill); transition: all .18s ease; white-space: nowrap;
}
.bc-tab:hover { border-color: var(--bc-tab-active); background: var(--bc-tab-active); color: var(--bc-tab-ink); }
.bc-tab.is-active { background: var(--bc-tab-active); border-color: var(--bc-tab-active); color: var(--bc-tab-ink); }

/* ------- Ozadje: dekorativne nepravilne oblike (blobi) ------- */
/* Sloj uporabljajo domača stran, stran "O meni" in stran izdelka
   (glej template-parts/home/bg-blobs.php). */
.bc-home, .bc-about, .bc-product { position: relative; }
/* Sekcije nad dekorativnim slojem. */
:is(.bc-home, .bc-about, .bc-product) > section,
:is(.bc-home, .bc-about, .bc-product) > div:not(.bc-home__blobs) { position: relative; z-index: 1; }

.bc-home__blobs {
	position: absolute; inset: 0; z-index: 0;
	overflow: hidden; pointer-events: none;
	contain: paint;
}
.bc-blob-defs, .bc-shape-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.bc-blob {
	position: absolute;
	width: var(--bc-blob-w, clamp(340px, 62vw, 860px));
	aspect-ratio: 1 / .88;
	filter: blur(1.5px);
	opacity: .5;
	will-change: transform;
	animation: bc-blob-float 26s ease-in-out infinite alternate;
}

/* Barve — pastelni toni teme, rahlo poglobljeni z blagovno barvo, da so vidni na belem. */
.bc-blob--blush  { background: linear-gradient(140deg, color-mix(in srgb, var(--bc-primary)   26%, var(--bc-blush))  0%, var(--bc-blush)  100%); }
.bc-blob--sage   { background: linear-gradient(140deg, color-mix(in srgb, var(--bc-secondary) 30%, var(--bc-sage))   0%, var(--bc-sage)   100%); }
.bc-blob--butter { background: linear-gradient(140deg, color-mix(in srgb, var(--bc-accent)    38%, var(--bc-butter)) 0%, var(--bc-butter) 100%); }
.bc-blob--sky    { background: linear-gradient(140deg, color-mix(in srgb, #7FA8B8             22%, var(--bc-sky))    0%, var(--bc-sky)    100%); }
.bc-blob--lilac  { background: linear-gradient(140deg, color-mix(in srgb, #A98FBF             22%, var(--bc-lilac))  0%, var(--bc-lilac)  100%); }
.bc-blob--violet { background: linear-gradient(140deg, color-mix(in srgb, var(--bc-violet-dk) 26%, var(--bc-violet)) 0%, var(--bc-violet) 100%); }

/* Kontura vsakega bloba je SVG clipPath (inline v predlogi); tu le rotacija,
   velikostni odtenek in tempo, da nobena oblika ni videti enaka. */
.bc-blob--0 { transform: rotate(-8deg)  scaleX(1.06); animation-duration: 24s; }
.bc-blob--1 { transform: rotate(12deg)  scaleY(1.08); animation-duration: 30s; animation-delay: -4s; }
.bc-blob--2 { transform: rotate(-18deg);              animation-duration: 27s; animation-delay: -9s; }
.bc-blob--3 { transform: rotate(6deg)   scaleX(1.12); animation-duration: 33s; animation-delay: -2s; }
.bc-blob--4 { transform: rotate(-4deg);               animation-duration: 29s; animation-delay: -13s; }
.bc-blob--5 { transform: rotate(16deg)  scaleY(1.1);  animation-duration: 25s; animation-delay: -7s; }
.bc-blob--6 { transform: rotate(-12deg) scaleX(1.05); animation-duration: 31s; animation-delay: -17s; }
.bc-blob--7 { transform: rotate(9deg);                animation-duration: 28s; animation-delay: -5s; }
.bc-blob--8 { transform: rotate(-14deg) scaleY(1.06); animation-duration: 32s; animation-delay: -11s; }
.bc-blob--9  { transform: rotate(22deg)  scaleX(1.14); animation-duration: 26s; animation-delay: -19s; }
.bc-blob--10 { transform: rotate(-21deg) scaleY(1.12); animation-duration: 34s; animation-delay: -3s; }

@keyframes bc-blob-float {
	from { translate: 0 0;         scale: 1; }
	to   { translate: 3% -4%;      scale: 1.08; }
}

@media (prefers-reduced-motion: reduce) {
	.bc-blob { animation: none; }
}

/* Sekcije s polnim pastelnim ozadjem naredimo rahlo prosojne, da blobi prosevajo
   skozi celotno domačo stran (na belem ozadju je razlika v barvi zanemarljiva). */
/* .bc-home > .bc-section--cream  { background-color: color-mix(in srgb, var(--bc-cream)   72%, transparent); }
.bc-home > .bc-section--cream2 { background-color: color-mix(in srgb, var(--bc-cream-2) 72%, transparent); } */
:is(.bc-home, .bc-about, .bc-product) > .bc-section--blush  { background-color: color-mix(in srgb, var(--bc-blush)   72%, transparent); }
:is(.bc-home, .bc-about, .bc-product) > .bc-section--sage   { background-color: color-mix(in srgb, var(--bc-sage)    72%, transparent); }
:is(.bc-home, .bc-about, .bc-product) > .bc-section--butter { background-color: color-mix(in srgb, var(--bc-butter)  72%, transparent); }
:is(.bc-home, .bc-about, .bc-product) > .bc-section--sky    { background-color: color-mix(in srgb, var(--bc-sky)     72%, transparent); }
:is(.bc-home, .bc-about, .bc-product) > .bc-section--lilac  { background-color: color-mix(in srgb, var(--bc-lilac)   72%, transparent); }

/* ------- Shared: mnenja v obliki pogovornih oblačkov -------
   Uporablja jih domača stran (home/testimonials) in zgodbe na strani
   izdelka (product/sec-stories), zato slog stoji tu, ne v home.css. */
.bc-chat { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.bc-chat__row { display: flex; align-items: flex-end; gap: 12px; max-width: 88%; }
.bc-chat__row--in { align-self: flex-start; }
.bc-chat__row--out { align-self: flex-end; flex-direction: row-reverse; }

/* Scroll-in animacija: oblački se pripeljejo iz leve/desne */
.bc-chat__row { opacity: 0; transition: opacity .6s ease, transform .6s cubic-bezier(.22,.8,.24,1); will-change: transform, opacity; }
.bc-chat__row--in { transform: translateX(-48px); }
.bc-chat__row--out { transform: translateX(48px); }
.bc-chat__row.is-visible { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
	.bc-chat__row { opacity: 1; transform: none; transition: none; }
}
.bc-chat__avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--bc-font-head); font-weight: 700; color: #fff; background: var(--bc-primary); box-shadow: var(--bc-shadow-sm); }
.bc-chat__row--out .bc-chat__avatar { background: var(--bc-secondary); }
.bc-chat__bubble { position: relative; border-radius: 22px; padding: 16px 18px; box-shadow: var(--bc-shadow); }
/* Dve barvi, ki se izmenjujeta (kot v sporočilih): levi = bela, desni = mehka breskev */
.bc-chat__row--in .bc-chat__bubble { background: #ffffff; border-bottom-left-radius: 6px; }
.bc-chat__row--out .bc-chat__bubble { background: #FBE7DE; border-bottom-right-radius: 6px; }
.bc-chat__head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.bc-chat__head strong { font-family: var(--bc-font-head); font-weight: 700; color: var(--bc-ink); font-size: .95rem; }
.bc-chat__handle { font-size: .8rem; color: var(--bc-muted); }
.bc-chat__stars { margin-bottom: 6px; }
.bc-chat__text { margin: 0; color: var(--bc-body); line-height: 1.55; }
.bc-chat__meta { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: .72rem; color: var(--bc-secondary-dk); }
.bc-chat__meta .bc-icon { color: var(--bc-primary); }

/* ------- Shared: product grid + card ------- */
.bc-pgrid { display: grid; grid-template-columns: 1fr; gap: var(--bc-gap); }
@media (min-width: 560px) { .bc-pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) {
	.bc-pgrid--3 { grid-template-columns: repeat(3, 1fr); }
	.bc-pgrid--4 { grid-template-columns: repeat(4, 1fr); }
}

.bc-pcard {
	background: #fff; border: 1px solid var(--bc-line); border-radius: var(--bc-r-lg);
	overflow: hidden; display: flex; flex-direction: column;
	transition: transform .18s ease, box-shadow .2s ease;
}
.bc-pcard:hover { transform: translateY(-4px); box-shadow: var(--bc-shadow); }
.bc-pcard__media { position: relative; display: block; background: var(--bc-cream); overflow: hidden; }
/* Vse slike izdelkov enako velike (kvadrat, cover) → enako visoke kartice */
.bc-pcard:not(.bc-pcard--featured) .bc-pcard__media { aspect-ratio: 1 / 1; }
.bc-pcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Znak za popust — blob oblika (nepravilna) v zgornjem desnem kotu */
.bc-pcard__discount {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	line-height: 1; white-space: nowrap;
	background: #CCC3E0; color: #4A3F63;
	box-shadow: var(--bc-shadow-sm);
	font-family: var(--bc-font-head); font-weight: 800; font-size: .82rem;
}
.bc-pcard__discount:not(.bc-pcard__discount--text) {
	top: -6px; right: -6px;   /* potisnjen v kot, da prekrije beli zgornji-desni rob */
	min-width: 58px; height: 58px; padding: 0 10px;
	border-radius: 47% 53% 68% 32% / 43% 57% 43% 57%;   /* blob */
	transform: rotate(-8deg);
}
@media (min-width: 992px) {
	.bc-pcard__discount:not(.bc-pcard__discount--text) {
		min-width: 64px; height: 64px; font-size: 1.05rem;
	}
}
/* Na vijolični sekciji je sivkast blob preslabo viden → rumen (--bc-butter #FBF1DA) */
.bc-section--violet .bc-pcard__discount:not(.bc-pcard__discount--text) {
	background: var(--bc-butter); color: #6B5220;
}
/* Besedilna "Akcija" (fallback) — mala pill v kotu */
.bc-pcard__discount--text {
	width: auto; height: auto; top: 12px; right: 12px; padding: 6px 13px;
	border-radius: var(--bc-r-pill); border-bottom-left-radius: var(--bc-r-pill);
	background: var(--bc-sale); color: #fff; font-size: .78rem;
	display: inline-flex; align-items: center; justify-content: center;
}
.bc-pcard__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bc-pcard__rating { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--bc-muted); }
.bc-pcard__title { font-size: clamp(1.05rem, 1.4vw, 1.375rem); line-height: 1.3; margin: 0; } /* ~22px na desktopu */
.bc-pcard__title a { color: var(--bc-ink); }
.bc-pcard__title a:hover { color: var(--bc-primary); }
/* Cene poenotene: prikazana/akcijska = ink 800; prečrtana = siva in manjša.
   (WooCommerce akcijske cene ovije v <ins>, navadne pa v golo .amount — zajamemo oboje) */
.bc-pcard__price { font-family: var(--bc-font-head); font-weight: 800; color: var(--bc-ink); margin-top: auto; font-size: 1.5rem; }
.bc-pcard__price ins { text-decoration: none; background: none; color: var(--bc-ink); font-weight: 800; }
.bc-pcard__price .woocommerce-Price-amount { font-weight: 600; color: var(--bc-ink); }
.bc-pcard__price del { font-size: .62em; margin-right: 6px; }
.bc-pcard__price del,
.bc-pcard__price del .woocommerce-Price-amount { color: var(--bc-muted); font-weight: 500; opacity: .8; }
.bc-pcard__actions { margin-top: 10px; }

/* Enotni zeleni gumbi na karticah izdelkov (znak za popust ostane nespremenjen).
   Pravilo stoji ob kartici, ne v shop.css, da je kartica povsod enaka —
   v trgovini, med najbolj prodajanimi na domači strani in pri podobnih izdelkih. */
.bc-pcard .bc-btn, .bc-pcard .bc-btn--block {
	--_bg: #C6DDB4; --_bd: #C6DDB4; --_fg: #33513A; box-shadow: none;
}
.bc-pcard .bc-btn:hover { --_bg: #B4CF9F; --_bd: #B4CF9F; box-shadow: var(--bc-shadow-sm); }

/* ------- Shared: recipe card ------- */
.bc-recipes-grid { display: grid; grid-template-columns: 1fr; gap: var(--bc-gap); }
@media (min-width: 560px) { .bc-recipes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .bc-recipes-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.bc-recipe-card { background: #fff; border-radius: var(--bc-r-lg); overflow: hidden; box-shadow: var(--bc-shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.bc-recipe-card:hover { transform: translateY(-4px); box-shadow: var(--bc-shadow); }
.bc-recipe-card__media { display: block; }
.bc-recipe-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.bc-recipe-card__body { padding: 18px; }
.bc-recipe-card__title { font-size: 1.15rem; margin: 0 0 8px; }
.bc-recipe-card__title a { color: var(--bc-ink); }
.bc-recipe-card__link { font-family: var(--bc-font-head); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }

/* ------- Newsletter popup ------- */
.bc-popup { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; padding: 20px; }
.bc-popup.is-open { display: flex; }
.bc-popup__overlay { position: absolute; inset: 0; background: rgba(59, 52, 47, .55); backdrop-filter: blur(2px); animation: bcFade .25s ease; }
.bc-popup__box {
	position: relative; z-index: 1; width: 100%; max-width: 720px; background: #fff;
	border-radius: var(--bc-r-lg); overflow: hidden; box-shadow: var(--bc-shadow-lg);
	display: grid; grid-template-columns: 1fr; animation: bcPop .3s cubic-bezier(.2,.8,.2,1);
}
.bc-popup__x {
	position: absolute; top: 14px; right: 14px; z-index: 5; width: 40px; height: 40px; border-radius: 50%;
	border: none; cursor: pointer; background: rgba(255,255,255,.92); color: var(--bc-ink);
	display: inline-flex; align-items: center; justify-content: center; padding: 0; line-height: 0;
}
.bc-popup__x .bc-icon { display: block; margin: 0; }
.bc-popup__x:hover { background: var(--bc-blush); }
.bc-popup__media { position: relative; display: grid; place-items: center; min-height: 150px; padding: 24px; background: linear-gradient(135deg, var(--bc-blush), var(--bc-cream-2)); overflow: hidden; }
.bc-popup__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bc-popup__disc {
	position: relative; z-index: 1; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
	width: 116px; height: 116px; border-radius: 50%; background: var(--bc-primary); color: #fff;
	font-family: var(--bc-font-head); box-shadow: var(--bc-shadow); text-transform: lowercase; font-size: .8rem; gap: 2px;
}
.bc-popup__disc strong { font-size: 2.3rem; line-height: 1; font-weight: 800; }
.bc-popup__content { padding: clamp(24px, 4vw, 40px); }
.bc-popup__content .bc-pill { margin-bottom: 12px; }
.bc-popup__content h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 0 0 8px; }
.bc-popup__content p { color: var(--bc-muted); margin: 0 0 18px; }
.bc-popup__form { display: flex; flex-direction: column; gap: 12px; }
.bc-popup__form input[type=email] { padding: 14px 18px; border: 2px solid var(--bc-line); border-radius: var(--bc-r-pill); font-size: 1rem; font-family: var(--bc-font-body); }
.bc-popup__form input[type=email]:focus { outline: none; border-color: var(--bc-primary); }
.bc-popup__gdpr { display: flex; align-items: flex-start; gap: 8px; font-size: .78rem; color: var(--bc-muted); line-height: 1.5; }
.bc-popup__gdpr a { color: var(--bc-primary); text-decoration: underline; }
.bc-popup__gdpr input { margin-top: 3px; }
@keyframes bcFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bcPop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
@media (min-width: 720px) {
	.bc-popup__box { grid-template-columns: .82fr 1fr; }
	.bc-popup__media { min-height: 100%; }
	.bc-popup__disc { width: 140px; height: 140px; }
	.bc-popup__disc strong { font-size: 2.8rem; }
}

/* Utility */
.bc-visually-hidden {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap;
}
.bc-mt-0 { margin-top: 0; }
.bc-text-center { text-align: center; }
.screen-reader-text { position: absolute; left: -9999px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 992px) {
	.bc-nav { display: block; }
	.bc-burger { display: none; }
	/* Logotip natanko na sredini: stranska stolpca sta 1fr, sredinski auto.
	   Zato logotip ostane centriran, tudi če je desno več vsebine (ikone). */
	.bc-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 3vw, 40px); }
	/* Povezave stojijo na sredini svojega stolpca — torej približno na pol poti
	   med robom strani in logotipom. Ne prilepljene ob logotip in ne odrinjene
	   čisto na rob. Ikone ostanejo ob desnem robu. */
	.bc-nav--left { justify-self: center; }
	.bc-brand { justify-self: center; }
	.bc-header__end {
		justify-self: stretch;
		display: grid; grid-template-columns: 1fr auto; align-items: center;
	}
	.bc-header__end .bc-nav--right { justify-self: center; }
	.bc-footer__main { grid-template-columns: minmax(0, 1.1fr) minmax(0, .7fr) minmax(0, 1.2fr); gap: 56px; }
	.bc-trustbar__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) and (max-width: 991px) {
	.bc-footer__main { grid-template-columns: 1fr 1fr; }
	.bc-footer__newsletter { grid-column: 1 / -1; }
}

/* ==========================================================================
   Globalno dekorativno ozadje — razpršene PNG grafike (za vsebino)
   ========================================================================== */
.bc-site-content { position: relative; }
/* Dekoracije ležijo nad barvami sekcij, a pod vso vsebino (vsebina je v .bc-container). */
.bc-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bc-site-content .bc-container { position: relative; z-index: 1; }
.bc-deco__item {
	position: absolute; display: block;
	background-repeat: no-repeat; background-size: contain; background-position: center;
}
@media (prefers-reduced-motion: no-preference) {
	.bc-deco__item {
		animation-name: bc-deco-float; animation-timing-function: ease-in-out;
		animation-iteration-count: infinite; animation-direction: alternate;
	}
}
@keyframes bc-deco-float { from { translate: 0 0; } to { translate: 0 -16px; } }
