.look-detail {
	margin: 24px 0 48px;
}

.look-detail__header {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.look-detail__media {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
}

.look-detail__picture {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 4px;
	background: #f3f3f3;
}

.look-detail__picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.look-detail__products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 28px 16px;
	margin: 0 auto 8px;
}

.look-product {
	flex: 0 1 220px;
	width: 220px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.look-product__image-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.look-product__avatar {
	width: 100%;
	padding-top: 133%;
	overflow: hidden;
	position: relative;
	background: #f5f5f5;
}

.look-product__image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	display: block;
}

.look-product__index {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.92);
	color: #000;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
}

.look-product__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 12px;
	flex: 1 1 auto;
}

.look-product__prices {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 10px;
	min-height: 1.125rem;
}

.look-product__price {
	font-size: 0.875rem;
	line-height: 1.125rem;
}

.look-product__price-old {
	font-size: 0.75rem;
	line-height: 1.125rem;
	text-decoration: line-through;
	color: #999;
}

.look-product__price-old.is-hidden,
.look-product__size-error.is-hidden,
.look-detail__buy-hint.is-hidden {
	display: none;
}

.look-product .product__size {
	max-width: 100%;
	width: 100%;
	margin: 4px 0 0;
}

.look-product .product__size-row {
	justify-content: center;
	margin: 0 -3px;
}

.look-product .product__size-col {
	padding: 0 3px;
	margin-bottom: 6px;
	flex: 0 0 auto;
	max-width: none;
}

.look-product .product__size-text {
	width: 40px;
	height: 40px;
	font-size: 11px;
}

.look-product__size-error {
	margin: 4px 0 0;
	color: #c00;
	font-size: 12px;
}

.look-detail__actions {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.look-detail__buy-all {
	width: 100%;
	max-width: 320px;
	height: 48px;
	background: #000;
	color: #fff;
	border: 1px solid #000;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.look-detail__buy-all:hover:not(:disabled) {
	background: #fff;
	color: #000;
}

.look-detail__buy-all:disabled {
	opacity: 0.6;
	cursor: wait;
}

.look-detail__buy-hint {
	margin: 12px 0 0;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.7);
	text-align: center;
}

.look-detail__buy-hint.is-error {
	color: #c00;
}

@media (max-width: 960px) {
	.look-detail__header {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}

	.look-detail__media {
		max-width: 360px;
	}
}

@media (max-width: 560px) {
	.look-product {
		flex-basis: calc(50% - 8px);
		width: calc(50% - 8px);
	}

	.look-product .product__size-text {
		width: 36px;
		height: 36px;
		font-size: 10px;
	}

	.look-detail__buy-all {
		max-width: none;
	}
}
