/* ══════════════════════════════════════════════════════════
   FLAVOR CATALOG — GALERÍA & ZOOM
   ══════════════════════════════════════════════════════════ */

/* ── Galería Principal ─────────────────────────────────── */
#fc-app-wrapper .fc-gallery-main {
	position: relative;
	overflow: hidden;
	border-radius: var(--fc-radius, 12px);
	background: #ffffff !important;
}

#fc-app-wrapper .fc-gallery-main__image-container {
	position: relative;
	cursor: zoom-in;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: #ffffff !important;
}

#fc-app-wrapper .fc-gallery-main__image {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	transition: transform 0.4s ease;
	display: block;
}

/* ── Zoom Lens ─────────────────────────────────────────── */
.fc-gallery-zoom-lens {
	position: absolute;
	width: 180px;
	height: 180px;
	border: 2px solid var(--fc-primary, #2563eb);
	border-radius: 50%;
	background-repeat: no-repeat;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 10;
	box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

.fc-gallery-main__image-container:hover .fc-gallery-zoom-lens {
	opacity: 1;
}

/* ── Thumbnails ────────────────────────────────────────── */
.fc-gallery-thumbs {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

.fc-gallery-thumbs__item {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color 0.3s ease, transform 0.2s ease;
	opacity: 0.6;
	background: #ffffff;
}

.fc-gallery-thumbs__item.active,
.fc-gallery-thumbs__item:hover {
	border-color: var(--fc-primary, #2563eb);
	opacity: 1;
	transform: scale(1.05);
}

#fc-app-wrapper .fc-gallery-thumbs__item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	background: #ffffff !important;
}

/* ── Lightbox ──────────────────────────────────────────── */
.fc-lightbox {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 99999;
	background: rgba(0,0,0,0.92);
	backdrop-filter: blur(8px);
	align-items: center;
	justify-content: center;
}

.fc-lightbox.active {
	display: flex;
	animation: fcFadeIn 0.3s ease;
}

.fc-lightbox__image {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 8px;
	animation: fcScaleIn 0.3s ease;
}

.fc-lightbox__close {
	position: absolute;
	top: 20px; right: 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	line-height: 1;
	z-index: 10;
	transition: transform 0.2s;
}
.fc-lightbox__close:hover { transform: rotate(90deg); }

.fc-lightbox__prev,
.fc-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.15);
	border: none;
	color: #fff;
	font-size: 28px;
	width: 48px; height: 48px;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fc-lightbox__prev { left: 20px; }
.fc-lightbox__next { right: 20px; }
.fc-lightbox__prev:hover, .fc-lightbox__next:hover { background: rgba(255,255,255,0.3); }

.fc-lightbox__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
}

/* ── Single Sold Overlay ───────────────────────────────── */
.fc-single__sold-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
}

.fc-single__sold-overlay span {
	background: #dc2626;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 10px 30px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* ── Admin Gallery (metabox) ───────────────────────────── */
.fc-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.fc-gallery-thumb {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid #e2e8f0;
}

.fc-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fc-gallery-remove {
	position: absolute;
	top: 2px; right: 2px;
	background: #dc2626;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 20px; height: 20px;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 768px) {
	.fc-gallery-zoom-lens { display: none; }
	.fc-gallery-thumbs__item { width: 56px; height: 56px; }
	.fc-lightbox__prev, .fc-lightbox__next { width: 36px; height: 36px; font-size: 20px; }
}
