.dt-attribute-dropdowns {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin: 1.5rem 0;
	padding: 1.35rem;
	background-color: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
}

.dt-attribute-dropdowns__field {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.dt-attribute-dropdowns__label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #374151;
}

.dt-attribute-dropdowns__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.dt-attribute-chip {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.45rem;
	flex: 0 1 calc(25% - 0.5rem);
	max-width: calc(25% - 0.5rem);
	min-width: 0;
	padding: 0.6rem;
	border: 1px solid #d1d5db;
	border-radius: 11px;
	background-color: #ffffff;
	font-size: 0.8rem;
	font-weight: 600;
	color: #111827;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	min-height: 96px;
}

.dt-attribute-chip::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: 11px 11px 0 0;
	background-color: transparent;
	transition: background-color 0.2s ease;
}

.dt-attribute-chip__check {
	position: absolute;
	top: 0.4rem;
	right: 0.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	border: 2px solid #e5e7eb;
	background-color: #ffffff;
	color: #2fbf71;
	opacity: 0;
	transform: scale(0.55);
	transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.dt-attribute-chip__check-icon {
	width: 0.45rem;
	height: 0.2rem;
	border: 2px solid currentColor;
	border-top: 0;
	border-right: 0;
	transform: rotate(-45deg);
}

.dt-attribute-chip__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 9px;
	background-color: #f3f4f6;
	overflow: hidden;
}

.dt-attribute-chip__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dt-attribute-chip__value {
	display: block;
	width: 100%;
	margin-top: 0.4rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: #111827;
	text-align: center;
	line-height: 1.3;
	word-break: break-word;
}

.dt-attribute-chip:hover,
.dt-attribute-chip:focus-visible {
	border-color: #8dddbc;
	box-shadow: 0 8px 24px rgba(47, 191, 113, 0.18);
	outline: none;
	transform: translateY(-1px);
}

.dt-attribute-chip--selected {
	border-color: #2fbf71;
	box-shadow: 0 10px 28px rgba(47, 191, 113, 0.2);
}

.dt-attribute-chip--selected::after {
	background-color: #2fbf71;
}

.dt-attribute-chip--selected .dt-attribute-chip__check {
	opacity: 1;
	transform: scale(1);
	border-color: #2fbf71;
	background-color: #2fbf71;
	color: #ffffff;
}

.dt-attribute-chip--selected .dt-attribute-chip__check-icon {
	border-color: #ffffff;
}

.dt-attribute-chip--disabled {
	opacity: 0.6;
	box-shadow: none;
	transform: none;
}

@media (max-width: 991px) {
	.dt-attribute-chip {
		flex: 0 1 calc(33.333% - 0.5rem);
		max-width: calc(33.333% - 0.5rem);
		min-height: 92px;
	}
}

@media (max-width: 639px) {
	.dt-attribute-chip {
		flex: 0 1 calc(50% - 0.5rem);
		max-width: calc(50% - 0.5rem);
		min-height: 88px;
	}
}
