/***** 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
*/

/***** MAIN */
:root {
	--color-main: #f4bc5f;
	--color-shop-badge: #f4bc5f;
}
.px-main {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
@media (min-width: 1300px) {
	.px-main {
		max-width: 1450px;
	}
}

.btn-main {
	background-color: #f4bc5f;
	border-color: #f4bc5f;
}
.btn-main:hover {
	background-color: #f8d59d;
	border-color: #f4bc5f;
	color: #000;
}

.btn-outline-main {
	background-color: transparent;
	border-color: #f4bc5f;
	color: #f4bc5f;
}

.btn-outline-main:hover {
	background-color: #f4bc5f;
	border-color: #f4bc5f;
	color: #000;
}

.page_copyright img {
	width: 180px;
}

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

/****** 1. Navigation */
/*-> 1.1 Hauptmenü */
#shop_menu>ul>li {
	display: block;
}
#shop_menu ul li a {
	display: block;
	padding: 6px 15px;
	font-weight: 500;
	font-size: 18px;
}

/****** 2. Regal */
#shop {
	display: flex;
	flex-wrap: wrap;
}
#shop_header {
	width: 100%;
}
#shop_container_menu {
	width: 22%;
	padding-right: 20px;
}
#shop_regal {
	width: 78%;
}
@media (max-width: 1199px) {
	#shop_container_menu {
		width: 100%;
		padding-right: 0;
	}
	#shop_regal {
		width: 100%;
	}
}

.bg-main {
	background-color: #f4bc5f;
}

#shop_items {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1400px) {#shop_items {grid-template-columns: repeat(3, minmax(0, 1fr));}}
@media (max-width: 991px) {#shop_items {grid-template-columns: repeat(2, minmax(0, 1fr));}}
@media (max-width: 767px) {#shop_items {grid-template-columns: repeat(2, minmax(0, 1fr));}}
@media (max-width: 575px) {#shop_items {display: grid;grid-gap: 10px 10px;}}


#shop_items .btn, #shop_items .form-control {
	min-width: 40px;
	padding: 6px 11px;
	margin-bottom: 0;
	height: 36px;
	line-height: 24px;
}


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

#shop_navigation .btn {
	padding: 10px 14px;
	margin-bottom: 0;
	min-width: 40px;
	line-height: 1.5;
}
#shop_navigation .form-control {
	padding: 10px 14px;
	height: auto;
	line-height: 1.5;
}

/*-> 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 */
#shop_produkt_content .btn {
	min-width: 40px;
	padding: 6px 11px;
	margin-bottom: 0;
	height: 36px;
}
#shop_produkt_content .btn:hover {
	color: #000;
}
#shop_produkt_content .form-control {
	padding: 6px 11px;
	margin-bottom: 0;
	height: 36px;
}

#shop_produkt_badges {
	margin-bottom: 16px;
}
#shop_produkt_lead {
	border-bottom: 1px solid var(--color-shop-badge);
	margin-bottom: 16px;
}

#shop_produkt_optionen .radios {
	align-items: stretch;
	flex-wrap: wrap;
}

#shop_passende_produkte {
	margin-top: 5rem;
}
#shop_passende_produkte h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 1rem;
}
#shop_passende_produkte .img {
	display: flex;
	justify-content: center;

}

#shop_passende_produkte img {
	max-height: 300px;
	max-width: 80%;
}
#shop_passende_produkte h4 {
	font-size: 24px;
	font-weight: 500;
	margin-top: 1rem;
}

#shop_produkt_details .accordion-button {
	border-radius: 0;
	background-color: #fff !important;
	color: #000 !important;
	padding-left: 0;
	border: none;
}
#shop_produkt_details ul, #shop_produkt_details ol {
	padding-left: 24px;
}

/*-> 3.3 Produkt-Bewertung */

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

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

#checkout .btn {
	min-width: 40px;
	margin-bottom: 0;
	height: 36px;
	margin-bottom: 0;
	padding: 6px 11px;
}
#checkout .form-control {
	margin-bottom: 0;
	height: 36px;
	padding-left: 12px;
}

#checkout .text-end {
	text-align: right;
}

#checkout .form-control:-moz-placeholder, 
#shop_items .form-control:-moz-placeholder,
.input_search_shop:-moz-placeholder {
	font-weight: 400;
	opacity: 1;
	text-transform: none;
}

#checkout .form-control::-moz-placeholder, 
#shop_items .form-control::-moz-placeholder,
.input_search_shop::-moz-placeholder {
	font-weight: 400;
	opacity: 1;
	text-transform: none;
}

#checkout .form-control:-ms-input-placeholder, 
#shop_items .form-control:-ms-input-placeholder,
.input_search_shop:-ms-input-placeholder {
	font-weight: 400;
	opacity: 1;
	text-transform: none;
}

#checkout .form-control::-webkit-input-placeholder, 
#shop_items .form-control::-webkit-input-placeholder,
.input_search_shop::-webkit-input-placeholder {
	font-weight: 400;
	opacity: 1;
	text-transform: none;
}

#checkout .form-select {
	padding-left: 12px;
	padding-right: 30px;
	width: 100% !important;
}

#checkout h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0px;
}
.shop_input_rabattcode {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0;
}

#form_adressen h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 20px;

}