.gcpl-price-list {
	--gcpl-navy: #0b1323;
	--gcpl-navy-deep: #061a2b;
	--gcpl-blue: #0a73b5;
	--gcpl-blue-dark: #075d94;
	--gcpl-green: #44a744;
	--gcpl-border: #e8ebf0;
	--gcpl-border-soft: #edf0f4;
	--gcpl-surface-soft: #f7f8fa;
	--gcpl-text: #111827;
	--gcpl-muted: #6b7280;
	width: 100%;
	margin: 20px auto;
	color: var(--gcpl-text);
	direction: rtl;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.7;
	box-sizing: border-box;
}

.gcpl-price-list *,
.gcpl-price-list *::before,
.gcpl-price-list *::after {
	box-sizing: border-box;
}

.gcpl-update-bar {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 16px 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: linear-gradient(125deg, var(--gcpl-navy-deep) 0%, #0a3853 56%, var(--gcpl-blue) 100%);
	color: #fff;
	text-align: center;
	font-weight: 700;
	box-shadow: 0 20px 55px rgba(9, 18, 33, 0.15);
}

.gcpl-update-bar::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 38px 38px;
	content: "";
	mask-image: linear-gradient(to left, #000, transparent 80%);
}

.gcpl-update-bar__icon {
	position: relative;
	display: inline-block;
	width: 17px;
	height: 17px;
	border: 2px solid #75d47a;
	border-left-color: transparent;
	border-radius: 50%;
}

.gcpl-update-bar__icon::after {
	position: absolute;
	left: -3px;
	top: 0;
	width: 6px;
	height: 6px;
	border-left: 2px solid #75d47a;
	border-bottom: 2px solid #75d47a;
	content: "";
	transform: rotate(15deg);
}

.gcpl-stale-notice {
	margin-top: 12px;
	padding: 10px 14px;
	border: 1px solid #f1cf8b;
	border-radius: 8px;
	background: #fff8e8;
	color: #77530a;
	font-size: 13px;
	text-align: center;
}

.gcpl-search-wrap {
	position: relative;
	margin: 20px 0 24px;
}

.gcpl-search {
	width: 100%;
	height: 54px;
	margin: 0;
	padding: 10px 20px 10px 58px;
	border: 1px solid var(--gcpl-border-soft);
	border-radius: 17px;
	outline: 0;
	background: #fff;
	color: var(--gcpl-text);
	font: inherit;
	box-shadow: 0 13px 34px rgba(24, 35, 52, 0.055);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.gcpl-search::placeholder {
	color: #959da9;
}

.gcpl-search:focus {
	border-color: rgba(10, 115, 181, 0.55);
	box-shadow: 0 0 0 3px rgba(10, 115, 181, 0.1), 0 13px 34px rgba(24, 35, 52, 0.07);
}

.gcpl-search::-webkit-search-cancel-button {
	cursor: pointer;
}

.gcpl-search-icon {
	position: absolute;
	top: 50%;
	left: 20px;
	width: 20px;
	height: 20px;
	border: 2px solid var(--gcpl-blue);
	border-radius: 50%;
	pointer-events: none;
	transform: translateY(-58%);
}

.gcpl-search-icon::after {
	position: absolute;
	right: -7px;
	bottom: -5px;
	width: 9px;
	height: 2px;
	border-radius: 2px;
	background: var(--gcpl-blue);
	content: "";
	transform: rotate(-45deg);
	transform-origin: right center;
}

.gcpl-brand {
	margin: 0 0 24px;
	border: 1px solid var(--gcpl-border-soft);
	border-radius: 24px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 13px 34px rgba(24, 35, 52, 0.055);
}

.gcpl-brand[hidden],
.gcpl-table tr[hidden] {
	display: none !important;
}

.gcpl-brand__header {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	padding: 17px 30px;
	border-bottom: 1px solid var(--gcpl-border-soft);
	background: linear-gradient(135deg, var(--gcpl-surface-soft), #fff);
}

.gcpl-brand__header h2 {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: var(--gcpl-navy-deep);
	font: inherit;
	font-size: 25px;
	font-weight: 900;
	line-height: 1.4;
}

.gcpl-brand__header h2::before {
	display: block;
	flex: 0 0 5px;
	width: 5px;
	height: 32px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--gcpl-blue), #35a4df);
	content: "";
}

.gcpl-brand__header span {
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	padding: 5px 11px;
	border: 1px solid rgba(10, 115, 181, 0.12);
	border-radius: 999px;
	background: rgba(10, 115, 181, 0.055);
	color: var(--gcpl-blue-dark);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.gcpl-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.gcpl-table-scroll:focus {
	outline: 2px solid var(--gcpl-blue);
	outline-offset: -2px;
}

.gcpl-table {
	width: 100%;
	min-width: 850px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	background: #fff;
}

.gcpl-table th,
.gcpl-table td {
	padding: 16px 18px;
	border: 0;
	border-top: 1px solid #eff1f4;
	background: transparent;
	text-align: center;
	vertical-align: middle;
}

.gcpl-table thead th {
	padding-top: 15px;
	padding-bottom: 15px;
	background: var(--gcpl-surface-soft);
	color: #202936;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.5;
}

.gcpl-table .gcpl-col-name {
	width: 31%;
	text-align: right;
}

.gcpl-table tbody tr {
	transition: background-color 0.15s ease;
}

.gcpl-table tbody tr:hover {
	background: #fafbfc;
}

.gcpl-table .gcpl-car-name {
	color: #08253a;
	text-align: right;
	font-size: 15px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.gcpl-price {
	color: #172033;
	direction: ltr;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.gcpl-last-update {
	color: #7b8492;
	font-size: 13px;
	white-space: nowrap;
}

.gcpl-change {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	padding: 3px 9px;
	border-radius: 999px;
	direction: ltr;
	font-weight: 700;
	white-space: nowrap;
}

.gcpl-change--up {
	border: 1px solid rgba(68, 167, 68, 0.18);
	background: rgba(68, 167, 68, 0.09);
	color: #218904;
}

.gcpl-change--down {
	border: 1px solid #ffd4d8;
	background: #fff0f1;
	color: #d91f30;
}

.gcpl-change--neutral {
	border: 1px solid #e8ebf0;
	background: #f7f8fa;
	color: #6b7280;
}

.gcpl-no-results,
.gcpl-price-list--empty {
	padding: 28px 20px;
	border: 1px dashed var(--gcpl-border, #e8ebf0);
	border-radius: 17px;
	background: #fff;
	color: #6b7280;
	text-align: center;
	box-shadow: 0 13px 34px rgba(24, 35, 52, 0.055);
}

.gcpl-no-results[hidden] {
	display: none !important;
}

@media (max-width: 700px) {
	.gcpl-price-list {
		font-size: 14px;
	}

	.gcpl-update-bar {
		align-items: flex-start;
		min-height: 64px;
		border-radius: 19px;
		font-size: 13px;
	}

	.gcpl-brand__header {
		min-height: 66px;
		padding: 13px 18px;
	}

	.gcpl-brand__header h2 {
		font-size: 21px;
	}

	.gcpl-brand {
		border-radius: 18px;
	}

	.gcpl-table th,
	.gcpl-table td {
		padding: 13px 14px;
	}
}
