.mlh-complete-look-container {
	margin: 40px auto;
	max-width: 1280px;
	padding: 0 16px;
}

.mlh-complete-look-section {
	margin-bottom: 36px;
	padding: 24px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 18px;
	box-shadow: 0 20px 45px rgba(46, 61, 73, 0.08);
}

.mlh-complete-look-header {
	margin-bottom: 24px;
}

.mlh-complete-look-title {
	margin: 0;
	font-size: clamp(1.6rem, 1.4vw, 2rem);
	font-weight: 700;
	line-height: 1.1;
	color: #222;
}

.mlh-complete-look-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.mlh-complete-look-item {
	background: #fafafa;
	border: 1px solid #e6e6e6;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mlh-complete-look-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 38px rgba(46, 61, 73, 0.14);
}

.mlh-complete-look-link {
	display: flex;
	flex-direction: column;
	flex: 1;
	color: inherit;
	text-decoration: none;
}

.mlh-complete-look-thumbnail {
	position: relative;
	padding-top: 100%;
	overflow: hidden;
}

.mlh-complete-look-thumbnail img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mlh-complete-look-item-content {
	padding: 18px 18px 16px;
}

.mlh-complete-look-item-title {
	margin: 0 0 10px;
	font-size: 1rem;
	line-height: 1.3;
	color: #111;
}

.mlh-complete-look-item-price {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	color: #111;
}

.mlh-complete-look-button {
	margin: 0 18px 18px;
	padding: 10px 16px;
	border-radius: 999px;
	background-color: #111;
	color: #fff;
	text-align: center;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.mlh-complete-look-button:hover {
	background-color: #333;
}

@media (max-width: 768px) {
	.mlh-complete-look-section {
		padding: 18px;
	}

	.mlh-complete-look-grid {
		gap: 14px;
	}
}

.mlh-complete-look-grid--theme .mlh-complete-look-item {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.mlh-complete-look-grid--theme .mlh-complete-look-button {
	background-color: #2271b1;
}
