.ad-shop-category-drawer {
	display: none;
}

.elementor-widget-shortcode:has(.ad-shop-category-drawer),
.elementor-widget-shortcode:has(.ad-shop-category-drawer) > .elementor-widget-container,
.elementor-widget-shortcode:has(.ad-shop-category-drawer) .elementor-shortcode {
	width: 100%;
}

.elementor-widget-shortcode:has(.ad-shop-category-drawer) {
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
}

.ad-shop-category-drawer__details {
	position: relative;
	width: 100%;
}

.ad-shop-category-drawer__summary {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--e-global-color-secondary);
	color: var(--e-global-color-243f42d);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	list-style: none;
	cursor: pointer;
	user-select: none;
}

.ad-shop-category-drawer__summary::-webkit-details-marker {
	display: none;
}

.ad-shop-category-drawer__chevron {
	position: absolute;
	top: 50%;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
	transition: transform 160ms ease;
}

.ad-shop-category-drawer__details[open] .ad-shop-category-drawer__chevron {
	transform: translateY(-35%) rotate(225deg);
}

.ad-shop-category-drawer__panel {
	display: grid;
	background: transparent;
}

.ad-shop-category-drawer__item {
	display: block;
	min-width: 0;
	background: var(--e-global-color-243f42d);
	color: var(--e-global-color-primary);
	text-align: left;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
	overflow: hidden;
}

.ad-shop-category-drawer__item:focus-visible {
	outline: 2px solid var(--e-global-color-primary);
	outline-offset: 2px;
}

.ad-shop-category-drawer__image {
	display: block;
	width: 100%;
	aspect-ratio: 244 / 95;
	height: auto;
	object-fit: cover;
}

.ad-shop-category-drawer__label {
	display: block;
	color: var(--e-global-color-secondary);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.ad-shop-category-drawer {
		display: block;
		width: 100%;
		margin: 0;
		font-family: inherit;
	}

	.ad-shop-category-drawer__summary {
		min-height: 36px;
		padding: 9px 42px 9px 16px;
	}

	.ad-shop-category-drawer__chevron {
		right: 15px;
		width: 9px;
		height: 9px;
	}

	.ad-shop-category-drawer__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 10px 0 4px;
	}

	.ad-shop-category-drawer__label {
		padding: 6px 8px 7px;
	}
}

@media (min-width: 768px) {
	.ad-shop-category-drawer {
		display: block;
		width: 100%;
		margin: 0;
		font-family: inherit;
	}

	.ad-shop-category-drawer__summary {
		min-height: 44px;
		padding: 12px 52px 12px 20px;
	}

	.ad-shop-category-drawer__chevron {
		right: 20px;
		width: 10px;
		height: 10px;
	}

	.ad-shop-category-drawer__panel {
		grid-template-columns: repeat(7, minmax(0, 1fr));
		gap: 16px;
		padding: 16px 0 0;
	}

	.ad-shop-category-drawer__label {
		padding: 7px 8px 8px;
		text-align: center;
	}
}