.looks-list-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
	margin-top: 50px;
	margin-bottom: -20px;
}

.look-item {
	display: flex;
	flex-direction: column;
	flex: 0 0 calc((100% - 10px) / 3);
	width: calc((100% - 10px) / 3);
	min-width: 0;
}

.look-item-image {
	display: block;
	margin-bottom: 4px;
	text-decoration: none;
	color: inherit;
}

.img-box {
	padding-top: 100%;
	position: relative;
	max-width: 100%;
	overflow: hidden;
	display: block;
	border-radius: 10px;
	background: #f3f3f3;
}

.img-box img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.look-item-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 16px 0;
	gap: 10px;
}

.look-item-list-item {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	color: rgba(0, 0, 0, 0.7);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}

.look-item-list-item__id {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.45);
}

.look-item-list-item__prices {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
}

.look-item-list-item__price {
	font-size: 13px;
	font-weight: 600;
	color: #000;
}

.look-item-list-item__price.is-sale {
	color: #f93c00;
}

.look-item-list-item__price-old {
	font-size: 12px;
	color: #999;
	text-decoration: line-through;
}

.look-item-link a {
	display: block;
	text-align: center;
	background: #000;
	color: #fff;
	padding: 12px 10px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 13px;
	transition: background 0.2s, color 0.2s;
}

.look-item-link a:hover {
	background: #fff;
	color: #000;
	outline: 1px solid #000;
}

@media (max-width: 960px) {
	.looks-list-grid {
		gap: 24px 16px;
	}

	.look-item {
		flex: 0 1 calc((100% - 16px) / 2);
		width: calc((100% - 16px) / 2);
	}
}

@media (max-width: 560px) {
	.looks-list-grid {
		margin-top: -10px;
		margin-bottom: 20px;
	}

	.look-item {
		flex: 0 1 100%;
		width: 100%;
		max-width: 420px;
	}
}
