.breadcrumbs {
	display: flex;
	gap: 0.5em;
	margin-top: 4.5em;
	margin-bottom: 1em;
	height: 1.3em;
	color: var(--color-blue);
	white-space: nowrap;
}
	.breadcrumbs span {
		color: white;
	}

.info {
	display: grid;
	grid-template-columns: 3fr 4fr;
	gap: 2.5em;
}
	.info-name {
		margin-top: 0;
		margin-bottom: 0.3em;
		font-weight: 800;
		font-size: 3.5em;
		font-variation-settings: "FLAR" 50;
		word-break: break-word;
		hyphens: auto;
	}
	.info-description {
		line-height: 1.3;
		font-size: 1.2em;
	}
	.info-stock {
		margin-top: 1em;
		border-top: 1px solid var(--color-gray);
		padding-top: 0.6em;
		width: fit-content;
		color: color-mix(in srgb, var(--color-lighter), var(--color-success) 33%);
	}
	.info-image {
		outline: 1px solid var(--color-gray);
		width: 100%;
		margin-top: 0.36em;
		height: unset;
	}
	
.file-link {
	color: inherit !important;
	opacity: 0.6;
	display: block;
	width: fit-content;
	padding-right: 2em;
	margin-top: 0.25em;
}
	.file-link:hover {
		opacity: 1;
	}
	.file-link .row {
		gap: 0.4em;
	}

h2 {
	font-size: 3em;
	font-weight: 800;
	margin-bottom: 0.4em;
	margin-top: 1em;
}

.steps-wrapper strong {
	font-size: 1.8em;
	font-style: italic;
	font-weight: 700;
	margin-right: 0.1em;
}
.steps {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2em;
	line-height: 1.3;
	font-size: 1.2em;
	position: relative;
}
	.step h3 {
		font-weight: 800;
		margin-top: 0;
		margin-bottom: 0.2em;
		position: relative;
		z-index: 1;
		padding: 0 0.5em;
		margin-left: -0.5em;
		background: var(--color-dark);
		width: fit-content;
	}
		.step:last-of-type h3 {
			width: 100%;
		}
	.step label {
		display: block;
		padding: 0.1em 0;
	}
		.step label:has(input[type="radio"]:checked) {
			color: var(--color-blue);
		}
	.step input[type="radio"] {
		accent-color: var(--color-blue);
		width: 1.3em;
		aspect-ratio: 1/1;
	}

	.steps::before {
		position: absolute;
		width: calc(100% - 1em);
		top: 0.8em;
		left: 0;
		height: 1px;
		background-color: var(--color-gray);
		z-index: 0;
		content: "";
	}
	
	.steps .price {
		margin-top: 2.5rem;
		margin-bottom: 0.2em;
		font-size: 1.5em;
		font-weight: 800;
		line-height: 1;
		min-height: 1em;
		transition: opacity 0.05s;
		gap: 0.5em;
	}
		.steps .price s {
			text-decoration: line-through;
			font-size: 0.5em;
			font-weight: 400;
			align-self: last baseline;
			justify-self: flex-end;
			text-decoration-color: color-mix(in srgb, var(--color-red), transparent 20%);
			text-decoration-thickness: 2px;
			color: var(--color-light);
		}

	.steps button[type="submit"] {
		font-weight: 800;
		background-color: color-mix(in srgb, var(--color-blue), transparent 15%);
		padding: 0.3em 0.8em;
		border: none;
		color: white;
		cursor: pointer;
		font-size: 1.5em;
	}
		.steps button[type="submit"]:hover {
			background-color: color-mix(in srgb, var(--color-blue), transparent 20%);
		}

.cloth {
	display: grid;
	grid-template-columns: 2fr 5fr;
	gap: 2.5em;
	margin-top: 6em;
}
	.cloth-flag-wrapper {
		position: relative;
		overflow: hidden;
		outline: 1px solid var(--color-gray)
	}
		.cloth-flag {
			position: absolute;
			z-index: -1;
			top: 0%;
			left: 20%;
			rotate: 11deg;
			scale: 2.4;
			transform-origin: top left;
		}
			
	.cloth h2 {
		margin-top: 0;
	}	
	.cloth-info :where(p, ul) {
		line-height: 1.3;
		font-size: 1.2em;
	}
	.cloth-info strong {
		font-weight: 800;	
	}

.related {
	margin-top: 6em;
}
	.related h3 {
		margin-bottom: 0.4em;
	}
.flags {
	width: fit-content;
	column-count: 3;
	column-width: 17em;
}
	.flag {
		display: flex;
		align-items: last baseline;
		padding-bottom: 0.5em;
		color: var(--color-white) !important;
		text-decoration-color: transparent;
		width: fit-content;
	}
		.flag figure {
			display: flex;
			gap: 0.5em;
			align-items: first baseline;
			margin: 0;
		}
			.flag figcaption {
				max-width: max-content;
				font-size: 1em;
				white-space: nowrap;
			}
			.flag mark {
				background: #ffffff47;
					color: inherit;
			}
		.flag img {
			font-size: 0;
			outline: 1px solid var(--color-gray);
			background-color: var(--color-gray);
		}
		.flag small {
			font-size: 65%;
			display: inline;
			padding-left: 0.1em;
		}
		.flag:visited {
			color: color-mix(in srgb, var(--color-orange), white 55%) !important;
		}

@media (width < 600px) {
	.info {
		grid-template-columns: 1fr;
	}

	.steps {
		grid-template-columns: 1fr;
		gap: 1.5em;
	}
		.steps::before {
			display: none;
		}
		.steps .price {
			text-align: right;
			font-size: 2.4em;
		}
		.step label {
			padding-left: 1.3em;
		}
		.steps button {
			width: 100%;
		}

	.cloth {
		grid-template-columns: 1fr;
	}
		.cloth-info ul {
			list-style: disc;
		}

	.breadcrumbs {
		font-size: 1em;
		margin-top: 2em;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
	}
		.breadcrumbs > * {
			white-space: nowrap;
		}

	.flags {
		column-count: 1 !important;
		font-size: 18px;
		padding-left: 1px;
	}
		.flag {
			padding-top: 0.3em;
			padding-bottom: 0.3em;
		}
}