.vbx-store {
	--vbx-store-columns: 2;
	--vbx-store-surface: #f4f7f9;
	--vbx-store-surface-alt: #ffffff;
	--vbx-store-border: #d7e0e8;
	--vbx-store-border-strong: #b9c9d5;
	--vbx-store-text: #153247;
	--vbx-store-muted: #5f7283;
	--vbx-store-accent: #0f5c74;
	--vbx-store-accent-soft: #dcecf1;
	--vbx-store-shadow: 0 18px 40px rgba(17, 46, 70, 0.08);
	--vbx-store-radius: 20px;
	color: var(--vbx-store-text);
	margin: 0;
}

.vbx-store * {
	box-sizing: border-box;
}

.vbx-store-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	padding: 18px;
	margin: 0 0 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
	border: 1px solid var(--vbx-store-border);
	border-radius: var(--vbx-store-radius);
	box-shadow: var(--vbx-store-shadow);
}

.vbx-store-filter-bar > * {
	min-width: 0;
}

.vbx-store-filter-control,
.vbx-store-filter-button,
.vbx-store-filter-clear {
	min-height: 48px;
}

.vbx-store-filter-control {
	width: 100%;
	padding: 0 14px;
	border: 1px solid var(--vbx-store-border-strong);
	border-radius: 14px;
	background: #ffffff;
	color: var(--vbx-store-text);
	font-size: 15px;
	line-height: 1.4;
}

.vbx-store-filter-bar .vbx-store-filter-control {
	flex: 1 1 220px;
	min-width: 0;
}

.vbx-store-filter-bar .vbx-store-filter-button,
.vbx-store-filter-bar .vbx-store-filter-clear {
	flex: 0 0 auto;
	white-space: nowrap;
}

.vbx-store-filter-control:focus {
	border-color: var(--vbx-store-accent);
	outline: 2px solid rgba(15, 92, 116, 0.16);
	outline-offset: 1px;
}

.vbx-store-filter-button,
.vbx-store-filter-clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border-radius: 14px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.vbx-store-filter-button {
	border: 1px solid var(--vbx-store-accent);
	background: var(--vbx-store-accent);
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(15, 92, 116, 0.2);
}

.vbx-store-filter-clear {
	border: 1px solid var(--vbx-store-border-strong);
	background: #ffffff;
	color: var(--vbx-store-text);
}

.vbx-store-filter-button:hover,
.vbx-store-filter-button:focus,
.vbx-store-filter-clear:hover,
.vbx-store-filter-clear:focus {
	transform: translateY(-1px);
}

.vbx-store-grid {
	display: grid;
	grid-template-columns: repeat(var(--vbx-store-columns), minmax(0, 1fr));
	gap: 20px;
}

.vbx-store-card {
	position: relative;
	padding: 24px;
	border-radius: var(--vbx-store-radius);
	overflow: hidden;
}

.vbx-store-style-1 .vbx-store-card {
	background: var(--vbx-store-surface-alt);
	border: 1px solid var(--vbx-store-border);
	box-shadow: var(--vbx-store-shadow);
}

.vbx-store-style-1 .vbx-store-card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--vbx-store-accent) 0%, #4d8b7d 100%);
}

.vbx-store-style-2 .vbx-store-card {
	display: grid;
	gap: 18px;
	padding: 0;
	background: linear-gradient(135deg, #fbf7ef 0%, #ffffff 100%);
	border: 1px solid #dfd6c6;
	box-shadow: 0 16px 36px rgba(54, 47, 35, 0.08);
}

.vbx-store-style-2 .vbx-store-card-header,
.vbx-store-style-2 .vbx-store-card-body {
	padding: 22px 24px;
}

.vbx-store-style-2 .vbx-store-card-header {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
	background: linear-gradient(135deg, #f4ede2 0%, #f9f5ee 100%);
	border-bottom: 1px solid #eadfce;
}

.vbx-store-style-2 .vbx-store-card-marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 16px;
	background: linear-gradient(135deg, #0f5c74 0%, #4d8b7d 100%);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vbx-store-card-title {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.25;
	color: var(--vbx-store-text);
}

.vbx-store-card-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vbx-store-card-row {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	font-size: 15px;
	line-height: 1.55;
	color: var(--vbx-store-text);
}

.vbx-store-card-label {
	font-weight: 700;
	color: var(--vbx-store-muted);
}

.vbx-store-card-value {
	min-width: 0;
}

.vbx-store-style-2 .vbx-store-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vbx-store-style-2 .vbx-store-card-chip {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: #efe5d4;
	color: #4b4a44;
	font-size: 13px;
	font-weight: 600;
}

.vbx-store-empty {
	padding: 28px;
	border: 1px dashed var(--vbx-store-border-strong);
	border-radius: var(--vbx-store-radius);
	background: #ffffff;
	color: var(--vbx-store-muted);
	text-align: center;
}

.vbx-store-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.vbx-store-style-1 {
	--vbx-store-style-1-border: #dce3ea;
	--vbx-store-style-1-card-bg: #f6f8fb;
	--vbx-store-style-1-icon: #7d8894;
	--vbx-store-style-1-button: #11518d;
	--vbx-store-style-1-button-hover: #0f4578;
}

.vbx-store-style-1 .vbx-store-style-1-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: stretch;
	padding: 0;
	margin: 0 0 24px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.vbx-store-style-1 .vbx-store-style-1-filter-bar > * {
	min-width: 0;
}

.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(1) {
	flex: 0 1 calc((100% - 42px) * 0.35);
}

.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(2) {
	flex: 0 1 calc((100% - 42px) * 0.30);
}

.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(3) {
	flex: 0 1 calc((100% - 42px) * 0.30);
}

.vbx-store-style-1 .vbx-store-filter-control {
	min-height: 54px;
	padding: 0 16px;
	border: 1px solid var(--vbx-store-style-1-border);
	border-radius: 5px;
	background: #ffffff;
	color: #2e3945;
	font-size: 15px;
}

.vbx-store-style-1 .vbx-store-filter-control::placeholder {
	color: #8c99a6;
}

.vbx-store-style-1 .vbx-store-filter-control:focus {
	outline-color: rgba(17, 81, 141, 0.2);
	border-color: #bfd1e3;
}

.vbx-store-style-1 .vbx-store-filter-button {
	flex: 0 0 calc((100% - 42px) * 0.05);
	min-width: 90px;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid var(--vbx-store-style-1-button);
	border-radius: 5px;
	background: var(--vbx-store-style-1-button);
	box-shadow: none;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	width: auto;
	justify-content: center;
	color: #ffffff;
}

.vbx-store-style-1 .vbx-store-filter-button:hover,
.vbx-store-style-1 .vbx-store-filter-button:focus {
	background: var(--vbx-store-style-1-button-hover);
	border-color: var(--vbx-store-style-1-button-hover);
}

.vbx-store-style-1 .vbx-store-style-1-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.vbx-store-style-1 .vbx-store-card {
	padding: 20px;
	border-radius: 5px;
	background: var(--vbx-store-style-1-card-bg);
	border: 1px solid var(--vbx-store-style-1-border);
	box-shadow: none;
}

.vbx-store-style-1 .vbx-store-card::before {
	display: none;
}

.vbx-store-style-1 .vbx-store-card-title {
	margin: 0 0 14px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

.vbx-store-style-1 .vbx-store-style-1-card-list {
	gap: 10px;
}

.vbx-store-style-1 .vbx-store-style-1-card-row {
	grid-template-columns: 1fr;
	gap: 0;
	display: flex;
	align-items: flex-start;
}

.vbx-store-style-1 .vbx-store-style-1-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: var(--vbx-store-style-1-icon);
	margin: 1px 10px 0 0;
	flex: 0 0 20px;
}

.vbx-store-style-1 .vbx-store-style-1-card-text {
	font-size: 15px;
	line-height: 1.55;
	color: #3f4954;
}

.vbx-store-style-1 .vbx-store-style-1-phone-link {
	color: #3f4954;
	text-decoration: none;
}

.vbx-store-style-1 .vbx-store-style-1-phone-link:hover,
.vbx-store-style-1 .vbx-store-style-1-phone-link:focus {
	text-decoration: underline;
}

@media (max-width: 1024px) {
	.vbx-store-filter-bar .vbx-store-filter-control {
		flex: 1 1 calc(50% - 6px);
	}

	.vbx-store-style-2 .vbx-store-card-header {
		flex-direction: column;
	}

	.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(1),
	.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(2),
	.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(3) {
		flex: 1 1 calc(50% - 7px);
	}

	.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-button {
		flex: 1 1 calc(50% - 7px);
		min-width: 140px;
	}
}

@media (max-width: 782px) {
	.vbx-store-filter-bar {
		display: flex;
		flex-direction: column;
	}

	.vbx-store-grid {
		grid-template-columns: 1fr;
	}

	.vbx-store-filter-bar > *,
	.vbx-store-style-1 .vbx-store-style-1-filter-bar > * {
		width: 100%;
	}

	.vbx-store-style-1 .vbx-store-style-1-filter-bar {
		flex-direction: column;
	}

	.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(1),
	.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(2),
	.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-control:nth-child(3),
	.vbx-store-style-1 .vbx-store-style-1-filter-bar .vbx-store-filter-button {
		flex: 1 1 100%;
	}

	.vbx-store-card {
		padding: 20px;
	}

	.vbx-store-style-2 .vbx-store-card {
		padding: 0;
	}

	.vbx-store-card-title {
		font-size: 20px;
	}

	.vbx-store-card-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.vbx-store-style-1 .vbx-store-style-1-grid {
		grid-template-columns: 1fr;
	}

	.vbx-store-style-1 .vbx-store-filter-button {
		width: 100%;
	}
}
