@font-face {
  font-family: 'Pacifico-Regular';
  src: local('Pacifico-Regular'),
       url('fonts/Pacifico-Regular.ttf') format('ttf');
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin: 8px;
	background-color: #0d140c;
	color: #e5cf93;
}

#wrapper {
	max-width: 1200px;
	margin: auto;
}

h1 {
    margin-bottom: 20px;
	font-family: Pacifico-Regular;
	color: #287a27;
}


/* --- Akkordeon --- */
.accordion-item {
    border: 0px solid #aaa;
    margin-bottom: 10px;
}
.accordion-header {
    padding: 12px;
    background: #20381f;
    cursor: pointer;
    font-weight: bold;
	color: #e5cf93;
}
.accordion-content {
    display: none;
    padding-top: 8px;
}
.accordion-content.active {
    display: block;
}

/* --- Grid für Produkte --- */
.produkt-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
@media (min-width: 480px) {
    .produkt-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}
@media (min-width: 768px) {
    .produkt-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
@media (min-width: 1024px) {
    .produkt-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.produkt-box {
    border: 1px solid #2a5b29;
    padding: 4px;
	padding-bottom: 12px;
    text-align: center;
    background: #20381f;
    font-size: 0.6rem;
}
.produkt-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.produkt-box h3 {
    font-size: 1rem;
    margin: 5px 0;
}
.produkt-box p {
    font-size: 0.75rem;
    margin: 3px 0;
}



/* --- Submit Button --- */
form button[type="submit"] {
    font-size: 1.2rem;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    background-color: #e5cf93;
    color: #20381f;
    border: none;
    transition: background 0.3s;
}
form button[type="submit"]:hover {
    background-color: #e2b850;
}

.but-zurueck  {
    font-size: 1.2rem;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    background-color: #919090;
    color: #20381f;
    border: none;
    transition: background 0.3s;
}

.info-klein {
	font-size: 0.8rem;
}

@media (max-width: 480px) {
    form button[type="submit"] {
        font-size: 1.4rem;
        padding: 14px 28px;
    }
}





/* Produktübersicht kompakt */
.produkt-liste {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
    font-size: 0.85rem;
}
.produkt-liste th, .produkt-liste td {
    border: 1px solid #2a5b29;
    padding: 4px 6px;
    text-align: center;
}
.produkt-liste th {
    background: #20381f;
}
@media (max-width: 762px) {
    .produkt-liste {
        font-size: 0.8rem;
    }
    .produkt-liste th, .produkt-liste td {
        padding: 3px 4px;
    }
}

/* Formularfelder */
/* form input[type="text"] .review,
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form button {*/
#kunde_name, #kunde_email, #kunde_telefon {
    display: block;       /* eigene Zeile */
    width: 100%;
    max-width: 400px;     /* Desktop max */
    margin-bottom: 12px;
    box-sizing: border-box;
    font-size: 1.2rem;
    padding: 10px;
    border: 0px solid #ccc;
    border-radius: 6px;
	background-color: rgba(42,91,41,0.80);
	color: #eae7cc;
}

/* Checkboxen */
form label {
    display: block;       /* jede Checkbox in eigener Zeile */
    margin-bottom: 12px;
    font-size: 1rem;
}
form label input[type="checkbox"] {
    width: auto;
    height: auto;
    transform: scale(1.7); /* skaliert die Checkbox 1.5-fach */
    margin-right: 8px;     /* Abstand zwischen Checkbox und Text */
    vertical-align: middle; /* mittig zur Textlinie */
	font-size: 0.6rem;
}


/* --- Counter Buttons --- */
.counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* Abstand zwischen Buttons und Feld */
    margin-top: 8px;
}
.counter input {
    width: 30px;  /* schmaler */
    font-size: 1rem;
    text-align: center;
    padding: 7px 2px 7px 2px;
}
.counter button {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    background-color: #e5cf93;
    color: #20381f;
    border: none;
	border-radius: 2px;
    transition: background 0.3s;
}
.counter button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.counter button:hover:enabled {
    background-color: #e2b850;
}
@media (max-width: 480px) {
    .counter input {
        width: 50px;
        font-size: 1.2rem;
    }
    .counter button {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* Standardzustand: deaktiviert */
#weiterButton:disabled {
    background-color: #ccc;  /* hellgrau */
    color: #666;             /* dunkleres Grau für Text */
    cursor: not-allowed;
    opacity: 0.6;            /* leicht transparent */
}

/* Aktiv: normale Farbe */
#weiterButton {
    background-color: #28a745; /* z.B. Grün */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
}

/* Optional: Hover-Effekt, nur wenn aktiv */
#weiterButton:not(:disabled):hover {
    background-color: #218838; /* dunkleres Grün */
}