/* ══════════════════════════════════════════════════════════════════════════
 * OGA Mini App · assets/css/oga-network-services.css
 * NETWORK SERVICE CATALOG · Services · Packages · Reason to Book · Prices
 * Generated 100-per-network catalog grid. Consumes brand tokens (--o-*,
 * --g0..--g7, --gold) already in scope on the page. Mirrors the structure
 * of oga-category-listings.css but with package-tier badges and a
 * price/reason row instead of a location line.
 * ══════════════════════════════════════════════════════════════════════════ */

.oga-sv-wrap {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--o-line1);
}

.oga-sv-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.oga-sv-page-indicator {
	font-family: var(--o-mono);
	font-size: 10.5px;
	color: var(--o-fg3);
}

.oga-sv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 16px;
}

.oga-sv-card {
	background: var(--o-bg0, #fff);
	border: 1px solid var(--o-line1);
	border-radius: var(--o-r16, 16px);
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	box-shadow: var(--shadow-card);
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.oga-sv-card:hover {
	transform: translateY(var(--card-lift, -4px));
	border-color: var(--o-line2);
	box-shadow: var(--shadow-card-hover);
}

.oga-sv-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.oga-sv-name {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.3;
	color: var(--o-fg0);
}

/* ── Package tier badges ─────────────────────────────────────────────── */
.oga-sv-package {
	flex: none;
	display: inline-flex;
	align-items: center;
	font-family: var(--o-mono);
	font-weight: 700;
	font-size: 8.5px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #ffffff;
	padding: 3px 7px;
	border-radius: var(--o-r4);
	white-space: nowrap;
}
.oga-sv-package--starter { background: var(--o-fg3, #8a8a8a); }
.oga-sv-package--growth  { background: linear-gradient(135deg, var(--g0), var(--g1)); }
.oga-sv-package--pro     { background: linear-gradient(135deg, var(--g4), var(--g5)); }
.oga-sv-package--elite   { background: linear-gradient(135deg, var(--gold), var(--g6)); }

.oga-sv-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	font-size: 11px;
	color: var(--o-fg2);
}

.oga-sv-rating {
	font-weight: 700;
	color: var(--gold);
}

.oga-sv-dot { color: var(--o-fg3); }

.oga-sv-reason {
	font-size: 11px;
	line-height: 1.4;
	color: var(--o-fg2);
	min-height: 30px;
}

.oga-sv-price-row {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-top: auto;
	padding-top: 4px;
	border-top: 1px dashed var(--o-line2);
}

.oga-sv-price {
	font-weight: 700;
	font-size: 15px;
	color: var(--g6);
}

.oga-sv-unit {
	font-size: 10.5px;
	color: var(--o-fg3);
	font-family: var(--o-mono);
}

/* ── Pagination ───────────────────────────────────────────────────────── */
.oga-sv-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
}

.oga-sv-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 0 9px;
	border-radius: var(--o-r4);
	background: var(--o-bg1);
	border: 1px solid var(--o-line2);
	color: var(--o-fg1);
	font-family: var(--o-mono);
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.oga-sv-page-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
}
.oga-sv-page-btn--active {
	background: linear-gradient(135deg, var(--gold), var(--g6));
	border-color: transparent;
	color: #ffffff;
}
.oga-sv-page-btn--active:hover { color: #ffffff; }

.oga-sv-ellipsis {
	color: var(--o-fg3);
	font-family: var(--o-mono);
	font-size: 11px;
	padding: 0 2px;
}

@media (max-width: 640px) {
	.oga-sv-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.oga-sv-card { transition: none; }
	.oga-sv-card:hover { transform: none; }
}
