/**
 * Bloque Product Images Tabs
 * 
 * Tabs verticales con imágenes de producto, timer automático y estilo Whoop.
 * Tab activo: blanco, grande. Tab inactivo: gris, pequeño.
 * 
 * @package Vitruve_Custom_Theme
 */

@import '../styles/design-tokens.css';

/**
 * ========================================
 * CONTENEDOR PRINCIPAL
 * ========================================
 */
.vitruve-product-images-tabs {
	padding: var(--space-20) 0;
	position: relative;
}

/**
 * CONTAINER INTERNO
 */
.vitruve-product-images-tabs__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-12);
	align-items: center;
}

@media (min-width: 1024px) {
	.vitruve-product-images-tabs__container {
		grid-template-columns: 40% 60%;
		gap: var(--space-16);
	}
}

/**
 * TÍTULO GENERAL
 */
.vitruve-product-images-tabs__main-title {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 var(--space-12) 0;
	text-align: left;
	grid-column: 1 / -1;
}

@media (min-width: 768px) {
	.vitruve-product-images-tabs__main-title {
		font-size: var(--text-5xl);
		margin-bottom: var(--space-16);
	}
}

@media (min-width: 1024px) {
	.vitruve-product-images-tabs__main-title {
		font-size: var(--text-6xl);
	}
}

/**
 * ========================================
 * TABS (IZQUIERDA)
 * ========================================
 */
.vitruve-product-images-tabs__tabs {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
}

/**
 * TAB INDIVIDUAL (estilo Whoop)
 */
.vitruve-product-images-tabs__tab {
	background: transparent;
	border: none;
	padding: var(--space-6);
	text-align: left;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	border-radius: var(--radius-xl);
	transform: scale(0.95);
	opacity: 0.6;
}

.vitruve-product-images-tabs__tab:hover {
	opacity: 0.8;
	background: rgba(255, 255, 255, 0.05);
}

.vitruve-product-images-tabs__tab:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

/* Tab Activo (estilo Whoop) */
.vitruve-product-images-tabs__tab--active {
	transform: scale(1);
	opacity: 1;
	background: rgba(255, 255, 255, 0.08);
}

/**
 * CONTENIDO DEL TAB
 */
.vitruve-product-images-tabs__tab-content {
	margin-bottom: var(--space-3);
}

/**
 * TÍTULO DEL TAB
 */
.vitruve-product-images-tabs__tab-title {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 400;
	line-height: 1.3;
	margin: 0 0 var(--space-2) 0;
	color: #737373;
	transition: all 0.3s ease;
}

.vitruve-product-images-tabs__tab--active .vitruve-product-images-tabs__tab-title {
	color: #ffffff;
	font-weight: 600;
}

@media (min-width: 1024px) {
	.vitruve-product-images-tabs__tab-title {
		font-size: var(--text-3xl);
	}
}

/**
 * SUBTÍTULO DEL TAB
 */
.vitruve-product-images-tabs__tab-subtitle {
	font-size: var(--text-base);
	line-height: 1.6;
	margin: 0;
	color: #737373;
	transition: color 0.3s ease;
}

.vitruve-product-images-tabs__tab--active .vitruve-product-images-tabs__tab-subtitle {
	color: #a3a3a3;
}

/**
 * ========================================
 * BARRA DE PROGRESO (TIMER)
 * ========================================
 */
.vitruve-product-images-tabs__progress-bar {
	width: 100%;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	overflow: hidden;
	position: relative;
	margin-top: var(--space-4);
}

/* Barra de progreso (fill) */
.vitruve-product-images-tabs__progress-fill {
	width: 0%;
	height: 100%;
	background: #FFE500; /* Amarillo Vitruve */
	border-radius: 999px;
	transition: width 0.1s linear;
}

/* Animación de progreso (5 segundos) */
.vitruve-product-images-tabs__progress-fill--active {
	animation: progress-fill 5s linear forwards;
}

@keyframes progress-fill {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

/* Barra más gruesa en mobile */
@media (max-width: 768px) {
	.vitruve-product-images-tabs__progress-bar {
		height: 5px;
	}
}

/**
 * ========================================
 * IMAGEN (DERECHA)
 * ========================================
 */
.vitruve-product-images-tabs__image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	background: #1a1a1a;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: stretch;
	justify-content: stretch;
}

.vitruve-product-images-tabs__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	vertical-align: top;
	margin: 0;
	padding: 0;
}

/**
 * BOTÓN PAUSE/PLAY
 */
.vitruve-product-images-tabs__pause-button {
	position: absolute;
	top: var(--space-6);
	right: var(--space-6);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.vitruve-product-images-tabs__pause-button:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: scale(1.05);
}

.vitruve-product-images-tabs__pause-button:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.vitruve-product-images-tabs__pause-icon,
.vitruve-product-images-tabs__play-icon {
	color: #ffffff;
	width: 24px;
	height: 24px;
}

/* Estado pausado */
.vitruve-product-images-tabs__pause-button--paused .vitruve-product-images-tabs__pause-icon {
	display: none;
}

.vitruve-product-images-tabs__pause-button--paused .vitruve-product-images-tabs__play-icon {
	display: block !important;
}

/**
 * ========================================
 * RESPONSIVE - TABLET
 * ========================================
 */
@media (min-width: 768px) and (max-width: 1023px) {
	.vitruve-product-images-tabs__container {
		grid-template-columns: 35% 65%;
		gap: var(--space-12);
	}
	
	.vitruve-product-images-tabs__tab {
		padding: var(--space-5);
	}
	
	.vitruve-product-images-tabs__tab-title {
		font-size: var(--text-xl);
	}
}

/**
 * ========================================
 * RESPONSIVE - MOBILE
 * ========================================
 */
@media (max-width: 767px) {
	.vitruve-product-images-tabs {
		padding: var(--space-16) 0;
	}
	
	.vitruve-product-images-tabs__container {
		gap: var(--space-8);
	}
	
	.vitruve-product-images-tabs__tabs {
		gap: var(--space-4);
	}
	
	.vitruve-product-images-tabs__tab {
		padding: var(--space-4);
	}
	
	.vitruve-product-images-tabs__tab-title {
		font-size: var(--text-xl);
	}
	
	.vitruve-product-images-tabs__tab-subtitle {
		font-size: var(--text-sm);
	}
	
	.vitruve-product-images-tabs__pause-button {
		width: 48px;
		height: 48px;
	}
}

/**
 * ========================================
 * ACCESIBILIDAD
 * ========================================
 */
@media (prefers-reduced-motion: reduce) {
	.vitruve-product-images-tabs__tab,
	.vitruve-product-images-tabs__tab-title,
	.vitruve-product-images-tabs__tab-subtitle,
	.vitruve-product-images-tabs__pause-button {
		transition: none;
	}
	
	.vitruve-product-images-tabs__progress-fill--active {
		animation: none;
	}
}

