/**
 * Plastpro first-party cookie consent bar
 */

body.plastpro-cmp-pending {
	padding-bottom: 11rem;
}

@media (min-width: 48rem) {
	body.plastpro-cmp-pending {
		padding-bottom: 8rem;
	}
}

.plastpro-cmp {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500000;
	padding: 1rem 1rem 1.25rem;
	background: #1d252d;
	color: #fff;
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: var(--font-size-small, 0.875rem);
	line-height: 1.5;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.plastpro-cmp__inner {
	max-width: var(--site-container-max, 76rem);
	margin: 0 auto;
}

.plastpro-cmp__text {
	margin: 0 0 0.75rem;
	color: #fff;
}

.plastpro-cmp__privacy {
	margin: 0 0 1rem;
}

.plastpro-cmp__privacy a {
	color: var(--plastpro-orange, #e87722);
	text-decoration: underline;
}

.plastpro-cmp__privacy a:hover,
.plastpro-cmp__privacy a:focus {
	color: #ff9a4d;
}

.plastpro-cmp__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.plastpro-cmp__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.5rem 1.25rem;
	font-family: inherit;
	font-size: var(--font-size-small, 0.875rem);
	font-weight: 600;
	border: 2px solid transparent;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.plastpro-cmp__btn:focus {
	outline: 2px solid var(--plastpro-yellow, #ffcc00);
	outline-offset: 2px;
}

.plastpro-cmp__btn--primary {
	background: var(--plastpro-orange, #e87722);
	color: #1d252d;
	border-color: var(--plastpro-orange, #e87722);
}

.plastpro-cmp__btn--primary:hover {
	background: #f08a3e;
	border-color: #f08a3e;
}

.plastpro-cmp__btn--secondary {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

.plastpro-cmp__btn--secondary:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
}
