/* Reset */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
/* Allgemein */
body {
    font-family: Arial, sans-serif;
   margin: 0px;
    padding: 0px;
    color: #333;

}
/* HEADER GRUNDSTRUKTUR */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
	margin: 0px;
	top: 0px;
    width: 100%;
	background: #fff;
    z-index: 99999;
    /* Entferne display: flex hier, damit die shop-actions die volle Kontrolle haben */
}


/* LOGO */
.logo {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}
.icon-label {
    font-size: 12px;
    white-space: nowrap;
	
}
@media (max-width: 768px) {
    .icon-label {
        display: none;
    }

    .icon-button {
        min-width: auto;
    }
}

.logo-main {
    font-size: 20px;
    font-weight: bold;
    color: #556F36;
	gap: 100px;
	margin-right:200px;
}
@media (max-width: 768px) {
    .logo-main {
        display:none;
    }
}
/* RECHTE SEITE */
.shop-actions {
    max-width: 1200px; /* Begrenzt die Breite auf Desktop für bessere Optik */
    margin: 0 auto;    /* Das zentriert den gesamten Block im Header */
    padding: 10px 20px;
    display: flex;
    justify-content: center; /* Zentriert die Icons und Suche horizontal */
    align-items: center;     /* Zentriert sie vertikal */
    gap: 30px;               /* Abstand zwischen den Elementen */
}
.search-box input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    width: 300px; /* Etwas schmaler für bessere Zentrierung */
    height: 100%;
    box-sizing: border-box;
}
/* SUCHFELD */
/* Verhindert, dass die Suche den Platz wegdrückt */
.search-box {
    display: flex;
    align-items: center;
    height: 41px; /* Einheitliche Höhe */
}
.search-box button {
    padding: 9px 20px;
    border: none;
    background: #556F36;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
/* ICONS */
.icon-button {
     font-size: 22px;
    text-decoration: none;
    color: #333;
    position: relative;
    display: inline-block;
}
@media (max-width: 768px) {
    .shop-actions {
        flex-wrap: wrap;       /* Erlaubt den Umbruch für die Suche */
        justify-content: space-around; /* Icons verteilen sich gleichmäßig */
        gap: 10px;
        padding: 10px;
    }

    .search-box {
        order: 2;              /* Suche nach unten */
        flex: 0 0 100%;        /* Volle Breite für die Suche */
        margin-top: 10px;
    }

    .search-box input {
        width: 100%;           /* Suche füllt die Zeile */
        min-width: 0;          /* Verhindert Overflow */
    }

    .icon-label {
        display: none;         /* Labels auf Mobile ausblenden */
    }
}
/* ===================== MOBILE ANPASSUNGEN ===================== */


/* MERKZETTEL ICON */
.icon-button.heart {
    font-size: 24px;  /* Größe des Herz-Icons */
    color: #333;  /* Textfarbe */
}

.icon-button.heart:hover {
    color: #556F36;  /* Hover-Effekt (grün) */
}
/* LOGIN BUTTON */
.login-btn {
    font-size: 22px;
    color: #333;

}

.login-btn:hover {
    color: #556F36;  /* Grüner Hover-Effekt */
}
.login-panel {
    position: absolute;
    top: 110%; /* Etwas mehr Abstand zum Header */
    left: 20%;
    width: 380px; /* Kompakter wirkt oft edler */
    background: #ffffff;
    border: none; /* Rand weg, dafür mehr Schatten */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
    transform: translateY(0);
}

.login-panel h2 {
    margin-top: 0;
    font-size: 1.4em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Eingabefelder auf 100% Breite */
#login-form input[type="text"],
#login-form input[type="password"] {
    padding: 12px;
    margin: 8px 0;
    width: 100%; /* Vorher 70%, 100% sieht moderner aus */
    border-radius: 8px;
    border: 1px solid #ddd;
    box-sizing: border-box; /* Wichtig bei 100% Breite */
    background: #fdfdfd;
    transition: border-color 0.2s;
}

#login-form input:focus {
    border-color: #556F36;
    outline: none;
    background: #fff;
}

/* Checkbox & Label Fix */
.remember-wrap {
    margin: 15px 0;
}

.remember-wrap label {
    display: flex;
    align-items: center; /* Vertikale Zentrierung */
    gap: 8px; /* Exakter Abstand zwischen Box und Text */
    cursor: pointer;
    font-size: 0.9em;
    color: #666;
}

.remember-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0; /* Entfernt Browser-Standard-Abstände */
    cursor: pointer;
}

/* Button */
#login-form button {
    width: 100%;
    padding: 12px;
    background-color: #556F36;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

#login-form button:hover {
    background-color: #44592b;
}

#login-form button:active {
    transform: scale(0.98);
}

/* Links modernisieren */
.register-hint {
    text-align: center;
    margin: 15px 0 0 0;
    font-size: 0.85em;
    color: #888;
}

.register-hint a {
    color: #556F36;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.register-hint a:hover {
    color: #333;
    text-decoration: underline;
}

/* Abstände korrigieren */
.login-panel.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}
#passforgot-form input {
    padding: 8px;
    margin: 10px 0;
    width: 70%;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#passforgot-form button {
    padding: 10px 20px;
    background-color: #556F36;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* WARENKORB */
.cart {
    font-size: 24px;
    color: #333;
	position: relative;
}

.cart .cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}


/* ========== Grundlayout ========== */

.main-nav {
    background-color: #556F36;
    padding: 10px;
    position: relative;
    width: 100%;
    z-index: 1000;
}

/* Hauptmenü */
.menu {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
}

/* Hauptkategorien */
.menu > li {
    position: relative;
    margin: 4px 6px;
}
.menu-title {
	display: none;
}
.menu > li > a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 3px 4px;
    display: block;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.menu > li > a:hover {
    background-color: #2F3D1D;
}

/* ========== Submenu ========== */

.sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #74944e;
    min-width: 220px;
    padding: 8px 0;
    border-radius: 6px;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Öffnen bei Hover (Desktop) */
.menu > li:hover > .sub-menu {
    display: block;
}

/* Submenu Items */
.sub-menu li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sub-menu li a:hover {
    background: rgba(0,0,0,0.15);
}

/* ========== Hamburger ========== */

.nav-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
}

/* ========== Mobile Layout ========== */

@media (max-width: 768px) {

    .main-nav {
        height: 60px;
        padding: 10px;
    }

    .nav-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: #556F36;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }

    .menu.show {
        display: flex;
    }

    .menu > li {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .menu > li > a {
        padding: 12px 18px;
        font-size: 15px;
        border-radius: 0;
    }

    /* Submenu Mobile */
    .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        background:#74944e;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .sub-menu li a {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* HERO */




.hero-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
/* =========================
   FOOTER
========================= */

.footer {
  background: #f3f5ef; /* leicht getönt */
  color: #374151;
  font-family: system-ui, sans-serif;
  border-top: 1px solid #e2e8d8;
  margin-top: 60px;
}

.footer a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #2F3D1D;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 55px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}

.footer__title {
  color: #2F3D1D;
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  position: relative;
}

.footer__title::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #2F3D1D;
  margin-top: 6px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer__bottom {
  border-top: 1px solid #d6dcc4;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  background: #e9edde;
}

.footer__trust {
  margin-bottom: 8px;
  color: #2F3D1D;
  font-weight: 500;
}

.footer__copyright {
  opacity: 0.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__col {
    border-bottom: 1px solid #d6dcc4;
    padding-bottom: 16px;
  }

  .footer__col:last-child {
    border-bottom: none;
  }
}
.dynamic-content {
    max-width: 1200px;
    width: 100%; /* Wichtig, damit er mitskaliert */
    margin: 0px auto; /* 'auto' entfernen, nur oben/unten Margin */
    padding: 10px;
	margin-bottom: 15px;
	text-align: center;
}
.dynamic-content .content {
    align-items: start;
   
}

.content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center; /* Karten horizontal zentrieren */
    align-items: stretch;
    padding: 20px 10px;
    box-sizing: border-box;
}
@media (max-width: 768px) {

    .content {
        grid-template-columns: 1fr; /* 1 pro Zeile */
        justify-items: center;      /* mittig */
        padding: 15px 10px;
		
    }
	.product-card {
        width: 100%;
        max-width: 320px; /* mittig, nicht gestreckt */
	}
}	
.section {
    min-width: 250px; /* Die Sektionen nehmen die gesamte Breite ein */
	max-width: 250px; /* Die Sektionen nehmen die gesamte Breite ein */
    background: #fff;
    padding: 20px;
	min-height: 280px;
	max-height: 280px;
	text-align: center;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	position: relative;
	
}

.section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Anpassungen für mobile Geräte */
@media (max-width: 768px) {
    .dynamic-content {
        padding: 10px;
    }

    .section {
        padding: 15px;
    }

    .section h2 {
        font-size: 20px;
    }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
}

.cookie-banner a {
    color: #4caf50;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

#cookie-accept {
    background: #4caf50;
    color: #fff;
}

#cookie-decline {
    background: #777;
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(50px); }
}
/* Modal ist standardmäßig versteckt */
.modal-hidden {
    display: none !important;
}

/* Overlay */
#modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Fenster */
.modal-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    min-width: 300px;
}

.modal-box h2 {
    margin-top: 0;
}

.modal-box input,
.modal-box button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}
/* PRODUKTE */
.products {
    max-width: 1200px;
    margin: 0px auto;
    position: relative;

	overflow: visible;
}
.products h2{
	
  color: #556F36; /* Textfarbe transparent */
  display :inline;
	padding-left:50px;
}

/* Produkt */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
	height: 280px;
    text-align: center;
	position:relative;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.slider-section .product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.product-image img {
    max-height: 150px;
    object-fit: contain;
    margin: 0 auto 10px;
}
.price-block {
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-right: 6px;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #d32f2f;
}

.base-price {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.product-card .title {
    margin: 0 0 4px;
    font-size: 0.85rem;
    line-height: 1.3;
	font-weight:bolder;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.price-box {
    
    position: absolute;
    right: 10px;
    bottom: 10px;

    
}


/* Sichtfenster */
.slider-viewport {
    overflow: hidden;  /* WICHTIG */
    width: 100%;
    position: relative;
    touch-action: pan-y; /* vertikales Scrollen erlaubt */
}

/* Beweglicher Bereich */
.slider-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
}

/* Desktop: 5 sichtbar */
.slide {
    flex: 0 0 17%;
    min-width: 15%;
    box-sizing: border-box;
}


.slider-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.slider-header h2 {
    font-size: 22px;
    color: #2e7d32;
}

.slider-controls {
    display: flex;
    gap: 10px;
}
.slider-btn {
    background: rgba(46, 125, 50, 0.08);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.slider-btn:hover {
    background: rgba(46, 125, 50, 0.18);
}

/* Position */
.slider-btn.prev { left: -25px; }
.slider-btn.next { right: -25px; }

/* Mobile */
@media (max-width: 768px) {
    .slider-viewport {
        overflow-x: auto !important;
        display: block !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        
        /* ÄNDERUNG HIER: */
        touch-action: auto !important; /* Oder 'pan-y' für vertikales Scrollen */
        
        padding: 0 !important; 
    }

    /* Der Track darf NICHT vom JS verschoben werden */
    .slider-track {
        display: flex !important;
        width: max-content !important;
        transform: none !important; /* DAS tötet den JS-Einfluss */
        transition: none !important;
        padding: 0 12.5% !important; /* Schafft Platz für die Zentrierung */
    }

    .slide {
        /* Fixe Breite: 75% vom Bildschirm */
        width: 75vw !important;
        min-width: 75vw !important;
        max-width: 75vw !important;
        flex: 0 0 75vw !important;
        
        scroll-snap-align: center !important;
        margin-right: 15px !important;
        display: block !important;
    }
}
.price {
    font-weight: bold;
    color: #556F36;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background: #556F36;
    color: white;
    text-decoration: none;
}
a.ajax-link {
    text-decoration: none;
}

a.ajax-link span {
    text-decoration: none;
}
.icon-btn {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-user {
    background-image: url("img/icons/user.svg");
}

.icon-user:hover {
    filter: brightness(1.2);
}
.icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.icon-img:hover {
    transform: scale(1.1);
}
#login-form {
    text-align: left;
}

.remember-wrap label {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.remember-wrap input[type="checkbox"] {
    margin: 0;
}
/* ================= REGISTRIERUNG ================= */

.register-box {
    max-width: 620px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
}
@media (max-width: 768px) {
	.register-box {
	max-width: 420px;
	}
}	
.register-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

#register-form {
    display: flex;
    flex-direction: column;
}

#register-form input {
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
	min-width: 300px;
}
#register-form label {
    
    font-size: 11px;
}
#register-form input:focus {
    outline: none;
    border-color: #556F36;
	min-width:300px;
}

#register-form button {
    margin-top: 10px;
    padding: 12px;
    background: #556F36;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
	min-width:300px;
	
}
#register-form select {
	margin-top: 10px;
	margin-bottom: 10px;
    padding: 12px;
	 border-radius: 6px;
    font-size: 14px;
}

#register-form button:hover {
    background: #256628;
}
.variant-list {
    display: block;
    gap: 8px;
    flex-wrap: wrap;
}
.availability-dot {
    font-size: 2rem;
    cursor: help;
}

.status-green { color: #2e7d32; }
.status-yellow { color: #f9a825; }
.status-orange { color: #ef6c00; }
.status-red { color: #c62828; }
.article-staffeln {
    font-size: 0.9rem;
    color: #444;
}
.variant-item {
    display: flex;
	margin-bottom:10px;
    align-items: center;
    gap: 10px;
    border: 1px solid #ccc;
    padding: 16px 10px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap; /* 🔥 verhindert Umbruch */
}

.variant-item.active {
    border-color: #000;
    background: #f3f3f3;
    font-weight: 600;
}

.variant-packung,
.variant-preis {
    font-weight: 600;
}

.variant-sub {
    font-size: 0.8em;
    color: #666;
    font-weight: normal;
}



}
.article {
    max-width: 1000px;
    margin: 40px auto;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.article-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.article-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.article-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.article-number {
    font-size: 0.8em;
    color: #555;
}

.price-unit {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}

.btn-cart {
    padding: 14px;
    font-size: 1.1rem;
    background: #556F36;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.btn-cart:hover {
    background: #223b23;
}
./* Standard (Mobile first) */
.article-grid {
    display: block;
}

.article-info {
    margin-top: 2rem;
	padding-left:70px;
	padding-right: 300px;
	text-align :left;
}


.info-text {
    font-size: 1.05rem;
	min-width: 1000px;
	
    line-height: 1.5;
    white-space: pre-line; /* wichtig für DB-Zeilenumbrüche */
}
/* Desktop */
@media (min-width: 992px) {

    .article-grid {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 2rem;
        align-items: start;
    }

    .article-media {
        max-width: 100%;
    }

    .article-image {
        max-width: 100%;
       max-height: 100%;
        display: block;
    }

    .article-content {
        padding-right: 1rem;
    }
	
}
.article-image-main {
    max-width: 100%;
    max-width: 100%;
    display: block;
}

.article-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.article-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ccc;
}

.article-thumb:hover {
    border-color: #000;
}
.products .product-card,
.products .product-card a {
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 5;
}
.price-tag {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 14px;
    background: #fafafa; /* oder deine Akzentfarbe */
    color: #000;
    font-weight: 600;
    border-radius: 10px;
    font-size: 0.95rem;
}
.aprice-tag {
    margin-top: 10px;
	display: inline-block;
	position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 6px 12px;
    background: red; /* oder deine Akzentfarbe */
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1.1rem;
}
.u_price-tag {
	text-decoration-line: line-through;
	text-decoration-color: red;
	font-size:1.1em;
	position:absolute;
	left:10px;
	bottom:10px;
	font-weight:bolder;
	color: grey;
}

@media (hover: hover) {
    .product-card:hover .price-tag {
        
    }
}
@media (hover: hover) {
    .product-card:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        transform: translateY(-3px);
    }
}
.product-image {
    width: 120px;
    height: 120px;
	min-height: 120px;  
    margin: 0 auto 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
	
}
.price-tag {
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
}

.base-price {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.2;
    margin-top: 2px;
	
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {
    .pagination {
        justify-content: center;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .pagination button {
        flex: 0 0 auto;
    }
}

.pagination button {
    padding: 10px 14px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
}

.pagination button.active {
    border-color: #4caf50;
    background: #f0fff0;
    font-weight: 600;
}
.fracht-marker {
        font-weight: 600;
    margin-right: 4px;
	font-size: 1.0em;
    vertical-align: center;
}
.variant-count {
    font-size: 0.75rem;
    color: #666;
    margin-top: 2px;
	position: absolute;
	left:10px;
}
.breadcrumb {
    font-size: 19px;
    color: #666;
    margin: 10px 0 20px;
    padding: 5px 0;
	text-align: center;
}

.breadcrumb span,
.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 6px;
    color: #aaa;
}
@media (max-width: 768px) {
    .product-card {
        justify-self: center;   /* überschreibt "start" */
        margin: 0 auto;         /* zusätzliche Sicherheit */
    }
	.article-info {
    margin-top: 2rem;
	padding-left:20px;
	padding-right: 10px;
	text-align :left;
}
	.info-text {
		min-width: 330px;
	}
}
#toast-container {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100vw;
	height:80px;
    transform: translateY(-50%);
    z-index: 999999;
    display: flex;
    justify-content: center;   /* 🔥 echte horizontale Zentrierung */
    pointer-events: none;
    padding: 0 12px;
	font-size: 1.6em;
    box-sizing: border-box;
}

#toast-container .toast {
    pointer-events: auto;
    
    padding: 20px 28px;
    border-radius: 12px;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    cursor: pointer;
    text-align: center;
    margin: 10px 0;
    animation: toastFadeIn 0.25s ease;
}
#toast-container > div {
    pointer-events: auto;
	min-width: 400px;
	
	text-align:center;
    max-width: 100%;
}
#toast-container .toast.success { background: #27ae60; font-size: 1.6em;}
#toast-container .toast.error   { background: #c0392b;font-size: 1.6em; }
#toast-container .toast.info    { background: #2f80ed;font-size: 1.6em; }
#toast-container .toast.warning { background: #f39c12;font-size: 1.6em; }

@keyframes toastFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}


/* ===========================
   DESKTOP: MOBILE-MENÜ ALS SIDEBAR (UMSCHALTMODUS)
=========================== */
@media (min-width: 769px) {
	body.force-mobile-menu .menu-title {
		display : block;
		color : #fff;
		padding: 8px;
	}
	
    /* NAV aus dem Flow nehmen, damit nichts nach unten gedrückt wird */
    body.force-mobile-menu .main-nav {
        position: absolute;
        top: var(--nav-offset, 0px);
        left: 0;
        width: 280px;
        background: transparent;
		
		
        z-index: 10000;
    }

    /* Sidebar selbst */
    body.force-mobile-menu .menu {
        display: flex !important;
        flex-direction: column;
        width: 280px;
        background: #556F36;
		border-radius: 8px;
        /* WICHTIG: Desktop-Regeln neutralisieren */
        justify-content: flex-start !important;
        align-items: stretch !important;
        flex-wrap: nowrap !important;
		box-shadow: 0 4px 12px rgb(0 0 0 / 41%), 3px 6px 0px rgba(0, 0, 0, 0.04);
        overflow-y: auto;
		padding: 8px;
    }

    /* Content nach rechts schieben statt nach unten */
    

    /* Submenüs im Mobile-Stil */
    body.force-mobile-menu .sub-menu {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        background: #74944e;
        box-shadow: none;
    }
}

/* ===========================
   UMSCHALT-BUTTON
=========================== */
.layout-toggle {
    position: fixed;
    top: 80px;
    left: 15px;
    z-index: 20000;
    padding: 10px 14px;
    border-radius: 8px;
    background: #556F36;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.layout-toggle:hover {
    background: #4A602F;
}
@media (max-width: 768px) {
	.layout-toggle { 
	display:none;
	}
}
.variant-preis.offer {
    color: #b00020;
    font-weight: 700;
}

.variant-oldprice {
    font-size: 0.8em;
    color: #777;
    text-decoration: line-through;
    margin-left: 4px;
}
.main-preis.offer {
	font-size: 1.6em;
    color: #b00020;
    font-weight: 700;
}

.main-oldprice {
    font-size: 1.2em;
    color: #777;
    text-decoration: line-through;
    margin-left: 4px;
}
.main-price {
	font-size: 1.6em;
	font-weight: 700;
}
.dynamic-content.loading {
    opacity: 0.4;
    pointer-events: none;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
	
}

@media (max-width: 1200px) {
    .product-list { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .product-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .product-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .product-list { grid-template-columns: 1, 1fr; }
}
.price-legal {
    font-size: 0.75rem;
    color: #777;
    margin-top: 6px;
    margin-bottom: 8px;
}
.availability {
    font-size: 0.85rem;
    margin: 6px 0;
    font-weight: 600;
}

.status-green {
    color: #2ecc71;
}

.status-yellow {
    color: #f1c40f;
}

.status-orange {
    color: #e67e22;
}

.status-red {
    color: #c0392b;
}

.btn-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.availability-hint {
    font-size: 0.75rem;
    color: #a00;
    margin-bottom: 8px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.cart-page {
	margin-left:20px;
}
.cart-footer {
    margin-top: 20px;
    text-align: right;
}

.cart-hint {
    font-size: 0.8rem;
    color: #666;
}
.article-row-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.btn-cart {
    width: 100%;
}
.cart-qty-input {
	width : 60px;
	height :26px;
	padding : 3px;
	display:inline;
}
.price-legal {
    font-size: 0.8rem;
    color: #666;
}
@media (max-width: 768px) {

    .cart-table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table th,
    .cart-table td,
    .cart-table tr {
        display: block;
        width: 100%;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 16px;
        padding: 12px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
		vertical-align: middle;
        padding: 6px 0;
        border: none;
        font-size: 0.95rem;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
        flex: 0 0 40%;
    }

    .cart-update-form {
        display: flex;
        align-items: center;
        gap: 6px;
    }

 .qty-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    border: 1px solid #aaa !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: #fff !important;
}

.qty-wrapper input {
    width: 20px !important;
    text-align: center !important;
    border: none !important;
    outline: none !important;
    font-size: 16px !important;
    background: white !important;
}

.qty-btn {
    background: #556F36 !important;
    border: none !important;
    padding: 6px 12px !important;
    cursor: pointer !important;
    font-size: 18px !important;
}

.qty-btn:hover {
    background: #ddd !important;
}

    .cart-update-btn,
    .cart-remove-btn {
        font-size: 1.1rem;
        padding: 6px 10px;
		vertical-align: middle;
    }

    .cart-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .btn-checkout {
        text-align: center;
        font-size: 1.1rem;
        padding: 12px;
    }
}
.cart-summary {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #ddd;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.summary-row.small {
    font-size: 0.85rem;
    color: #666;
}
.cart-warning {
    margin-top: 20px;
    padding: 12px 14px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 6px;
    color: #856404;
    font-size: 0.95rem;
}
.cart-hint {
    font-size: 0.85rem;
    color: #666;
    margin-top: 12px;
    line-height: 1.3;
}
.cart-update-btn,
.cart-remove-btn {
    background: none;
    border: none;
    margin-top: 4px;
    cursor: pointer;
}

.cart-update-btn img,
.cart-remove-btn img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.cart-update-btn:hover img,
.cart-remove-btn:hover img {
    opacity: 1;
}
/* =========================
   MENGENWAHL STYLING
========================= */

.article-row .qty-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #556F36;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.article-row .qty-wrapper input {
    width: 80px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 18px;
	min-height: 36px;
    background: white;
}

.article-row .qty-btn {
    background: #556F36;
    color: white;
    border: none;
    padding: 6px 12px;
	min-height: 36px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.article-row .qty-btn:hover {
    background: #223b23;
}
.news {

    width: 100%;
    margin: 0 auto;
    

}

/* Text über beide Spalten */
.news-text {
    grid-column: 1 / -1;
	margin-top: 5px;
	margin-bottom : 5px;
}

/* Bilderblock ebenfalls über beide Spalten */
.news-images {
    grid-column: 1 / fr;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap:20px;
    
}

.news-images img {
    max-width: 100%;
	
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    
}

@media (max-width: 768px) {
    .news {
        grid-template-columns: 1fr;
    }

    .news-images {
        grid-template-columns: 1fr;
    }
}

.account-dashboard {
    max-width: 800px;
    margin: 0 auto;
}

.account-section {
    background: #f8f8f8;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.account-section h3 {
    margin-top: 0;
	margin-bottom: 6px;
}

.account-hint {
    background: #fff3cd;
    border: 1px solid #ffeeba;
}
/* === Kunden-Dashboard === */

.account-dashboard {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.account-header {
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.account-header h2 {
    margin: 0 0 6px 6px;
    font-size: 1.6em;
}

.account-header p {
    margin: 0;
    color: #555;
    line-height: 1.4;
}

/* === Kacheln === */

.account-menu.tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.tile {
    display: block;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    min-height: 140px;
}

.tile:hover {
    background: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.tile:active {
    transform: translateY(0);
    box-shadow: none;
}

.tile-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.tile h3 {
    margin: 0 0 6px 0;
    font-size: 1.15em;
}

.tile p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
}

/* === Mobile Anpassungen === */

@media (max-width: 480px) {
    .account-header h2 {
        font-size: 1.3em;
    }

    .tile {
        padding: 16px;
    }

    .tile-icon {
        font-size: 1.7em;
    }
}
.account-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.hint {
    color: #666;
    margin-bottom: 20px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
	font-size : 0.8em;
}

.orders-table th,
.orders-table td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.orders-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.status-offen {
    color: #c62828;
    font-weight: 600;
}

.status-bezahlt {
    color: #2e7d32;
    font-weight: 600;
}

.status-unbekannt {
    color: #777;
}
.back-link {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
    color: #555;
}

.back-link:hover {
    text-decoration: underline;
}

.order-meta {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
	text-align : left;
}

.order-meta p {
    margin: 6px 0;
}

.order-comment {
    margin-bottom: 20px;
}

.order-placeholder {
    background: #f9f9f9;
    border: 1px dashed #ccc;
    padding: 16px;
    border-radius: 10px;
    color: #555;
}
.order-totals {
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e0e0e0;
}

.total-row.grand-total {
    font-size: 1.1em;
    font-weight: bold;
    border-top: 2px solid #aaa;
    border-bottom: none;
    padding-top: 10px;
}
.info-grid,
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.form-grid input,
.form-grid select {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.checkbox-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background: #1565c0;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.hidden {
    display: none;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.contact-card {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
	text-align: left;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.contact-card p {
    margin: 6px 0;
    font-size: 14px;
	text-align: left;
}

/* =========================
   Lieferadressen – Karten
   ========================= */

#addresses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.contact-card {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.contact-card p {
    margin: 3px 0;
    font-size: 14px;
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.card-actions form {
    margin: 0;
}

.card-actions button {
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
}

.card-actions button:hover {
    background: #e0e0e0;
}

/* =========================
   Formular
   ========================= */

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 15px 0;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.form-grid input,
.form-grid select {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background: #1565c0;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0d47a1;
}

.hidden {
    display: none !important;
}
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tile {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 18px;
}

.tile h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
}

.tile form label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    margin-bottom: 10px;
}

.tile form input {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.tile form button {
    margin-top: 10px;
}
/* === WARENKORB IM SLIDER-STIL === */

.cart-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    max-width: 1200px;
    margin: 40px auto;
}

.cart-title {
    color: #2e7d32;
    margin-bottom: 25px;
    font-size: 26px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    font-size: 13px;
    color: #777;
    font-weight: normal;
    padding-bottom: 12px;
}

.cart-table td {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}
.cart-qty-input {
    width: 95px;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-align: center;
}

.cart-update-btn,
.cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.cart-update-btn:hover,
.cart-remove-btn:hover {
    opacity: 1;
}
.cart-warning {
    background: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
}

.cart-hint {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}
.cart-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.summary-row.small {
    font-size: 13px;
    color: #777;
}
.checkout-btn {
    margin-top: 20px;
    background: #2e7d32;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.checkout-btn:hover {
    background: #1b5e20;
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .cart-section {
        padding: 20px;
    }

    .cart-title {
        font-size: 22px;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        display: block;
        padding: 15px 0;
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        border: none;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #777;
    }
}
/* =====================================================
   CHECKOUT – GRUNDLAYOUT
   ===================================================== */

#checkout-root {
    margin-top: 10px;
}

#checkout-container{
  max-width: 950px;
  margin: 40px auto;
  padding: 40px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  border:1px solid #e5e7eb;
}

/* =====================================================
   CHECKOUT HEADER / STEPPER
   ===================================================== */

/* =========================
   CHECKOUT STEPPER
========================= */
.checkout-title{
  font-size:26px;
  text-align:center;
  margin-bottom:30px;
  color:#2F3D1D;
}
.checkout-steps{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0;
    max-width:900px;
    margin:40px auto 40px;
}

/* STEP */

.checkout-steps .step{
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:150px;
    position:relative;
    transition:.3s;
}

/* CIRCLE */

.checkout-steps .circle{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#e5e7eb;
    color:#6b7280;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    border:2px solid transparent;
    transition:.25s;
    z-index:2;
}

/* LABEL */

.checkout-steps .label{
    margin-top:10px;
    font-size:14px;
    color:#9ca3af;
    text-align:center;
    transition:.25s;
}

/* CONNECTOR */

.checkout-steps .connector{
    width:80px;
    height:3px;
    background:#e5e7eb;
    margin:0 -6px;
    transition:.3s;
}

/* =========================
   ACTIVE STEP
========================= */

.checkout-steps .step.active .circle{
    background:#2F3D1D;
    color:white;
    transform:scale(1.12);
    box-shadow:0 6px 16px rgba(0,0,0,.15);
}

.checkout-steps .step.active .label{
    color:#2F3D1D;
    font-weight:600;
}

/* =========================
   DONE STEP
========================= */

.checkout-steps .step.done .circle{
    background:#22c55e;
    color:white;
}

.checkout-steps .step.done + .connector{
    background:#22c55e;
}

.checkout-steps .step.done .label{
    color:#22c55e;
    font-weight:600;
}

/* =========================
   HOVER EFFECT
========================= */

.checkout-steps .step:not(.active):hover{
    transform:translateY(-2px);
}

/* =========================
   MOBILE
========================= */

/* MOBIL-OPTIMIERUNG (max-width: 600px) */
@media (max-width: 600px) {
    .checkout-steps {
        display: grid;
        grid-template-columns: 1fr 40px 1fr 40px 1fr; /* Platz für 3 Kreise und 2 Verbinder */
        gap: 5px;
        align-items: start;
    }

    /* Die Verbinder-Linien */
    .checkout-steps .connector {
        height: 2px;
        background: #e5e7eb;
        margin-top: 20px; /* Zentriert die Linie zum Kreis */
        flex: none;
        width: 100%;
    }

    /* Die einzelnen Steps */
    .checkout-steps .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 0; /* Verhindert Overflow */
    }

    /* Die Labels (Texte) unter den Kreisen */
    .checkout-steps .label {
        font-size: 10px; /* Kleinere Schrift für Mobile */
        margin-top: 8px;
        line-height: 1.2;
        word-wrap: break-word;
        width: 100%;
    }

    /* Die Kreise */
    .checkout-steps .circle {
        width: 35px; /* Etwas kleiner auf Mobile */
        height: 35px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}


/* =====================================================
   STEP 1 – ADRESSEN
   ===================================================== */

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 30px;
}

.address-card{
  transition:.2s;
  border:1px solid #e5e7eb;
  padding:10px;
}

.address-card:hover{
  border-color:#2F3D1D;
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.address-card h3 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.address-card address {
    font-style: normal;
    line-height: 1.55;
    color: #333;
    font-size: 14px;
}

.link-button {
    margin-top: 14px;
    padding: 0;
    border: none;
    background: none;
    color: #3b6cff;
    font-size: 13px;
    cursor: pointer;
}

.link-button:hover {
    text-decoration: underline;
}

/* =====================================================
   STEP 2 – ZAHLUNG & VERSAND
   ===================================================== */

/* =========================
   SECTION WRAPPER
========================= */

.checkout-section{
  margin:45px auto;
  max-width:900px;
}

.checkout-section h3{
  font-size:22px;
  margin-bottom:18px;
  color:#2F3D1D;
  font-weight:600;
}


/* =========================
   OPTION GRID
========================= */

.option-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}


/* =========================
   OPTION CARD
========================= */

.option-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:2px solid #e5e7eb;
  border-radius:14px;
  padding:18px;
  cursor:pointer;
  transition:.2s ease;
  background:#fff;
  position:relative;
}

/* Hover */

.option-card:hover{
  border-color:#2F3D1D;
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.08);
}


/* Radio */

.option-card input{
  margin-top:4px;
  transform:scale(1.25);
  accent-color:#2F3D1D;
}


/* Active State */

.option-card:has(input:checked){
  border-color:#2F3D1D;
  background:#f3f5ef;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}


/* Text */

.option-content strong{
  display:block;
  font-size:16px;
  margin-bottom:4px;
}

.option-hint{
  font-size:13px;
  color:#6b7280;
}


/* =========================
   SHIPPING LOGO
========================= */

.ship-logo{
  width:46px;
  height:auto;
  margin-right:8px;
}


/* =========================
   NOTE TEXT
========================= */

.shipping-note{
  margin-top:20px;
  font-size:13px;
  text-align:center;
  color:#6b7280;
}


/* =========================
   BUTTON AREA
========================= */

.checkout-step button{
  margin-top:30px;
}

.btn-primary{
  padding:14px 44px;
  font-size:18px;
  border-radius:10px;
  background:#2F3D1D;
}

.btn-secondary{
  margin-right:12px;
}
/* Wir nutzen flex-direction: row-reverse, um das Logo nach rechts zu schieben */
.option-content.option-ship {
  display: flex;
  flex-direction: row-reverse; 
  justify-content: space-between;
  align-items: center; /* Zentriert Logo und Text vertikal zueinander */
  width: 100%;
}

/* Text-Bereich soll den restlichen Platz einnehmen */
.option-content.option-ship > div {
  flex: 1;
}

/* Das Logo deutlich vergrößern */
.ship-logo {
  width: 80px; /* Vorher 46px - hier kannst du die Größe anpassen */
  height: auto;
  margin-left: 15px; /* Abstand zum Text links */
  margin-right: 0;   /* Vorherigen Margin entfernen */
  object-fit: contain;
}
/* =====================================================
   BUTTONS
   ===================================================== */

.checkout-actions {
    text-align: right;
    margin-top: 20px;
}

.btn-primary{
  font-size:18px;
  padding:14px 42px;
  border-radius:10px;
}

.btn-primary:disabled {
    background: #bbb;
    cursor: not-allowed;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 900px) {
    .address-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .checkout-steps {
        max-width: 100%;
    }

    .checkout-steps .label {
        font-size: 12px;
    }

    .checkout-steps .connector {
        width: 26px;
    }

    #checkout-container {
        padding: 24px 20px;
    }
}
/* STEP 3 – ÜBERSICHT */

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.summary-card {
    border: 1px solid #e4e6eb;
    border-radius: 12px;
    padding: 20px 22px;
    background: #fafafa;
    margin-bottom: 24px;
}

.summary-card h3 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 600;
}

.summary-card address {
    font-style: normal;
    line-height: 1.55;
    font-size: 14px;
    color: #333;
}

.summary-info {
    margin-top: 12px;
    font-size: 14px;
}

.checkout-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.checkout-table th,
.checkout-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e2e5ea;
    text-align: left;
}

.checkout-table th {
    font-weight: 600;
    color: #444;
}

.checkout-table td:last-child,
.checkout-table th:last-child {
    text-align: right;
}
/* Mobile Tabellen korrekt umbrechen */
@media (max-width: 768px) {

    /* Tabelle auf Mobile auflösen */
    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
        width: 100%;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 1rem;
        padding: 0.75rem;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background: #fff;
    }

    td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0.25rem 0;
        white-space: normal;
    }

    td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
        margin-right: 1rem;
        flex: 0 0 40%;
    }

}
@media (max-width: 768px) {

    /* Artikel-Zelle darf volle Breite nutzen */
    td[data-label="Artikel"] {
        display: block;
        width: 100%;
        padding-left: 0;
    }

    /* Falls du ::before als Label nutzt */
    td[data-label="Artikel"]::before {
        display: block;
        margin-bottom: 4px;
        font-weight: 600;
    }

    /* Der eigentliche Text */
    td[data-label="Artikel"] > * {
        display: block;
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 768px) {

    /* Jede Warenkorb-Zeile als Block */
    .checkout-table tr {
        display: block;
        width: 100%;
    }

    /* Jede Zelle untereinander */
    .checkout-table td {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    /* Label oben, Inhalt darunter */
    .checkout-table td::before {
        display: block;
        width: 100%;
        margin-bottom: 4px;
        font-weight: 600;
    }

    /* Artikeltext darf volle Breite */
    .checkout-table td[data-label="Artikel"] {
        width: 100%;
    }

    .checkout-table td[data-label="Artikel"] * {
        display: block;
        width: 100%;
        max-width: 100%;
    }
}



.summary-total {
    text-align: right;
    margin-top: 14px;
    font-size: 16px;
}

.summary-card textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
}

.legal-box {
    background: #fff;
}

.checkbox {
    font-size: 14px;
}

/* Mobile */
@media (max-width: 900px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
}
/* Checkout – Textareas */

.checkout-step textarea {
    min-height: 120px;      /* Standard */
    line-height: 1.45;
    resize: vertical;       /* User darf größer ziehen */
}

/* Anmerkung etwas größer */
.checkout-step .summary-card textarea:not([readonly]) {
    min-height: 140px;
}

/* Rechtstexte deutlich höher */
.checkout-step .legal-box textarea {
    min-height: 180px;
    font-size: 13px;
    background: #f9f9f9;
}
.checkout-actions.between {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-secondary {
    background: #eee;
    border: 1px solid #ccc;
    color: #333;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #e0e0e0;
}
.summary-card.full-width {
    grid-column: 1 / -1;
}

.pay-ship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}
.summary-total {
    font-size: 1.2rem;
    margin-top: 10px;
}

.summary-tax {
    font-size: 0.9rem;
    color: #666;
    margin: 2px 0;
}
.merkzettel-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}


.btn-merk {
   
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.btn-merk img {
    width: 26px;
    height: auto;

}

.btn-merk.active {
   
  
    padding: 0;
   
}
.btn-merk-remove {
    position: absolute;
    bottom: 6px;
    left: 6px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 5;
	
}

.btn-merk-remove img {
    width: 22px;
    height: 22px;
    display: block;
	
}
.merk {
	width:80px;
	position:relative;
	left:20px;
	bottom : 155px;
}
/* =========================================================
   ARTIKEL FORM – OPTISCHE EINFASSUNG (wie Bild 1)
   ========================================================= */

.article-form {
    border: 1px solid #d7dccf;
    border-radius: 10px;
    padding: 22px 22px 26px;
    background: #f8faf5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    margin-top: 12px;
}


/* =========================================================
   VARIANTEN LISTE
   ========================================================= */

.variant-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}


/* =========================================================
   VARIANT ZEILE – TABELLENOPTIK, EINZEILIG
   ========================================================= */

.variant-item {
    position: relative;
    display: grid;
    grid-template-columns:
        18px                    /* Statuspunkt */
        minmax(90px, 1fr)       /* Artikelnummer */
        minmax(100px, 1.2fr)    /* Einheit / Packung */
        auto                    /* Preis */
        auto;                   /* Grundpreis */

    align-items: center;
    column-gap: 16px;

    padding: 16px 18px;
    border: 1px solid #d7dccf;
    border-radius: 6px;
    background: #ffffff;

    font-size: 13px;
    color: #555;
    cursor: pointer;
}


/* Hover */
.variant-item:hover {
    border-color: #9fb07a;
    background: #f7f9f4;
}


/* Aktiv */
.variant-item.active {
    border-color: #5f7d36;
    background: #eef4e6;
}


/* dezente innere Hervorhebung */
.variant-item.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(95,125,54,0.25);
    pointer-events: none;
}


/* =========================================================
   INHALT DER VARIANT ZEILE
   ========================================================= */

/* Statuspunkt */
.variant-item .availability-dot {
    font-size: 18px;
    line-height: 1;
}

/* Artikelnummer */
.variant-nr {
    text-align: left;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

/* Einheit / Packung */
.variant-packung {
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    color: #2b2b2b;
    white-space: nowrap;
}

/* Preis – dominant */
.variant-preis {
    text-align: right;
    font-size: 19px;
    font-weight: 800;
    color: #2f4f1f;
    white-space: nowrap;
}

/* Grundpreis – dezent */
.variant-sub {
    text-align: right;
    font-size: 12px;
    color: #6f6f6f;
    white-space: nowrap;
}


/* =========================================================
   FORM ROWS (MENGE, BUTTON)
   ========================================================= */

.article-row {
    margin-top: 18px;
}

.qty-wrapper {
    margin-top: 6px;
}

.btn-cart {
    margin-top: 22px;
    font-size: 16px;
    padding: 14px;
}


/* =========================================================
   MOBILE ANPASSUNG
   ========================================================= */

@media (max-width: 640px) {

    .variant-item {
        grid-template-columns:
            18px
            1fr
            auto;
        grid-template-rows: auto auto;
        row-gap: 6px;
    }

    .variant-nr {
        grid-column: 2;
    }

    .variant-packung {
        grid-column: 3;
    }

    .variant-preis {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
    }

    .variant-sub {
        grid-column: 3;
        grid-row: 2;
    }
}
/* =========================================================
   ÜBERGEORDNETES PRODUKT-LAYOUT
   verbindet Bild + Titel + Formular
   ========================================================= */

.article {
    margin-top: 0;
    padding-top: 20px;
}

.article-grid {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 28px 34px;
    box-shadow:
        0 6px 18px rgba(0,0,0,0.06),
        0 1px 0 rgba(0,0,0,0.04);
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   TITEL + CONTENT optisch einbetten
   ========================================================= */

.article-content {
    padding-left: 10px;
}

.article-title {
    margin-top: 6px;
    margin-bottom: 14px;
}


/* =========================================================
   ARTIKELBILD ruhig einpassen
   ========================================================= */

.article-media {
    padding-right: 20px;
}


    


/* =========================================================
   FEINER TRENNSCHNITT ZUM FORMULAR
   ========================================================= */

.article-form {
    margin-top: 18px;
}


/* =========================================================
   MOBILE – alles bleibt ein Block
   ========================================================= */

@media (max-width: 900px) {

    .article {
        margin-top: 0;
    padding-top: 20px;
    }

    .article-grid {
        padding: 22px 18px 26px;
        border-radius: 12px;
    }

    .article-media {
        padding-right: 0;
        margin-bottom: 18px;
    }

    .article-image {
        max-width: 100%;
        margin: 0 auto;
    }
}
.article-info {
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 28px 30px;
    margin-top: 26px;
    box-shadow:
        0 4px 14px rgba(0,0,0,0.05),
        0 1px 0 rgba(0,0,0,0.04);
}
.article-info h2 {
    margin-top: 0;
}
/* =========================================================
   PRODUKTINFORMATIONEN – BREITE & RUHE
   ========================================================= */

.article-info {
    max-width: 1200px;          /* wie article-grid */
    margin: 30px auto 0;
    padding: 24px 28px 28px;
}

/* Text ruhiger machen */
.article-info .info-text {
    max-width: 760px;           /* Lesebreite */
    line-height: 1.6;
}

/* Überschrift enger anbinden */
.article-info h2 {
    margin-bottom: 14px;
}

/* MOBILE */
@media (max-width: 900px) {

    .article-info {
        margin-top: 22px;
        padding: 22px 18px 24px;
    }

    .article-info .info-text {
        max-width: 100%;
    }
}
@media (max-width: 768px) {

    /* Tabelle zu Karten */
    .cart-table,
    .cart-table tbody,
    .cart-table tr {
        display: block;
        width: 100%;
    }

    .cart-table thead {
        display: none;
    }

    /* Karten-Container */
    .cart-table tr {
        background: #ffffff;
        border: 1px solid #d7dccf;
        border-radius: 10px;
        margin-bottom: 18px;
        padding: 14px 16px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    /* Zellen – Grundlayout */
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border: none;
        font-size: 0.95rem;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
        flex: 0 0 38%;
    }

    /* ============================
       ARTIKEL (Titel-Zeile)
       ============================ */

    .cart-table td[data-label="Artikel"] {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 10px;
        margin-bottom: 8px;
        border-bottom: 1px solid #eee;
    }

    .cart-table td[data-label="Artikel"]::before {
        display: none;
    }

    .cart-table td[data-label="Artikel"] strong {
        font-size: 1rem;
        line-height: 1.3;
    }

    /* ============================
       MENGE
       ============================ */

    .cart-update-form {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .qty-wrapper {
        display: inline-flex;
        align-items: center;
        border: 1px solid #aaa;
        border-radius: 6px;
        overflow: hidden;
        background: #fff;
    }

    .qty-wrapper input {
        width: 36px;
        text-align: center;
        border: none;
        outline: none;
        font-size: 15px;
        background: white;
    }

    .qty-btn {
        background: #556F36;
        border: none;
        padding: 6px 10px;
        cursor: pointer;
        font-size: 16px;
        color: #fff;
    }

    .qty-btn:hover {
        background: #6f8b45;
    }

    /* ============================
       PREIS & SUMME
       ============================ */

    .cart-table td[data-label="Preis"],
    .cart-table td[data-label="Summe"] {
        font-weight: 600;
    }

    /* ============================
       AKTION (Löschen)
       ============================ */

    .cart-table td[data-label="Aktion"] {
        justify-content: flex-end;
        padding-top: 10px;
    }

    .cart-table td[data-label="Aktion"]::before {
        display: none;
    }

    .cart-remove-btn {
        font-size: 1.2rem;
        padding: 6px 10px;
    }

    /* ============================
       FOOTER
       ============================ */

    .cart-footer {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 20px;
    }

    .btn-checkout {
        text-align: center;
        font-size: 1.1rem;
        padding: 14px;
    }
}
/* =========================================================
   WARENKORB – HEADER ALS PANEL
   ========================================================= */

.cart-title {
    max-width: 1200px;
    margin: -20px auto 24px;
    padding: 22px 28px;

    background: #f8faf5;
    border-radius: 14px;

    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a6b2f;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.06),
        0 1px 0 rgba(0,0,0,0.04);
}
.cart-table {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-banner {
    height: 160px;
    position: relative;
	margin-top: 0;
    background-image:
        /* Übergang / Auslauf */
        linear-gradient(
            to right,
            rgba(138,143,90,0) 0%,
            rgba(138,143,90,0.08) 45%,
            rgba(138,143,90,0.25) 65%,
            rgba(138,143,90,0.6) 82%,
            rgba(138,143,90,0.95) 94%,
            rgba(138,143,90,1) 100%
        ),

       

        /* Grundfläche mit Tiefe */
        linear-gradient(
            180deg,
            #9aa06a 0%,
            #8f955f 35%,
            #858b56 65%,
            #7c8250 100%
        );

    background-repeat: no-repeat, no-repeat, no-repeat;

    background-size:
        100% 100%,
        auto 100%,
        100% 100%;

    background-position:
        left top,
        5% center,
        left top;
}
.hero-banner img {
	 max-width :100%;
	 padding-left:200px;
}
@media (max-width: 768px) {
	.hero-banner {
		max-height: 60px;
		}
		.hero-banner img {
	 min-width :100%;
	 min-height : 60px;
	 padding-left:0px;
}
}
.offer-price {
    color: #c62828;
    font-weight: 700;
    font-size: 1.4em;
}
.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}
.account-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
}

.account-section h2 {
    margin: 0.5rem 0 1rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: #444;
}
.positions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.order-row span {
    white-space: nowrap;
}

.order-row .name {
    flex: 1 1 auto;
    white-space: normal;
	text-align:left;
	min-width: 60%;
}
.order-row .pos {
	text-align : right;
	min-width : 2%;
}

.order-row .qty {
	text-align : right;
	min-width : 3%;
}
.order-row .nr {
	text-align : right;
	min-width : 6%;
}
.order-row .price,
.order-row .total {
    min-width : 9%;
	text-align: right;
}
.order-row.shipping {
    opacity: 0.85;
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .order-row {
        flex-wrap: wrap;
    }

    .order-row span:not(.name) {
        font-size: 0.85rem;
        color: #666;
    }
}
.contact-form {
    width: 100%;
	
    max-width: 800px;
	border: 1px solid #d7dccf;
	background: #f8faf5;
    margin: 40px;
	padding: 40px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.form-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    margin-bottom: 18px;
    align-items: center;
}

.form-row label {
    font-size: 0.85rem;
    white-space: nowrap;
}
.form-row input{
	width: 100%;
	border: 1px solid #aaa;
    padding: 4px 6px;
    font-size: 0.85rem;
    box-sizing: border-box
}
.form-row textarea {
    width: 100%;
	min-height : 300px;
    border: 1px solid #aaa;
    padding: 4px 6px;
    font-size: 0.85rem;
    box-sizing: border-box;
}
.contact-form button {
    margin-left: 130px;
	background: #556F36;
	color : #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
	border-radius :6px;
}
.kontakt-div {
	width :100%;
	display:flex;
	margin : 30px auto;
	align-items: center;
}
.privacy {
	text-align : left;
	margin-left: 50px;
	font-size: 1.0em;
	line-height: 1.2;
	white-space: pre-wrap;
}
@media (max-width: 768px) {
	.contact-form {
		margin:5px;
		padding:5px;
	}
	.form-row {
    display:block;
    
    margin-bottom: 18px;
    align-items: center;
}
.contact-form button {
    margin-left: auto;
	background: #556F36;
	color : #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
	border-radius :6px;
}
}
/* =========================
   Dynamic Content
========================= */

.dyn {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: system-ui, sans-serif;
}

.dyn__header {
  text-align: center;
  margin-bottom: 40px;
}

.dyn__title {
  color: #2F3D1D;
  font-size: 28px;
  margin-bottom: 10px;
}

.dyn__intro {
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

/* GRID */

.dyn__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

/* CARD */

.dyn__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.25s;
}

.dyn__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dyn__img {
  
  min-height: 120px;
  padding-top:20px;
  object-fit: cover;
}

.dyn__body {
  padding: 20px;
}

.dyn__body h3 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 18px;
}

.dyn__body p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* BUTTONS */

.dyn__btn {
  display: inline-block;
  background: #2F3D1D;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.dyn__btn:hover {
  opacity: .9;
}

.dyn__btn--outline {
  background: transparent;
  border: 1px solid #2F3D1D;
  color: #2F3D1D;
}

.dyn__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* PDF Card */

.dyn__card--pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f3f5ef;
}
.category-grid {
    display: grid;
    /* Festgelegte Breite von 200px pro Kachel, kein 1fr */
    grid-template-columns: repeat(auto-fit, 200px); 
    gap: 20px;
    padding: 20px;
    
    /* Das hier zentriert die gesamte Gruppe der Kacheln */
    justify-content: center;
}
.category-grid a{
	text-decoration: none;
}
.category-card {
    background:#556d3f;
    border-radius: 12px;
    border: 1px solid #e8ede8; /* Ganz leichtes Grün-Grau */
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-color: #5bb35f; /* Dein Shop-Grün */
}

.card-image img {
    width: 100%;
    height: 150px;
	border-radius: 6px;
    object-fit: contain; /* Damit Produktbilder nicht verzerrt werden */
    margin-bottom: 10px;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
	color: #fff;
}
/* Einheitliches Karten-Design */
.account-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    border-top: 4px solid #4a5d23; /* Dein Shop-Grün */
}

/* Zurück-Button-Styling */
.back-button {
    display: inline-block;
    color: #4a5d23;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.back-button:hover {
    transform: translateX(-5px);
}

/* Formulare vereinheitlichen */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.account-welcome-banner {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid #4a5d23; /* Dein Shop-Grün */
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.account-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.3s ease;
}

.account-card:hover {
    border-color: #4a5d23;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.card-icon { font-size: 2rem; margin-right: 20px; }
.card-content h3 { margin: 0; font-size: 1.1rem; color: #4a5d23; }
.card-content p { margin: 5px 0 0; font-size: 0.9rem; color: #777; }
.card-arrow { margin-left: auto; color: #ccc; font-weight: bold; }
/* Begrenzt die Breite auf ein angenehmes Maß (ca. 900px) */
.account-wrapper {
    max-width: 900px;
    margin: 40px auto; /* Zentriert den Block */
    padding: 0 20px;
    font-family: sans-serif;
}

/* Header-Box kompakter */
.account-header-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.account-header-box h2 { margin: 0; color: #4a5d23; }
.account-header-box p { margin: 5px 0 0; color: #666; }

/* Grid für die Kacheln */
.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei Spalten nebeneinander */
    gap: 20px;
}

/* Kachel-Design */
.account-tile {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.2s;
}

.account-tile:hover {
    border-color: #4a5d23;
    background: #fdfdfd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.account-tile .icon {
    font-size: 24px;
    margin-right: 15px;
    background: #f0f0f0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.account-tile .text strong {
    display: block;
    font-size: 16px;
    color: #4a5d23;
}

.account-tile .text span {
    font-size: 13px;
    color: #888;
}

/* Responsive: Auf dem Handy untereinander */
@media (max-width: 600px) {
    .account-grid { grid-template-columns: 1fr; }
    .account-header-box { flex-direction: column; align-items: flex-start; }
}
/* Zurück-Button Styling */
.account-nav-back {
    margin-bottom: 20px;
}

.back-link {
    text-decoration: none;
    color: #4a5d23;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.back-link .arrow {
    margin-right: 8px;
    font-size: 18px;
}

.back-link:hover {
    color: #2c3815;
}

/* Formular Layout */
.styled-form {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
}

.form-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Zwei Spalten */
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: span 2;
}

.form-field label {
    font-size: 13px;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

.form-field input, .form-field select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.form-field input:focus {
    border-color: #4a5d23;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 93, 35, 0.1);
}

.form-divider {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.btn-save {
    background: #4a5d23;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.btn-save:hover {
    background: #3a4a1c;
}

/* Mobil-Optimierung */
@media (max-width: 600px) {
    .form-group-grid { grid-template-columns: 1fr; }
    .form-field.full-width { grid-column: span 1; }
}
.form-section-title {
    font-size: 16px;
    color: #4a5d23;
    margin: 0 0 15px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
}

.form-divider {
    margin: 40px 0 20px 0;
    border: 0;
    border-top: 1px solid #eee;
}

/* Checkbox-Reihe optimieren */
.checkbox-row {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    font-weight: normal !important;
    cursor: pointer;
    margin-top: 10px;
}

.checkbox-row input {
    margin-right: 10px;
    width: auto !important;
}
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    transition: box-shadow 0.2s;
}

.order-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.order-number { font-weight: bold; color: #4a5d23; }
.order-date { color: #888; font-size: 0.9rem; }

.order-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #eef2e6;
    color: #4a5d23;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 5px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    padding: 10px;
    border-radius: 6px;
}

.rechnung-info { font-size: 0.85rem; }
.status-offen { color: #d9534f; }
.status-bezahlt { color: #4a5d23; font-weight: bold; }

.btn-detail {
    text-decoration: none;
    color: #4a5d23;
    font-weight: bold;
    font-size: 0.9rem;
}
/* Adress-Grid */
.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.address-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.address-card.is-default {
    border-color: #4a5d23;
    background: #fdfdfd;
}

.default-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4a5d23;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
}

.address-actions {
    margin-top: 15px;
    border-top: 1px solid #f5f5f5;
    padding-top: 10px;
    display: flex;
    gap: 15px;
}

.add-address-card {
    border: 2px dashed #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #888;
    transition: all 0.2s;
}

.add-address-card:hover {
    border-color: #4a5d23;
    color: #4a5d23;
}

.plus-icon { font-size: 30px; margin-bottom: 5px; }

/* Buttons & Inputs */
.btn-text { background: none; border: none; color: #4a5d23; cursor: pointer; font-weight: bold; }
.btn-danger { color: #d9534f; }
input:disabled { background: #f9f9f9; color: #888; cursor: not-allowed; }
/* --- Grid Layout Fix --- */
.shop-highlights {
    display: grid;
    max-width: 1400px;
    /* FIX: minmax(0, 1fr) zwingt das Grid, die 50% Breite strikt einzuhalten */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); 
    gap: 30px;
    margin: 20px 0 60px 0;
}

.container-1400 {
    max-width: 1200px;
    margin: 0 auto;
	margin-top: 30px;
    
}

/* --- Basis Design der Boxen --- */
.highlight-box {
    background: #f3f5ef;
    border-radius: 14px;
    padding: 24px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
    /* Eingangs-Animation beibehalten */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .6s ease forwards;
}

.highlight-box:nth-child(2) {
    animation-delay: .15s;
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.highlight-box h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* --- Marken Slider Logik --- */
.brand-slider-wrapper {
    overflow: hidden; /* WICHTIG: Kappt überstehende Logos */
    width: 100%;
    position: relative;
    padding: 30px 0;
    /* Optional: Weicher Auslauf an den Rändern */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-logos-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: scrollLogos 45s linear infinite; /* Tempo hier anpassen */
}

/* Pause bei Hover auf der ganzen Box */
.brands:hover .brand-logos-track {
    animation-play-state: paused;
}

.brand-logos-track img {
    width: 90px; /* Hier kannst du die Größe steuern */
    height: auto;
    margin: 0 25px;
    flex-shrink: 0;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: all .25s ease;
}

/* Effekt beim Hovern auf das einzelne Logo */
.brand-logos-track img:hover {
    transform: scale(1.55);
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Läuft bis zur Hälfte der duplizierten Liste */
}

/* --- Slogan Fader Logik --- */
/* Slogan Fader Logik */
.slogan-fader {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    height: 40px; 
    display: flex;
    align-items: center;
    /* NEU: Zentriert den Inhalt der Liste horizontal */
    justify-content: center; 
}

.slogan-fader li {
    position: absolute;
    /* Entferne 'left: 0' und 'width: 100%', falls der Text mittig floaten soll */
    width: auto; 
    opacity: 0;
    font-size: 1.95rem;
    font-weight: 600;
    color: #4a5d23;
    transition: all 0.8s ease-in-out;
    transform: translateY(10px);
    
    /* Sorgt dafür, dass Grafik und Text innerhalb des li zentriert bleiben */
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Verhindert Zeilenumbruch beim Faden */
}

.slogan-fader li.active {
    opacity: 1;
    transform: translateY(0);
}
/* --- Eingangs-Animation Keyframe --- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- Media Query für Mobile (Handys & schmale Tablets) --- */
@media (max-width: 992px) {
    .shop-highlights {
        /* Schaltet von zwei Spalten auf eine Spalte um */
        grid-template-columns: 1fr !important; 
        gap: 20px;
    }

    .container-1400 {
        padding: 10px;
		margin-top: 15px;
		max-width:420px;
    }
}
/* --- Globaler Fix für das Ausbrechen --- */
.shop-highlights {
    display: grid;
    max-width: 1400px;
    margin: 20px 0 60px 0;
    /* minmax(0, 1fr) ist entscheidend für Grids, damit Kinder nicht ausbrechen */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); 
    gap: 30px;
    width: 100%;
}

.highlight-box {
    background: #f3f5ef;
    border-radius: 14px;
    padding: 24px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    /* Diese zwei Zeilen verhindern, dass die Box breiter als die Spalte wird */
    min-width: 0; 
    width: 100%;
    box-sizing: border-box; /* Padding wird in die Breite eingerechnet */
    
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .6s ease forwards;
}

/* --- Der Slider-Tunnel --- */
.brand-slider-wrapper {
    overflow: hidden; /* Kappt alles, was breiter als die Box ist */
    width: 100%;
    position: relative;
    padding: 35px 0;
    margin: -15px 0; /* Verkleinert den vertikalen Abstand wieder */
}

/* --- Das laufende Band --- */
.brand-logos-track {
    display: flex;
    width: max-content; /* Darf so lang sein wie die Logos */
    align-items: center;
    animation: scrollLogos 45s linear infinite;
}

/* --- Media Query für Mobile (Handys) --- */
@media (max-width: 992px) {
    .shop-highlights {
        /* Zwingt das Grid auf eine Spalte */
        grid-template-columns: minmax(0, 1fr) !important; 
    }
    
    .highlight-box {
        padding: 20px; /* Etwas weniger Padding auf dem Handy */
    }

    .brand-logos-track img {
        width: 70px; /* Etwas kleinere Logos für Mobile */
        margin: 0 15px;
    }
	.slogan-fader li {
		font-size: 1.45rem;	
	}
}

/* --- Animation Keyframes --- */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.entry {
    background: #f5f5f5;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
}

.entry.question {
    border-left: 4px solid #c97a00;
}

.answer {
    margin-top: 10px;
    padding: 10px;
    background: #fff3cd;
    border-radius: 6px;
}
/* Container */
.qa-wrapper {
	max-width: 700px;
    margin: 20px auto;
    padding: 0 10px;
}

/* Card */
.qa-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e5e5;
}

/* Kopf */
.qa-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

/* Name */
.qa-name {
    font-weight: 600;
    color: #2f4f2f; /* dunkles grün */
}

/* Datum */
.qa-date {
    font-size: 12px;
    color: #999;
}

/* Text */
.qa-text {
    font-size: 15px;
	text-align: left;
    line-height: 1.5;
	padding: 20px;
}

/* Antwort */
.qa-answer {
    margin-top: 16px;
    background: #f6f3e8; /* leicht beige */
    border-left: 4px solid #6b8e23; /* olivgrün */
    padding: 14px;
    border-radius: 6px;
	text-align: left;
}

/* Button */
.qa-header {
    max-width: 700px;
    margin: 20px auto 10px auto !important;
    padding: 0 10px;

    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
.qa-header h2 {
    margin: 0;
}

.qa-header button {
    background: #6b8e23;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.qa-header button:hover {
    background: #5a7a1e;
}
.qa-pagination {
    max-width: 700px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.qa-pagination button {
    background: #6b8e23;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.qa-pagination span {
    padding: 6px 10px;
}
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;

    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
}

.modal-content h3 {
    margin-top: 0;
    color: #2f4f2f;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
}

/* Inputs */
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.modal-content textarea {
    min-height: 120px;
    resize: vertical;
}

/* Button */
.modal-content button {
    margin-top: 15px;
    background: #6b8e23;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.modal-content button:hover {
    background: #5a7a1e;
}
/* Container für die Adressliste */
.address-list {
    display: grid;
    grid-template-columns: 1fr; /* Mobil untereinander */
    gap: 12px;
    margin-top: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Die Buttons als Karten stylen */
.address-select {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: all 0.2s ease-in-out;
}

/* Hover-Effekt: Etwas Schatten und Rahmenfarbe deines Shops */
.address-select:hover {
    border-color: #4a5d23; /* Deine grüne Shop-Farbe */
    background: #fdfdfd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* Optional: Desktop-Ansicht nebeneinander */
@media (min-width: 768px) {
    .address-list {
        grid-template-columns: 1fr 1fr;
    }
}
.versand-container {
    max-width: 850px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    color: #222;
}

.versand-container h2 {
    font-size: 26px;
    margin-bottom: 25px;
}

.versand-container h3 {
    font-size: 18px;
    margin: 30px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    color: #2f6f3e;
}

/* Karte */
.versand-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 8px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
    transition: box-shadow 0.15s ease;
}

.versand-box:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* linke Seite */
.versand-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.versand-land {
    font-weight: 600;
}

.versand-meta {
    font-size: 13px;
    color: #666;
}

/* rechte Seite (Preis) */
.preis {
    font-size: 18px;
    font-weight: bold;
    color: #c40000;
    white-space: nowrap;
}
/* =========================
   WIDERRUF - CONTAINER
========================= */
.widerruf-wrapper {
    max-width: 700px;
    margin: 30px auto;
    background: #ffffff;
    border: 2px solid #c62828;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: relative;
}

/* Label oben */
.widerruf-wrapper::before {
    content: "WIDERRUF";
    position: absolute;
    top: -12px;
    left: 15px;
    background: #c62828;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* =========================
   HEADLINE
========================= */
.widerruf-wrapper h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #c62828;
}

/* =========================
   KOMPLETT-WIDERRUF
========================= */
.widerruf-box {
    padding: 12px;
    background: #fff3f3;
    border: 1px solid #f1c0c0;
    border-radius: 6px;
    margin-bottom: 10px;
}

#widerruf-komplett {
    transform: scale(1.2);
    margin-right: 6px;
}

/* =========================
   ARTIKEL LISTE
========================= */
.widerruf-items {
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.widerruf-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 6px;
    border-bottom: 1px solid #f0f0f0;
}

/* Artikeltext */
.widerruf-item label {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================
   MENGE
========================= */
.widerruf-menge {
    display: flex;
    align-items: center;
    gap: 5px;
}

.widerruf-menge input {
    width: 60px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Systemartikel (nur Anzeige) */
.widerruf-item span {
    font-size: 14px;
}

/* =========================
   BUTTON
========================= */
.btn-widerruf {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    background: #c62828;
    color: #ffffff !IMPORTANT;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-widerruf:hover {
    background: #a61f1f;
    transform: translateY(-1px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .widerruf-wrapper {
        margin: 15px;
        padding: 15px;
    }

    .widerruf-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .widerruf-menge {
        width: 100%;
        justify-content: flex-end;
    }
}
.vorort {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.vorort h1 {
    margin-bottom: 10px;
}

.vorort .lead {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Galerie */
.vorort-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.vorort-gallery img {
    width: 100%;
    border-radius: 8px;
}

/* Info Boxen */
.vorort-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.vorort-box {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
}

/* Map */
.vorort-map {
    margin-bottom: 25px;
}

/* Vertrauen */
.vorort-trust ul {
    list-style: none;
    padding: 0;
}

.vorort-trust li {
    margin-bottom: 8px;
    font-size: 16px;
}
.map-static img {
    width: 100%;
    border-radius: 10px;
    transition: 0.2s;
}

.map-static img:hover {
    opacity: 0.9;
}