/* ==========================================================================
   Tóthbor Bolt — design rendszer
   Prémium borászati elegancia: mély bordó, szőlőzöld akcent, meleg krém.
   ========================================================================== */

/* --- 1. Design tokenek ------------------------------------------------- */
:root {
	/* Bordó — elsődleges brand */
	--wine-950: #2B0A16;
	--wine-900: #3D0F20;
	--wine-800: #551528;
	--wine-700: #6E1D37;
	--wine-600: #872844;
	--wine-500: #A23A57;
	--wine-300: #C98198;
	--wine-100: #F0DBE1;
	--wine-50:  #F9EDF0;

	/* Szőlőzöld — akcent (a szőlőlevél árnyalatai) */
	--leaf-900: #26331F;
	--leaf-700: #3E5233;
	--leaf-600: #4D6540;
	--leaf-500: #5F7A4C;
	--leaf-400: #86A46C;
	--leaf-300: #A8C48F;
	--leaf-200: #CCDDB9;
	--leaf-100: #EDF3E3;

	/* Krém — felületek */
	--cream-50:  #FBF7EF;
	--cream-100: #F5EEE1;
	--cream-200: #EBE0CC;
	--paper:     #FFFDF8;

	/* Kiegészítők */
	--rose-300: #D98B8E;
	--rose-200: #EBB6B4;
	--rose-100: #F7E1DE;

	--ink: #241419;
	--text-body: #4C3A3E;
	--text-muted: #7d6a6f;

	--success: #4E7A46;
	--danger:  #A2322F;

	/* Tipográfia */
	--font-display: 'Jost', 'Segoe UI', sans-serif;
	--font-body: 'Manrope', 'Segoe UI', sans-serif;
	--fs-display: clamp(2.5rem, 6vw, 4.5rem);
	--fs-h2: clamp(1.75rem, 3.5vw, 2.5rem);
	--fs-h3: clamp(1.25rem, 2.2vw, 1.5rem);

	/* Layout */
	--container: 1400px;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 2px 10px rgba(43, 10, 22, .07);
	--shadow-md: 0 10px 34px rgba(43, 10, 22, .13);
	--shadow-accent: 0 8px 28px rgba(134, 164, 108, .28);
	--ease: cubic-bezier(.22, .8, .3, 1);

	/* Finom papír-szemcse a krém felületekre */
	--grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

/* --- 2. Alap ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-body);
	background: var(--cream-50) var(--grain);
	overflow-x: clip;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 .5em;
	text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--wine-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--wine-600); }

:focus-visible {
	outline: 2px solid var(--leaf-500);
	outline-offset: 2px;
	border-radius: 3px;
}

::selection { background: var(--wine-100); color: var(--wine-900); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
}

.skip-link {
	position: fixed; top: -60px; left: 12px; z-index: 200;
	padding: .6rem 1rem;
	background: var(--wine-900); color: var(--leaf-200);
	border-radius: 0 0 var(--radius) var(--radius);
	transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; clip-path: none; width: auto; height: auto; }

/* --- 3. Utility --------------------------------------------------------- */
.tb-container {
	width: min(100% - 2.5rem, var(--container));
	margin-inline: auto;
}
.tb-container--narrow { max-width: 820px; }

.tb-section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.tb-eyebrow {
	font-family: var(--font-display);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--wine-500);
	margin-bottom: .75rem;
}
/* Sötét bordó felületeken él, ezért világos zöld */
.tb-eyebrow--accent { color: var(--leaf-300); }

.tb-section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.tb-section-head.is-center, .tb-page__head.is-center { text-align: center; }
.tb-section-title { font-size: var(--fs-h2); margin-bottom: .35em; }

.tb-section-rule {
	display: block;
	width: 56px; height: 2px;
	background: linear-gradient(90deg, var(--leaf-500), var(--leaf-200));
	border-radius: 2px;
	margin-block: .35rem 0;
}
.is-center .tb-section-rule { margin-inline: auto; }

.tb-section-lead {
	margin: .8rem 0 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--wine-600);
}

/* Gombok */
.tb-btn {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .85rem 1.7rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: .02em;
	line-height: 1.2;
	cursor: pointer;
	transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.tb-btn:hover { transform: translateY(-2px); }
.tb-btn:active { transform: translateY(0); }
.tb-btn--sm { padding: .55rem 1.1rem; font-size: .85rem; }

.tb-btn--wine { background: var(--wine-700); color: var(--leaf-100); }
.tb-btn--wine:hover { background: var(--wine-600); color: var(--paper); box-shadow: var(--shadow-md); }

.tb-btn--green { background: linear-gradient(135deg, var(--leaf-600), var(--leaf-500)); color: var(--leaf-100); }
.tb-btn--green:hover { box-shadow: var(--shadow-accent); color: var(--paper); }

.tb-btn--ghost { background: transparent; border-color: rgba(246, 237, 214, .45); color: var(--leaf-100); }
.tb-btn--ghost:hover { border-color: var(--leaf-400); color: var(--leaf-200); background: rgba(134, 164, 108, .08); }

.tb-btn--ghost-green { background: transparent; border-color: var(--leaf-500); color: var(--leaf-200); }
.tb-btn--ghost-green:hover { background: var(--leaf-500); color: var(--wine-950); }

.tb-btn--outline { background: transparent; border-color: var(--cream-200); color: var(--wine-700); }
.tb-btn--outline:hover { border-color: var(--wine-500); color: var(--wine-600); }

.tb-textlink {
	display: inline-flex; align-items: center; gap: .35rem;
	font-family: var(--font-display); font-weight: 600; font-size: .9rem;
	color: var(--wine-700);
}
.tb-textlink .tb-icon { transition: transform .2s var(--ease); }
.tb-textlink:hover .tb-icon { transform: translateX(3px); }

/* Badge-ek */
.tb-badge {
	display: inline-flex; align-items: center; gap: .3rem;
	padding: .25rem .7rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: .72rem; font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.tb-badge--uj { background: var(--leaf-500); color: var(--paper); }
.tb-badge--champion { background: linear-gradient(135deg, var(--leaf-600), var(--leaf-500)); color: var(--leaf-100); }
.tb-badge--sale, .tb-badge--akcio { background: var(--danger); color: var(--paper); }

/* --- 4. Topbar ----------------------------------------------------------- */
.tb-topbar {
	background: var(--wine-950);
	color: var(--leaf-200);
	font-size: .8rem;
}
.tb-topbar__inner {
	display: flex; align-items: center; justify-content: center; gap: 2rem;
	min-height: 36px; flex-wrap: wrap;
}
.tb-topbar p { margin: 0; }
.tb-topbar__shipping, .tb-topbar__phone {
	display: inline-flex; align-items: center; gap: .45rem;
	color: var(--leaf-200);
}
.tb-topbar__phone:hover { color: var(--leaf-400); }

/* --- 5. Header ----------------------------------------------------------- */
/* Sötét, drenched fejléc — a topbar, a header és a hero egy összefüggő bordó felület */
.tb-header {
	position: sticky; top: 0; z-index: 100;
	background: linear-gradient(150deg, var(--wine-900), var(--wine-950));
	border-bottom: 1px solid rgba(134, 164, 108, .2);
	transition: box-shadow .25s var(--ease);
}
.tb-header.is-stuck { box-shadow: 0 10px 30px rgba(43, 10, 22, .35); }

/* Bejelentkezve a WP admin bar (fixed, 32/46px) fölénk ülne görgetéskor —
   a sticky fejléc és a kosár-drawer ragadási pontját alá toljuk. */
body.admin-bar .tb-header { top: 32px; }
body.admin-bar .tb-cart-drawer { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .tb-header { top: 46px; }
	body.admin-bar .tb-cart-drawer { top: 46px; }
}
@media (max-width: 600px) {
	/* Itt az admin bar már nem fixed, elgörgethető — vissza a viewport tetejére. */
	body.admin-bar .tb-header { top: 0; }
	body.admin-bar .tb-cart-drawer { top: 0; }
}

.tb-header__inner {
	display: flex; align-items: center; gap: 1.5rem;
	min-height: 76px;
	transition: min-height .25s var(--ease);
}
.tb-header.is-stuck .tb-header__inner { min-height: 62px; }

.tb-logo { display: inline-flex; flex-direction: column; line-height: 1.1; }
.tb-logo__name {
	font-family: var(--font-display);
	font-size: 1.45rem; font-weight: 700;
	color: var(--paper); letter-spacing: .01em;
}
.tb-logo__name em { font-style: italic; color: var(--leaf-400); }
.tb-logo__tag {
	font-size: .58rem; font-weight: 600;
	letter-spacing: .34em; text-transform: uppercase;
	color: var(--leaf-400);
}
.tb-logo--img img { width: 160px; height: auto; }

/* Feltöltött egyedi logó — méretkorlát, hogy sose nyomja szét a fejlécet */
.tb-header .custom-logo-link { display: inline-flex; align-items: center; }
.tb-header .custom-logo {
	max-height: 56px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	transition: max-height .25s var(--ease);
}
.tb-header.is-stuck .custom-logo { max-height: 44px; }

.tb-nav { margin-inline: auto; }
.tb-nav__list {
	display: flex; align-items: center; gap: .25rem;
	list-style: none; margin: 0; padding: 0;
}
.tb-nav__list a {
	display: block;
	padding: .5rem .85rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: .95rem; font-weight: 500;
	text-transform: uppercase; letter-spacing: .04em;
	color: var(--cream-100);
}
.tb-nav__list a:hover { color: var(--leaf-200); background: rgba(255, 253, 248, .07); }
.tb-nav__list .current-menu-item > a,
.tb-nav__list .current_page_item > a {
	background: var(--leaf-300); color: var(--wine-950);
}

/* Almenü */
.tb-nav__list li { position: relative; }
/* Legördülő almenü — a sötét fejléc folytatása, világos linkekkel */
.tb-nav__list li ul {
	position: absolute; top: calc(100% + 8px); left: 0; z-index: 50;
	min-width: 210px;
	list-style: none; margin: 0; padding: .5rem;
	background: linear-gradient(165deg, var(--wine-900), var(--wine-950));
	border: 1px solid rgba(134, 164, 108, .28);
	border-radius: var(--radius);
	box-shadow: 0 18px 44px rgba(20, 4, 10, .5);
	opacity: 0; visibility: hidden; translate: 0 6px;
	transition: opacity .2s var(--ease), translate .2s var(--ease), visibility .2s;
}
.tb-nav__list li:hover > ul,
.tb-nav__list li:focus-within > ul { opacity: 1; visibility: visible; translate: 0 0; }
.tb-nav__list li ul a {
	border-radius: 8px;
	font-size: .88rem;
	color: var(--cream-100);
}
.tb-nav__list li ul a:hover { color: var(--leaf-200); background: rgba(255, 253, 248, .08); }

.tb-header__actions { display: flex; align-items: center; gap: .3rem; }

.tb-iconbtn {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	border: none; border-radius: 50%;
	background: transparent; color: currentColor;
	cursor: pointer;
	transition: background .2s var(--ease), color .2s var(--ease);
}
.tb-header__actions { color: var(--leaf-100); }
.tb-header .tb-iconbtn:hover { background: rgba(255, 253, 248, .1); color: var(--paper); }

.tb-cart-count {
	position: absolute; top: 2px; right: 0;
	min-width: 17px; height: 17px;
	display: none; align-items: center; justify-content: center;
	padding-inline: 4px;
	border-radius: 999px;
	background: var(--leaf-300); color: var(--wine-950);
	font-size: .64rem; font-weight: 700; line-height: 1;
}
.tb-cart-count.is-active { display: inline-flex; }

.tb-menu-toggle { display: none; }
.tb-menu-toggle .tb-icon--close { display: none; }
.tb-menu-toggle[aria-expanded="true"] .tb-icon--menu { display: none; }
.tb-menu-toggle[aria-expanded="true"] .tb-icon--close { display: block; }

/* Kereső űrlap (kereső találati és 404 oldalon) */
.tb-searchform { display: flex; gap: .6rem; max-width: 560px; }
.tb-searchform__input {
	flex: 1;
	padding: .65rem 1.1rem;
	border: 1px solid var(--cream-200);
	border-radius: 999px;
	background: var(--paper);
	font-family: var(--font-body); font-size: .95rem;
	color: var(--ink);
}
.tb-searchform__input:focus { outline: 2px solid var(--leaf-500); outline-offset: 0; border-color: transparent; }

/* --- 6. Hero -------------------------------------------------------------- */
.tb-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(1100px 520px at 18% 0%, rgba(162, 58, 87, .35), transparent 60%),
		linear-gradient(150deg, var(--wine-900) 0%, var(--wine-950) 78%);
	color: var(--wine-100);
	padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.tb-hero::after {
	content: "";
	position: absolute; inset: 0;
	background: var(--grain);
	opacity: .5;
	pointer-events: none;
}
.tb-hero__glow {
	position: absolute;
	right: -12%; top: -30%;
	width: 60%; aspect-ratio: 1;
	background: radial-gradient(circle, rgba(134, 164, 108, .14), transparent 65%);
	pointer-events: none;
}
/* Szőlőág-kontúr a jobb felső sarokból — a hero figura mögött ad mélységet,
   halvány szőlőzölddel, hogy ne vonja el a figyelmet a tartalomról. */
.tb-hero__vine {
	position: absolute;
	z-index: 0;
	top: -3%;
	right: -2%;
	width: clamp(420px, 46vw, 760px);
	height: auto;
	color: var(--leaf-400);
	opacity: .17;
	pointer-events: none;
}
.tb-hero__inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.tb-hero__title {
	font-size: var(--fs-display);
	font-weight: 700;
	color: var(--paper);
	margin-bottom: .35em;
}
.tb-hero__title em {
	font-style: italic;
	font-weight: 600;
	background: linear-gradient(105deg, var(--leaf-200), var(--leaf-300) 55%, var(--leaf-500));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.tb-hero__text { max-width: 46ch; color: var(--wine-100); font-size: 1.05rem; }
.tb-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* Hero figura — a márkajel (kéz borospohárral), glow-val és átfutó fénnyel */
.tb-hero__figure {
	position: relative;
	justify-self: end;
	width: clamp(260px, 26vw, 410px);
	margin-right: clamp(0px, 3vw, 3rem);
}
.tb-hero__glass {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 36px 54px rgba(20, 4, 10, .5));
	will-change: transform;
}
.tb-hero__halo {
	position: absolute;
	z-index: 1;
	left: 50%; top: 52%;
	width: 150%;
	aspect-ratio: 1;
	translate: -50% -50%;
	background: radial-gradient(circle, rgba(168, 196, 143, .22) 0%, rgba(134, 164, 108, .09) 40%, transparent 68%);
	filter: blur(8px);
	pointer-events: none;
}
/* A fény-csík csak a jelvényen fut végig — a PNG alfája maszkolja */
.tb-hero__sheen {
	position: absolute;
	z-index: 3;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	-webkit-mask-image: url('../img/hero-glass.png');
	mask-image: url('../img/hero-glass.png');
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}
.tb-hero__sheen::before {
	content: "";
	position: absolute;
	top: -25%; bottom: -25%;
	left: -45%;
	width: 32%;
	rotate: 16deg;
	background: linear-gradient(90deg, transparent, rgba(235, 182, 180, .38) 38%, rgba(247, 225, 222, .65) 50%, rgba(235, 182, 180, .38) 62%, transparent);
	transform: translateX(var(--sheen-tx, 0%));
}

@media (prefers-reduced-motion: reduce) {
	.tb-hero__sheen { display: none; }
}

/* --- 6/b. Díjnyertes bor kiemelő (hero alatt) ------------------------------- */
.tb-champion { background: var(--cream-50) var(--grain); }
.tb-champion__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.tb-champion__media {
	position: relative;
	margin: 0;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--cream-200);
}
.tb-champion__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Champion-pecsét a fotón (arany tilos — mély bordó, zöld évszámmal) */
.tb-champion__seal {
	position: absolute; left: 1.1rem; bottom: 1.1rem;
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .5rem 1.05rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--wine-700), var(--wine-900));
	color: var(--paper);
	font-family: var(--font-display); font-weight: 600; font-size: .85rem;
	letter-spacing: .05em;
	box-shadow: 0 8px 22px rgba(43, 10, 22, .35);
}
.tb-champion__seal .tb-icon { color: var(--leaf-300); }
.tb-champion__seal b { color: var(--leaf-300); font-weight: 700; }

.tb-champion__title { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--ink); margin-bottom: .3em; line-height: 1.12; }
.tb-champion__copy .tb-section-rule { margin-bottom: 1.2rem; }
.tb-champion__lead { max-width: 48ch; color: var(--text-body); font-size: 1.05rem; }
.tb-champion__lead strong { color: var(--wine-700); font-weight: 700; }

.tb-champion__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.7rem; }
.tb-champion__cert { display: inline-flex; align-items: center; gap: .7rem; color: var(--text-muted); font-size: .85rem; max-width: 15rem; line-height: 1.3; }
.tb-champion__cert img {
	width: 72px; height: auto; flex: none;
	border-radius: 6px;
	border: 1px solid var(--cream-200);
	box-shadow: var(--shadow-sm);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tb-champion__cert:hover img { transform: scale(1.05); box-shadow: var(--shadow-md); }
.tb-champion__cert span { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--cream-200); }
.tb-champion__cert:hover span { color: var(--wine-700); }

@media (max-width: 860px) {
	.tb-champion__inner { grid-template-columns: 1fr; }
	.tb-champion__media { max-width: 460px; margin-inline: auto; }
}

/* --- 7. USP sáv ------------------------------------------------------------ */
.tb-usp { background: var(--cream-100) var(--grain); border-block: 1px solid var(--cream-200); }
.tb-usp__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding-block: 1.5rem;
}
.tb-usp__item {
	display: flex; align-items: center; gap: .85rem; justify-content: center;
	padding-inline: 1rem;
}
.tb-usp__item + .tb-usp__item { border-left: 1px solid var(--cream-200); }
.tb-usp__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; flex: none;
	border-radius: 50%;
	background: var(--wine-50);
	border: 1px solid var(--wine-100);
	color: var(--wine-700);
}
.tb-usp__body { display: flex; flex-direction: column; line-height: 1.3; }
.tb-usp__body strong { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .95rem; }
.tb-usp__body small { color: var(--text-muted); font-size: .8rem; }

/* --- 8. Kategória kártyák --------------------------------------------------- */
.tb-categories__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
}
.tb-catcard {
	display: flex; flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--cream-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.tb-catcard:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: var(--leaf-400);
}
.tb-catcard__media {
	position: relative;
	aspect-ratio: 4 / 3;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.tb-catcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tb-catcard:hover .tb-catcard__media img { transform: scale(1.06); }
/* Finom fényfolt a gradiensen, hogy legyen mélysége */
.tb-catcard__media::before {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(circle at 50% 36%, rgba(255, 253, 248, .22), transparent 62%);
	pointer-events: none;
}

.tb-catcard__media--white  { background: linear-gradient(160deg, var(--leaf-100), var(--leaf-300)); }
.tb-catcard__media--rose   { background: linear-gradient(160deg, var(--rose-100), var(--rose-300)); }
.tb-catcard__media--red    { background: linear-gradient(160deg, var(--wine-700), var(--wine-950)); }
.tb-catcard__media--select { background: linear-gradient(160deg, var(--leaf-500), var(--leaf-700)); }

/* Világos korong, benne a kategóriához illő sötét ikon */
.tb-catcard__glyph {
	position: relative; z-index: 1;
	display: inline-flex; align-items: center; justify-content: center;
	width: 94px; height: 94px;
	border-radius: 50%;
	background: var(--paper);
	box-shadow: 0 10px 26px rgba(43, 10, 22, .2);
	transition: transform .3s var(--ease);
}
.tb-catcard:hover .tb-catcard__glyph { transform: translateY(-4px) scale(1.04); }
.tb-catcard__media--white  .tb-catcard__glyph { color: var(--leaf-700); }
.tb-catcard__media--rose   .tb-catcard__glyph { color: var(--wine-700); }
.tb-catcard__media--red    .tb-catcard__glyph { color: var(--wine-700); }
.tb-catcard__media--select .tb-catcard__glyph { color: var(--leaf-700); }
.tb-catcard__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .4rem; }
.tb-catcard__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.tb-catcard__desc { font-size: .85rem; color: var(--text-muted); }
.tb-catcard__more {
	display: inline-flex; align-items: center; gap: .35rem;
	margin-top: .4rem;
	font-family: var(--font-display); font-size: .85rem; font-weight: 600;
	color: var(--wine-700);
}
.tb-catcard:hover .tb-catcard__more { color: var(--leaf-700); }
.tb-catcard__more .tb-icon { transition: transform .2s var(--ease); }
.tb-catcard:hover .tb-catcard__more .tb-icon { transform: translateX(4px); }

/* --- 9. Rólunk (invert) ------------------------------------------------------ */
.tb-about {
	position: relative;
	background: linear-gradient(160deg, var(--wine-900), var(--wine-950));
	color: var(--wine-100);
	overflow: hidden;
}
.tb-about::after { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .45; pointer-events: none; }
.tb-about__inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.tb-about__media {
	margin: 0;
	border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(134, 164, 108, .25);
}
.tb-about__media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }

/* Logó-változat: kör alakú világos korong a sötét blokkon, a fekete+piros
   embléma kontúrosan látszik; nincs arch-maszk, nincs cover-vágás. */
.tb-about__media--logo {
	aspect-ratio: 1;
	max-width: 400px;
	margin-inline: auto;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 42%, var(--paper), var(--cream-100));
	border: 1px solid rgba(134, 164, 108, .3);
	box-shadow: var(--shadow-md), inset 0 0 0 8px rgba(255, 253, 248, .55);
	display: grid; place-items: center;
	padding: clamp(1.6rem, 4vw, 2.8rem);
}
.tb-about__media--logo img {
	width: 100%; height: auto;
	min-height: 0;
	object-fit: contain;
	aspect-ratio: 1;
}
.tb-about__placeholder {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem;
	min-height: 340px;
	background: linear-gradient(160deg, var(--leaf-500), var(--leaf-700));
	color: var(--leaf-200);
	font-family: var(--font-display);
	font-size: .78rem; font-weight: 600;
	letter-spacing: .28em; text-transform: uppercase;
}
.tb-about__copy .tb-section-title { color: var(--paper); }
.tb-about__copy p { color: var(--wine-100); }
.tb-about__copy .tb-section-rule { margin-bottom: 1.2rem; }
.tb-about__names {
	display: flex; flex-wrap: wrap; gap: 1.4rem;
	margin-block: 1.4rem 1.8rem;
	font-family: var(--font-display); font-weight: 600;
}
.tb-about__names span { color: var(--leaf-400); }

/* --- 9/b. A szőlőbirtok (sötét bordó, térkép + statisztikák) ------------------ */
.tb-estate {
	position: relative;
	background: linear-gradient(200deg, var(--wine-900), var(--wine-950));
	color: var(--wine-100);
	overflow: hidden;
}
.tb-estate::after { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .45; pointer-events: none; }
.tb-estate__inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.tb-estate__map {
	position: relative;
	margin: 0;
}
.tb-estate__map::before {
	content: "";
	position: absolute;
	left: 46%; top: 20%;
	width: 24%; aspect-ratio: 1;
	background: radial-gradient(circle, rgba(162, 58, 87, .5), transparent 68%);
	filter: blur(14px);
	pointer-events: none;
}
.tb-estate__map img {
	position: relative;
	display: block;
	width: 100%; max-width: 620px; height: auto;
	margin-inline: auto;
	filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .28));
}
.tb-estate__pin {
	margin-top: .6rem;
	text-align: center;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--leaf-300);
}
.tb-estate__copy .tb-section-title { color: var(--paper); }
.tb-estate__copy p { color: var(--wine-100); }
.tb-estate__copy .tb-section-rule { margin-bottom: 1.2rem; }
.tb-estate__stats {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: clamp(1.4rem, 3vw, 2.6rem);
	margin: 1.8rem 0 0;
	justify-content: start;
}
.tb-estate__stat dt {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2.2rem, 4vw, 3rem);
	line-height: 1;
	color: var(--leaf-300);
}
.tb-estate__stat dd {
	margin: .4rem 0 0;
	font-size: .82rem;
	line-height: 1.35;
	color: var(--wine-100);
	max-width: 12ch;
}

/* --- 9/c. tothbor.hu átvezető sáv (krém, halvány szőlőfotó háttérrel) --------- */
.tb-beyond {
	position: relative;
	overflow: hidden;
	background: var(--cream-100) var(--grain);
	border-top: 1px solid var(--cream-200);
	padding-block: clamp(3.5rem, 8vw, 6rem);
}
/* Halvány szőlőbirtok-fotó, felül-alul krémbe olvadó gradienssel */
.tb-beyond::before {
	content: "";
	position: absolute; inset: 0; z-index: 0;
	background-image: var(--tb-beyond-bg);
	background-size: cover;
	background-position: center 62%;
	opacity: .16;
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 68%, transparent 100%);
	mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 68%, transparent 100%);
	pointer-events: none;
}
/* Krém-fátyol a szélek felé, hogy a szöveg mindig olvasható maradjon */
.tb-beyond::after {
	content: "";
	position: absolute; inset: 0; z-index: 0;
	background: radial-gradient(120% 90% at 50% 50%, transparent 30%, rgba(245, 238, 225, .55) 100%);
	pointer-events: none;
}
.tb-beyond__inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.tb-beyond__title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 700;
	color: var(--wine-800);
	margin: .3rem 0 .2rem;
	letter-spacing: -.01em;
}
.tb-beyond__lead { margin: 0 0 1.5rem; color: var(--text-body); font-size: 1.05rem; max-width: 46ch; }

@media (max-width: 860px) {
	.tb-estate__inner { grid-template-columns: 1fr; }
	.tb-estate__map { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 480px) {
	.tb-estate__stats { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}

/* --- 10. Termék kiemelő ------------------------------------------------------- */
.tb-showcase__head {
	display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
	flex-wrap: wrap;
}
.tb-showcase__head .tb-section-head { margin-bottom: clamp(1.5rem, 3vw, 2.4rem); }

/* --- 11. Hírlevél sáv ----------------------------------------------------------- */
.tb-newsletter {
	background: var(--wine-950) var(--grain);
	color: var(--wine-100);
	padding-block: clamp(2.4rem, 5vw, 3.6rem);
	border-bottom: 1px solid rgba(134, 164, 108, .18);
}
.tb-newsletter__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 2rem; flex-wrap: wrap;
}
.tb-newsletter h2 { color: var(--paper); font-size: var(--fs-h3); margin-bottom: .2em; }
.tb-newsletter p { margin: 0; color: var(--wine-300); font-size: .92rem; }

.tb-newsletter-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.tb-newsletter-form input[type="email"] {
	min-width: 260px;
	padding: .7rem 1.15rem;
	border: 1px solid rgba(246, 237, 214, .25);
	border-radius: 999px;
	background: rgba(255, 253, 248, .08);
	color: var(--paper);
	font-family: var(--font-body); font-size: .92rem;
}
.tb-newsletter-form input[type="email"]::placeholder { color: var(--wine-300); }
.tb-newsletter-form input[type="email"]:focus { outline: 2px solid var(--leaf-500); outline-offset: 0; }
.tb-newsletter-form .tb-btn { background: var(--leaf-600); color: var(--paper); }
.tb-newsletter-form .tb-btn:hover { background: var(--leaf-500); }
.tb-newsletter__consent {
	flex-basis: 100%;
	display: flex; align-items: flex-start; gap: .5rem;
	font-size: .78rem; color: var(--wine-300);
}
.tb-newsletter__msg { flex-basis: 100%; font-size: .85rem; margin: 0; }
.tb-newsletter__msg.is-success { color: var(--leaf-400); }
.tb-newsletter__msg.is-error { color: var(--rose-300); }
.tb-newsletter__fallback a { color: var(--leaf-400); }

/* --- 12. Footer -------------------------------------------------------------------- */
/* A pincelátogatás kijárata: szlogen-tábla (a szekciófejek brand-grammatikájával),
   alatta 5 zónás rács, legalul a Barion-sáv. A zöld derengés a jobb alsó sarokból
   a pagehero motívum tükörképe. */
.tb-footer {
	position: relative;
	background:
		radial-gradient(760px 360px at 88% 100%, rgba(134, 164, 108, .1), transparent 62%),
		var(--wine-950);
	color: var(--wine-300);
}
.tb-footer::before {
	content: "";
	position: absolute; inset: 0;
	background: var(--grain);
	opacity: .5;
	pointer-events: none;
}
.tb-footer .tb-container { position: relative; }

/* Szlogen-tábla */
.tb-footer__slogan {
	display: flex; flex-direction: column; align-items: center;
	text-align: center;
	gap: .7rem;
	padding-block: clamp(2.2rem, 5vw, 3.2rem) clamp(1.9rem, 4vw, 2.7rem);
	border-bottom: 1px solid rgba(134, 164, 108, .15);
}
.tb-footer__slogan-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--paper);
}
.tb-footer__slogan .tb-section-rule { margin: 0; }
.tb-footer__slogan-lead {
	margin: 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	color: var(--leaf-300);
}

/* Fő rács */
.tb-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
	gap: clamp(1.8rem, 3vw, 2.8rem);
	padding-block: clamp(2.6rem, 6vw, 3.8rem);
}
.tb-footer__brand p { font-size: .88rem; margin-block: 1.1rem 1.5rem; max-width: 34ch; }
.tb-footer__brand .tb-logo--img img { width: 150px; }

.tb-footer__contactlist {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: .95rem;
	font-size: .9rem;
}
.tb-footer__contactlist li { display: flex; gap: .75rem; align-items: flex-start; }
.tb-footer__contactlist .tb-icon { flex: none; margin-top: .2rem; color: var(--leaf-400); }
.tb-footer__contactlist a { color: var(--wine-100); }
.tb-footer__contactlist a:hover { color: var(--leaf-200); }
.tb-footer__label {
	display: block;
	font-family: var(--font-display);
	font-size: .7rem; font-weight: 600;
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--leaf-400);
	margin-bottom: .2rem;
}
.tb-footer__tel { display: block; }

.tb-footer__fb {
	display: inline-flex; align-items: center; gap: .6rem;
	margin-top: 1.5rem;
	padding: .55rem 1.25rem .55rem 1rem;
	border: 1px solid rgba(134, 164, 108, .35);
	border-radius: 999px;
	font-family: var(--font-display); font-weight: 600; font-size: .88rem;
	color: var(--leaf-200);
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.tb-footer__fb .tb-icon { color: var(--leaf-400); transition: color .25s var(--ease); }
.tb-footer__fb:hover { background: var(--leaf-500); border-color: var(--leaf-500); color: var(--wine-950); }
.tb-footer__fb:hover .tb-icon { color: var(--wine-950); }

.tb-footer__group + .tb-footer__group { margin-top: 1.9rem; }

.tb-footer__title {
	color: var(--leaf-400);
	font-size: .82rem; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	margin-bottom: 1.1rem;
}
.tb-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.tb-footer__menu a { color: var(--wine-300); font-size: .9rem; }
.tb-footer__menu a:hover { color: var(--leaf-200); }

/* Nyitvatartás */
.tb-footer__hours-note {
	margin: -.6rem 0 .9rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: .82rem;
	color: var(--wine-300);
}
.tb-footer__hours { margin: 0; font-size: .88rem; }
.tb-footer__hours-row {
	display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
	padding-block: .38rem;
	border-bottom: 1px dotted rgba(201, 129, 152, .3);
}
.tb-footer__hours-row:last-child { border-bottom: 0; }
.tb-footer__hours-row dt { margin: 0; }
.tb-footer__hours-row dd { margin: 0; color: var(--wine-100); font-variant-numeric: tabular-nums; white-space: nowrap; }
.tb-footer__hours-row.is-closed dd { color: var(--wine-300); font-style: italic; }
.tb-footer__hours-row.is-today dt,
.tb-footer__hours-row.is-today dd { color: var(--leaf-200); font-weight: 600; }
.tb-footer__hours-row.is-today { border-bottom-color: rgba(134, 164, 108, .45); }

/* Alsó sáv */
.tb-footer__bottom {
	border-top: 1px solid rgba(134, 164, 108, .15);
	padding-block: 1.3rem;
	font-size: .78rem;
}
.tb-footer__bottom .tb-container {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem 2rem; flex-wrap: wrap;
}
.tb-footer__bottom p { margin: 0; }
.tb-footer__barion img { height: 26px; width: auto; border-radius: 5px; }
.tb-footer__age { color: var(--wine-300); }

/* --- 12/b. Oldal-hero (bordó évjárat-fejléc) ------------------------------------------ */
/* A topbar–header felület folytatása: az oldal címe a pincelátogatás kapuja.
   Az 1988-as outline évjárat a jobb alsó sarokból lóg ki — a birtok alapéve. */
.tb-pagehero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(820px 380px at 85% 115%, rgba(134, 164, 108, .16), transparent 62%),
		linear-gradient(150deg, var(--wine-900), var(--wine-950));
	color: var(--wine-100);
	padding-block: clamp(3rem, 7vw, 5.5rem);
}
.tb-pagehero::after {
	content: "";
	position: absolute; inset: 0;
	background: var(--grain);
	opacity: .5;
	pointer-events: none;
}
.tb-pagehero--overlap { padding-bottom: clamp(6rem, 12vw, 9rem); }
.tb-pagehero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center 40%;
	opacity: .14;
	mix-blend-mode: luminosity;
	-webkit-mask-image: linear-gradient(100deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .8) 50%, #000 75%);
	mask-image: linear-gradient(100deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .8) 50%, #000 75%);
	pointer-events: none;
}
.tb-pagehero__year {
	position: absolute;
	right: clamp(.5rem, 4vw, 4rem);
	bottom: -.14em;
	z-index: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(6.5rem, 17vw, 14rem);
	line-height: 1;
	letter-spacing: .02em;
	color: rgba(168, 196, 143, .07);
	-webkit-text-stroke: 1px rgba(168, 196, 143, .3);
	pointer-events: none;
	user-select: none;
}
.tb-pagehero__inner { position: relative; z-index: 1; }
.tb-pagehero__copy { max-width: 720px; }
.tb-pagehero__title {
	font-size: clamp(2.6rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--paper);
	margin: 0 0 .3em;
}
.tb-pagehero .tb-section-rule { width: 72px; }
.tb-pagehero__lead {
	margin: 1rem 0 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	line-height: 1.55;
	color: var(--leaf-300);
	max-width: 46ch;
}

/* --- 13. Oldalak ------------------------------------------------------------------- */
.tb-page { padding-block: clamp(2.8rem, 6vw, 4.5rem); }
.tb-page__head { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.tb-page__title { font-size: var(--fs-h2); }
.tb-page__desc { color: var(--text-muted); }

.tb-prose { font-size: 1.02rem; }
.tb-prose h2 { font-size: var(--fs-h3); margin-top: 1.6em; }
.tb-prose img { border-radius: var(--radius); }

/* Palackos boraink — az örökölt cím+kép párok kategória-kártyaként, egymás mellett.
   A tartalom h2/p váltakozás; a column-flow grid oszloponként párosítja őket. */
.tothbor-page-palackos-boraink .tb-prose {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: auto 1fr;
	grid-auto-columns: 1fr;
	gap: .7rem clamp(1.2rem, 2.5vw, 2rem);
	align-items: start;
}
.tothbor-page-palackos-boraink .tb-prose h2 {
	margin: 0;
	font-size: 1.15rem;
	text-align: center;
}
.tothbor-page-palackos-boraink .tb-prose h2 a { color: var(--ink); }
.tothbor-page-palackos-boraink .tb-prose h2 a:hover { color: var(--leaf-600); }
.tothbor-page-palackos-boraink .tb-prose p { margin: 0; }
.tothbor-page-palackos-boraink .tb-prose p a {
	display: block;
	overflow: hidden;
	border: 1px solid var(--cream-200);
	border-radius: var(--radius-lg);
	background: var(--paper);
	transition: translate .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.tothbor-page-palackos-boraink .tb-prose p a:hover {
	translate: 0 -6px;
	border-color: var(--leaf-400);
	box-shadow: var(--shadow-md);
}
.tothbor-page-palackos-boraink .tb-prose p img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 0;
}
@media (max-width: 700px) {
	.tothbor-page-palackos-boraink .tb-prose { display: block; }
	.tothbor-page-palackos-boraink .tb-prose h2 { margin-top: 1.4em; margin-bottom: .6em; }
}
.tb-prose blockquote {
	margin: 1.5em 0;
	padding: 1rem 1.4rem;
	border-left: 3px solid var(--leaf-500);
	background: var(--cream-100);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
}
.tb-article__thumb { margin: 0 0 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

.tb-postlist { display: flex; flex-direction: column; gap: 1.6rem; }
.tb-postcard {
	display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem;
	background: var(--paper);
	border: 1px solid var(--cream-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.tb-postcard:not(:has(.tb-postcard__media)) { grid-template-columns: 1fr; }
.tb-postcard__media img { width: 100%; height: 100%; object-fit: cover; }
.tb-postcard__body { padding: 1.4rem 1.6rem; }
.tb-postcard__date { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .3rem; }
.tb-postcard__title { font-size: 1.25rem; margin-bottom: .4rem; }
.tb-postcard__title a { color: var(--ink); }
.tb-postcard__title a:hover { color: var(--wine-700); }
.tb-postcard__excerpt { font-size: .92rem; color: var(--text-body); }

.tb-postnav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; font-family: var(--font-display); font-weight: 600; }

/* Lapozó — WooCommerce lista (ul.page-numbers) és bejegyzés-lapozó (.nav-links) */
.pagination, .woocommerce-pagination { margin-top: clamp(2.2rem, 4vw, 3.4rem); }
.woocommerce-pagination ul.page-numbers,
.pagination .nav-links {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: .5rem;
	list-style: none; margin: 0; padding: 0;
	border: 0; background: none; border-radius: 0;
}
.woocommerce-pagination ul.page-numbers li { margin: 0; padding: 0; border: 0; }
/* A tényleges lapszám-gombok (a konténer ul-t kizárjuk) */
.page-numbers:not(ul) {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding-inline: .75rem;
	border-radius: 999px;
	border: 1px solid var(--cream-200);
	background: var(--paper);
	font-family: var(--font-display); font-weight: 600; font-size: .95rem;
	color: var(--wine-700);
	transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.page-numbers.current:not(ul) {
	background: linear-gradient(135deg, var(--wine-700), var(--wine-900));
	color: var(--paper);
	border-color: var(--wine-800);
	box-shadow: 0 6px 16px rgba(43, 10, 22, .22);
}
a.page-numbers:hover {
	border-color: var(--leaf-400);
	color: var(--wine-900);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}
.page-numbers.dots { border-color: transparent; background: none; min-width: 1.5rem; color: var(--text-muted); }
/* Előző/következő nyilak kicsit erősebb kiemeléssel */
.page-numbers.next, .page-numbers.prev { color: var(--wine-800); font-size: 1.1rem; }

/* 404 */
.tb-404 { text-align: center; }
.tb-404__code {
	font-family: var(--font-display);
	font-size: clamp(4rem, 12vw, 7rem);
	font-weight: 700;
	line-height: 1;
	margin: 0;
	background: linear-gradient(120deg, var(--wine-300), var(--wine-100));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.tb-404 .tb-section-rule, .tb-404 .tb-hero__cta { margin-inline: auto; justify-content: center; }

/* Kapcsolat kártyák */
.tb-contact-cards {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
	margin-bottom: 2.5rem;
}
.tb-contact-card {
	display: flex; flex-direction: column; align-items: center; gap: .35rem;
	padding: 1.6rem 1.2rem;
	background: var(--paper);
	border: 1px solid var(--cream-200);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	text-align: center;
	color: var(--text-body);
	transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
a.tb-contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--leaf-400); }
.tb-contact-card strong { font-family: var(--font-display); color: var(--ink); margin-top: .5rem; }

.tb-empty { text-align: center; color: var(--text-muted); padding-block: 2rem; }

/* Rólunk — szerkesztett próza a bordó hero után */
.tb-page--rolunk .tb-container--narrow { max-width: 760px; }
.tb-prose--rolunk > p:first-of-type {
	font-size: 1.16rem;
	line-height: 1.75;
	color: var(--wine-800);
}
.tb-prose--rolunk h2 {
	margin-top: 2.2em;
	letter-spacing: .01em;
}
/* A zöld vonal-aláírás a próza címei alá is — a brand visszatérő gesztusa */
.tb-prose--rolunk h2::after {
	content: "";
	display: block;
	width: 44px; height: 2px;
	margin-top: .5rem;
	background: linear-gradient(90deg, var(--leaf-500), var(--leaf-200));
	border-radius: 2px;
}

/* Rólunk — történet blokkok (zigzag) + csapat */
.tb-article__thumb--arch {
	border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
	border: 1px solid var(--leaf-200);
}
/* A boltíves nyitókép felfelé, a hero bordójába emelkedik (pinceajtó-gesztus) */
.tb-article__thumb--overlap {
	position: relative;
	z-index: 2;
	margin-top: calc(-1 * clamp(5.5rem, 11vw, 8rem) - clamp(2.8rem, 6vw, 4.5rem));
	margin-bottom: 2.4rem;
	max-width: 620px;
	margin-inline: auto;
	box-shadow: var(--shadow-md);
}
.tb-story { display: flex; flex-direction: column; gap: clamp(2.4rem, 6vw, 4rem); margin-block: clamp(2.4rem, 6vw, 4rem); }
.tb-story__block {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: clamp(1.4rem, 4vw, 3rem);
	align-items: center;
}
.tb-story__block:nth-child(even) .tb-story__media { order: 2; }
.tb-story__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.tb-story__media img { width: 100%; height: 100%; object-fit: cover; }
.tb-story__year {
	font-family: var(--font-display);
	font-size: 2rem; font-weight: 700;
	color: var(--leaf-500);
	line-height: 1;
	margin-bottom: .3rem;
}
.tb-story__copy h2 { font-size: var(--fs-h3); margin-bottom: .4rem; }
.tb-story__copy p { margin: 0; }

.tb-team { margin-block: clamp(2.4rem, 6vw, 4rem); text-align: center; }
.tb-team__title { font-size: var(--fs-h3); margin-bottom: 1.4rem; }
.tb-team__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.tb-team__member {
	display: flex; flex-direction: column; gap: .15rem;
	padding: 1rem 1.8rem;
	background: var(--paper);
	border: 1px solid var(--cream-200);
	border-radius: var(--radius-lg);
}
.tb-team__member strong { font-family: var(--font-display); color: var(--wine-800); }
.tb-team__member span { font-size: .82rem; color: var(--text-muted); }

/* Kapcsolat — nyitvatartás + térkép */
.tb-hours { max-width: 460px; margin: 0 auto 2.5rem; text-align: center; }
.tb-hours__title { font-size: 1.1rem; margin-bottom: .8rem; }
.tb-hours__list { list-style: none; margin: 0; padding: 0; }
.tb-hours__list li {
	display: flex; justify-content: center;
	padding: .5rem 0;
	border-bottom: 1px dashed var(--cream-200);
	font-family: var(--font-display);
}
.tb-hours__list li:last-child { border-bottom: none; }

.tb-map { margin: 2.5rem 0 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-200); }
.tb-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* Kapcsolat — kétoszlopos elrendezés: űrlap + oldalsáv */
.tb-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: clamp(1.6rem, 3.5vw, 3rem);
	align-items: start;
	margin-top: .5rem;
}
.tb-contact-main {
	background: var(--paper);
	border: 1px solid var(--cream-200);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: clamp(1.5rem, 3vw, 2.4rem);
	scroll-margin-top: 120px;
}
.tb-contact-form-head { margin-bottom: 1.6rem; }
.tb-contact-form-title { font-size: var(--fs-h3); margin-bottom: .35rem; }
.tb-contact-form-lead { margin: .9rem 0 0; color: var(--text-body); max-width: 52ch; }
.tb-contact-aside { display: flex; flex-direction: column; gap: 1.4rem; color: var(--text-body); }

/* Elérhetőség / nyitvatartás panel */
.tb-info-panel {
	background: var(--cream-100) var(--grain);
	border: 1px solid var(--cream-200);
	border-radius: var(--radius-lg);
	padding: clamp(1.3rem, 2.5vw, 1.8rem);
}
.tb-info-panel__title {
	font-size: .82rem; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--wine-700);
	margin: 0 0 1.1rem;
}
.tb-info-panel__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.tb-info-panel__list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; }
.tb-info-panel__icon {
	flex: none;
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px;
	background: var(--paper);
	border: 1px solid var(--cream-200);
	border-radius: 50%;
	color: var(--leaf-600);
}
.tb-info-panel__label {
	display: block;
	font-family: var(--font-display);
	font-size: .72rem; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: .15rem;
}
.tb-info-panel__list a { color: var(--wine-700); }
.tb-info-panel__list a:hover { color: var(--leaf-600); }
.tb-info-panel__tel { display: block; }

.tb-info-panel__note {
	margin: -.6rem 0 .9rem;
	font-family: var(--font-display); font-style: italic;
	font-size: .85rem; color: var(--text-muted);
}
.tb-open-hours { margin: 0; }
.tb-open-hours__row {
	display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
	padding: .42rem 0;
	border-bottom: 1px dashed var(--cream-200);
	font-size: .92rem;
}
.tb-open-hours__row:last-child { border-bottom: none; }
.tb-open-hours__row dt { margin: 0; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.tb-open-hours__row dd { margin: 0; color: var(--text-body); font-variant-numeric: tabular-nums; white-space: nowrap; }
.tb-open-hours__row.is-closed dd { color: var(--text-muted); font-style: italic; }

/* Űrlap elemek */
.tb-form { display: flex; flex-direction: column; gap: 1.1rem; }
.tb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.tb-form__field { display: flex; flex-direction: column; gap: .4rem; margin: 0; }
.tb-form__field label {
	font-family: var(--font-display);
	font-size: .82rem; font-weight: 600;
	letter-spacing: .04em;
	color: var(--wine-800);
}
.tb-form__field label span { color: var(--leaf-600); }
.tb-form input[type="text"],
.tb-form input[type="email"],
.tb-form input[type="tel"],
.tb-form textarea {
	width: 100%;
	padding: .72rem .95rem;
	font-family: var(--font-body);
	font-size: .95rem;
	color: var(--ink);
	background: var(--cream-50);
	border: 1px solid var(--cream-200);
	border-radius: var(--radius);
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.tb-form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.tb-form input:focus,
.tb-form textarea:focus {
	outline: none;
	background: var(--paper);
	border-color: var(--leaf-400);
	box-shadow: 0 0 0 3px rgba(134, 164, 108, .18);
}
.tb-form__consent {
	display: flex; align-items: flex-start; gap: .6rem;
	font-size: .85rem; line-height: 1.5;
	color: var(--text-muted);
}
.tb-form__consent input { margin-top: .2rem; accent-color: var(--leaf-600); flex: none; }
.tb-form__foot { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.tb-form__foot .tb-btn { padding-inline: 2rem; }
.tb-form__msg {
	flex-basis: 100%;
	margin: 0;
	padding: .85rem 1.1rem;
	border-radius: var(--radius);
	font-size: .9rem;
}
.tb-form__msg.is-success { background: var(--leaf-100); color: var(--leaf-700); border: 1px solid var(--leaf-300); }
.tb-form__msg.is-error { background: var(--rose-100); color: var(--danger); border: 1px solid var(--rose-200); }

@media (max-width: 860px) {
	.tb-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.tb-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.tb-story__block { grid-template-columns: 1fr; }
	.tb-story__block:nth-child(even) .tb-story__media { order: 0; }
}

/* CTA sáv — a történet végén a bolt felé nyit */
.tb-cta {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(700px 320px at 12% -40%, rgba(162, 58, 87, .3), transparent 60%),
		linear-gradient(150deg, var(--wine-900), var(--wine-950));
	color: var(--wine-100);
	padding-block: clamp(2.6rem, 5vw, 3.8rem);
}
.tb-cta::after {
	content: "";
	position: absolute; inset: 0;
	background: var(--grain);
	opacity: .45;
	pointer-events: none;
}
.tb-cta__inner {
	position: relative; z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem 2rem;
	flex-wrap: wrap;
}
.tb-cta__title {
	font-size: var(--fs-h3);
	font-style: italic;
	color: var(--paper);
	margin: 0 0 .25em;
}
.tb-cta__text { margin: 0; color: var(--wine-300); font-size: .95rem; }

/* --- 13/b. Kosár drawer ----------------------------------------------------------------- */
.tb-drawer-overlay {
	position: fixed; inset: 0; z-index: 140;
	background: rgba(43, 10, 22, .55);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s var(--ease), visibility .3s;
}
.tb-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.tb-cart-drawer {
	position: fixed;
	top: 0; right: 0; bottom: 0;
	z-index: 150;
	width: min(430px, 94vw);
	display: flex;
	flex-direction: column;
	background: var(--cream-50) var(--grain);
	box-shadow: -18px 0 50px rgba(43, 10, 22, .28);
	transform: translateX(calc(100% + 60px));
	transition: transform .42s var(--ease);
}
.tb-cart-drawer.is-open { transform: translateX(0); }

.tb-cart-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 1.1rem 1.4rem;
	background: linear-gradient(150deg, var(--wine-900), var(--wine-950));
	color: var(--paper);
}
.tb-cart-drawer__head h2 {
	margin: 0;
	font-size: 1.1rem;
	color: var(--paper);
	display: inline-flex; align-items: center; gap: .55rem;
}
.tb-cart-drawer__head h2 .tb-icon { color: var(--leaf-400); }
.tb-cart-drawer__close { color: var(--leaf-200); }
.tb-cart-drawer__close:hover { background: rgba(255, 253, 248, .12); color: var(--paper); }

/* A drawer törzse: a WC fragment (widget_shopping_cart_content) tölti ki,
   flex oszlopként — középen görgethető tételek, alul rögzített összesítő + gombok. */
.tb-cart-drawer__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 0;
}
.tb-cart-drawer .widget_shopping_cart_content {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

/* Tétel lista — görgethető középső sáv */
.tb-cart-drawer .woocommerce-mini-cart {
	flex: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
	list-style: none;
	margin: 0;
	padding: .4rem 1.4rem;
}
.tb-cart-drawer .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 76px 1fr;
	gap: 1rem;
	align-items: center;
	padding: 1rem 2rem 1rem 0;
	border-bottom: 1px solid var(--cream-200);
}
.tb-cart-drawer .woocommerce-mini-cart-item:last-child { border-bottom: none; }

/* A terméklink (kép + név) elemei külön rácscellákba folynak */
.tb-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
	display: contents;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: .95rem;
	line-height: 1.35;
	color: var(--ink);
}
.tb-cart-drawer .woocommerce-mini-cart-item > a:not(.remove):hover { color: var(--wine-700); }
.tb-cart-drawer .woocommerce-mini-cart-item img {
	width: 76px; height: 76px;
	object-fit: contain;
	border-radius: var(--radius);
	background: linear-gradient(170deg, var(--cream-100), var(--paper));
	border: 1px solid var(--cream-200);
	padding: 6px;
	float: none;
	margin: 0;
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: start;
}
.tb-cart-drawer .woocommerce-mini-cart-item .quantity {
	grid-column: 2;
	display: block;
	margin-top: .3rem;
	font-family: var(--font-display);
	font-size: .88rem;
	font-weight: 600;
	color: var(--wine-800);
}

/* Tétel-meta (pl. az extra-fees plugin „Betét díj" sora) — a dt/dd natív margói
   szétdobnák a rácsot, ezért kompakt, egysoros címke–érték párokká simítjuk. */
.tb-cart-drawer .woocommerce-mini-cart-item dl.variation {
	grid-column: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 .35rem;
	margin: .1rem 0 0;
	font-size: .78rem;
	line-height: 1.4;
	color: var(--text-muted);
}
.tb-cart-drawer .woocommerce-mini-cart-item dl.variation dt,
.tb-cart-drawer .woocommerce-mini-cart-item dl.variation dd {
	margin: 0;
	padding: 0;
	font-weight: 500;
}
.tb-cart-drawer .woocommerce-mini-cart-item dl.variation dd p {
	margin: 0;
	display: inline;
}
.tb-cart-drawer .woocommerce-mini-cart-item dl.variation .amount { color: var(--wine-800); }
.tb-cart-drawer .woocommerce-mini-cart-item .quantity .amount { color: var(--wine-800); }

.tb-cart-drawer .woocommerce-mini-cart-item a.remove {
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
	width: 26px; height: 26px; line-height: 24px;
	border: 1px solid var(--cream-200);
	border-radius: 50%;
	text-align: center;
	color: var(--text-muted) !important;
	font-size: 1rem;
	font-weight: 400;
	background: var(--paper);
	transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.tb-cart-drawer .woocommerce-mini-cart-item a.remove:hover {
	background: var(--danger);
	border-color: var(--danger);
	color: var(--paper) !important;
}

/* Alul rögzített összesítő + gombok */
.tb-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 0;
	padding: 1.1rem 1.4rem .2rem;
	border-top: 1px solid var(--cream-200);
	background: var(--paper);
	font-family: var(--font-display);
	color: var(--text-muted);
	box-shadow: 0 -10px 24px rgba(43, 10, 22, .05);
}
.tb-cart-drawer .woocommerce-mini-cart__total strong { font-weight: 500; color: var(--text-muted); }
.tb-cart-drawer .woocommerce-mini-cart__total .amount {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--wine-800);
}

/* Magyarázat, amikor a min/max szabály miatt a Pénztár gomb rejtve van */
.tb-cart-drawer__hint {
	margin: 0;
	padding: .8rem 1.4rem 0;
	background: var(--paper);
	font-family: var(--font-display);
	font-size: .84rem;
	font-style: italic;
	line-height: 1.5;
	color: var(--leaf-700);
}
.tb-cart-drawer__hint::before {
	content: "";
	display: block;
	width: 40px; height: 2px;
	margin-bottom: .5rem;
	background: linear-gradient(90deg, var(--leaf-500), var(--leaf-200));
	border-radius: 2px;
}

.tb-cart-drawer .woocommerce-mini-cart__buttons {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin: 0;
	padding: .9rem 1.4rem 1.3rem;
	background: var(--paper);
}
.tb-cart-drawer .woocommerce-mini-cart__buttons a.button {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	padding: .9rem 1.6rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 600;
	background: transparent;
	border: 1px solid var(--cream-200);
	color: var(--wine-700);
	transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.tb-cart-drawer .woocommerce-mini-cart__buttons a.button:hover {
	border-color: var(--wine-500);
	color: var(--wine-600);
	background: var(--wine-50);
	transform: none;
	box-shadow: none;
}
.tb-cart-drawer .woocommerce-mini-cart__buttons a.button.checkout {
	background: var(--wine-700);
	border-color: var(--wine-700);
	color: var(--leaf-100);
}
.tb-cart-drawer .woocommerce-mini-cart__buttons a.button.checkout:hover {
	background: var(--wine-600);
	border-color: var(--wine-600);
	color: var(--paper);
}

/* Üres kosár */
.tb-cart-drawer .woocommerce-mini-cart__empty-message {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	margin: 0;
	padding: 3rem 1.5rem;
	text-align: center;
	font-family: var(--font-display);
	color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
	.tb-cart-drawer, .tb-drawer-overlay { transition: none; }
}

/* --- 14. Scroll-reveal --------------------------------------------------------------- */
/* A tartalom láthatósága SOHA nem függ a reveal-től: csak translate, opacity nincs.
   Így headless renderben, felfüggesztett fülön vagy JS nélkül is minden látszik. */
@media (prefers-reduced-motion: no-preference) {
	[data-reveal] {
		translate: 0 26px;
		transition: translate .7s var(--ease);
		transition-delay: var(--reveal-delay, 0ms);
	}
	[data-reveal].is-revealed { translate: 0 0; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --- 15. Reszponzív -------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.tb-categories__grid { grid-template-columns: repeat(2, 1fr); }
	.tb-usp__grid { grid-template-columns: repeat(2, 1fr); padding-block: 1.6rem; gap: 1rem 0; }
	.tb-usp__item { justify-content: flex-start; }
	.tb-usp__item:nth-child(3) { border-left: none; }
	.tb-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.tb-footer__brand { grid-column: 1 / -1; }
	.tb-hero__inner { grid-template-columns: 1fr; }
	.tb-hero__figure { justify-self: center; width: clamp(220px, 42vw, 320px); margin-right: 0; }
	.tb-hero__vine { width: clamp(340px, 52vw, 560px); opacity: .14; }
	.tb-about__inner { grid-template-columns: 1fr; }
	.tb-about__media { width: min(100%, 620px); margin-inline: auto; }
}

/* A hosszú magyar menüfeliratok (Palackos boraink, Bag in Box kínálatunk…) miatt
   a vízszintes nav ~1050px alatt már nem fér el — a mobil menü ezért itt vált. */
@media (max-width: 1080px) {
	.tb-menu-toggle { display: inline-flex; }

	.tb-nav {
		position: fixed;
		inset: 0;
		top: var(--tb-header-offset, 112px);
		z-index: 99;
		background: linear-gradient(170deg, var(--wine-900), var(--wine-950));
		padding: 1.5rem;
		transform: translateX(100%);
		transition: transform .3s var(--ease);
		overflow-y: auto;
	}
	.tb-nav.is-open { transform: translateX(0); }
	.tb-nav__list { flex-direction: column; align-items: stretch; gap: .3rem; }
	.tb-nav__list a { font-size: 1.1rem; padding: .8rem 1rem; border-radius: var(--radius); }
	.tb-nav__list li ul a { color: var(--wine-300); }
	.tb-nav__list li ul {
		position: static;
		opacity: 1; visibility: visible; translate: 0 0;
		box-shadow: none; border: none;
		background: transparent;
		padding-left: 1rem;
	}
	body.tb-nav-locked { overflow: hidden; }

	/* A nav ilyenkor fixed (kicsúszik a flexből), ezért az ikonokat külön toljuk jobbra */
	.tb-header__actions { margin-left: auto; }
}

@media (max-width: 782px) {
	.tb-topbar__inner { justify-content: space-between; gap: .6rem; font-size: .72rem; }
	.tb-header__inner { gap: .6rem; min-height: 64px; }
	.tb-header .custom-logo { max-height: 40px; max-width: 150px; }
	.tb-logo__name { font-size: 1.2rem; }
	.tb-iconbtn { width: 38px; height: 38px; }
	.tb-postcard { grid-template-columns: 1fr; }
	.tb-postcard__media { max-height: 220px; overflow: hidden; }
	.tb-contact-cards { grid-template-columns: 1fr; }
	.tb-newsletter__inner { flex-direction: column; align-items: flex-start; }
	.tb-newsletter-form { width: 100%; }
	.tb-newsletter-form input[type="email"] { flex: 1; min-width: 0; }
	.tb-footer__bottom .tb-container { flex-direction: column; text-align: center; gap: .8rem; }
}

@media (max-width: 560px) {
	.tb-categories__grid { grid-template-columns: 1fr; }
	.tb-about__media img { min-height: 300px; }
	.tb-about__placeholder { min-height: 280px; }
	.tb-usp__grid { grid-template-columns: 1fr; }
	.tb-usp__item { border-left: none !important; }
	.tb-topbar__phone span { display: none; }
	.tb-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
	.tb-footer__col--hours { max-width: 420px; }
	.tb-hero__figure { width: min(64vw, 260px); }
	.tb-hero__vine { width: 78vw; right: -14%; opacity: .12; }
	.tb-hero__cta .tb-btn { width: 100%; justify-content: center; }
	.tb-showcase__head .tb-btn { display: none; }
}
