/* =============================================================================
 * CarParts — Car → Part picker (replaces the shop banner)
 * ========================================================================== */

/* hide the theme's banner/cover only on the shop (this CSS loads on shop only) */
.page_cover { display: none !important; }

.cp-cf {
	margin: 0 0 28px;
	padding: 22px 24px;
	background: linear-gradient(135deg, #101010 0%, #1d1d1d 100%);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.cp-cf__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.cp-cf__dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: #eb2500; box-shadow: 0 0 0 4px rgba(235, 37, 0, .22);
}
.cp-cf__title { margin: 0; color: #fff; font-size: 19px; font-weight: 700; }
.cp-cf__car { color: #eb2500; }

.cp-cf__back {
	color: #cfcfcf; font-size: 13px; font-weight: 600; text-decoration: none;
	padding: 6px 13px; border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px; transition: .2s;
}
.cp-cf__back:hover { color: #fff; border-color: #eb2500; background: rgba(235, 37, 0, .12); }

.cp-cf__row { display: flex; flex-wrap: wrap; gap: 10px; }

.cp-cf__chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 18px;
	background: #fff; color: #1a1a1a;
	border: 1px solid transparent; border-radius: 999px;
	font-size: 15px; font-weight: 700; text-decoration: none;
	transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.cp-cf__chip:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 0, 0, .25); color: #eb2500; }
.cp-cf__chip.is-active { background: #eb2500; color: #fff; }

.cp-cf__chip-i {
	display: inline-flex;
	font-size: 23px;           /* icon size */
	color: #eb2500;            /* brand-red icon on the white pill */
	margin-left: -1px;
}
.cp-cf__chip.is-active .cp-cf__chip-i,
.cp-cf__chip:hover .cp-cf__chip-i { color: inherit; }
.cp-cf__chip--car .cp-cf__chip-i { color: #1a1a1a; }
.cp-cf__chip--car:hover .cp-cf__chip-i { color: #eb2500; }

.cp-cf__chip-c {
	min-width: 20px; text-align: center;
	font-size: 11px; font-weight: 700;
	padding: 2px 7px; border-radius: 999px;
	background: rgba(0, 0, 0, .08); color: inherit;
}
.cp-cf__chip.is-active .cp-cf__chip-c { background: rgba(255, 255, 255, .25); }
.cp-cf__chip--car { font-size: 16px; }

@media (max-width: 480px) {
	.cp-cf { padding: 16px; border-radius: 14px; }
	.cp-cf__title { font-size: 16px; }
	.cp-cf__chip { padding: 8px 14px; font-size: 14px; }
}
