.section-merch-detail-info .description-spoiler__content[hidden] {
	display: none;
}

.section-merch-detail-info .description-spoiler__toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 8px 0 24px;
	padding: 0;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--colorBlackMain);
	text-decoration: underline;
	text-underline-offset: 4px;
	cursor: pointer;
}

.section-merch-detail-info .description-spoiler__toggle::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s ease;
}

.section-merch-detail-info .description-spoiler__toggle[aria-expanded="true"]::after {
	transform: translateY(2px) rotate(-135deg);
}

.section-merch-detail-info .description-spoiler__toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

@media (max-width: 767px) {
	.section-merch-detail-info .description-spoiler__toggle {
		font-size: 16px;
	}
}
