.custom-breadcrumb {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
}

.custom-breadcrumb li a {
	text-decoration: none;
	color: #0073aa;
}

.custom-breadcrumb li a:hover {
	text-decoration: underline;
}

.custom-breadcrumb li::after {
	content: "/";
	margin-left: 10px;
}

.custom-breadcrumb li:last-child::after {
	content: "";
}

.almaszerviz-notice {
	padding: 18px 20px;
	border: 1px solid rgba(16, 32, 51, 0.12);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.82);
	color: #102033;
}

.almaszerviz-notice--error {
	border-color: rgba(173, 53, 53, 0.18);
	background: rgba(255, 244, 244, 0.9);
}

.almaszerviz-manufacturers-grid,
.almaszerviz-model-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.almaszerviz-manufacturer-card,
.almaszerviz-model-card,
.almaszerviz-price-item {
	border: 1px solid rgba(16, 32, 51, 0.1);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(18, 34, 59, 0.06);
}

.almaszerviz-manufacturer-card__link,
.almaszerviz-model-card__link {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 20px;
	text-decoration: none;
	color: inherit;
}

.almaszerviz-manufacturer-card__link {
	gap: 18px;
}

.almaszerviz-model-card__link {
	gap: 24px;
}

.almaszerviz-manufacturer-card h3,
.almaszerviz-model-card__title {
	margin: 0;
}

.almaszerviz-model-browser {
	display: grid;
	gap: 18px;
}

.almaszerviz-model-browser__search {
	width: 100%;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid rgba(16, 32, 51, 0.12);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.9);
	font: inherit;
	color: #102033;
}

.almaszerviz-model-browser__search:focus {
	outline: none;
	border-color: rgba(95, 67, 178, 0.45);
	box-shadow: 0 0 0 4px rgba(95, 67, 178, 0.08);
}

.almaszerviz-model-card__figure {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(0, 115, 230, 0.14);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(221, 247, 255, 0.88), rgba(255, 255, 255, 0.98));
}

.almaszerviz-device-icon,
.almaszerviz-letter-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: #0875dc;
}

.almaszerviz-device-icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: linear-gradient(135deg, #def5ff, #f6fdff);
}

.almaszerviz-device-icon__svg {
	width: 44px;
	height: 44px;
	overflow: visible;
}

.almaszerviz-device-icon .icon-shadow {
	fill: rgba(18, 61, 89, 0.16);
}

.almaszerviz-device-icon .icon-body {
	fill: #0b8cff;
	stroke: #046fd5;
	stroke-width: 2.8;
	stroke-linejoin: round;
}

.almaszerviz-device-icon .icon-panel {
	fill: #e9fbff;
	stroke: rgba(255, 255, 255, 0.74);
	stroke-width: 1.8;
}

.almaszerviz-device-icon .icon-accent {
	fill: #0b8cff;
}

.almaszerviz-device-icon .icon-mint {
	fill: #67e8f9;
}

.almaszerviz-device-icon .icon-dark {
	fill: #123d59;
}

.almaszerviz-device-icon .icon-line {
	fill: none;
	stroke: #0875dc;
	stroke-width: 3.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.almaszerviz-device-icon .icon-line-dark {
	fill: none;
	stroke: #123d59;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.9;
}

.almaszerviz-letter-badge {
	width: 54px;
	height: 54px;
	border: 1px solid rgba(0, 115, 230, 0.18);
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(221, 247, 255, 0.88), rgba(255, 255, 255, 0.98));
	font-weight: 800;
	line-height: 1;
}

.model-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.model-image .almaszerviz-device-icon {
	width: 112px;
	height: 112px;
	border-radius: 28px;
}

.model-image .almaszerviz-device-icon__svg {
	width: 82px;
	height: 82px;
}

.almaszerviz-price-list {
	display: grid;
	gap: 16px;
	max-width: 760px;
	margin: 0 auto;
}

.almaszerviz-price-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
}

.almaszerviz-price-item__name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #102033;
}

.almaszerviz-price-item__price {
	font-size: 1.05rem;
	white-space: nowrap;
	color: #5f43b2;
}

@media (max-width: 900px) {
	.almaszerviz-manufacturers-grid,
	.almaszerviz-model-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.almaszerviz-manufacturers-grid,
	.almaszerviz-model-grid {
		grid-template-columns: 1fr;
	}

	.almaszerviz-price-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.almaszerviz-model-card__figure {
		width: 76px;
		height: 76px;
	}
}
