/**
 * GunVault Estate Bundle styling — mirrors the Succession page's dark theme
 * exactly: black bg, gold #D4A017 accent, Barlow / Barlow Condensed, etc.
 */

.gv-eb-block {
	font-family: 'Barlow', sans-serif;
	background: #0f0f0f;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 24px 28px;
	color: #fff;
	margin: 24px 0;
}

.gv-eb-trigger {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	padding: 14px 22px;
	border-radius: 7px;
	border: none;
	cursor: pointer;
	background: linear-gradient(135deg, #9a6800, #f0c040, #D4A017);
	color: #1a1a1a;
	transition: transform .15s, box-shadow .15s;
}

.gv-eb-trigger:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(212,160,23,0.3);
}

.gv-eb-trigger:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
}

.gv-eb-trigger svg { flex-shrink: 0; }

.gv-eb-trigger .gv-upgrade-badge {
	margin-left: 4px;
}

.gv-eb-trigger-help {
	margin: 12px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255,255,255,0.65);
	max-width: 560px;
}

.gv-eb-status {
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 8px;
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.08);
}

.gv-eb-status.is-progress {
	border-color: rgba(212,160,23,0.3);
}
.gv-eb-status.is-error {
	border-color: rgba(239,83,80,0.4);
	background: rgba(239,83,80,0.05);
}
.gv-eb-status.is-ready {
	border-color: rgba(76,175,80,0.4);
	background: rgba(76,175,80,0.04);
}

.gv-eb-msg {
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 8px;
}

.gv-eb-status.is-error .gv-eb-msg { color: #ef5350; }

.gv-eb-bar {
	height: 6px;
	background: rgba(255,255,255,0.06);
	border-radius: 3px;
	overflow: hidden;
}

.gv-eb-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #9a6800, #f0c040, #D4A017);
	transition: width .3s ease-out;
}

.gv-eb-ready-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.gv-eb-ready-meta strong {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 16px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: #4ade80;
}

.gv-eb-ready-meta span { color: rgba(255,255,255,0.7); font-size: 13px; }

.gv-eb-expiry {
	font-size: 12px;
	color: rgba(255,255,255,0.45);
	margin-top: 4px;
	font-style: italic;
}

.gv-eb-download {
	display: inline-block;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 11px 18px;
	border-radius: 7px;
	background: #D4A017;
	color: #1a1a1a !important;
	text-decoration: none !important;
	transition: background .15s;
}

.gv-eb-download:hover { background: #f0c040; }

@media (max-width: 600px) {
	.gv-eb-block { padding: 18px 16px; }
	.gv-eb-trigger { width: 100%; justify-content: center; font-size: 12px; padding: 14px 12px; }
	.gv-eb-ready-row { flex-direction: column; align-items: stretch; }
	.gv-eb-download { text-align: center; padding: 14px; }
}
