/*
Theme Name: Stampado
Theme URI: https://stampado.com.ar
Description: Tema personalizado para Stampado - Print on Demand Argentina. Plataforma de productos personalizados sin inversión.
Author: Stampado Team
Author URI: https://stampado.com.ar
Template: fynode
Version: 1.0.0
License: Proprietary
Text Domain: stampado
*/

/* ===========================================
   LUMISE STAGE NAVIGATION FIX
   Fixes stage-nav positioning that goes off-screen
   =========================================== */

/* Position stage-nav at bottom center */
body.lumise-page div#lumise-stage-nav {
	position: fixed !important;
	bottom: 20px !important;
	left: 50% !important;
	right: auto !important;
	top: auto !important;
	transform: translateX(-50%) !important;
	z-index: 999 !important;
	width: auto !important;
}

/* Show all stage items horizontally */
body.lumise-page div#lumise-stage-nav ul {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 10px !important;
	background: rgba(255, 255, 255, 0.95) !important;
	padding: 10px 15px !important;
	border-radius: 8px !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
}

/* Show each stage item */
body.lumise-page div#lumise-stage-nav ul li[data-stage] {
	display: inline-block !important;
	opacity: 0.7 !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}

body.lumise-page div#lumise-stage-nav ul li[data-stage]:hover,
body.lumise-page div#lumise-stage-nav ul li[data-stage].active {
	opacity: 1 !important;
}

/* Stage thumbnail images */
body.lumise-page div#lumise-stage-nav ul li[data-stage] img {
	height: 50px !important;
	width: auto !important;
	border-radius: 4px !important;
	border: 2px solid transparent !important;
}

body.lumise-page div#lumise-stage-nav ul li[data-stage].active img {
	border-color: #4CAF50 !important;
}

/* Hide nav arrows */
body.lumise-page div#lumise-stage-nav ul li[data-nav] {
	display: none !important;
}

/* ===========================================
   FIX: Show ALL variation rows (Color, Talle, etc.)
   Parent theme was hiding tr:nth-child(2) which hides sizes
   =========================================== */

/* Show ALL variation rows - override parent theme rule */
.products .product.product-type-variable table.variations tr:nth-child(2),
.klb-swatches .single-product-wrapper form.cart .variations tr:nth-child(2),
.single-product-wrapper form.cart .variations tr {
	display: flex !important;
	flex-wrap: wrap;
}

/* Ensure all rows in variations table are visible */
.single-product-wrapper form.cart .variations tbody tr {
	display: flex !important;
}