/* Floating "Buy a sample pack" CTA on breed feeding-guide pages */

.pdr-sample-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9000; /* above fixed header (200), below cookie-law-info bar (9999) and modals (10002) */
	display: flex;
	justify-content: center;
	padding: 0 16px calc(12px + env(safe-area-inset-bottom, 0px));
	pointer-events: none;
}

.pdr-sample-cta .pdr-sample-cta-button {
	pointer-events: auto;
	width: auto;
	max-width: calc(100vw - 32px);
	padding: 15px 32px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.pdr-sample-cta .pdr-sample-cta-panel {
	pointer-events: auto;
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	width: min(92vw, 360px);
	background: var(--color-white);
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
	padding: 20px;
	text-align: center;
}

.pdr-sample-cta .pdr-sample-cta-panel[hidden] {
	display: none;
}

.pdr-sample-cta .pdr-sample-cta-panel-title {
	display: block;
	font-family: var(--heading-font-family);
	font-size: var(--font-size-btn);
	font-weight: 700;
	margin-bottom: 12px;
}

.pdr-sample-cta .pdr-sample-cta-choices {
	display: flex;
	gap: 10px;
}

.pdr-sample-cta .pdr-sample-cta-choice {
	flex: 1;
	width: auto;
	min-height: 44px;
	padding: 12px;
}
