/***** Inhaltsverzeichnis ******/
/* 0. Allgemein /Warenkorb-Übersicht auf ganzer Seite
/* 0.1 Warenkorb (Modal)
/* 1. Navigation
/* 1.1 Hauptmenü
/* 2. Regal
/* 2.1 Steuerelemente (Pagination, Sortierung, Suche)
/* 2.2 Startseite (Kategorien-Übersicht)
/* 2.3 Produkteübersicht
/* 2.4 Einzelnes Produkt im Regal
/* 3. Produktseite
/* 3.1 Produkt Medien
/* 3.2 Informationen & Warenkorb
/* 3.3 Produkt-Bewertung
/* 4. Checkout
/* 5. Account
*/

/****** 0. Allgemein /Warenkorb-Übersicht auf ganzer Seite */
/*-> 0.1 Warenkorb (Modal) */

/****** 1. Navigation */
#shop_navigation .btn, #shop_mobile_menu_button {
	font-size: 1.25rem;
	border-radius: 8px;
	padding: 0.25rem 1rem;
	line-height: 30px;
}
@media (max-width: 767px) {
	#shop_navigation .btn, #shop_mobile_menu_button {
		font-size: 1rem;
		padding: 0.25rem 0.75rem;
		line-height: 24px;
	}
}
#shop_navigation .input-group .btn {
	border-radius: 0 8px 8px 0;
}
/*-> 1.1 Hauptmenü */
#shop_menu {
	margin-top: 20px;
	border: 1px solid #eee;
	left: 0;
	padding: 11px 18px 14px 18px;
}

#shop_menu>ul>li {
	display: block;
}
#shop_menu>ul>li>a {
	display: block;
	font-size: 1.1rem;
	padding: 6px 0;
	color: #333;
}
#shop_menu>ul>li.active>a {
	color: var(--main-color);
}

/****** 2. Regal */
#shop {
	display: flex;
	flex-wrap: wrap;
}
#shop_header {
	width: 100%;
	border-bottom: 2px solid var(--second-color);
}
#shop_container_menu {
	width: 25%;
	padding-right: 20px;
}

#shop_regal {
	width: 75%;
}
#shop_items {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-gap: 20px 20px;
}
#shop_items .shop_item_content a {
	color: #333;
}

@media (max-width: 1199px){
	#shop_container_menu, #shop_regal {
		width: 100%;
		padding: 0;
	}

	#shop_menu>ul {
		display: none;
		position: absolute;
		top: 100%;
		width: calc(100% + 2px);
		max-width: none;
		left: -1px;
		background-color: #fff;
		box-shadow: none;
		border: 1px solid #eee;
		border-top: 1px solid #eee;
		padding: 11px 18px 14px 18px;
		z-index: 10;
	}
	#shop_menu.visible>ul {
		display: block;
	}
}

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


/*-> 2.1 Steuerelemente (Pagination, Sortierung, Suche) */

/*-> 2.2 Startseite (Kategorien-Übersicht) */

/*-> 2.3 Produkteübersicht */

/*-> 2.4 Einzelnes Produkt im Regal */
.shop_item_rabatt {
	background-color: #519f10;
    border-radius: 100px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    left: 10px;
    line-height: 16px;
    position: absolute;
    top: 10px;
    height: 60px;
    width: 60px;
    line-height: 45px;
    text-align: center;
	padding-top: 5px;
	box-shadow: 2px 2px 0px rgba(30,70,0,1);
}
.shop_item_rabatt.soldout {
	font-size: 14px;
	line-height: 14px;
	padding-top: 14px;
	background-color: #ad1414;
	box-shadow: 2px 2px 0px rgba(70,10,0,1);
}

/****** 3. Produktseite */
/*-> 3.1 Produkt Medien */

/*-> 3.2 Informationen & Warenkorb */
#shop_produkt_lead_titel {
	font-size: 6vw;
	line-height: 1;
	text-transform: uppercase;
}

#shop_produkt_content h3 {
	font-size: 2rem;
	font-weight: 700;
}

/*-> 3.3 Produkt-Bewertung */

/****** 4. Checkout */

/****** 5. Account */
