.vs-shell {
	max-width: 1200px;
	margin: 1.5rem auto;
	padding: 0 1rem;
}

.vs-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem;
}

.vs-title {
	margin: 0 0 0.5rem;
	color: var(--text);
}

.vs-dropzone {
	border: 2px dashed var(--border);
	border-radius: var(--radius);
	padding: 1rem;
	text-align: center;
	background: var(--white);
}

.vs-dropzone.dragover {
	background: var(--bg);
}

.vs-uploader-text {
	margin: 0 0 0.5rem;
	color: var(--text);
}

.vs-or {
	margin: 0.5rem 0;
	color: var(--muted);
}

.vs-input {
	width: 100%;
	min-height: 44px;
	padding: 0.55rem 0.7rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--text);
}

.vs-filters {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.vs-actions {
	margin-top: 0.75rem;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	align-items: center;
}

.vs-btn {
	border: 1px solid transparent;
	border-radius: var(--radius);
	padding: 0.6rem 0.9rem;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	font-weight: 600;
}

.vs-btn-primary {
	background: var(--primary);
	color: var(--white);
}

.vs-btn-dark {
	background: var(--navy);
	color: var(--white);
}

.vs-spinner {
	display: none;
	margin-top: 0.75rem;
	align-items: center;
	gap: 0.5rem;
	color: var(--text);
}

.vs-spinner.active {
	display: inline-flex;
}

.vs-spinner-dot {
	width: 14px;
	height: 14px;
	border: 2px solid var(--border);
	border-top-color: var(--primary);
	border-radius: 50%;
	animation: vs-spin 0.8s linear infinite;
}

@keyframes vs-spin {
	to {
		transform: rotate(360deg);
	}
}

.vs-error {
	color: var(--accent);
	margin-top: 0.5rem;
}

.vs-info {
	color: var(--navy);
	margin-top: 0.5rem;
}

.vs-attrs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.vs-attr {
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.2rem 0.6rem;
	font-size: 0.82rem;
	color: var(--text);
}

.vs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.vs-item {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
}

.vs-item-link {
	display: block;
	padding: 0.75rem;
	color: inherit;
	text-decoration: none;
}

.vs-item-link img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: var(--radius);
	background: var(--bg);
}

.vs-item-link h3 {
	margin: 0.6rem 0 0.25rem;
}

.vs-item-link p {
	margin: 0;
}

.vs-no-image {
	width: 100%;
	height: 180px;
	border-radius: var(--radius);
	border: 1px dashed var(--border);
	background: var(--bg);
	color: var(--muted);
	display: grid;
	place-items: center;
	font-size: 0.9rem;
}

.vs-pill {
	color: var(--white);
	background: var(--navy);
	border-radius: 999px;
	padding: 0.2rem 0.6rem;
	font-size: 0.8rem;
}

.vs-empty {
	margin-top: 1rem;
	border: 1px dashed var(--border);
	border-radius: var(--radius);
	padding: 1rem;
	color: var(--muted);
	background: var(--white);
}

@media (max-width: 860px) {
	.vs-filters {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 540px) {
	.vs-filters {
		grid-template-columns: 1fr;
	}
}
