/* Grundlegende Stileinstellungen */
/* Google Fonts - Poppins */ 
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap"); 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.wrapper {
    min-height: 100vh;
    background-color: #4070f4;
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background-color: white;
    border: 1px black inline;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
}
.wrapper.show {
    right: 20px;
}
.wrapper #cookie {
   display: flex; 
   align-items: center;
   column-gap: 15px;
}
header i {
    color: #4070f4;
    font-size: 32px;
}
header h2 {
    color: #4070f4;
    font-weight: 500;
}
.wrapper .data {
    margin-top: 16px;
}

.wrapper .data p {
    color: #333;
    font-size: 16px;
}
.data p a {
    color: #4070f4;  
    text-decoration: none;
}
.data p a:hover {
    text-decoration: underline; 
}
.wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}
.buttons .button:hover {
   background-color: #034bf1;

}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding-bottom: 1rem;
}
#LogoBild {
    height: auto;
    width: 100%;
    padding-top: 1rem;
    align-items: center;
  
}
/* Header-Stil */
#info {
    background: #35424a;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
}

#info h1 {
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
}

#info nav {
    text-align: center;
}

#info nav ul {
    padding: 0;
    list-style: none;
}

#info nav ul li {
    display: inline;
    margin: 0 10px;
}

#info nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

/* Hauptinhalt-Stil */
main {
    padding: 20px 0;
}

section {
    margin-bottom: 20px;
}

section h2 {
    color: #35424a;
    border-bottom: 2px solid #35424a;
    padding-bottom: 10px;
}

/* Produkte-Stil */
.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px gray;
    margin: 10px;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.product img {
    max-width: 100%;
    height: auto;
}

.product h3 {
    margin-top: 10px;
}

/* Formular-Stil */
form {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #35424a;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #e8491d;
}

/* Footer-Stil */
footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
footer a {
    color: white;
    padding-right: 0.5rem;
    text-decoration: none;
}
footer li {
    display:inline-block;
    padding-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products {
        flex-direction: column;
    }

    .product {
        flex: 1 1 100%;
    }

    header nav ul li {
        display: block;
        margin: 5px 0;
    }
}
.product-tile__price--standard {
    font-weight: 700;
}
.container a {
    color: white;
}
#contact a {
    color: black;
}
#contact form {
    border-left:  2px gray solid;
    border-right: 2px gray solid;
}
#home p a {
    color: black;
}