/******* Startseite */
#shop_startseite {
	width: 100%;
	padding: 3% 7% 3% 3%;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px 20px;
}

.startseite_kategorie {
	position: relative;
	height: 10vw;
	width: 100%;
	background-position: center center;
	background-size: cover;
}

.startseite_kategorie>div {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 4px;
	text-align: center;
	background-color: var(--main-color);
	color: #fff;
}

.startseite_kategorie:hover>div {
	background-color: var(--main-color-hover);
}

@media (max-width: 1199px) {
	#shop_startseite {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	#shop_startseite .startseite_kategorie {
		height: 13vw;
	}
}

@media (max-width: 991px) {
	#shop_startseite {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#shop_startseite .startseite_kategorie {
		height: 25vw;
	}
}

@media (max-width: 575px) {
	#shop_startseite {
		display: block;
		padding: 3%;
	}

	#shop_startseite .startseite_kategorie {
		margin-bottom: 20px;
		height: 50vw;
	}
}

/*** Kategorie - Menü */
#btn_shop_menu {
	position: absolute;
	top: -6px;
	right: -6px;
	z-index: 10;
	display: none;
}
@media (max-width: 991px){
	.shop-sidebar-wrapper {
		padding-bottom: 17px;
	}
	.shop-category {
		display: none;
	}
	#btn_shop_menu {
		display: block;
	}
}
@media (min-width: 992px) {
	.shop-category {
		display: block !important;
	}
}

/***** Steuerelemente */
#shop_regal_banner {
	height: 120px;
	background-size: cover;
	background-position: center center;
}

#shop_regal_head {
	border-bottom: 2px solid var(--second-color);
}

#shop_regal_optionen {
	margin: 8px 0 30px 0;
	display: flex;
	justify-content: space-between;
}


/***** Produkteübersicht */

#shop_regal {
	min-height: 50vh;
}

#shop_items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	grid-gap: 20px 20px;
}

@media (max-width: 991px) {
	#shop_items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	#shop_items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	#shop_items {
		display: block;
	}
}

.shop_item {
	width: 100%;
	/* box-shadow: 0 0 11px rgba(0, 0, 0, 0.11); */
	/* border: 1px solid #f6f6f6; */
	position: relative;
	padding-bottom: 70px;
}

.shop_item_img {
	padding: 11px;
	height: 200px;
	position: relative;
	border: 1px solid #efefef;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shop_item_img img {
	max-width: calc(100%);
	max-height: calc(100%);
	/* position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0; */
}

.shop_item_content {
	padding: 20px;
	padding-bottom: 0;
}

.shop_item_content h3 {
	font-size: 16px;
	color: #333;
	margin: 0;
	font-weight: 600;
}

.shop_item_content h3:hover {
	text-decoration: underline;
}

.shop_item_options {
	display: flex;
	margin-top: 11px;
	padding: 20px;
	padding-top: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}



.shop_item_options a {
	display: block;
	width: 100%;
}

.shop_item_price {
	color: #777;
	font-size: 14px;
	margin: 0;
}

.shop_item_rabatt {
	background-color: #519f10;
    border-radius: 100px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    left: 10px;
    line-height: 1;
    position: absolute;
    top: 10px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
}
.shop_item_rabatt.soldout {
	font-size: 12px;
	line-height: 12px;
	padding-top: 10px;
	background-color: #ad1414;
}
.shop_item_rabatt.lieferungab {
	font-size: 12px;
	line-height: 12px;
	padding-top: 10px;
	background-color: #488d13;
}

@media screen and (max-width: 1050px) {
	#shop_regal {
		width: 100%;
	}
}

@media (max-width: 450px) {
	.shop_item {
		width: 100%;
	}

	.shop_item_img {
		height: auto;
	}

	.shop_item_img img {
		position: static;
		width: 100%;
		height: auto;
	}
}