/* Vetoben photo search — additive UI */

/* Camera lives in bottom tab bar only (no header button). */
.vetoben-vs-trigger {
	display: none !important;
}

.vetoben-vs-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.vetoben-vs-modal[hidden] {
	display: none !important;
}

.vetoben-vs-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.vetoben-vs-modal__panel {
	position: relative;
	width: min(100%, 420px);
	margin: 12px;
	padding: 24px 20px 20px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.vetoben-vs-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #f3f3f3;
	font-size: 22px;
	cursor: pointer;
}

.vetoben-vs-modal__panel h2 {
	margin: 0 0 8px;
	font-size: 1.25rem;
	font-weight: 700;
}

.vetoben-vs-modal__text {
	margin: 0 0 16px;
	color: #555;
	font-size: 0.92rem;
	line-height: 1.5;
}

.vetoben-vs-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vetoben-vs-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
}

.vetoben-vs-btn-primary {
	background: #000;
	color: #fff;
}

.vetoben-vs-btn-ghost {
	background: #fff;
	color: #111;
	border-color: rgba(0, 0, 0, 0.12);
}

.vetoben-vs-modal__status {
	margin: 14px 0 0;
	text-align: center;
	font-size: 0.88rem;
	color: #333;
}

html.vetoben-vs-open {
	overflow: hidden;
}

.vetoben-vs-loading {
	position: fixed;
	inset: 0;
	z-index: 100002;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.55);
}

.vetoben-vs-loading[hidden] {
	display: none !important;
}

.vetoben-vs-loading__box {
	padding: 20px 28px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.vetoben-vs-loading__text {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: #111;
}

.vetoben-vs-results {
	max-width: 1200px;
	margin: 0 auto 40px;
	padding: 0 16px;
}

.vetoben-vs-results__head {
	text-align: center;
	padding: 32px 0 20px;
}

.vetoben-vs-results__eyebrow {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #888;
}

.vetoben-vs-results__title {
	margin: 0 0 8px;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.vetoben-vs-results__lead {
	margin: 0;
	color: #555;
}

.vetoben-vs-results--empty {
	max-width: 560px;
	margin: 48px auto;
	padding: 24px;
	text-align: center;
	color: #444;
}

@media (min-width: 769px) {
	.vetoben-vs-trigger {
		display: none;
	}
}
