body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f7efe9; /* einheitlicher, sanfter Seitenhintergrund */
    color: #333;
    margin: 0;
    /* Textur deaktiviert, um den cleanen Look aus dem Beispiel zu erreichen
    background-image: url('../bilder/graph.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

/* Globale Größen-Variablen für Produkt-Arch-Bilder */
:root {
    --product-arch-size: 320px; /* Standardgröße */
    /* Steuerung der Produkt-Grid-Größe */
    --product-card-min: 250px;   /* minimale Kartenbreite pro Spalte */
    --product-grid-gap: 20px;    /* Abstand zwischen Karten */
}

@media (min-width: 768px) {
    :root { --product-arch-size: 340px; }
}

@media (min-width: 1024px) {
    :root { --product-arch-size: 380px; }
}

/* Local webfont: Mackle Script (place the .ttf/.woff in fonts/ as instructed) */
@font-face {
    font-family: 'Mackle Script';
    src: url('../fonts/mackle-script.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

header {
    text-align: left;
    gap: 1.25rem 13.125px;
    padding: 20px 20px 14px 20px;
    background: #f7efe9; /* sanftes Beige wie im Referenzbild */
    border-bottom: 1px solid #eadfd6; /* dezente Unterlinie */
}

.logo-img {
    width: clamp(120px, 18vw, 200px);
    display: block;
    margin: 0 left;
}

.logo-text {
    /* Prefer the local Mackle Script if available; fall back to Great Vibes */
    font-family: 'Mackle Script', 'Marck Script', 'Great Vibes', cursive;
    font-size: clamp(28px, 6vw, 48px);
    color: #333;
    margin: 10px 0;
    letter-spacing: 0.5px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #7a5b46; /* warmes Braun */
    font-weight: 500;
    font-size: clamp(13px, 1.4vw, 16px);
}

.hero {
    text-align: center;
    padding: 48px 40px;
    background-color: #f7efe9; /* sanftes Beige wie im Beispiel */
    font-size: 18px;
    line-height: 1.8;
}

/* Einheitliche Innenbreite wie auf den Legal-/Kontakt-Seiten */
.hero .hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: clamp(28px, 4.5vw, 42px); /* flüssige Typografie */
    color: #7a5b46; /* warmes Braun */
    margin: 10px 0 14px 0;
    font-weight: 700;
}

.hero h3 {
    font-size: 20px;
    color: #333;
    margin: 20px 0 15px 0;
    font-weight: 700;
}

.hero p {
    color: #a78974; /* weichere Fließtextfarbe */
}

.hero ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.hero li {
    padding: 8px 0;
    font-size: 16px;
    color: #555;
}

.hero li:before {
    content: "✔ ";
    color: #a0522d;
    font-weight: bold;
    margin-right: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--product-card-min), 1fr));
    gap: var(--product-grid-gap);
    padding: 20px;
}

/* Größen-Varianten für flexible Steuerung direkt per Klasse */
.product-grid.size-s {
    --product-card-min: 200px;
    --product-grid-gap: 14px;
    --product-arch-size: 280px;
}

.product-grid.size-m {
    --product-card-min: 250px;
    --product-grid-gap: 20px;
    --product-arch-size: 320px;
}

.product-grid.size-l {
    --product-card-min: 320px;
    --product-grid-gap: 24px;
    --product-arch-size: 380px;
}

.product {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product img {
    max-width: 100%;
    border-radius: 8px;
}

/* Arch-Bildstil wie im Beispiel (halbrund oben, gerade unten) */
.product .image-arch {
    border-radius: 999px 999px 0 0; /* großer Radius für halbrunden Abschluss */
    overflow: hidden;
    background: #f7f1eb;
    aspect-ratio: 1 / 1; /* quadratisch, damit der Bogen harmonisch wirkt */
    width: min(50%, var(--product-arch-size)); /* kontrollierte Größe */
    margin: 0 auto; /* zentrieren innerhalb der Karte */
}

.product .image-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild sauber füllen */
    display: block;
}

/* Beschriftung unter dem Bild: Link mit Unterstreichung + kleiner Stern */
.product .caption { margin-top: 12px; }

.product .title-link {
    color: #8b6a2b; /* warmes Goldbraun */
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: rgba(139,106,43,0.35);
    font-weight: 600;
    overflow-wrap: anywhere; /* Zeilenumbruch für sehr lange Titel */
}

.product .title-link:hover {
    text-decoration-color: rgba(139,106,43,0.85);
}

.product .title-link .star {
    color: #e0b018;
    margin-left: 6px;
}

.product .brand {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #9a9a9a;
}

/* Arch-Stil auch für Kategorien nutzen */
.category-card .cat-arch {
    border-radius: 999px 999px 0 0;
    overflow: hidden;
    background: #f7f1eb;
    aspect-ratio: 1 / 1;
}

.category-card .cat-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-card .cat-caption { margin-top: 12px; }

.category-card .title-link {
    color: #8b6a2b;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: rgba(139,106,43,0.35);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.category-card .title-link:hover { text-decoration-color: rgba(139,106,43,0.85); }

.category-card .title-link .star { color: #e0b018; margin-left: 6px; }

.category-card .brand {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #9a9a9a;
}

/* Fallback für Browser ohne aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
    .product .image-arch,
    .category-card .cat-arch { position: relative; }
    .product .image-arch::before,
    .category-card .cat-arch::before { content: ''; display: block; padding-top: 100%; }
    .product .image-arch img,
    .category-card .cat-arch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
}

/* Kategorien-Grid (Produktarten) */
.category-section {
    padding: 30px 20px 10px 20px;
}

.category-title {
    font-family: 'Mackle Script', 'Marck Script', 'Great Vibes', cursive;
    font-size: clamp(28px, 5vw, 36px);
    text-align: left;
    margin: 0 0 16px 0;
    color: #333;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.category-card {
    background: #fff;
    border: 6px solid #ffffff; /* sichtbarer weißer Rahmen */
    border-radius: 12px;
    /* feine Kontur + Schatten */
    box-shadow: 0 0 0 1px #e9e1d8, 0 2px 6px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px #e9e1d8, 0 8px 18px rgba(0,0,0,0.12);
}

.category-card .cat-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.category-card .cat-body {
    padding: 12px 14px 16px 14px;
}

.category-card .cat-link {
    color: #8b6a2b;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(139,106,43,0.35);
    font-weight: 600;
}

.category-card .cat-link:hover {
    text-decoration-color: rgba(139,106,43,0.85);
}

.category-card .cat-arrow { margin-left: 6px; }

@media (max-width: 600px) {
    .category-title { font-size: 30px; }
}

.price {
    font-weight: bold;
    color: #a0522d;
}

button {
    background-color: #a0522d;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

button:hover {
    background-color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

button:active {
    transform: translateY(0);
}

/* Hover-Effekte für Produkt-Karten */
.product {
    transition: all 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Hover-Effekte für Navigation */
nav a {
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #a0522d;
    border-bottom: 2px solid #a0522d;
}

/* aktiver Link in der Navigation */
nav a.active {
    color: #a0522d;
    border-bottom-color: rgba(160,82,45,0.85);
}

/* kleiner Pfeil für Links mit Unterpunkten */
nav a.has-sub::after {
    content: ' ▾';
    font-size: .9em;
    margin-left: 4px;
    color: currentColor;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 22px 20px;
    background-color: #f7efe9; /* sanftes Beige wie der Header */
    border-top: 1px solid #eadfd6; /* dezente Linie */
    font-size: 14px;
    color: #7a5b46; /* warmes Braun für Text */
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    width: 90px;
    height: 90px;
    left: auto;
    display: block;
}

.social-link {
    display: inline-block;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: block;
}

footer a {
    color: #7a5b46;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid rgba(122,91,70,0.25);
}

footer a:hover {
    color: #a0522d;
    border-bottom-color: rgba(160,82,45,0.65);
}

/* Farbe des Instagram-Icons dem Footer-Ton angleichen */
/* Unterstreichung nur bei Text-Links, nicht bei reinen Icon-Links */
footer .social-link { border-bottom: 0; }
footer .social-link:hover { border-bottom-color: transparent; }

/* Farbe des Instagram-Icons dem Footer-Ton angleichen */
.social-icon path,
.social-icon circle { fill: currentColor !important; }

/* Zusätzliche Cross-Browser-Grundlagen am Ende, falls Einfügen oben scheitert */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Notices (Erfolg/Fehler) – einheitlich in Kontakt, Kasse, Danke */
.notice {
    margin-top: 12px;
    padding: 12px 16px;
    border: 1px solid #eadfd6;
    background: #f7efe9;
    border-radius: 8px;
    font-weight: 600;
}
.notice.success { color: #2e7d32; }
.notice.error { color: #b3261e; background: #fff5f5; border-color: #ffdada; }

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 36px;
    }

    nav a {
        margin: 0 10px;
        font-size: 14px;
    }

    /* Global die Grid-Variablen für kleinere Screens anpassen */
    :root { --product-card-min: 200px; --product-grid-gap: 15px; }

    .product-grid { padding: 15px; }

    .hero {
        padding: 30px 15px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px;
    }

    .logo-img { width: clamp(90px, 28vw, 160px); }

    .logo-text {
        font-size: 28px;
        margin: 8px 0;
    }

    nav a {
        margin: 0 8px;
        font-size: 12px;
    }

    /* Auf sehr kleinen Geräten eine Spalte erzwingen */
    :root { --product-card-min: 100%; --product-grid-gap: 15px; }
    .product-grid { padding: 10px; }

    .product {
        padding: 12px;
    }

    button {
        width: 100%;
        padding: 12px;
    }

    .hero {
        padding: 20px 10px;
        font-size: 14px;
    }
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.contact-hero h2 {
    font-family: 'Mackle Script', 'Marck Script', 'Great Vibes', cursive;
    font-size: 48px;
    color: #333;
    margin: 0 0 10px 0;
}

.contact-hero p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #a0522d;
    margin: 0 0 8px 0;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.info-item a {
    color: #a0522d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #8b4513;
    text-decoration: underline;
}

/* Kontaktformular */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a0522d;
    box-shadow: 0 0 5px rgba(160, 82, 45, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #a0522d;
    color: white;
    border: none;
    padding: 14px 30px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 20px;
    }

    .contact-hero h2 {
        font-size: 36px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }
}

/* Legal Pages (Impressum, Datenschutz) */
.legal-hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.legal-hero h2 {
    font-family: 'Mackle Script', 'Marck Script', 'Great Vibes', cursive;
    font-size: 48px;
    color: #333;
    margin: 0;
}

.legal-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    color: #555;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #a0522d;
    padding-bottom: 10px;
}

.legal-section h3:first-child {
    margin-top: 0;
}

.legal-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-section p {
    margin-bottom: 15px;
    font-size: 14px;
}

.legal-section a {
    color: #a0522d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #8b4513;
    text-decoration: underline;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 40px 20px;
    }

    .legal-hero h2 {
        font-size: 36px;
    }

    .legal-section {
        padding: 20px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .legal-section h4 {
        font-size: 15px;
    }

    .legal-section p {
        font-size: 13px;
    }
}

/* Warenkorb UI */
.cart-button {
    background: #a0522d;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.cart-button:hover {
    background: #8b4513;
}

.cart-panel {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 320px;
    max-height: 70vh;
    overflow: auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    padding: 16px;
    display: none;
    z-index: 1000;
}

.cart-panel.open { display: block; }

.cart-panel h3 {
    margin: 0 0 12px 0;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.cart-items li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.cart-items li:last-child { border-bottom: none; }

.remove-item {
    /* Überschreibe globale Button-Styles bewusst für kleines, kontrastreiches Icon */
    background: transparent !important;
    color: #7a5b46 !important;
    border: none !important;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px; /* gut lesbar */
    padding: 2px 6px; /* kleine Zielgröße */
    border-radius: 4px;
    line-height: 1;
}

.remove-item:hover { 
    background: rgba(122,91,70,0.12);
    color: #7a5b46;
}

.remove-item:focus-visible{
    outline: 2px solid #7a5b46;
    outline-offset: 2px;
}

.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0 12px 0;
    font-weight: 600;
}

.checkout-btn {
    background-color: #a0522d;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
}

.checkout-btn:hover { background-color: #8b4513; }

/* Checkout Page */
.checkout-hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.checkout-hero h2 {
    font-family: 'Mackle Script', 'Marck Script', 'Great Vibes', cursive;
    font-size: 48px;
    color: #333;
    margin: 0 0 10px 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary,
.checkout-form-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.order-summary h3,
.checkout-form-wrap h3 {
    font-size: 24px;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.summary-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.summary-list li:last-child { border-bottom: none; }

@media (max-width: 900px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #eadfd6;
    box-shadow: 0 -4px 14px rgba(0,0,0,0.08);
    padding: 18px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    font-size: 14px;
    z-index: 1200;
}
.cookie-banner p { flex: 1 1 300px; margin: 0; line-height: 1.5; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner button { margin-top: 0; padding: 10px 16px; }
.cookie-banner .btn-secondary {
    background: #f7efe9;
    color: #7a5b46;
    border: 1px solid #eadfd6;
}
.cookie-banner .btn-secondary:hover { background: #eadfd6; }

.cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 1300;
}
.cookie-modal-backdrop.open { display: block; }

.cookie-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: min(520px, 92vw);
    max-height: 80vh;
    overflow: auto;
    border-radius: 12px;
    box-shadow: 0 10px 34px rgba(0,0,0,0.25);
    padding: 28px 30px 34px 30px;
    font-size: 14px;
    display: none;
    z-index: 1400;
}
.cookie-modal.open { display: block; }
.cookie-modal h2 { margin: 0 0 16px 0; font-size: 22px; color: #333; }
.cookie-category { margin-bottom: 18px; }
.cookie-category h3 { margin: 0 0 6px 0; font-size: 16px; color: #a0522d; }
.cookie-category p { margin: 0 0 4px 0; line-height: 1.4; }
.cookie-modal-buttons { display: flex; gap: 10px; margin-top: 12px; }
.cookie-modal-buttons button { flex: 1; }
.cookie-revoke-btn {
    background: #f7efe9;
    color: #7a5b46;
    border: 1px solid #eadfd6;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}
.cookie-revoke-btn:hover { background: #eadfd6; }

/* Generic Confirm Modal (Design an Website angelehnt) */
.confirm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 1450;
}
.confirm-backdrop.open { display: block; }

.confirm-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: min(480px, 92vw);
    border-radius: 12px;
    box-shadow: 0 10px 34px rgba(0,0,0,0.25);
    padding: 22px 24px 18px 24px;
    display: none;
    z-index: 1460;
}
.confirm-modal.open { display: block; }
.confirm-title { margin: 0 0 8px 0; font-size: 18px; color: #333; font-weight: 700; }
.confirm-text { margin: 0 0 14px 0; color: #555; line-height: 1.6; font-size: 14px; }
.confirm-buttons { display: flex; gap: 10px; justify-content: flex-end; }
.confirm-btn {
    background: #a0522d; color: #fff; border: none; padding: 10px 16px; border-radius: 6px; cursor: pointer; font-weight: 700;
}
.confirm-btn:hover { background: #8b4513; }
.confirm-btn.secondary { background: #f7efe9; color: #7a5b46; border: 1px solid #eadfd6; font-weight: 600; }
.confirm-btn.secondary:hover { background: #eadfd6; }

/* Hervorhebung der Telefonnummer im Anruf-Dialog */
.call-number {
    font-size: 20px;
    font-weight: 700;
    color: #a0522d;
    letter-spacing: 0.3px;
    margin: 4px 0 10px 0;
}

.confirm-hint {
    margin: 2px 0 12px 0;
    color: #777;
    font-size: 13px;
}

@media (max-width: 600px) {
    .cookie-banner { font-size: 13px; padding: 16px 16px; }
    .cookie-banner p { flex: 1 1 100%; }
    .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* Floating Back-to-Top Button */
.back-to-top-fab {
    position: fixed;
    right: 20px;
    bottom: 84px; /* über Cart-Panel/ Footer-Bereich */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #a0522d;
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1100;
}
.back-to-top-fab.show { display: inline-flex; }
.back-to-top-fab:hover { background: #8b4513; }
.back-to-top-fab:active { transform: translateY(1px); }

/* Leichte Toasts für temporäre Hinweise (z. B. Undo) */
#toast-wrap {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1500;
}
.toast {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.toast-undo {
    background: #f7efe9;
    color: #7a5b46;
    border: 1px solid #eadfd6;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 0;
}
.toast-undo:hover { background: #eadfd6; }