* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: #f8f9fa;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.produkte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.produkt-karte {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.produkt-karte img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.produkt-karte img:hover {
    transform: scale(1.05);
}

.produkt-karte button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: auto;
}

.produkt-karte button:hover {
    background-color: #0056b3;
}

#warenkorb-container {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
}

#warenkorb-items {
    margin: 1rem 0;
}

.warenkorb-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Neue Stile für Impressum und Kontakt */
.page-section {
    margin: 3rem 0;
    padding: 2rem;
}

.content-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-box h3 {
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
}

.content-box h3:first-child {
    margin-top: 0;
}

/* Kontaktformular Stile */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Verstecke standardmäßig alle Hauptsektionen */
#impressum, #kontakt {
    display: none;
}

/* Aktive Navigation Hervorhebung */
.nav-links a.active {
    color: #007bff;
    font-weight: bold;
}

.produkt-beschreibung {
    padding: 0.5rem 0;
    text-align: left;
}

.produkt-beschreibung .preis {
    font-size: 1.25rem;
    font-weight: bold;
    color: #007bff;
    text-align: center;
    margin: 0.5rem 0;
}

.produkt-beschreibung .details {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.produkt-beschreibung .features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.produkt-beschreibung .features li {
    font-size: 0.85rem;
    color: #444;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.produkt-beschreibung .features li::before {
    content: "✓";
    color: #007bff;
    position: absolute;
    left: 0;
}

.produkt-karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
} 