/* =========================================================================
   Top Picks Popup / Inline (v1.4.6)
   -------------------------------------------------------------------------
   Namespaced (.tbg-picks-*) — never collides with theme, LiveCanvas,
   menu/mega-menu, MGL drawer, or .tbg-intro-* scene help.
   Visual target: client glassmorphic mockup over soft garden background.
   ========================================================================= */

.tbg-picks-root {
	--tbg-picks-green: #1e4d36;
	--tbg-picks-green-dark: #143524;
	--tbg-picks-mint: #c9e6b8;
	--tbg-picks-mint-soft: #dcefcb;
	--tbg-picks-ink: #1f3328;
	--tbg-picks-muted: #5a7264;
	--tbg-picks-line: rgba(30, 77, 54, 0.12);
	--tbg-picks-radius: 28px;
	--tbg-picks-serif: "Cormorant Garamond", "Iowan Old Style", Palatino, Georgia, serif;
	--tbg-picks-sans: "Source Sans 3", "Source Sans Pro", "Segoe UI", sans-serif;

	-webkit-font-smoothing: antialiased;
	font-family: var(--tbg-picks-sans);
	color: var(--tbg-picks-ink);
}
.tbg-picks-root *,
.tbg-picks-root *::before,
.tbg-picks-root *::after {
	box-sizing: border-box;
}

/* -------------------------------------------------------------------------
   POPUP overlay shell
   ------------------------------------------------------------------------- */
.tbg-picks-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 4.5vw, 3.5rem);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tbg-picks-overlay[hidden] {
	display: none;
}
.tbg-picks-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

/* Soft-focus bright garden photo backdrop (visible around + through the glass) */
.tbg-picks-backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(70, 104, 66, 0.14)),
		var(--tbg-picks-garden-bg, linear-gradient(135deg, #dcead0, #c7dcdf)) center / cover no-repeat;
	filter: blur(7px) saturate(1.06) brightness(1.03);
	transform: scale(1.09);
	cursor: pointer;
}

/* -------------------------------------------------------------------------
   Glass panel (shared by popup modal + inline section)
   ------------------------------------------------------------------------- */
.tbg-picks-panel {
	position: relative;
	width: min(1080px, 100%);
	background: linear-gradient(
		165deg,
		rgba(255, 255, 255, 0.58) 0%,
		rgba(255, 255, 255, 0.50) 46%,
		rgba(245, 250, 241, 0.56) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: var(--tbg-picks-radius);
	box-shadow:
		0 30px 90px rgba(12, 32, 22, 0.28),
		0 0 0 1px rgba(255, 255, 255, 0.28) inset,
		0 1px 0 rgba(255, 255, 255, 0.55) inset;
	backdrop-filter: blur(30px) saturate(1.4);
	-webkit-backdrop-filter: blur(30px) saturate(1.4);
	padding: clamp(1.35rem, 3.2vw, 2.4rem) clamp(1.1rem, 3vw, 2.35rem) clamp(1.1rem, 2.2vw, 1.55rem);
}

.tbg-picks-modal {
	max-height: calc(100dvh - 2rem);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateY(18px) scale(0.985);
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 1;
}
.tbg-picks-overlay.is-open .tbg-picks-modal {
	transform: translateY(0) scale(1);
}

/* Inline / page-template mode — same glass composition, no overlay chrome */
.tbg-picks-inline {
	position: relative;
	isolation: isolate;
	padding: clamp(1.5rem, 4vw, 3rem) clamp(0.75rem, 3vw, 1.5rem);
	overflow: hidden;
}
.tbg-picks-inline::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(18, 42, 30, 0.18), rgba(18, 42, 30, 0.32)),
		var(--tbg-picks-garden-bg, none) center / cover no-repeat;
	filter: blur(2px);
	transform: scale(1.03);
	pointer-events: none;
}
.tbg-picks-inline .tbg-picks-panel {
	z-index: 1;
	margin: 0 auto;
}

/* Close — white circular X (mockup) */
.tbg-picks-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: #ffffff;
	color: #2a3d32;
	cursor: pointer;
	z-index: 5;
	box-shadow: 0 4px 14px rgba(15, 35, 25, 0.16);
	transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.tbg-picks-close svg {
	width: 18px;
	height: 18px;
}
.tbg-picks-close:hover {
	background: var(--tbg-picks-green);
	color: #fff;
	transform: rotate(90deg);
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.tbg-picks-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto clamp(1.05rem, 2.4vw, 1.55rem);
	padding: 0 2.25rem;
}
.tbg-picks-sprig {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	width: 100%;
	max-width: 290px;
	margin: 0 auto 0.35rem;
	color: #4f8f48;
}
.tbg-picks-sprig::before,
.tbg-picks-sprig::after {
	content: "";
	height: 1px;
	flex: 1 1 auto;
	background: linear-gradient(90deg, rgba(79, 143, 72, 0), rgba(79, 143, 72, 0.5));
}
.tbg-picks-sprig::after {
	background: linear-gradient(90deg, rgba(79, 143, 72, 0.5), rgba(79, 143, 72, 0));
}
.tbg-picks-sprig svg {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5));
}
.tbg-picks-title {
	margin: 0 0 0.45rem;
	font-family: var(--tbg-picks-serif);
	font-weight: 700;
	font-size: clamp(1.65rem, 3.9vw, 2.55rem);
	line-height: 1.1;
	color: var(--tbg-picks-green);
	letter-spacing: -0.015em;
}
.tbg-picks-subtitle {
	margin: 0;
	font-size: clamp(0.92rem, 1.55vw, 1.05rem);
	line-height: 1.5;
	color: var(--tbg-picks-muted);
	font-weight: 400;
}

/* -------------------------------------------------------------------------
   Carousel
   ------------------------------------------------------------------------- */
.tbg-picks-carousel {
	position: relative;
}
.tbg-picks-viewport {
	overflow: hidden;
}
.tbg-picks-track {
	display: flex;
	gap: clamp(0.7rem, 1.4vw, 1rem);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.tbg-picks-nav {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	z-index: 4;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: #ffffff;
	color: #3a4f43;
	cursor: pointer;
	box-shadow: 0 5px 18px rgba(15, 35, 25, 0.18);
	transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}
.tbg-picks-nav--prev { left: -0.6rem; }
.tbg-picks-nav--next { right: -0.6rem; }
.tbg-picks-nav svg {
	width: 18px;
	height: 18px;
}
.tbg-picks-nav:hover {
	background: var(--tbg-picks-green);
	color: #fff;
	transform: translateY(-50%) scale(1.06);
}
.tbg-picks-nav:disabled {
	opacity: 0.32;
	cursor: default;
	pointer-events: none;
}

/* -------------------------------------------------------------------------
   Product card
   ------------------------------------------------------------------------- */
.tbg-picks-card {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(15, 35, 25, 0.1);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tbg-picks-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(15, 35, 25, 0.14);
}
.tbg-picks-card-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e6ede0;
}
.tbg-picks-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Pastel zone pill badges (mockup) */
.tbg-picks-badge {
	position: absolute;
	top: 0.55rem;
	left: 0.55rem;
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	max-width: calc(100% - 1.1rem);
	padding: 0.34rem 0.62rem 0.34rem 0.4rem;
	border-radius: 999px;
	background: var(--tbg-picks-badge-bg, #d8efc8);
	color: var(--tbg-picks-badge, #3d7a3a);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(15, 35, 25, 0.12);
}
.tbg-picks-badge-icon {
	display: inline-flex;
	color: inherit;
}
.tbg-picks-badge-icon svg {
	width: 13px;
	height: 13px;
}

.tbg-picks-card-body {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 0.85rem 0.9rem 0.95rem;
	min-height: 168px;
}
.tbg-picks-card-title {
	margin: 0 0 0.28rem;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.22;
	color: var(--tbg-picks-green);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tbg-picks-card-desc {
	margin: 0 0 0.45rem;
	font-size: 0.82rem;
	line-height: 1.4;
	color: var(--tbg-picks-muted);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tbg-picks-card-feature {
	display: flex;
	align-items: center;
	gap: 0.32rem;
	margin: auto 0 0.35rem;
	padding-top: 0.5rem;
	font-size: 0.76rem;
	font-weight: 600;
	color: #3f6f4b;
}
.tbg-picks-card-check {
	display: inline-flex;
	flex: 0 0 auto;
	color: #4a9a52;
}
.tbg-picks-card-check svg {
	width: 14px;
	height: 14px;
}

/* Faint circular arrow CTA (mockup: light outlined circle) */
.tbg-picks-card-cta {
	align-self: flex-end;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(30, 77, 54, 0.16);
	background: rgba(240, 247, 237, 0.9);
	color: #4a7a55;
	text-decoration: none;
	box-shadow: none;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.tbg-picks-card-cta svg {
	width: 17px;
	height: 17px;
}
.tbg-picks-card-cta:hover {
	background: var(--tbg-picks-green);
	color: #fff;
	border-color: var(--tbg-picks-green);
	transform: translateX(2px);
}

/* -------------------------------------------------------------------------
   Pagination dots
   ------------------------------------------------------------------------- */
.tbg-picks-dots {
	display: flex;
	justify-content: center;
	gap: 0.42rem;
	margin: clamp(0.7rem, 1.8vw, 1rem) 0 0.25rem;
	min-height: 12px;
}
.tbg-picks-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: #c5d4c7;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}
.tbg-picks-dot.is-active {
	background: var(--tbg-picks-green);
	transform: scale(1.2);
}

/* -------------------------------------------------------------------------
   How It Works view
   ------------------------------------------------------------------------- */
.tbg-picks-view--hiw {
	padding-bottom: 0.35rem;
}
.tbg-picks-steps {
	list-style: none;
	margin: 0 auto clamp(1rem, 2vw, 1.35rem);
	padding: 0;
	max-width: 740px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.85rem;
}
.tbg-picks-step {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--tbg-picks-line);
	border-radius: 16px;
}
.tbg-picks-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--tbg-picks-green);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
}
.tbg-picks-step strong {
	display: block;
	font-size: 0.96rem;
	color: var(--tbg-picks-ink);
	margin-bottom: 0.12rem;
}
.tbg-picks-step p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.4;
	color: var(--tbg-picks-muted);
}
.tbg-picks-back {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	margin: 0 auto;
	padding: 0.55rem 1rem;
	border: 1px solid var(--tbg-picks-line);
	border-radius: 999px;
	background: #fff;
	color: var(--tbg-picks-green);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
}
.tbg-picks-back:hover {
	background: var(--tbg-picks-mint-soft);
}

/* -------------------------------------------------------------------------
   Bottom bar (mockup)
   ------------------------------------------------------------------------- */
.tbg-picks-bar {
	display: flex;
	align-items: center;
	gap: clamp(0.55rem, 1.4vw, 0.95rem);
	margin-top: clamp(0.85rem, 2vw, 1.25rem);
	padding: clamp(0.75rem, 1.5vw, 0.95rem) clamp(0.85rem, 1.8vw, 1.25rem);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 20px;
	box-shadow: 0 6px 20px rgba(15, 35, 25, 0.08);
}
.tbg-picks-bar-icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #e8f3e0;
	color: var(--tbg-picks-green);
	box-shadow: 0 3px 10px rgba(15, 35, 25, 0.08);
}
.tbg-picks-bar-icon svg {
	width: 22px;
	height: 22px;
}
.tbg-picks-bar-text {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.08rem;
}
.tbg-picks-bar-text strong {
	font-size: 0.94rem;
	color: var(--tbg-picks-ink);
	line-height: 1.25;
	font-weight: 700;
}
.tbg-picks-bar-text span {
	font-size: 0.8rem;
	color: var(--tbg-picks-muted);
	line-height: 1.3;
}
.tbg-picks-hiw-link {
	flex: 0 0 auto;
	border: none;
	background: none;
	color: var(--tbg-picks-green);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	cursor: pointer;
	padding: 0.4rem 0.25rem;
	font-family: inherit;
}
.tbg-picks-hiw-link:hover {
	color: var(--tbg-picks-green-dark);
}
.tbg-picks-shop-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.78rem 1.35rem;
	border-radius: 999px;
	background: var(--tbg-picks-green);
	color: #fff;
	font-size: 0.94rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 8px 22px rgba(20, 48, 36, 0.28);
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.tbg-picks-shop-btn svg {
	width: 17px;
	height: 17px;
}
.tbg-picks-shop-btn:hover {
	background: var(--tbg-picks-green-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(20, 48, 36, 0.34);
}

/* Trigger button (shortcode button mode) */
.tbg-picks-trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.75rem 1.4rem;
	border: none;
	border-radius: 999px;
	background: #1e4d36;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	font-family: var(--tbg-picks-sans);
	box-shadow: 0 8px 20px rgba(20, 48, 36, 0.25);
}
.tbg-picks-trigger:hover {
	background: #143524;
}

/* =========================================================================
   RESPONSIVE card sizing — JS reads --tbg-picks-per-page
   ========================================================================= */
.tbg-picks-card {
	width: calc((100% - 4 * clamp(0.7rem, 1.4vw, 1rem)) / 5);
}
.tbg-picks-root { --tbg-picks-per-page: 5; }

@media (max-width: 900px) {
	.tbg-picks-root { --tbg-picks-per-page: 3; }
	.tbg-picks-card {
		width: calc((100% - 2 * clamp(0.7rem, 1.4vw, 1rem)) / 3);
	}
}

@media (max-width: 680px) {
	.tbg-picks-root { --tbg-picks-per-page: 2; }
	.tbg-picks-card {
		width: calc((100% - 0.75rem) / 2);
	}
	.tbg-picks-header { padding: 0 0.5rem; }
	.tbg-picks-steps { grid-template-columns: 1fr; }
}

/* =========================================================================
   MOBILE (~375px): single-card swipe, scaled header, stacked footer CTA
   ========================================================================= */
@media (max-width: 545px) {
	.tbg-picks-overlay {
		padding: 0;
		align-items: stretch;
	}
	.tbg-picks-modal,
	.tbg-picks-inline .tbg-picks-panel {
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		padding: max(0.85rem, env(safe-area-inset-top)) 0.9rem max(0.85rem, env(safe-area-inset-bottom));
	}
	.tbg-picks-modal {
		max-height: 100dvh;
		height: 100dvh;
		display: flex;
		flex-direction: column;
	}
	.tbg-picks-modal > .tbg-picks-view {
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.tbg-picks-modal > .tbg-picks-bar {
		flex: 0 0 auto;
		margin-top: auto;
	}
	.tbg-picks-inline {
		padding: 0;
	}
	.tbg-picks-close {
		top: max(0.65rem, env(safe-area-inset-top));
		right: 0.65rem;
		width: 42px;
		height: 42px;
		z-index: 3;
	}
	.tbg-picks-header {
		padding: 0 2.6rem 0 0.1rem;
		margin-bottom: 0.85rem;
	}
	.tbg-picks-sprig {
		margin-bottom: 0.35rem;
	}
	.tbg-picks-sprig svg {
		width: 26px;
		height: 26px;
	}
	.tbg-picks-title {
		font-size: clamp(1.28rem, 6.2vw, 1.55rem);
		line-height: 1.15;
	}
	.tbg-picks-subtitle {
		font-size: 0.86rem;
		max-width: 34ch;
		margin-inline: auto;
	}

	.tbg-picks-nav { display: none; }
	.tbg-picks-root { --tbg-picks-per-page: 1; }
	.tbg-picks-carousel {
		margin: 0;
	}
	.tbg-picks-viewport {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: calc((100% - min(86vw, 320px)) / 2);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin: 0 -0.9rem;
		padding: 0.15rem calc((100% - min(86vw, 320px)) / 2 + 0.9rem);
	}
	.tbg-picks-viewport::-webkit-scrollbar { display: none; }
	.tbg-picks-track {
		transform: none !important;
		gap: 0.7rem;
		width: max-content;
	}
	.tbg-picks-card {
		width: min(86vw, 320px);
		flex: 0 0 min(86vw, 320px);
		scroll-snap-align: center;
	}
	.tbg-picks-card-media { aspect-ratio: 16 / 10; }
	.tbg-picks-card-body {
		min-height: 148px;
		padding: 0.85rem 0.9rem 1rem;
	}
	.tbg-picks-card-title {
		font-size: 0.95rem;
		-webkit-line-clamp: 2;
	}
	.tbg-picks-card-desc {
		font-size: 0.8rem;
		-webkit-line-clamp: 2;
	}
	.tbg-picks-badge {
		font-size: 0.62rem;
		padding: 0.28rem 0.5rem;
	}
	.tbg-picks-dots {
		margin-top: 0.75rem;
	}

	/* HIW steps: single column, compact */
	.tbg-picks-steps {
		grid-template-columns: 1fr;
		gap: 0.65rem;
		margin-bottom: 0.85rem;
	}
	.tbg-picks-step {
		flex-direction: row;
		align-items: flex-start;
		gap: 0.7rem;
		padding: 0.85rem;
	}
	.tbg-picks-step-num {
		flex: 0 0 auto;
	}
	.tbg-picks-back {
		width: 100%;
		justify-content: center;
		min-height: 44px;
	}

	.tbg-picks-bar {
		display: grid;
		grid-template-columns: 42px 1fr;
		grid-template-areas:
			"icon text"
			"hiw hiw"
			"shop shop";
		column-gap: 0.65rem;
		row-gap: 0.55rem;
		margin-top: 0.85rem;
		padding: 0.8rem 0.85rem;
		border-radius: 16px;
	}
	.tbg-picks-bar-icon {
		grid-area: icon;
		width: 42px;
		height: 42px;
	}
	.tbg-picks-bar-text {
		grid-area: text;
		align-self: center;
	}
	.tbg-picks-bar-text strong {
		font-size: 0.86rem;
	}
	.tbg-picks-bar-text span {
		font-size: 0.74rem;
	}
	.tbg-picks-hiw-link {
		grid-area: hiw;
		justify-self: center;
		min-height: 40px;
		padding: 0.35rem 0.5rem;
	}
	.tbg-picks-hiw-link[hidden] {
		display: none !important;
	}
	.tbg-picks-shop-btn {
		grid-area: shop;
		width: 100%;
		justify-content: center;
		padding: 0.92rem 1.1rem;
		font-size: 0.98rem;
		min-height: 48px;
	}
	.tbg-picks-root.is-hiw .tbg-picks-bar {
		grid-template-areas:
			"icon text"
			"shop shop";
	}
}

@media (max-width: 360px) {
	.tbg-picks-title { font-size: 1.22rem; }
	.tbg-picks-card {
		width: 88vw;
		flex-basis: 88vw;
	}
	.tbg-picks-viewport {
		scroll-padding-inline: calc((100% - 88vw) / 2);
		padding-inline: calc((100% - 88vw) / 2 + 0.9rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.tbg-picks-overlay,
	.tbg-picks-modal,
	.tbg-picks-track,
	.tbg-picks-close,
	.tbg-picks-nav,
	.tbg-picks-card-cta,
	.tbg-picks-shop-btn {
		transition: none !important;
	}
}
