body {
    font-family: "Segoe UI", sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #2c2c2c;
}

nav {
    background: #2c2c2c;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
nav a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
nav a:hover {
    color: #bfbfbf;
}

footer {
    text-align: center;
    padding: 20px;
    background: #e0e0e0;
    color: #555;
    margin-top: 40px;
}

.produkt-einleitung {
    background: #dedede;
    text-align: center;
    padding: 20px;
}

h1, h2 {
    text-align: center;
    color: #1e1e1e;
}

.produkt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

.produkt {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.produkt:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.produkt img {
    max-width: 100%;
    height: 150px;
    border-radius: 10px;
}

.button, .anfrage-button {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}
.button:hover, .anfrage-button:hover {
    background-color: #1a1a1a;
}

.produkt-detail-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 2em auto;
    gap: 2em;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.produkt-detail-bilder {
    flex: 1 1 300px;
}

.produkt-detail-bilder .hauptbild img {
    width: 450px;
	height: 450px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.produkt-detail-bilder .weitere-bilder {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.produkt-detail-bilder .weitere-bilder img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}

.produkt-detail-bilder .weitere-bilder img:hover {
    transform: scale(1.1);
}

.produkt-detail-info {
    flex: 1 1 300px;
}

.produkt-detail-info h2 {
    margin-top: 0;
}

.produkt-detail-info .preis {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c2c2c;
    margin: 20px 0;
}

.anfrage-formular {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.anfrage-formular label {
    grid-column: span 2;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.anfrage-formular input[type="text"],
.anfrage-formular input[type="email"],
.anfrage-formular textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    grid-column: span 2;
    font-size: 1rem;
}

.anfrage-formular textarea {
    resize: vertical;
}

.anfrage-formular button {
    grid-column: span 2;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background-color: #2c2c2c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.anfrage-formular button:hover {
    background-color: #1a1a1a;
}

.meldung {
    text-align: center;
    background-color: #e3f2fd;
    color: #1a3c5a;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem auto;
    max-width: 600px;
}

.fehler {
    text-align: center;
    background-color: #fdecea;
    color: #a94442;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem auto;
    max-width: 600px;
}

.pflichtfeld {
    color: red;
    font-weight: bold;
    margin-left: 4px;
}

.kalender-bereich {
    white-space: nowrap;
}

.kategorien-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 20px;
}

.kategorie-box {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.kategorie-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.kategorie-box img {
    max-width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.kategorie-box h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #1e1e1e;
}
