/* BSC Photo Gallery — Estilos */

/* ── Grid de la galería ─────────────────────────────────────────────────── */

.bsc-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 16px 0;
}

@media (max-width: 900px) {
	.bsc-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Foto individual ────────────────────────────────────────────────────── */

.bsc-photo {
	cursor: pointer;
	border: 3px solid transparent;
	border-radius: 4px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	background: #f0f0f0;
}

.bsc-photo:focus-visible {
	outline: 3px solid #0073aa;
	outline-offset: 2px;
}

.bsc-photo__img-wrap {
	position: relative;
	padding-top: 100%; /* ratio cuadrado */
	overflow: hidden;
}

.bsc-photo__img-wrap img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s ease;
}

/* Checkmark oculto por defecto */
.bsc-photo__check {
	position: absolute;
	top: 6px;
	right: 8px;
	width: 26px;
	height: 26px;
	background: #0073aa;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

/* Título */
.bsc-photo__title {
	margin: 0;
	padding: 6px 8px;
	font-size: 0.8rem;
	text-align: center;
	color: #333;
	background: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── Estado seleccionado ────────────────────────────────────────────────── */

.bsc-photo--selected {
	border-color: #0073aa;
	box-shadow: 0 0 0 1px #0073aa;
}

.bsc-photo--selected .bsc-photo__check {
	opacity: 1;
}

.bsc-photo--selected .bsc-photo__img-wrap img {
	opacity: 0.85;
}

/* ── Barra inferior sticky ──────────────────────────────────────────────── */

.bsc-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.87);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	gap: 12px;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}

.bsc-bar[hidden] {
	display: none;
}

.bsc-bar__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.bsc-bar__selection {
	font-size: 0.8rem;
	opacity: 0.8;
	white-space: nowrap;
}

.bsc-bar__total {
	font-size: 1rem;
	white-space: nowrap;
}

.bsc-bar__total strong {
	font-size: 1.15rem;
}

.bsc-bar__btn {
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 10px 22px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
	white-space: nowrap;
}

.bsc-bar__btn:hover {
	background: #005f8e;
}

.bsc-bar__btn:disabled {
	background: #666;
	cursor: not-allowed;
}

/* ── Panel de descargas post-pago ───────────────────────────────────────── */

.bsc-download-panel {
	background: #f0fff4;
	border: 1px solid #b2dfdb;
	border-radius: 8px;
	padding: 28px 32px;
	max-width: 680px;
	margin: 24px auto;
}

.bsc-download-panel__header {
	text-align: center;
	margin-bottom: 24px;
}

.bsc-download-panel__icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 8px;
}

.bsc-download-panel__header h2 {
	margin: 0 0 8px;
	color: #2e7d32;
	font-size: 1.4rem;
}

.bsc-download-panel__header p {
	margin: 0;
	color: #555;
	font-size: 0.9rem;
}

.bsc-download-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bsc-download-list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: #fff;
	border: 1px solid #c8e6c9;
	border-radius: 6px;
	padding: 12px 16px;
}

.bsc-download-list__name {
	font-weight: 600;
	color: #222;
	font-size: 0.95rem;
}

.bsc-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	padding: 8px 16px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: background 0.15s ease;
	white-space: nowrap;
}

.bsc-download-btn:hover {
	background: #005f8e;
	color: #fff;
}

.bsc-download-list__unavailable {
	color: #888;
	font-style: italic;
	font-size: 0.875rem;
}

.bsc-download-panel__error {
	color: #c0392b;
	text-align: center;
}

/* ── Avisos (cancelación / error) ───────────────────────────────────────── */

.bsc-notice {
	padding: 14px 18px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.bsc-notice--warning {
	background: #fff9c4;
	border: 1px solid #f9c813;
	color: #6b5900;
}

.bsc-notice--error {
	background: #fdecea;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.bsc-notice p {
	margin: 0;
}

/* ── Galería vacía ──────────────────────────────────────────────────────── */

.bsc-gallery__empty {
	text-align: center;
	color: #888;
	padding: 40px 0;
}
