.prs-wrapper {
	--prs-primary: #1a73e8;
	--prs-primary-dark: #1558b0;
	--prs-border: #e2e5e9;
	--prs-bg: #f7f8fa;
	--prs-text: #1d2229;
	--prs-text-light: #6b7280;
	max-width: 960px;
	margin: 0 auto;
	font-family: inherit;
	color: var(--prs-text);
}

.prs-title {
	text-align: center;
	margin-bottom: 24px;
	font-size: 1.6em;
}

.prs-breadcrumb {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.prs-back-btn {
	background: var(--prs-bg);
	border: 1px solid var(--prs-border);
	border-radius: 6px;
	padding: 8px 14px;
	cursor: pointer;
	font-size: 0.95em;
	color: var(--prs-text);
	transition: background 0.15s ease;
}

.prs-back-btn:hover {
	background: #eceff1;
}

.prs-breadcrumb-path {
	color: var(--prs-text-light);
	font-size: 0.95em;
}

.prs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 16px;
}

.prs-card {
	background: #fff;
	border: 1px solid var(--prs-border);
	border-radius: 12px;
	padding: 18px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
	text-align: center;
}

.prs-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	border-color: var(--prs-primary);
}

.prs-card-image {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prs-card-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.prs-card-placeholder {
	font-size: 2.2em;
}

.prs-card-label {
	font-weight: 600;
	font-size: 0.95em;
}

.prs-card-sub {
	font-size: 0.8em;
	color: var(--prs-text-light);
}

.prs-empty,
.prs-loading {
	text-align: center;
	color: var(--prs-text-light);
	padding: 40px 0;
}

/* Repairs list */
.prs-repairs-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--prs-border);
}

.prs-repairs-header img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.prs-repairs-header h3 {
	margin: 0;
	font-size: 1.3em;
}

.prs-repairs-table {
	width: 100%;
	border-collapse: collapse;
}

.prs-repair-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border: 1px solid var(--prs-border);
	border-radius: 10px;
	margin-bottom: 10px;
	background: #fff;
	flex-wrap: wrap;
	gap: 10px;
}

.prs-repair-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.prs-repair-name {
	font-weight: 600;
}

.prs-repair-duration {
	font-size: 0.85em;
	color: var(--prs-text-light);
}

.prs-repair-price-cta {
	display: flex;
	align-items: center;
	gap: 14px;
}

.prs-repair-price {
	font-weight: 700;
	font-size: 1.15em;
	color: var(--prs-primary-dark);
	white-space: nowrap;
}

.prs-cta-btn {
	background: var(--prs-primary);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 9px 16px;
	font-size: 0.9em;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	transition: background 0.15s ease;
}

.prs-cta-btn:hover {
	background: var(--prs-primary-dark);
	color: #fff;
}

@media (max-width: 480px) {
	.prs-grid {
		grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	}
	.prs-repair-item {
		flex-direction: column;
		align-items: flex-start;
	}
	.prs-repair-price-cta {
		width: 100%;
		justify-content: space-between;
	}
}
