/* === GRUND-RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #FAF6F0; /* Warmes Creme */
    color: #3E2A1E; /* Dunkles Braun für Text */
    line-height: 1.6;
    min-width: 320px;
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }
button:disabled { opacity: 0.55; cursor: not-allowed !important; }
:focus-visible { outline: 3px solid #D4AF37; outline-offset: 3px; }

/* === ERDTON-PALETTE ===
   Hintergrund: #FAF6F0 (Creme)
   Hauptbraun:  #5C3A1E (Tiefes Schokoladenbraun)
   Akzentbraun: #8B5A2B (Warmes Karamell)
   Gold:        #D4AF37 (Mattgold)
   Text:        #3E2A1E (Dunkles Braun)
*/

/* === 1. TICKER === */
.ticker-banner {
    background: #5C3A1E; /* Brauner Hintergrund */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}
.ticker-banner::before, .ticker-banner::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker-banner::before { left: 0; background: linear-gradient(to right, #5C3A1E, transparent); }
.ticker-banner::after { right: 0; background: linear-gradient(to left, #5C3A1E, transparent); }
.ticker-track { display: inline-block; animation: ticker-scroll 30s linear infinite; will-change: transform; }
.ticker-banner:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; font-size: 13px; color: #ffffff; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
.ticker-star { color: #ffffff; font-size: 10px; margin: 0 18px; }

/* === 2. HEADER (#f4eadb, unten transparent auslaufend, keine goldene Linie) === */
.site-header {
    background: linear-gradient(to bottom, #f4eadb 0%, #f4eadb 40%, rgba(244,234,219,0.8) 60%, rgba(244,234,219,0.4) 80%, rgba(244,234,219,0) 100%);
    color: #5C3A1E;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 40px 50px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
    border-bottom: none;
    isolation: isolate;
}
.nav-left { display: flex; align-items: center; gap: 30px; min-width: 0; }
.logo-center { display: flex; justify-content: center; align-items: center; }
.logo-center img { max-height: 80px; height: 80px; width: auto; display: block; }
.logo-text { font-size: 22px; font-weight: bold; letter-spacing: 3px; text-transform: uppercase; color: #5C3A1E; }
.logo-text-elegant { font-size: 20px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; color: #5C3A1E; font-family: 'Times New Roman', Georgia, serif; line-height: 1.05; text-align: center; }
.logo-sub { font-size: 11px; letter-spacing: 2px; color: #8B5A2B; font-style: italic; font-weight: 400; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 20px; min-width: 0; }
.language-switcher { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; }
.language-switcher a { opacity: 0.6; }
.language-switcher a.active, .language-switcher a:hover { opacity: 1; color: #8B5A2B; }
.cart-count { font-size: 13px; font-weight: 600; color: #5C3A1E; letter-spacing: 1px; }
.nav-link { color: #5C3A1E; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; transition: color 0.3s; cursor: pointer; }
.nav-link:hover { color: #D4AF37; }
.nav-icon-mobile { display: none; font-size: 18px; }
.nav-text-desktop { display: inline; }
.nav-star { color: #D4AF37; font-size: 10px; margin-left: 6px; }
.nav-dropdown { position: relative; display: inline-block; }
.dropdown-content {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-10px);
    background: #5C3A1E; min-width: 200px; border: 1px solid #D4AF37; border-radius: 8px;
    padding: 8px 0; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 200;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4); text-align: center;
}
.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content,
.nav-dropdown.open .dropdown-content { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-content a { display: block; padding: 12px 20px; color: #fff; font-size: 13px; border-bottom: 1px solid rgba(212,175,55,0.1); }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: #D4AF37; color: #5C3A1E; }

/* === SUCHFUNKTION === */
.search-form { display: flex; align-items: center; gap: 0; border: 1px solid #5C3A1E; border-radius: 25px; overflow: hidden; transition: border-color 0.3s; }
.search-form:focus-within { border-color: #D4AF37; }
.search-input { border: none; outline: none; padding: 8px 14px; font-size: 13px; background: transparent; color: #5C3A1E; width: 140px; }
.search-input::placeholder { color: #8B6F5C; }
.search-btn { background: #5C3A1E; border: none; color: #fff; padding: 8px 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.search-btn:hover { background: #D4AF37; color: #5C3A1E; }
.cart-trigger { color: #D4AF37 !important; }

/* === WARENKORB SLIDE-OUT === */
.nav-cart-wrapper { position: relative; display: inline-block; }
.cart-slideout {
    position: fixed; top: 20px; right: -400px; width: 380px; max-width: calc(100vw - 32px); height: calc(100vh - 40px);
    background: #FAF6F0; box-shadow: -5px 0 30px rgba(0,0,0,0.2); z-index: 300;
    display: flex; flex-direction: column; transition: right 0.4s ease;
    border: 2px solid #D4AF37; border-radius: 15px; overflow: hidden;
}
.cart-slideout.open { right: 20px; }
.cart-slideout-header { background: #5C3A1E; color: #D4AF37; padding: 20px 25px; display: flex; justify-content: center; align-items: center; position: relative; }
.cart-slideout-header h3 { margin: 0; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.cart-close { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #D4AF37; font-size: 28px; cursor: pointer; padding: 0; line-height: 1; }
.cart-slideout-items { flex: 1; overflow-y: auto; padding: 15px 20px; }
.cart-item { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid #E8DCC8; }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 5px; background: #f0f0f0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; color: #5C3A1E; margin: 0 0 4px; }
.cart-item-info p { font-size: 12px; color: #888; margin: 0; }
.cart-item-einzel { font-size: 11px; color: #999; margin-bottom: 8px !important; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid #5C3A1E; background: #fff; color: #5C3A1E; border-radius: 5px; font-size: 15px; font-weight: bold; cursor: pointer; line-height: 1; padding: 0; }
.qty-btn:hover { background: #5C3A1E; color: #D4AF37; }
.qty-display { min-width: 24px; text-align: center; font-size: 14px; font-weight: bold; color: #5C3A1E; }
.remove-btn { width: 26px; height: 26px; border: 1px solid #c0392b; background: #fff; color: #c0392b; border-radius: 5px; font-size: 12px; cursor: pointer; line-height: 1; padding: 0; }
.remove-btn:hover { background: #c0392b; color: #fff; }
.cart-item-summe { font-size: 14px; color: #5C3A1E; font-weight: bold; margin-top: 5px !important; }
.cart-slideout-footer { padding: 20px; background: #F5EDE0; border-top: 1px solid #E8DCC8; }
.cart-summe { display: flex; justify-content: space-between; font-size: 18px; font-weight: bold; color: #5C3A1E; margin-bottom: 15px; }
.cart-checkout-btn { display: block; text-align: center; background: #5C3A1E; color: #D4AF37; padding: 14px; border-radius: 6px; text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.cart-checkout-btn:hover { background: #D4AF37; color: #5C3A1E; }
.cart-back-btn { display: block; text-align: center; color: #888; padding: 10px; text-decoration: none; font-size: 13px; }
.cart-back-btn:hover { color: #5C3A1E; }

/* === 3. HERO SLIDER === */
.hero-slider { position: relative; height: 70vh; min-height: 450px; overflow: hidden; background: #5C3A1E; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* === 4. SERVICE-BAR (farbige Icons in Erdtönen) === */
.service-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #E8DCC8;
}
.service-item { display: flex; align-items: center; gap: 15px; justify-content: center; text-align: center; flex-direction: column; }
.service-icon {
    font-size: 28px;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    /* Erdton-Hintergrund für jedes Icon */
    background: #E8DCC8;
    border: 1px solid #D4AF37;
}
.service-icon-1 { background: #E8DCC8; }
.service-icon-2 { background: #F5EDE0; }
.service-icon-3 { background: #EDE0CC; }
.service-icon-4 { background: #F0E8D8; }
.service-text h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #5C3A1E; margin-bottom: 4px; }
.service-text p { font-size: 12px; color: #8B6F5C; }

/* === 5. SECTION-WRAPPER === */
.section-wrapper { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.section-title { text-align: center; font-size: 32px; font-weight: 300; color: #5C3A1E; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 40px; }
.section-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; padding-bottom: 15px; border-bottom: 1px solid #E8DCC8; }
.view-all { color: #D4AF37; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.view-all:hover { color: #5C3A1E; }

/* Kleine goldene Trennlinie unter "Shop nach Kategorie" */
.goldene-trennlinie-klein {
    height: 2px;
    width: 80px;
    background: #D4AF37;
    margin: -25px auto 40px;
    border-radius: 2px;
}

/* === 5b. CATEGORY-GRID === */
.category-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; }
.category-circle { display: flex; flex-direction: column; align-items: center; gap: 15px; transition: transform 0.3s; }
.category-circle:hover { transform: translateY(-5px); }
.category-circle-img {
    width: 200px; height: 200px; border-radius: 50%;
    overflow: hidden; background: #E8DCC8;
    border: 3px solid #D4AF37; transition: border-color 0.3s, box-shadow 0.3s;
}
.category-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.category-circle:hover .category-circle-img { box-shadow: 0 10px 25px rgba(92,58,30,0.25); border-color: #5C3A1E; }
.category-label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #5C3A1E; font-weight: 600; }

/* === 6. PRODUKTE-GRID mit Herz === */
.produkte-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 40px 30px; }
.produkt-karte-wrap { position: relative; }
.produkt-karte { display: block; text-align: center; cursor: pointer; background: #fff; border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #E8DCC8; }
.produkt-karte:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(92,58,30,0.15); border-color: #D4AF37; }
.bild-wrapper { width: 100%; height: 320px; background-color: #FAF6F0; overflow: hidden; }
.bild-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.produkt-karte:hover .bild-wrapper img { transform: scale(1.05); }
.produkt-info { padding: 18px 15px; }
.produkt-info h2 { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: #5C3A1E; }
.preis { font-size: 16px; color: #3E2A1E; }

/* Herz-Button */
.like-form { position: absolute; top: 12px; right: 12px; z-index: 10; }
.herz-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: 1px solid #D4AF37;
    font-size: 18px; color: #5C3A1E; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.herz-btn:hover { transform: scale(1.15); background: #fff; }
.herz-btn.geliked { color: #c0392b; background: #fff; }
.herz-btn.geliked:hover { transform: scale(1.15); }

/* === 7. PREMIUM BANNER (2-spaltig, breite = 4 Produktkarten) === */
.premium-banner {
    max-width: 1140px; /* So breit wie 4 Produktkarten mit Gap */
    margin: 80px auto;
    background: #5C3A1E;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(92,58,30,0.3);
}
.premium-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.premium-slideshow { position: relative; overflow: hidden; }
.premium-slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1.2s ease-in-out;
}
.premium-slide.active { opacity: 1; }
.premium-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.premium-text-seite { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.premium-eyebrow { font-size: 12px; letter-spacing: 3px; color: #D4AF37; text-transform: uppercase; margin-bottom: 15px; }
.premium-title { font-size: 36px; font-weight: 300; color: #fff; margin-bottom: 20px; letter-spacing: 1px; }
.premium-text { font-size: 15px; color: #E8DCC8; line-height: 1.8; margin-bottom: 35px; }
.premium-btn { display: inline-block; background: #D4AF37; color: #5C3A1E; padding: 16px 40px; border-radius: 30px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; transition: all 0.3s; align-self: flex-start; }
.premium-btn:hover { background: #fff; color: #5C3A1E; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,0.3); }

/* === 8. FOLLOW US === */
.follow-header { display: flex; justify-content: center; align-items: center; gap: 25px; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #E8DCC8; }
.follow-header .section-title { margin-bottom: 0 !important; }
.follow-icons { display: flex; gap: 15px; }
.follow-icon { color: #5C3A1E; transition: color 0.3s; display: flex; align-items: center; }
.follow-icon:hover { color: #D4AF37; }
.social-handle { text-align: center; color: #8B5A2B; font-size: 18px; font-weight: 600; margin-bottom: 30px; letter-spacing: 1px; }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-width: 800px; margin: 0 auto 30px; }
.social-post { aspect-ratio: 1; overflow: hidden; border-radius: 8px; background: #E8DCC8; }
.social-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.social-post:hover img { transform: scale(1.08); }

/* === 9. GELIKETE PRODUKTE === */
.gelikete-section { margin-bottom: 60px; }
.zuletzt-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 10px 0 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.zuletzt-scroll::-webkit-scrollbar { height: 8px; }
.zuletzt-scroll::-webkit-scrollbar-track { background: #E8DCC8; border-radius: 4px; }
.zuletzt-scroll::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 4px; }
.zuletzt-karte { flex: 0 0 200px; text-align: center; cursor: pointer; background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #E8DCC8; scroll-snap-align: start; transition: transform 0.3s, box-shadow 0.3s; display: block; }
.zuletzt-karte-wrap { position: relative; }
.zuletzt-karte:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(92,58,30,0.15); border-color: #D4AF37; }
.zuletzt-bild { width: 100%; height: 200px; background: #FAF6F0; overflow: hidden; }
.zuletzt-bild img { width: 100%; height: 100%; object-fit: cover; }
.zuletzt-info { padding: 12px 10px; }
.zuletzt-info h3 { font-size: 13px; font-weight: 500; text-transform: uppercase; margin-bottom: 5px; color: #5C3A1E; }

/* === 10. FOOTER (schmaler) === */
.site-footer { background: linear-gradient(to bottom, #3E2A1E 0%, #2C1E14 100%); color: #D4AF37; padding: 40px 40px 15px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; color: #D4AF37; }
.footer-col p { font-size: 12px; color: #C8B89A; margin-bottom: 10px; line-height: 1.6; }
.footer-col a { display: block; color: #C8B89A; font-size: 12px; margin-bottom: 8px; transition: color 0.3s; }
.footer-col a:hover { color: #D4AF37; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a { padding: 5px 12px; border: 1px solid #D4AF37; border-radius: 20px; font-size: 11px; }
.footer-bottom { text-align: center; padding-top: 20px; margin-top: 25px; border-top: 1px solid rgba(212,175,55,0.3); font-size: 11px; color: #A89878; letter-spacing: 1.5px; text-transform: uppercase; }

/* === PRODUKTDETAILSEITE === */
.detail-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.back-link { display: inline-block; margin-bottom: 30px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #5C3A1E; }
.back-link:hover { color: #D4AF37; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.detail-bild { width: 100%; background: #FAF6F0; border-radius: 15px; overflow: hidden; }
.detail-bild img { width: 100%; height: auto; object-fit: cover; display: block; }
.detail-info { padding-top: 20px; }
.detail-kategorie { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #D4AF37; margin-bottom: 10px; }
.detail-info h1 { font-size: 32px; font-weight: 300; letter-spacing: 1px; margin-bottom: 20px; color: #5C3A1E; }
.detail-preis { font-size: 24px; color: #5C3A1E; margin-bottom: 30px; font-weight: bold; }
.detail-beschreibung { font-size: 15px; color: #6B5040; line-height: 1.8; margin-bottom: 30px; }
.detail-bestand { font-size: 13px; color: #888; margin-bottom: 30px; }
.kaufen-btn { background: #D4AF37; color: #5C3A1E; border: none; width: 100%; padding: 18px; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; cursor: pointer; border-radius: 8px; }
.kaufen-btn:hover { background: #5C3A1E; color: #D4AF37; }
.benefits { margin-top: 40px; border-top: 1px solid #E8DCC8; padding-top: 20px; }
.benefits p { font-size: 13px; color: #5C3A1E; margin-bottom: 10px; }
.shop-container h1 { color: #5C3A1E; }

/* === KATEGORIE-FILTER === */
.kategorien-menu { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; padding-bottom: 25px; border-bottom: 1px solid #E8DCC8; }
.kategorie-btn { padding: 10px 24px; border: 1px solid #5C3A1E; border-radius: 30px; color: #5C3A1E; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; transition: all 0.3s; }
.kategorie-btn:hover { background: #5C3A1E; color: #D4AF37; }
.kategorie-btn.aktiv { background: #5C3A1E; color: #D4AF37; border-color: #D4AF37; font-weight: bold; }

/* === ANFRAGE-BUTTON & SEITE === */
.anfrage-btn { display: block; text-align: center; background: #5C3A1E; color: #D4AF37; padding: 18px; border-radius: 8px; text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; transition: all 0.3s; }
.anfrage-btn:hover { background: #D4AF37; color: #5C3A1E; }
.anfrage-hinweis { font-size: 13px; color: #8B6F5C; margin-top: 15px; line-height: 1.6; }
.anfrage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 20px; }
.anfrage-produkt h1 { font-size: 24px; color: #5C3A1E; margin: 20px 0 10px; font-weight: 300; letter-spacing: 1px; }
.anfrage-form-seite h2 { font-size: 28px; color: #5C3A1E; margin-bottom: 15px; font-weight: 300; }
.anfrage-erkl { font-size: 14px; color: #8B6F5C; line-height: 1.7; margin-bottom: 30px; }
.anfrage-form-seite label { display: block; margin-bottom: 5px; font-size: 13px; color: #5C3A1E; text-transform: uppercase; letter-spacing: 1px; }
.anfrage-form-seite input, .anfrage-form-seite textarea { width: 100%; padding: 12px; margin-bottom: 18px; border: 1px solid #D4AF37; border-radius: 6px; font-size: 14px; background: #fff; color: #5C3A1E; font-family: inherit; }
.anfrage-form-seite input:focus, .anfrage-form-seite textarea:focus { outline: none; border-color: #5C3A1E; box-shadow: 0 0 0 2px rgba(92,58,30,0.1); }
.anfrage-form-seite button { background: #5C3A1E; color: #D4AF37; border: none; padding: 16px 40px; border-radius: 8px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; cursor: pointer; transition: all 0.3s; }
.anfrage-form-seite button:hover { background: #D4AF37; color: #5C3A1E; }
.anfrage-erfolg { background: #E8F5E9; border: 1px solid #2e7d32; padding: 30px; border-radius: 10px; text-align: center; }
.anfrage-erfolg h2 { color: #2e7d32; margin-bottom: 15px; }
.anfrage-erfolg p { color: #5C3A1E; line-height: 1.7; }

/* === GOLDENE TRENNLINIE === */
.goldene-trennlinie { height: 2px; background: linear-gradient(to right, transparent, #D4AF37 20%, #D4AF37 80%, transparent); margin: 60px auto; max-width: 1200px; }
.zuletzt-section { max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; }

/* === SANFTES EINBLENDEN === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Unterhalb des sichtbaren Bereichs erst rendern, wenn er benötigt wird. */
.section-wrapper, .premium-banner, .site-footer { content-visibility: auto; contain-intrinsic-size: 1px 700px; }


/* Desktop: Akkordeon-Pfeile immer verstecken */
.accordion-toggle { display: none; }
@media (max-width: 768px) {
    .footer-col .accordion-toggle { display: inline-block; }
    .footer-col:first-child .accordion-toggle { display: none; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .service-bar { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px 12px; }
    .service-item { gap: 8px; }
    .service-icon { width: 30px; height: 30px; font-size: 14px; }
    .service-icon svg { width: 14px; height: 14px; }
    .service-text h3 { font-size: 12px; }
    .service-text p { font-size: 11px; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .premium-grid { grid-template-columns: 1fr; }
    .premium-slideshow { min-height: 250px; }
    .produkte-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .produkt-karte { border-radius: 8px; transition: transform 0.15s ease, box-shadow 0.15s ease; -webkit-tap-highlight-color: transparent; }
    .produkt-karte:active { transform: scale(0.98); box-shadow: 0 4px 15px rgba(92,58,30,0.2); }
    .bild-wrapper { height: 120px; }
    .produkt-info { padding: 8px 6px; }
    .produkt-info h2 { font-size: 10px; letter-spacing: 0.5px; }
    .preis { font-size: 12px; }
    .herz-btn { width: 28px; height: 28px; font-size: 14px; }
    .section-wrapper { margin: 40px auto; padding: 0 12px; }
}

@media (max-width: 768px) {
    /* === HEADER: NUR 2 ICONS (Home + Kollektionen), GRÖSSER, MEHR ABSTAND === */
    .site-header { grid-template-columns: minmax(82px, 1fr) auto minmax(82px, 1fr); padding: 8px 10px 16px; gap: 6px; }
    .nav-left { gap: 6px; justify-content: flex-start; padding-left: 0; }
    .nav-ueber-uns { display: none; }
    .nav-icon-mobile { display: inline; font-size: 25px; line-height: 1; }
    .nav-link { -webkit-tap-highlight-color: transparent; border-radius: 6px; }
    .nav-link:active { background: rgba(212,175,55,0.15); color: #D4AF37; }
    .nav-link { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .nav-text-desktop { display: none; }
    .nav-star { display: none; }
    .nav-dropdown .dropdown-content { left: 0; transform: translateY(-10px); }
    .nav-dropdown:hover .dropdown-content,
    .nav-dropdown:focus-within .dropdown-content,
    .nav-dropdown.open .dropdown-content { transform: translateY(0); }

    /* Logo: nur Bild, mittig, keine Schrift */
    .logo-center { justify-content: center; }
    .logo-text-elegant { display: none; }
    .logo-center img { max-height: 55px; height: 55px; margin-left: 0 !important; }

    /* Suchsymbol sichtbar auf Mobile */
    .nav-right { gap: 6px; justify-content: flex-end; }
    .language-switcher {
        position: absolute; right: 12px; bottom: 1px;
        display: inline-flex; font-size: 10px;
    }
    .search-form { display: flex; border-radius: 25px; padding: 0; border: 1px solid #5C3A1E; }
    .search-input { width: 0; padding: 0; opacity: 0; transition: all 0.3s; }
    .search-form:focus-within {
        position: absolute; left: 10px; right: 10px; top: calc(100% - 8px);
        z-index: 250; background: #FAF6F0; box-shadow: 0 10px 25px rgba(62,42,30,0.2);
    }
    .search-form:focus-within .search-input { width: auto; min-width: 0; flex: 1; padding: 10px 12px; opacity: 1; }
    .search-btn { padding: 7px 9px; }
    .search-btn svg { width: 16px; height: 16px; }
    .cart-count { font-size: 12px; }
    .cart-trigger svg { width: 22px; height: 22px; }

    /* === HERO: GANZES BILD ZEIGEN === */
    .hero-slider { height: 55vh; min-height: 320px; }
    .hero-slide { background-color: #f4eadb; }

    /* === SECTION-TITLES === */
    .section-title { font-size: 16px; letter-spacing: 1px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
    .section-title::after { content: ""; display: block; width: 50px; height: 2px; background: #D4AF37; border-radius: 2px; margin: 10px auto 0; }
    .follow-header .section-title::after { display: none; }
    .section-wrapper#produkte .section-title { font-size: 14px; margin-bottom: 15px; }

    /* === BESTSELLER === */
    .section-header-row { flex-direction: column; align-items: center; gap: 8px; margin-bottom: 25px; text-align: center; }
    .section-header-row .section-title { margin-bottom: 0; }
    .view-all { font-size: 12px; }

    /* === PRODUKTE: 3 NEBENEINANDER === */
    .produkte-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .produkt-karte { border-radius: 8px; transition: transform 0.15s ease, box-shadow 0.15s ease; -webkit-tap-highlight-color: transparent; }
    .produkt-karte:active { transform: scale(0.98); box-shadow: 0 4px 15px rgba(92,58,30,0.2); }
    .bild-wrapper { height: 160px; }
    .produkt-info { padding: 10px 8px; }
    .produkt-info h2 { font-size: 12px; letter-spacing: 0.5px; margin-bottom: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .preis { font-size: 14px; }
    .herz-btn { width: 36px; height: 36px; font-size: 16px; top: 8px; right: 8px; }

    /* === KATEGORIEN === */
    .category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; justify-items: center; }
    /* Bei ungerader Anzahl: letztes Element mittig ueber beide Spalten */
    .category-grid > a:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
    }
    .category-circle-img { width: 110px; height: 110px; }
    .category-label { font-size: 11px; text-align: center; }
    .category-desc { display: none; }
    .goldene-trennlinie-klein { margin: -15px auto 25px; width: 60px; }

    /* === PREMIUM BANNER === */
    .premium-banner { margin: 40px 12px; border-radius: 10px; }
    .premium-grid { min-height: auto; }
    .premium-slideshow { min-height: 180px; }
    .premium-text-seite { padding: 25px 20px; }
    .premium-eyebrow { font-size: 10px; margin-bottom: 10px; }
    .premium-title { font-size: 20px; margin-bottom: 12px; }
    .premium-text { font-size: 13px; margin-bottom: 20px; line-height: 1.6; }
    .premium-btn { padding: 12px 25px; font-size: 11px; letter-spacing: 1px; }

    /* === FOLLOW US === */
    .follow-header { gap: 15px; }
    .follow-icon svg { width: 22px; height: 22px; }
    .social-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 400px; }

    /* === FAVORITEN === */
    .gelikete-section .section-title { font-size: 16px; }
    .zuletzt-karte { flex: 0 0 130px; }
    .zuletzt-bild { height: 130px; }
    .zuletzt-info h3 { font-size: 11px; }
    .zuletzt-info .preis { font-size: 12px; }

    /* === FOOTER === */
    .site-footer { padding: 30px 20px calc(12px + env(safe-area-inset-bottom)); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-col h4 { font-size: 12px; margin-bottom: 10px; }
    .footer-col p { font-size: 12px; }
    .footer-col a { font-size: 12px; margin-bottom: 6px; }
    .footer-social a { font-size: 11px; padding: 4px 10px; }
    .footer-bottom { padding-top: 15px; margin-top: 15px; font-size: 11px; }

    /* === DETAILSEITE === */
    .detail-container { margin: 20px auto 45px; padding: 0 14px; }
    .detail-grid { grid-template-columns: 1fr; gap: 25px; }
    .detail-info { padding-top: 0; }
    .detail-info h1 { font-size: 24px; }
    .detail-preis { font-size: 20px; }

    /* Touch-Ziele: Qty-/Remove-Buttons im Warenkorb */
    .qty-btn { width: 32px; height: 32px; font-size: 16px; }
    .remove-btn { width: 32px; height: 32px; }

    /* Cart-Slideout mobil: fast volle Breite, safe-area */
    .cart-slideout { width: calc(100vw - 24px); right: -100vw; top: 12px; height: calc(100dvh - 24px); }
    .cart-slideout.open { right: 12px; }

    /* === FOOTER AKKORDEON (nur <= 768px) === */
    .footer-grid { display: block; max-width: 400px; margin: 0 auto; }
    .footer-col { margin-bottom: 10px; border: 1px solid rgba(212,175,55,0.25); border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.4); }
    .footer-col h4 { 
        display: flex; justify-content: space-between; align-items: center;
        padding: 14px 18px; margin: 0; cursor: pointer;
        font-size: 12px; letter-spacing: 1.5px;
        -webkit-tap-highlight-color: transparent;
    }
    .accordion-toggle { display: inline-block; font-size: 10px; transition: transform 0.3s; margin-left: 8px; color: #D4AF37; }
    .footer-col.open .accordion-toggle { transform: rotate(180deg); }
    .footer-col > p, .footer-col > a, .footer-col > div { 
        max-height: 0; overflow: hidden; padding: 0 18px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .footer-col.open > p, .footer-col.open > a, .footer-col.open > div { 
        max-height: 300px; padding: 4px 18px 16px;
    }
    /* Brand-Spalte immer offen */
    .footer-col:first-child { border: none; background: none; }
    .footer-col:first-child h4 { cursor: default; }
    .footer-col:first-child .accordion-toggle { display: none; }
    .footer-col:first-child > p, .footer-col:first-child > a, .footer-col:first-child > div { 
        max-height: none; padding: 0; overflow: visible;
    }

}

/* === SEHR KLEINE SCREENS (<= 480px) === */
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 18px; }
    .service-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 8px; }

    .site-header { grid-template-columns: minmax(76px, 1fr) auto minmax(76px, 1fr); }
    .logo-center img { max-height: 48px; height: 48px; }
    .nav-link { min-width: 38px; }
    .hero-slider { height: 48vh; min-height: 280px; max-height: 520px; }
    .produkte-grid { gap: 10px; }
    .bild-wrapper { height: auto; aspect-ratio: 4 / 5; }

    
    .footer-col { margin-bottom: 8px; border: 1px solid rgba(212,175,55,0.2); border-radius: 8px; overflow: hidden; }
    .footer-col h4 { 
        display: flex; justify-content: space-between; align-items: center;
        padding: 14px 16px; margin: 0; cursor: pointer;
        background: rgba(212,175,55,0.05); font-size: 12px;
        -webkit-tap-highlight-color: transparent;
    }
    .accordion-toggle { font-size: 10px; transition: transform 0.3s; margin-left: 8px; }
    .footer-col.open .accordion-toggle { transform: rotate(180deg); }
    .footer-col > p, .footer-col > a, .footer-col > div { 
        max-height: 0; overflow: hidden; padding: 0 16px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .footer-col.open > p, .footer-col.open > a, .footer-col.open > div { 
        max-height: 300px; padding: 8px 16px 16px;
    }
    /* Brand-Spalte immer offen */
    .footer-col:first-child { border: none; }
    .footer-col:first-child h4 { background: none; cursor: default; }
    .footer-col:first-child .accordion-toggle { display: none; }
    .footer-col:first-child > p, .footer-col:first-child > a, .footer-col:first-child > div { 
        max-height: none; padding: 0; overflow: visible;
    }

}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in { opacity: 1; transform: none; }
}
