/**
 * Vivaia Mix & Match - Styles
 */

/* Wrapper */
.vivaia-mm-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* Header */
.vivaia-mm-header {
	text-align: center;
	margin-bottom: 60px;
}

.vivaia-mm-title {
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px;
	color: #000000;
}

.vivaia-mm-subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: #666666;
	margin: 0 auto;
	max-width: 800px;
}

/* Desktop Layout */
.vivaia-mm-desktop {
	display: grid;
	grid-template-columns: 120px 150px 1fr 120px;
	gap: 30px;
	align-items: start;
}

.vivaia-mm-mobile {
	display: none;
}

/* Thumbnails */
.vivaia-mm-socks-thumbs,
.vivaia-mm-shoes-thumbs {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
}

.vivaia-mm-thumb {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid transparent;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.vivaia-mm-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vivaia-mm-thumb:hover {
	border-color: #cccccc;
}

.vivaia-mm-thumb.active {
	border-color: #000000;
	border-width: 3px;
}

/* Shoe Thumbnails - Rectangular Product View */
.vivaia-mm-shoe-thumb {
	width: auto;
	height: 100px;
	padding: 10px;
	border-radius: 8px;
}

.vivaia-mm-shoe-thumb-img {
	max-height: 80px;
	max-width: 120px;
	width: auto;
	object-fit: contain;
	display: block;
}

.vivaia-mm-shoe-thumb.active {
	border-color: #000000;
	border-width: 3px;
}

/* Center Display */
.vivaia-mm-display {
	text-align: center;
}

.vivaia-mm-combo-wrapper {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
	min-height: 600px;
}

.vivaia-mm-sock-display,
.vivaia-mm-shoe-display {
	position: relative;
	display: inline-block;
}

.vivaia-mm-sock-display {
	position: absolute;
	bottom: 32%;         /* 0px gap from shoe container */
	left: 42%;           /* Slightly to the right */
	transform: translateX(-50%);
	z-index: 2;
	width: 141px;        /* 20% smaller (was 176px) */
	height: 269px;       /* 20% smaller (was 336px) */
	overflow: hidden;
}

.vivaia-mm-sock-thumb-small {
	width: 100%;
	max-width: 150px;
	flex-shrink: 0;
	text-align: center;
}

.vivaia-mm-sock-thumb-img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.3s ease;
	max-height: 300px;
	object-fit: contain;
}

.vivaia-mm-standalone-sock {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.vivaia-mm-sock-name-standalone {
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	text-align: center;
	line-height: 1.4;
}

.vivaia-mm-sock-full {
	display: block;
}

.vivaia-mm-shoe-display {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	width: 190px;
	height: 190px;
	overflow: hidden;
}

.vivaia-mm-sock-img,
.vivaia-mm-shoe-img {
	max-width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.3s ease;
}

.vivaia-mm-sock-img {
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.vivaia-mm-shoe-img {
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

/* Label */
.vivaia-mm-label {
	margin-top: 30px;
	font-size: 18px;
	font-weight: 400;
	color: #333333;
	line-height: 1.4;
}

.vivaia-mm-separator {
	margin: 0 5px;
}

/* Mobile Layout */
@media (max-width: 768px) {
	.vivaia-mm-wrapper {
		padding: 30px 15px;
	}

	.vivaia-mm-header {
		margin-bottom: 40px;
	}

	.vivaia-mm-title {
		font-size: 32px;
		margin-bottom: 15px;
	}

	.vivaia-mm-subtitle {
		font-size: 14px;
	}

	.vivaia-mm-desktop {
		display: none;
	}

	.vivaia-mm-mobile {
		display: block;
	}

	.vivaia-mm-mobile .vivaia-mm-display {
		margin-bottom: 30px;
	}

	.vivaia-mm-mobile .vivaia-mm-combo-wrapper {
		min-height: 400px;
		max-width: 100%;
		position: relative;
		margin-left: 0;  /* Remove auto centering */
		margin-right: 0;  /* Remove auto centering */
	}

	/* Override absolute positioning for mobile - 20% smaller, positioned left */
	.vivaia-mm-mobile .vivaia-mm-sock-display {
		position: relative;
		bottom: auto;
		left: auto;
		transform: none;
		display: block;      /* Block element so it ignores text-align and respects margin */
		width: 141px;        /* 20% smaller than desktop (176px × 0.8) */
		height: 269px;       /* 20% smaller, maintains aspect ratio */
		margin: 0 auto 0 10px;  /* 10px from left edge, no gap */
	}

	.vivaia-mm-mobile .vivaia-mm-shoe-display {
		position: relative;
		bottom: auto;
		left: auto;
		transform: none;
		width: 190px;        /* Same as desktop */
		height: 190px;       /* Same as desktop */
		margin: 0 auto;
	}

	.vivaia-mm-mobile .vivaia-mm-sock-img {
		max-height: 250px;
	}

	.vivaia-mm-mobile .vivaia-mm-shoe-img {
		max-height: 200px;
	}

	/* Selectors */
	.vivaia-mm-selector {
		margin-bottom: 25px;
	}

	.vivaia-mm-selector-label {
		font-size: 16px;
		font-weight: 400;
		color: #000000;
		margin-bottom: 15px;
		text-align: center;
	}

	.vivaia-mm-sock-name,
	.vivaia-mm-shoe-name {
		font-weight: 400;
	}

	.vivaia-mm-selector-thumbs {
		display: flex;
		gap: 15px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.vivaia-mm-mobile .vivaia-mm-thumb {
		width: 60px;
		height: 60px;
	}
}

/* Responsive - Tablet */
@media (max-width: 991px) and (min-width: 769px) {
	.vivaia-mm-desktop {
		grid-template-columns: 100px 1fr 100px;
		gap: 30px;
	}

	.vivaia-mm-thumb {
		width: 70px;
		height: 70px;
	}

	.vivaia-mm-combo-wrapper {
		min-height: 450px;
	}

	.vivaia-mm-sock-img {
		max-height: 250px;
	}

	.vivaia-mm-shoe-img {
		max-height: 220px;
	}
}
