* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    background: #f1e3cc;
    color: #21180f;
    line-height: 1.5;
}

/*Header*/
.site-header {
    width: 100%;
    height: 76px;
    background: #f5eee0;
    border-bottom: 1px solid rgba(65, 45, 25, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.28s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header .header-inner {
    height: 76px;
    padding-left: 1.5rem;
    padding-right: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
    transform: translateX(10px);
}

.nav-list {
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 0.5rem 0;
    background: #f5eee0;
    border-top: 1px solid rgba(65, 45, 25, 0.12);
    border-bottom: 1px solid rgba(65, 45, 25, 0.18);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.nav-list.is-open {
    display: flex;
}

.nav-list li {
    width: 100%;
}

.nav-list a,
.nav-dropdown-toggle {
    width: 100%;
    display: block;
    padding: 1rem 2rem;
    color: #2f2418;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight:600;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active,
.nav-dropdown-toggle:hover {
    color: #3f7b2a;
    background: #EADCBF;
    text-decoration: underline;
}

.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    display: none;
    list-style: none;
    width: 100%;
    background: #efe2c9;
}

.nav-item-dropdown.is-open .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    padding: 0.85rem 2.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.logo img {
    height: 58px;
}

.site-header .header-inner .header-right .logo img {
    height: 65px;
    max-height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Burger Button */
.nav-toggle {
    display: flex !important;
    width: 54px;
    height: 54px;
    position: relative;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 4px;
    background: #6b9d3a;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-toggle span:nth-child(1) {
    transform: translate(-50%, -14px);
}

.nav-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
    transform: translate(-50%, 10px);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translate(-85%, -50%) rotate(90deg);
}

.nav-toggle.is-open span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translate(-15%, -50%) rotate(90deg);
}

/*Index*/
/*Abschnitt 1*/
.hero {
    position: relative;
    width: 100%;
    background-image: url("images/hero_hintergrund.jpeg");
    background-repeat: no-repeat;
    background-position: center center;
    aspect-ratio: 16 / 9;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 238, 224, 0.18);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
    margin-left: 1rem;
}

.hero-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    line-height: 1.05;
    color: #1f160f;
    font-weight: 800;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.75);
}

.hero-content p {
    margin-top: 0.75rem;
    background-image: url("images/holz.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    color: #fdf7e8;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0.75rem 0;
    min-width: 230px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
}

/*Abschnitt 2*/
.wir {
    padding: 3rem 1.5rem;
    background: #DDCCAD;
}

.wir-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin: 0 auto;
    max-width: 1024px;
}

.wir-left {
    width: 100%;
    max-width: 360px;
}

.wir-left h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #11260C;
}

.wir-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.wir-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}


.wir-text {
    width: 100%;
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.65;
    text-align: left;
}

.wir-text p + p {
    margin-top: 1rem;
}

/*Produkte*/
.produkte {
    position: relative;
    background-image: url("images/holz.png");
    background-repeat: repeat;
    background-size: 100%;
    padding: 3rem 1.5rem;
}

.produkte::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 38, 12, 0.12);
    pointer-events: none;
}

.produkte-text {
    max-width: 900px;
    margin: 0 auto;
}

.produkte h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #11260C;
    position: relative;
    z-index: 1;
}

.produkte-grid {
    width: min(1024px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.produkte-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: #f5eee0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
}

.produkte-bild {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.produkte-bild img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-content {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #11260C;
}

.product-content p {
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.6;
}

.product-btn {
    align-self: center;
    display: inline-block;
    background: #11260C;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top:auto;
}

.product-btn:hover {
    background: #245f1d;
    transform: translateY(-2px);
}

/*Karte*/
.map {
    padding: 2rem 1.5rem;
    max-width:1200px;
    margin:0 auto;
}

.map h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.map-wrapper {
    width: 100%;
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #e9d7b9;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    position: relative;
}

#map-placeholder {
    min-height: 360px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#map-placeholder button,
.cookie-buttons button,
.cookie-settings button {
    border: none;
    background: #2f7d25;
    color: white;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

#map {
    width: 100%;
    height: 360px;
    display: none;
}

.map-text {
    margin: 2rem auto 0;
    font-size: 1.1rem;
    text-align: center;
}

/*Footer*/
.footer-all {
    background: #f5eee0;
    border-top: 1px solid rgba(245, 238, 224, 0.18);
}

.footer-content {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
}

.footer-logo img {
    width: 90px;
    height: auto;
    display: block;
}

.footer-links h3 {
    margin-bottom: 0.8rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #8ba05e;
}

.footer-links p,
.footer-links li,
.footer-links a {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #11260c;
    text-decoration: none;
}

.footer-links p + p,
.footer-links li + li {
    margin-top: 0.35rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a:hover,
.footer-links a.active {
    color: #d8c59f;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.icon {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
    color: #8ba05e;
}

.icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-bottom {
    padding: 1rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(245, 238, 224, 0.16);
    color: #f5eee0;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

/*Unsere Produkte*/
.produkt-unterseite {
    background: #d8e0c8;
    padding: 2rem 1.5rem;
}

.produkt-unterseite h2{
    font-size:1.7rem;
    padding-bottom:0.5rem;
}

.produkt-unterseite p{
    padding-bottom:2rem;
}

.produkt-kategorie h2{
    font-size:1.5rem;
    padding-bottom:0.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    padding-bottom: 0;
}

.produkt-bild {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.produkt-bild img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#saisonal{
    padding-bottom:2rem;
}

#dauerhaft {
    padding-top: 2rem;
}

.produkt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1600px;
}

.produkt-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background: #f5eee0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
}

/*Über uns*/
.about-hero {
    background: #d8e0c8;
    padding: 3rem 1.5rem;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-kicker {
    margin-bottom: 0.5rem;
    color: #6b8f3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.about-hero h1 {
    max-width: 760px;
    margin-bottom: 1rem;
    color: #11260C;
    font-size: 2rem;
    line-height: 1.15;
}

.about-hero p {
    max-width: 820px;
    color: #21180f;
    font-size: 1rem;
    line-height: 1.7;
}

.about-section {
    background: #DDCCAD;
    padding: 3rem 1.5rem;
}

.about-layout {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-bottom: 1rem;
    color: #11260C;
    font-size: 1.8rem;
  	text-align: center;
    margin:0 auto;
}

.about-text p {
    color: #21180f;
    font-size: 1rem;
    line-height: 1.7;
}

.about-text p + p {
    margin-top: 1rem;
}

.about-values {
    background: #f1e3cc;
    padding: 3rem 1.5rem;
}

.about-values-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.about-values h2 {
    margin-bottom: 1.5rem;
    color: #11260C;
    font-size: 1.8rem;
    text-align: center;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-value-card {
    background: #f5eee0;
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.about-value-card h3 {
    margin-bottom: 0.6rem;
    color: #11260C;
    font-size: 1.3rem;
}

.about-value-card p {
    color: #21180f;
    line-height: 1.6;
}

.about-gallery {
    background: #d8e0c8;
    padding: 3rem 1.5rem;
}

.about-gallery h2 {
    max-width: 1024px;
    margin: 0 auto 1.5rem;
    color: #11260C;
    font-size: 1.8rem;
}

.about-gallery-grid {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-gallery-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

/*Kontakt*/
.kontakt-hero {
    background: #d8e0c8;
    padding: 3rem 1.5rem;
}

.kontakt-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.kontakt-kicker {
    margin-bottom: 0.5rem;
    color: #6b8f3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.kontakt-hero h1 {
    max-width: 760px;
    margin-bottom: 1rem;
    color: #11260C;
    font-size: 2rem;
    line-height: 1.15;
}

.kontakt-hero p {
    max-width: 820px;
    color: #21180f;
    font-size: 1rem;
    line-height: 1.7;
}

.kontakt-section {
    background: #f1e3cc;
    padding: 3rem 1.5rem;
}

.kontakt-grid {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.kontakt-card {
    background: #f5eee0;
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.kontakt-icon {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 1rem;
    color: #8ba05e;
}

.kontakt-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.kontakt-card h2 {
    margin-bottom: 0.6rem;
    color: #11260C;
    font-size: 1.3rem;
}

.kontakt-card p,
.kontakt-card a {
    color: #21180f;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
}

.kontakt-card a:hover {
    color: #3f7b2a;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.kontakt-form-section {
    background: #DDCCAD;
    padding: 3rem 1.5rem;
}

.kontakt-form-layout {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.kontakt-form-text h2 {
    margin-bottom: 1rem;
    color: #11260C;
    font-size: 1.8rem;
}

.kontakt-form-text p {
    color: #21180f;
    line-height: 1.7;
}

.kontakt-hinweis {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.kontakt-form {
    background: #f5eee0;
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: #11260C;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(33, 24, 15, 0.22);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    background: #fffaf0;
    color: #21180f;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(139, 160, 94, 0.45);
    border-color: #8ba05e;
}

.kontakt-submit {
    border: none;
    background: #11260C;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
}

.kontakt-submit:hover {
    background: #245f1d;
    transform: translateY(-2px);
}

/*Partner*/
.partner-section {
    background: #f1e3cc;
    padding: 3rem 1.5rem;
}

.partner-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.partner-text {
    max-width: 760px;
    margin-bottom: 2rem;
}

.partner-kicker {
    margin-bottom: 0.5rem;
    color: #6b8f3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.partner-text h2 {
    margin-bottom: 1rem;
    color: #11260C;
    font-size: 1.8rem;
}

.partner-text p {
    color: #21180f;
    font-size: 1rem;
    line-height: 1.7;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.partner-card {
    background: #f5eee0;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    width: 100%;
    height: 150px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #d8e0c8;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.partner-card h3 {
    margin-bottom: 0.5rem;
    color: #11260C;
    font-size: 1.25rem;
}

.partner-card p {
    color: #21180f;
    line-height: 1.6;
}

.kontakt-map-section {
    background: #d8e0c8;
    padding: 3rem 1.5rem;
}

.kontakt-map-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.kontakt-map-inner h2 {
    margin-bottom: 1.5rem;
    color: #11260C;
    font-size: 1.8rem;
}

/*Impressum / Rechtliche Seiten*/
.legal-page {
    background: #d8e0c8;
    padding: 3rem 1.5rem;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #f5eee0;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.legal-content h1 {
    margin-bottom: 0.75rem;
    color: #11260C;
    font-size: 2rem;
}

.legal-intro {
    margin-bottom: 2rem;
    color: #6b8f3c;
    font-weight: 700;
}

.legal-block {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(33, 24, 15, 0.14);
}

.legal-block + .legal-block {
    margin-top: 1.5rem;
}

.legal-block h2 {
    margin-bottom: 0.6rem;
    color: #11260C;
    font-size: 1.25rem;
}

.legal-block p {
    color: #21180f;
    line-height: 1.7;
}

.legal-block a {
    color: #3f7b2a;
    font-weight: 700;
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/*Datenschutzerklärung*/
.privacy-hero {
    background: #d8e0c8;
    padding: 3rem 1.5rem 2rem;
}

.privacy-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.privacy-hero .section-kicker {
    margin-bottom: 0.5rem;
    color: #6b8f3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.privacy-hero h1 {
    margin-bottom: 1rem;
    color: #11260C;
    font-size: 2rem;
    line-height: 1.15;
}

.privacy-hero p {
    max-width: 820px;
    margin: 0 auto;
    color: #21180f;
    font-size: 1rem;
    line-height: 1.7;
}

.privacy-page {
    background: #f1e3cc;
    padding: 2rem 1.5rem;
}

.privacy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.privacy-toc {
    background: #11260C;
    color: #f5eee0;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.privacy-toc h2 {
    margin-bottom: 1rem;
    color: #8ba05e;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: 1.4rem;
}

.privacy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-toc li + li {
    margin-top: 0.7rem;
}

.privacy-toc a {
    color: #f5eee0;
    text-decoration: none;
    font-size: 0.95rem;
}

.privacy-toc a:hover {
    color: #d8e0c8;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.privacy-content {
    display: grid;
    gap: 1.3rem;
}

.privacy-card {
    position: relative;
    background: #f5eee0;
    border-radius: 18px;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.privacy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #8ba05e;
}

.privacy-number {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #6b8f3c;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.privacy-card h2 {
    margin-bottom: 0.7rem;
    color: #11260C;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: 1.35rem;
}

.privacy-card p {
    color: #21180f;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    margin: 0.5rem 0 1rem 1.3rem;
}

.privacy-list li {
    margin-bottom: 0.45rem;
    color: #21180f;
    font-size: 0.95rem;
    line-height: 1.6;
}

.privacy-list li::marker {
    color: #8ba05e;
}

.privacy-card a {
    color: #3f7b2a;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.privacy-card a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.privacy-date {
    background: #11260C;
    color: #f5eee0;
}

.privacy-date::before {
    background: #8ba05e;
}

.privacy-date h2,
.privacy-date p {
    color: #f5eee0;
}

/*Cookie Seite*/
.cookie-page {
    background: #d8e0c8;
    padding: 3rem 1.5rem;
}

.cookie-page-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-kicker {
    margin-bottom: 0.5rem;
    color: #6b8f3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.cookie-page h1 {
    margin-bottom: 1rem;
    color: #11260C;
    font-size: 2rem;
    line-height: 1.15;
}

.cookie-intro {
    max-width: 780px;
    margin-bottom: 2rem;
    color: #21180f;
    font-size: 1rem;
    line-height: 1.7;
}

.cookie-settings-card,
.cookie-info-card {
    background: #f5eee0;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.cookie-info-card {
    margin-top: 1.5rem;
}

.cookie-settings-card h2,
.cookie-info-card h2 {
    margin-bottom: 1rem;
    color: #11260C;
    font-size: 1.5rem;
}

.cookie-option {
    padding: 1.2rem 0;
    border-top: 1px solid rgba(33, 24, 15, 0.14);
}

.cookie-option:last-of-type {
    border-bottom: 1px solid rgba(33, 24, 15, 0.14);
}

.cookie-option-text h3 {
    margin-bottom: 0.4rem;
    color: #11260C;
    font-size: 1.15rem;
}

.cookie-option-text p,
.cookie-info-card p {
    color: #21180f;
    line-height: 1.7;
}

.cookie-info-card p + p {
    margin-top: 1rem;
}

.cookie-info-card a {
    color: #3f7b2a;
    font-weight: 700;
    text-decoration: none;
}

.cookie-info-card a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.cookie-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    color: #11260C;
    font-weight: 700;
    cursor: pointer;
}

.cookie-switch input {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #3f7b2a;
}

.cookie-switch.disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

.cookie-page-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cookie-page-buttons button {
    border: none;
    background: #11260C;
    color: #fff;
    padding: 0.75rem 1.3rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
}

.cookie-page-buttons button:hover {
    background: #245f1d;
    transform: translateY(-2px);
}

.cookie-page-buttons button:nth-child(2) {
    background: #8a6a42;
}

.cookie-page-buttons button:nth-child(3) {
    background: #6b5b48;
}

/*Cookie Banner*/
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    width: min(680px, calc(100% - 2rem));
    background: #f5eee0;
    color: #21180f;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    z-index: 2000;
    display: none;
}

.cookie-banner a {
    color: #2f7d25;
    text-decoration: none;
    font-weight: 700;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-buttons button:nth-child(2) {
    background: #8a6a42;
}

.cookie-buttons button:nth-child(3) {
    background: #6b5b48;
}

.cookie-settings {
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 2100;

    width: min(380px, calc(100% - 2rem));
    background: #f5eee0;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.cookie-settings h3 {
    margin-bottom: 1rem;
}

.cookie-settings label {
    display: block;
    margin-bottom: 0.75rem;
}

@media (min-width: 520px) {
    /*Navigationsleiste*/
    .nav-toggle {
        display: none !important;
    }

    .main-nav {
        height: 100%;
    }

    .nav-list {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        position: static;
        width: auto;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-list li {
        width: auto;
    }

    .nav-list a {
        width: auto;
        padding: 0.4rem 0;
        font-size: 1rem;
        background: transparent;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: transparent;
        color: #3f7b2a;
        text-decoration: underline;
        text-underline-offset: 6px;
    }

    /*Index*/
    .hero-content h1 {
        font-size: 2rem;
    }

    .wir-text {
        padding-left: 1.5rem;
    }

    /*Footer*/
    .footer-content {
        grid-template-columns: 1fr 1fr;
        column-gap: 3rem;
        row-gap: 2rem;
        align-items: start;
    }

    .footer-logo {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-logo img{
        width: 120px;
        height: auto;
    }

    .footer-hours {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-contact {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-legal {
        grid-column:2;
        grid-row: 2;
    }

    /*Produkte*/
    .produkt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .produkt-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .product-content {
        padding: 1.2rem;
    }

    /*Über uns*/
    .about-values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-gallery-grid img {
        height: 190px;
    }

    /*Kontakt*/
    .kontakt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

    /* =========================
   Desktop ab 701px
========================= */

@media (min-width: 700px) {
    .site-header {
        transform: translateY(0) !important;
    }

    .nav-toggle {
        display: none !important;
    }

    .main-nav {
        height: 100%;
    }

    .nav-list {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 1.8rem;
        position: static;
        width: auto;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-list li {
        width: auto;
    }

    .nav-list a,
    .nav-dropdown-toggle {
        width: auto;
        padding: 0.4rem 0;
        font-size: 1rem;
        font-weight:700;
        background: transparent;
    }

    .nav-list a:hover,
    .nav-list a.active,
    .nav-dropdown-toggle:hover {
        background: transparent;
        color: #3f7b2a;
        text-decoration: underline;
        text-underline-offset: 6px;
    }

    .nav-item-dropdown {
        position: relative;
    }

    .nav-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 230px;
        padding: 0.5rem 0;
        background: #f5eee0;
        border: 1px solid rgba(65, 45, 25, 0.18);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
        z-index: 1001;
    }

    .nav-item-dropdown:hover .nav-dropdown,
    .nav-item-dropdown:focus-within .nav-dropdown,
    .nav-item-dropdown.is-open .nav-dropdown {
        display: block;
    }

    .nav-dropdown a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    /*Index*/
    .hero {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 3rem 4rem;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.3rem;
        min-width: 280px;
    }

    .produkte-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
        gap: 2rem;
        align-items: stretch;
    }

    .produkte-card {
        max-width: none;
        margin: 0;
    }

    .wir {
        padding: 4rem 2rem;
    }

    .wir-layout {
        flex-direction: row;
        gap: 2.5rem;
        align-items: center;
    }

    .wir-left {
        max-width: 360px;
        flex: 0 0 360px;
    }

    .wir-image {
        max-width: 320px;
    }

    .wir-text {
        flex: 1;
        font-size: 1.1rem;
    }

    /*Über uns*/
    .about-hero {
        padding: 4rem 2rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-section {
        padding: 4rem 2rem;
    }

    .about-layout {
        flex-direction: row;
        align-items: center;
    }

    .about-image {
        flex: 0 0 42%;
    }

    .about-text {
        flex: 1;
    }

    .about-values,
    .about-gallery {
        padding: 4rem 2rem;
    }

    /*Kontakt*/
    .kontakt-hero {
        padding: 4rem 2rem;
    }

    .kontakt-hero h1 {
        font-size: 2.5rem;
    }

    .kontakt-section,
    .kontakt-form-section,
    .kontakt-map-section {
        padding: 4rem 2rem;
    }

    .kontakt-form-layout {
        grid-template-columns: 0.8fr 1.2fr;
        align-items: start;
    }

    /*Impressum*/
    .legal-page {
        padding: 4rem 2rem;
    }

    .legal-content {
        padding: 3rem;
    }

    .legal-content h1 {
        font-size: 2.4rem;
    }

    /*Datenschutz*/
    .privacy-hero {
        padding: 4rem 2rem 2.5rem;
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-page {
        padding: 3rem 2rem;
    }

    .privacy-card {
        padding: 2rem;
    }

    /*Cookie-Seite*/
    .cookie-page {
        padding: 4rem 2rem;
    }

    .cookie-settings-card,
    .cookie-info-card {
        padding: 2rem;
    }

    .cookie-page h1 {
        font-size: 2.5rem;
    }

    .cookie-option {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-switch {
        margin-top: 0;
        white-space: nowrap;
    }
}

@media (min-width:900px){
    /*Navigationsleiste*/
    .nav-list a,
    .nav-dropdown-toggle {
        font-size: 1.1rem;
    }

    /*Footer*/
    .footer-content {
        grid-template-columns: auto 1fr 1fr 1fr;
        column-gap: 4rem;
        row-gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-logo {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-logo img {
        width: 120px;
        height:auto;
    }

    .footer-hours {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-contact {
        grid-column: 3;
        grid-row: 1;
    }

    .footer-legal {
        grid-column: 4;
        grid-row: 1;
    }

    /*Produkte*/
    .produkt-unterseite{
        padding-left:3rem;
        padding-right:3rem;
    }

    .produkt-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .produkt-card {
        max-width: 420px;
        margin: 0;
    }

    /*Kontakt*/
    .partner-section {
        padding: 4rem 2rem;
    }

    .partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .partner-logo {
        height: 130px;
    }

    /*Datenschutz*/
    .privacy-inner {
        grid-template-columns: 280px 1fr;
        align-items: start;
    }

    .privacy-toc {
        position: sticky;
        top: 95px;
    }

    .privacy-content {
        gap: 1.5rem;
    }
}

@media (min-width:1024px){
    .hero {
        border-radius: 12px;
    }
}


    /* =========================
   Große Bildschirme
========================= */

@media (min-width: 1200px) {
    /*Navigationsleiste*/
    .nav-list a,
    .nav-dropdown-toggle {
        font-size: 1.2rem;
    }

    .logo img {
        margin-right: 1.5rem;
    }

    /*Index*/
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.6rem;
        padding:0.75rem;
    }

    /*Produkte*/
    .produkt-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }

    .produkt-card {
        max-width: 420px;
        margin: 0;
    }
}
