body {
    font-size: 20px;
	font-family: Lexend Zetta;
	margin: 0;
	background-color: #ffffff;
	color: rgb(25, 25, 25);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.seiteninhalt {
	padding-top: 80px;
	padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 20px;
}


a {
	text-decoration: none;
	color: inherit;
}

p {
    line-height: 1.6;
    margin: 0 0 16px 0;
    text-align: left;
}

@font-face {
font-family: Lexend Zetta;
src: url('LexendZetta-VariableFont_wght.ttf')
format("opentype");
}

/* HEADER */
.header {
    background-color: #ffffff;
    text-align: right;
    border-bottom: 1px solid #c5c5c5;
    position: fixed;
    padding-right: 20px;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    z-index: 1000;
    align-items: center;
}
.header a:hover {
    color: #a15151;
}
.menuoptionen {
    color: black;
    text-decoration: none;
    font-size: 110%;
    padding-right: 20px;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    max-height: fit-content;
	min-width: 20vh;
}
.menuoptionen img {
    width: 24px;
    height: 24px;
}
#logo img {
    display: flex;
    padding-left: 20px;
    align-items: center;
    height: 70px;
    width: auto;
}
.header img {
	cursor: pointer;
}

/* SIDENAV */
.sidenav {
  height: 100%; 
  width: 0; 
  position: fixed;
  z-index: 10000; 
  top: 0; 
  right: 0;
  background-color: #000000; 
  overflow-x: hidden; 
  padding-top: 60px;
  transition: 0.5s; 
}
.sidenav a {
  padding: 8px 8px 8px 32px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover {
  color: #c6c6c6;
}
.sidenav .kreuz {
  position: absolute;
  top: 0;
  font-size: 30px;
}

/* PFEIL */
.pfeil {
  	background: #a15151;
	position: fixed;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	width: 48px;
	height: 48px;
	bottom: 20px;
	right: 20px;
	border-radius: 50%;
}
.pfeil img {
	display: block;
	width: 24px;
	height: 24px;
}

/* FOOTER */
#footer {
    background-color: #000000;
    color: #ffffff;
    border-top: 4px solid #000000;
    margin-top: auto;
    min-height: 220px;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;     
    flex-wrap: wrap;         
    justify-content: space-between;
    align-items: flex-start;
}
.footerinhalt {
    text-align: left;
    flex: 1 1 200px;         
    margin-right: 20px;
    color: #fff
}
/*.footerinhalt p {
    margin: 0 0 8px 0;        
    text-align: left;
}*/

/* FOTOGALLERIE */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fotogallerie {
    padding-top: 115px;
    flex-wrap: wrap;
    border-radius: 100px;
    height: auto;
    position: relative;
}
.galleriefoto {
	width: 76%;
	height: 100%;
	min-height: 350px;
	display: flex; 
	align-items: center;
	justify-content: center;
	color:#e7e0d5;
	background-color: #000000;
	object-fit: cover;
	margin-right: 10px;
}
.galleriefoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zumShop {
	display: block;
	width: 200px;
	padding: 12px 12px;
	border-radius: 12px;

	font-size: 1rem;
	text-align: center;
	text-decoration: none;
	z-index: 100;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.zumShop:a {
    background-color: #7494e9;
}
/* PRODUKTGALLERIE */
#produktgallerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    padding: 30px 20px;
    justify-items: center;
    align-items: stretch;
}
#produktgallerie .boxen {
    width: 100%;
    max-width: 280px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    text-align: left;
    align-items: left;

}
#produktgallerie .boxen:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
#produktgallerie .boxen img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;

}
#produktgallerie .boxen .produktinfo {
    padding-top: 10px;
    padding-right: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;

}
#produktgallerie .boxen .preis {
    padding-top: 29px;
    padding-bottom: 10px;

}
/*#produktgallerie .boxen h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}*/
#produktgallerie .boxen form {
    margin-top: auto;
    padding: 0 16px 16px;
}
#produktgallerie .boxen button {
    width: 100%;
    padding: 12px;
    border-radius: 9px;
    border: 1px solid #242424;
    background: #000000;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition:  0.2s ease;
}

#produktgallerie .boxen button:hover {
    background: #ffffff;
    color: #000000;
}



/*.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: grid;
  place-items: center;
}

/* Login Form Box */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
  margin: 0 15px;

}
.form-box {
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
}
input {
	width: 100%;
	padding: 12px;

	border: none;
	outline: none;
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
}

p, h5 {
	font-size: 14.5px;
	margin-bottom: 10px;
}



.box button {
	display: block;
	width: 300px;
	margin: 0, auto;
	align-items: center;
}

/* Detailseite */
.produktdetails {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.detailfotos {
    display: grid;
    gap: 12px;
}

.detailfotos img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    background: #f3f3f3;
}

.produktinfos {
    background: #fff;
    border: 1px solid #e7e0d5;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.produktinfos h4 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.6rem;
}

.produktinfos p {
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.produktpreis {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 10px 0 20px 0;
    color: #1d1a1a;
}

.produktinfos form {
    margin-top: 20px;
}

.produktinfos button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;

    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}



@media (max-width: 900px) {
    .produktdetails {
        grid-template-columns: 1fr;
    }
}


	

/*Warenkorb*/

.warenkorbseite {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}
.warenkorb-kopf {

    padding: 24px;
    margin-bottom: 24px;

	
}

.warenkorb-kopf h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.warenkorb-kopf p {
    margin: 0;
    color: #555;
}

.warenkorb-tabelle {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e7e0d5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	
}

.warenkorb-tabelle th,
.warenkorb-tabelle td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.warenkorb-tabelle th {
    background: #faf7f2;
    font-weight: normal;
    color: #1d1a1a;
}

.warenkorb-tabelle tr:last-child td {
    border-bottom: none;
}

.warenkorb-gesamt {
    font-weight: bold;
    font-size: 1.1rem;
    background: #faf7f2;
}

.quantity-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quantity-form button {
    width: 36px;
    height: 36px;
    border: 1px solid #e7e0d5;
    border-radius: 10px;
    background: #fff;
    color: #1d1a1a;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.quantity-form button:hover {
    background: #f4f2ef;
    transform: translateY(-1px);
}

.quantity-value {
    min-width: 36px;
    text-align: center;
    font-weight: bold;
}

.warenkorb-aktionen {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.warenkorb-aktionen form,
.warenkorb-aktionen a {
    margin: 0;
}

.warenkorb-aktionen button,
.warenkorb-aktionen a.button-link {
    display: inline-block;
    padding: 12px 18px;
    border: none;
    border-radius: 12px;

    text-decoration: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.warenkorb-aktionen button:hover,
.warenkorb-aktionen a.button-link:hover {

    transform: translateY(-2px);
}
	
.warenkorb-leer {
    background: #fff;	
    border: 1px solid #e7e0d5;	
    border-radius: 18px;	
    padding: 24px;	
    text-align: center;	
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);	
}

.dankebiber {
    width: 100%;
    max-width: 400px;
}



button {
    background-color: #000000;
    border-radius: 9px;
    color: #fff;
    width: 100%;
	padding: 12px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
	transition: 0.5s;
}
button:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #242424;
}
.dunklerbutton {
    background-color: #000000;
    border-radius: 9px;
    color: #fff;
}
.dunklerbutton:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #242424;
}
.hellerbutton {
    background-color: #ffffff;
    border-radius: 9px;
    color: #000;
}
.hellerbutton:hover {
    background-color: #000;
    color: #fff;
}
.wiebutton {
    width: 100%;
	padding: 12px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
	transition: 0.5s;
    border: 2px solid #242424;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding: 80px 20px 20px;

    justify-content: left;
}

.filter-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background: #f0f0f0;
    color: #1c281a;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    font-weight: 500;
}

.filter-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #a15151;
    color: #fff;
    border-color: #a15151;
}

/*Button*/
.filter-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background: #f0f0f0;
    color: #1c281a;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    font-weight: 500;
}

.filter-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #a15151;
    color: #fff;
    border-color: #a15151;
}