.szl-product-box {
	margin: 2rem 0;
	clear: both;
}
.szl-product-box__details {
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}
.szl-product-box__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
}
.szl-product-box__summary::-webkit-details-marker { display: none; }
.szl-product-box__title { font-size: 1.1rem; }
.szl-product-box__toggle::before { content: "+"; font-size: 1.4rem; }
.szl-product-box__details[open] .szl-product-box__toggle::before { content: "−"; }
.szl-product-box__content { padding: 0 1.15rem 1.15rem; }
.szl-product-box__group + .szl-product-box__group { margin-top: 1.5rem; }
.szl-product-box__group-title { margin-bottom: .75rem; font-weight: 700; }
.szl-product-box__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}
.szl-product-box__card {
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}
.szl-product-box__image {
	display: block;
	aspect-ratio: 1 / 1;
	background: #f7f7f7;
}
.szl-product-box__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.szl-product-box__body { padding: .75rem; }
.szl-product-box__name {
	display: block;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.35;
}
.szl-product-box__price { margin-top: .45rem; font-weight: 700; }

@media (max-width: 780px) {
	.szl-product-box__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 440px) {
	.szl-product-box__grid { grid-template-columns: 1fr; }
}
