.fab-box {
	--fab-accent: #2563eb;
	--fab-ink: #0f172a;
	--fab-muted: #64748b;
	box-sizing: border-box;
	margin: 2rem 0;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid #dbe4f0;
	border-radius: 20px;
	background: linear-gradient(145deg, #f8fbff 0%, #fff 65%);
	box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
	color: var(--fab-ink);
	font-family: inherit;
	/* Smanjen box na 650px da odgovara hotel boxu */
	max-width:650px;
}
.fab-box * { box-sizing: border-box; }
.fab-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.fab-plane { display: grid; flex: 0 0 48px; width: 48px; height: 48px; place-items: center; border-radius: 14px; background: var(--fab-accent); color: #fff; font-size: 1.45rem; line-height: 1; transform: rotate(-10deg); }
.fab-title { margin: 0 0 .3rem; color: var(--fab-ink);   line-height: 1.2; }
.fab-description { margin: 0; color: var(--fab-muted); font-size: .98rem; line-height: 1.55; }
.fab-partners { display: grid; gap: .75rem; }
.fab-partner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-width: 0; padding: .85rem; border: 1px solid #e2e8f0; border-radius: 14px; background: rgba(255,255,255,.9); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.fab-partner:hover { transform: translateY(-1px); border-color: #bfdbfe; box-shadow: 0 7px 18px rgba(37, 99, 235, .08); }
.fab-brand { display: flex; min-width: 0; align-items: center; gap: .8rem; }
.fab-logo { width: 42px; height: 42px; flex: 0 0 42px; object-fit: contain; border-radius: 8px; }
.fab-logo-fallback { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 10px; background: #eaf2ff; color: var(--fab-accent); font-weight: 800; }
.fab-partner-name { overflow: hidden; color: var(--fab-ink); font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.fab-button { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; min-height: 42px; padding: .7rem 1rem; border-radius: 10px; background: var(--fab-accent); color: #fff !important; font-size: .9rem; font-weight: 700; line-height: 1; text-decoration: none !important; transition: background-color .2s ease, transform .2s ease; }
.fab-button:hover, .fab-button:focus { background: #1d4ed8; color: #fff !important; transform: translateY(-1px); }
.fab-button:focus-visible { outline: 3px solid #93c5fd; outline-offset: 2px; }
.fab-disclosure { margin: 1rem 0 0; color: var(--fab-muted); font-size: .75rem; line-height: 1.45; }
.fab-empty { padding: .75rem 1rem; border-left: 4px solid #d97706; background: #fffbeb; }
@media (max-width: 520px) {
	.fab-partner { align-items: stretch; flex-direction: column; }
	.fab-button { width: 100%; }
}

