/* ═══════════════════════════════════════════
   Carnello – Globale Styles
   Inspiriert von Premium-Tiernahrung (Terra Canis Richtung):
   Luftig, natürlich, Gourmet-Feeling, viel Weißraum.
   ═══════════════════════════════════════════ */

/* ─── Self-hosted Web-Fonts (DSGVO-konform, keine Google-Fonts-CDN) ───
   Fraunces      = Headlines (warme, moderne „old-style"-Serif, Manufaktur-/Gourmet-Charakter).
   Hanken Grotesk = Fließtext (klare, freundliche, sehr gut lesbare Grotesk).
   Saturday Alright = verspielte Handschrift für Störer/Signaturen.
   Beide OFL, als Variable-Fonts (latin-Subset von fonts.gstatic.com heruntergeladen & selbst gehostet). */

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('../fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Hanken Grotesk';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('../fonts/hanken-grotesk-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Saturday Alright';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/saturday-alright.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* Carnello Brand */
    --c-green:       #25b093;
    --c-green-dark:  #1e9a80;
    --c-green-light: #3dd4b4;
    --c-craft:       #8e451e;
    --c-craft-light: #a8622e;

    /* Neutrals – weich, warm, natürlich */
    --c-dark:        #2a2523;
    --c-dark-soft:   #4a4340;
    --c-text:        #3d3532;
    --c-text-muted:  #726a62;
    --c-text-dim:    #bfb5ab;
    --c-text-light:  #faf8f5;
    --c-bg:          #faf8f5;
    --c-bg-warm:     #f4efe8;
    --c-bg-white:    #ffffff;
    --c-border:      #ebe5dc;

    /* Akzente */
    --c-gold:        #c9a96e;
    --c-error:       #c0392b;
    --c-success:     #27ae60;

    /* Lovely Bites */
    --c-hirsch:      #8d6cd0;
    --c-kamille:     #f5cb03;
    --c-sanddorn:    #fc7800;
    --c-yucca:       #00c58d;

    /* Typo – Fraunces für Headlines (warme Manufaktur-Serif),
       Hanken Grotesk für Body (klar & gut lesbar),
       Saturday Alright für handschriftliche Akzente (Störer, Signaturen) */
    --font-head:     'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:     'Hanken Grotesk', system-ui, -apple-system, sans-serif;
    --font-hand:     'Saturday Alright', 'Segoe Script', cursive;

    /* Layout */
    --radius:        6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --shadow:        0 2px 12px rgba(0,0,0,0.04);
    --shadow-md:     0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg:     0 12px 40px rgba(0,0,0,0.08);
    --ease:          cubic-bezier(0.22, 1, 0.36, 1);
    --transition:    0.35s var(--ease);
    --max-width:     1200px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green); text-decoration: none; transition: color var(--transition); }
/* Sichtbarer Tastatur-Fokus (a11y, WCAG 2.4.7) – Maus/Touch bleibt ringfrei */
:where(a, button, .btn, input, textarea, select, summary, [tabindex]):focus-visible {
    outline: 3px solid var(--c-green);
    outline-offset: 2px;
}
a:hover { color: var(--c-green-dark); }

/* ─── Utilities ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Typography – Groß, mutig, elegant ─── */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--c-dark);
    line-height: 1.15;
    font-weight: 700; /* Fraunces – kräftige, warme Serif-Headlines */
    font-optical-sizing: auto; /* große Headlines nutzen die Display-Formen */
    letter-spacing: -0.01em;
}
h3, h4 { font-weight: 600; } /* kleinere Headings etwas leichter */
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.5rem; }
p { max-width: 65ch; } /* Lesbare Zeilenlänge */

/* ─── Ankündigungs-/News-Zeile (ganz oben) ─── */
.announce-bar { background: var(--c-dark); color: #fff; font-size: 0.82rem; }
.announce-bar__inner { display: flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 0.5rem 1rem; flex-wrap: wrap; text-align: center; }
.announce-bar__tag { background: var(--c-green); color: #fff; font-weight: 700; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.14rem 0.5rem; border-radius: 999px; }
.announce-bar__text { color: rgba(255,255,255,0.92); }
.announce-bar__link { color: var(--c-green-light); font-weight: 600; white-space: nowrap; }
.announce-bar__link:hover { color: #fff; }
@media (max-width: 500px) { .announce-bar { font-size: 0.74rem; } .announce-bar__inner { gap: 0.4rem; padding: 0.45rem 0.7rem; } }

/* ─── Header – Transparent, elegant ─── */
.site-header {
    background: var(--c-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s, background 0.3s;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(250,248,245,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--c-border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.site-logo { position: relative; z-index: 101; }
/* Logo als Badge: echte Breite wird reserviert (kein Menü-Overlap),
   negative margin-bottom hält die Header-Höhe konstant, Logo ragt
   unten ein Stück über die Trust-Microbar hinaus. */
.site-logo img {
    height: 86px; width: auto; display: block;
    margin-bottom: -38px;
    filter: drop-shadow(0 5px 14px rgba(42,38,32,.22));
    transition: height 0.3s;
}
@media (max-width: 767px) {
    /* Kein Badge-Overhang auf dem Handy → Logo sitzt vertikal mittig in der Kopfzeile */
    .site-logo img { height: 58px; margin-bottom: 0; }
}
/* Burger-Nav bereits auf Tablet/kleinem Laptop (769–1100px) */
@media (min-width: 768px) and (max-width: 1100px) {
    .burger-btn { display: flex; }
    .cart-link--header, .login-link--header { display: block; }
    .cart-link--nav { display: none; }
    .site-nav {
        position: fixed; top: 0; right: 0;
        width: 280px; height: 100vh;
        background: var(--c-bg-white);
        box-shadow: -4px 0 24px rgba(0,0,0,0.12);
        flex-direction: column; padding: 5rem 2rem 2rem; gap: 0;
        z-index: 200; transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    }
    .nav-open .site-nav { transform: translateX(0); }
    .site-nav a {
        font-size: 0.95rem; padding: 0.85rem 0;
        border-bottom: 0.5px solid var(--c-border); letter-spacing: 0.04em;
        text-transform: none;
    }
    .site-nav a::after { display: none; }
}
.site-nav { display: flex; gap: 1.1rem; align-items: center; flex: 1 1 auto; margin-left: 1.5rem; }
/* Kategorie-Links direkt neben dem Logo; Anmelden/Warenkorb nach rechts. */
.site-nav .nav-utility { margin-left: auto; }
/* Mobiles Slide-in-Menü: abdunkelndes Backdrop + saubere Ausrichtung von „Anmelden" */
.nav-backdrop { display: none; }
body.nav-open .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 190;
    background: rgba(18,22,18,0.5);
}
body.nav-open .site-nav .nav-utility { margin-left: 0; }

/* Mobile-Kopfzeile: Logo links · Menü (Burger) mittig · Login+Warenkorb rechts */
@media (max-width: 1100px) {
    .site-header .container { gap: 0.5rem; }
    .site-logo { flex: 1 1 0; }
    .burger-btn { flex: 0 0 auto; margin: 0; }
    .header-actions { flex: 1 1 0; justify-content: flex-end; gap: 1.1rem; }
}

/* Trust-Microbar: eine Zeile, auf Mobile kompakt ohne Umbruch */
.trust-bar__inner {
    display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
    justify-content: center; align-items: center;
    padding: .45rem 1rem; font-size: .78rem; letter-spacing: .02em;
}
.trust-bar__inner span { display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; }
@media (max-width: 767px) {
    .trust-bar__inner { flex-wrap: nowrap; gap: .5rem; font-size: clamp(.5rem, 2.7vw, .74rem); padding: .4rem .4rem; }
}
/* Nav erst ab Desktop horizontal; bis 1100px Burger-Menü (siehe unten),
   damit die vielen Punkte nicht mit dem größeren Logo kollidieren. */
.site-nav a {
    color: var(--c-text);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}
.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--c-green);
    transition: width 0.3s var(--ease);
}
.site-nav a:hover, .site-nav a.active { color: var(--c-green); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
/* ─── Burger Menu ─── */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 201;
}
.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-open .burger-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger-btn span:nth-child(2) { opacity: 0; }
.nav-open .burger-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cart-link--header {
    display: none;
    position: relative;
    color: var(--c-text);
    font-size: 1.1rem;
}
.login-link--header {
    display: none;
    position: relative;
    color: var(--c-text);
    font-size: 1.1rem;
}
.cart-link--header .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-link { position: relative; }
.cart-badge {
    background: var(--c-green);
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 700;
    width: 17px; height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 3px;
    vertical-align: top;
}

/* ─── Buttons – Clean, nicht zu laut ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px; /* Pill-Shape wie Terra Canis */
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--c-green);
    color: #fff;
}
.btn-primary:hover {
    background: var(--c-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,176,147,0.2);
}
.btn-ghost {
    background: transparent;
    color: var(--c-text);
    border: 1.5px solid var(--c-border);
}
.btn-ghost:hover {
    border-color: var(--c-green);
    color: var(--c-green);
}
.btn-craft {
    background: var(--c-craft);
    color: #fff;
}
.btn-craft:hover {
    background: var(--c-craft-light);
    color: #fff;
}
.btn-green { background: var(--c-green); color: #fff; }
.btn-green:hover { background: var(--c-green-dark); color: #fff; }
.btn-sm { padding: 0.45rem 1.2rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ─── Forms ─── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--c-bg-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--c-green);
    box-shadow: 0 0 0 4px rgba(37,176,147,0.08);
}
.form-control.error { border-color: var(--c-error); }
.form-hint { font-size: 0.78rem; color: var(--c-text-muted); margin-top: 0.3rem; }
.form-error { font-size: 0.78rem; color: var(--c-error); margin-top: 0.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Cards ─── */
.card {
    background: var(--c-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 1.75rem;
}

/* ─── Alerts ─── */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid;
}
.alert-error { background: #fdf0ee; color: var(--c-error); border-color: var(--c-error); }
.alert-success { background: #eefbf4; color: var(--c-success); border-color: var(--c-success); }
.alert-info { background: #fdf8ee; color: var(--c-craft); border-color: var(--c-craft); }

/* ─── Page Sections – Großzügig, viel Luft ─── */
.page-section {
    padding: clamp(3.5rem, 10vw, 7rem) 0;
}
.page-section--dark {
    background: var(--c-dark);
    color: var(--c-text-light);
}
.page-section--dark h1, .page-section--dark h2, .page-section--dark h3 { color: #fff; }
.page-section--warm {
    background: var(--c-bg-warm);
}
.page-section--craft {
    background: var(--c-craft);
    color: #fff;
}
.page-section--craft h1, .page-section--craft h2 { color: #fff; }
.page-section--cream { background: var(--c-bg-warm); }

/* Story-Sektion: warm-creme mit feinem grünen Akzent, statt schwerem Dunkel */
.page-section--story {
    background:
        radial-gradient(ellipse at top left, rgba(37,176,147,0.06), transparent 55%),
        var(--c-bg-warm);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.page-section--story .story-text h2 { color: var(--c-dark); }
.page-section--story .story-text p { color: var(--c-text); opacity: 0.82; }

/* ─── Konto-Bereich ─── */
.konto-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    max-width: 940px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}
.konto-sidebar nav { display: flex; flex-direction: column; gap: 0.2rem; }
.konto-sidebar a {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius);
    color: var(--c-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
}
.konto-sidebar a:hover { background: var(--c-bg-warm); color: var(--c-text); }
.konto-sidebar a.active { background: var(--c-green); color: #fff; font-weight: 600; }
.konto-content { min-width: 0; }
.konto-content h1 { font-size: 1.6rem; margin-bottom: 1.5rem; }

/* Auth-Seiten */
.auth-page { max-width: 420px; margin: 4rem auto; padding: 0 1.5rem; }
.auth-page .card { padding: 2.5rem; }
.auth-page h1 { text-align: center; margin-bottom: 0.4rem; }
.auth-page .auth-subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.auth-links { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; }

/* ─── Tabelle ─── */
.table-wrap { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
table.data-table th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-muted);
    padding: 0.6rem 0.75rem;
    border-bottom: 2px solid var(--c-border);
}
table.data-table td {
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
}
table.data-table tr:hover td { background: rgba(37,176,147,0.02); }

/* ─── Warenkorb-Tabelle: auf dem Handy gestapelt (kein Horizontal-Scroll) ─── */
@media (max-width: 640px) {
    table.cart-table, table.cart-table tbody, table.cart-table tfoot, table.cart-table tr, table.cart-table td { display: block; width: auto; }
    table.cart-table thead { display: none; }
    table.cart-table td { border: none; padding: 0; }
    table.cart-table tr:hover td { background: none; }

    /* Produktzeile = kompakte Karte: Name+Bild oben, Menge unten links, Preis unten rechts, ✕ oben rechts */
    table.cart-table tbody tr.cart-row {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "prod remove" "qty total";
        align-items: center;
        column-gap: 0.75rem; row-gap: 0.6rem;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--c-border);
    }
    table.cart-table tbody tr.cart-row td:nth-child(1) { grid-area: prod; min-width: 0; }
    table.cart-table tbody tr.cart-row td:nth-child(2) { grid-area: qty; }
    table.cart-table tbody tr.cart-row td:nth-child(3) { grid-area: total; text-align: right; font-size: 1.05rem; font-weight: 700; white-space: nowrap; }
    table.cart-table tbody tr.cart-row td:nth-child(4) { grid-area: remove; text-align: right; align-self: start; }

    /* Summenzeilen: Label links, Wert rechts – nie umbrechen */
    table.cart-table tfoot tr { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.45rem 0; }
    table.cart-table tfoot tr:first-child { border-top: 1px solid var(--c-border); padding-top: 0.8rem; margin-top: 0.3rem; }
    table.cart-table tfoot td { text-align: left; }
    table.cart-table tfoot td:first-child { flex: 1; }
    table.cart-table tfoot td:last-child { text-align: right; white-space: nowrap; }
}

/* Status-Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.badge-new { background: #e8f4fd; color: #2980b9; }
.badge-processing { background: #fef9f0; color: var(--c-craft); }
.badge-shipped { background: #eefbf4; color: var(--c-green-dark); }
.badge-delivered { background: #d5f5e3; color: #1e8449; }
.badge-cancelled { background: #fdf0ee; color: var(--c-error); }
.badge-paid { background: #eefbf4; color: var(--c-green-dark); }
.badge-pending { background: #fef9f0; color: var(--c-craft); }

/* ─── Footer – Dunkel als einziger Anker, leichter ─── */
.site-footer {
    background: var(--c-dark);
    color: var(--c-text-dim);
    padding: 3rem 0 4rem;
    font-size: 0.85rem;
    margin-top: 0;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1.5px;
    background: var(--c-green);
    opacity: 0.6;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-col h4 {
    color: var(--c-bg-warm);
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-col a { display: block; color: var(--c-text-dim); margin-bottom: 0.4rem; font-size: 0.84rem; }
.footer-col a:hover { color: var(--c-green-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2.5rem;
    padding: 1.5rem 0 0;
    text-align: center;
    font-size: 0.78rem;
    width: 100%;
    color: var(--c-text-dim);
    opacity: 0.7;
}

/* ─── Hero – Full-width, bildgetrieben ─── */
.hero {
    background: var(--c-craft);
    color: #fff;
    padding: clamp(4rem, 10vw, 7rem) 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Links kräftig dunkel für den Text, nach rechts transparent → Hund bleibt sichtbar.
       Plus dezenter Boden-Verlauf zur Erdung der Buttons. */
    background:
        linear-gradient(100deg,
            rgba(20,38,32,0.90) 0%,
            rgba(20,38,32,0.66) 30%,
            rgba(20,38,32,0.22) 50%,
            rgba(20,38,32,0.00) 70%),
        linear-gradient(to top,
            rgba(20,38,32,0.45) 0%,
            rgba(20,38,32,0.00) 38%);
}
.hero-content {
    position: relative; z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    text-align: left;
}
.hero-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1.1;
    color: #fff;
    max-width: 17ch;
    text-shadow: 0 2px 22px rgba(0,0,0,0.45);
    margin-bottom: 1.25rem;
}
/* Sauberes ®-Trademark am Hero-Wort (nicht mehr in der rotierten Handschrift) */
.hero-title .reg-mark {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7em;
    vertical-align: super;
    line-height: 0;
    margin-left: 0.04em;
    color: var(--c-green);
    text-shadow: 0 2px 22px rgba(0,0,0,0.45);
}
.hero-sub {
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.94);
    margin-bottom: 2.25rem;
    line-height: 1.65;
    max-width: 32ch;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }
.hero .btn-primary { background: var(--c-green); color: #fff; }
.hero .btn-primary:hover { background: var(--c-green-dark); box-shadow: 0 8px 28px rgba(37,176,147,0.38); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.trust-bar {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ─── Highlight-Leiste ─── */
.highlights-bar {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    background: var(--c-bg-white);
    border-bottom: 1px solid var(--c-border);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}
.highlight-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--c-text);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
    border: 1px solid var(--c-border);
    background: var(--c-bg);
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: var(--c-text);
}
.highlight-card__img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.highlight-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.highlight-card:hover .highlight-card__img img {
    transform: scale(1.08);
}
.highlight-card__text {
    flex: 1;
    min-width: 0;
}
.highlight-card__text h3 {
    font-size: 0.92rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}
.highlight-card__text p {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-bottom: 0.4rem;
}
.highlight-card__link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-green);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.highlight-card__link i {
    font-size: 0.65rem;
    transition: transform 0.3s var(--ease);
}
.highlight-card:hover .highlight-card__link i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-card { padding: 0.85rem; }
    .highlight-card__img { width: 70px; height: 70px; }
}

/* ─── Section Titles – Elegant, mit Raum ─── */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
}

/* ─── Category Grid ─── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
}
.category-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--c-bg-white);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.category-card:hover img { transform: scale(1.04); }
.category-card__placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--c-bg-warm), var(--c-border));
}
.category-card__info { padding: 1.25rem 1.5rem; }
.category-card__info h3 { font-size: 1.1rem; margin-bottom: 0.15rem; }
.category-card__count { font-size: 0.78rem; color: var(--c-text-muted); }

/* ─── Product Grid – Clean, großes Bild, minimale Info ─── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
}
.product-card {
    background: var(--c-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: none;
    border: 1px solid var(--c-border);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-card__image {
    display: block;
    position: relative;
    overflow: hidden;
}
.product-card__image img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    padding: 1.5rem;
    background: var(--c-bg);
    transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--c-bg-warm), var(--c-border));
}
.product-card { display: flex; flex-direction: column; }
.product-card__info { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card__info .btn { margin-top: auto; align-self: flex-start; }
.product-card__info h3 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--c-dark);
}
.product-card__subtitle { font-size: 0.8rem; color: var(--c-text-muted); margin-bottom: 0.6rem; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0 0 0.7rem; }
.product-card__tags .pill {
    font-size: 0.66rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1.3;
    color: var(--c-green-dark); background: #eefbf4; border: 1px solid #cdeede;
    padding: 0.18rem 0.5rem; border-radius: 999px; white-space: nowrap;
}
.product-card__price { margin-bottom: 0.85rem; }
.price-current { font-size: 1.1rem; font-weight: 700; color: var(--c-dark); }
.price-old { font-size: 0.82rem; color: var(--c-text-muted); text-decoration: line-through; margin-right: 0.4rem; }
.out-of-stock { font-size: 0.82rem; color: var(--c-error); font-weight: 700; }

/* Shop-Grid: Tags, Preise und Buttons über alle Kacheln zeilenweise auf gleicher Höhe.
   Der ganze untere Block (Tags → Preis → Button) wird nach unten verankert, statt nur
   der Button – so „wandern" Tags/Preise nicht mehr mit der Titel-/Untertitel-Länge. */
.product-grid--shop .product-card__tags { margin-top: auto; min-height: 1.4rem; }
.product-grid--shop .product-card__info .btn,
.product-grid--shop .product-card__info .out-of-stock { margin-top: 0; }

/* ─── Story Split – Lifestyle-Bild groß ─── */
.story-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.story-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.story-text h2 { color: var(--c-dark); margin-bottom: 1.25rem; }
.story-text p { color: var(--c-text-muted); margin-bottom: 0.85rem; line-height: 1.75; }
.story-text blockquote {
    border-left: 3px solid var(--c-green);
    padding-left: 1.25rem;
    margin: 1.75rem 0;
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--c-dark-soft);
    line-height: 1.5;
}

/* ─── Testimonials ─── */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}
.testimonial-card {
    text-align: left;
    padding: 2rem;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--c-green);
    opacity: 0.12;
    position: absolute;
    top: 0.75rem;
    left: 1.5rem;
    line-height: 1;
}
.testimonial-stars { color: var(--c-gold); font-size: 0.95rem; margin-bottom: 0.75rem; }
.testimonial-text {
    font-size: 0.95rem;
    color: var(--c-text);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}
.testimonial-author strong { display: block; color: var(--c-dark); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--c-text-muted); }

/* ─── Liebling des Monats ─── */
.pet-teaser { display: flex; gap: 2.5rem; align-items: center; max-width: 680px; margin: 0 auto; }
.pet-teaser__photo {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}
.pet-teaser__label {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
    font-weight: 700; color: var(--c-green); margin-bottom: 0.3rem; display: block;
}
.pet-teaser__owner { color: var(--c-text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ─── Tierschutz-Teaser ─── */
.tierschutz-teaser { background: var(--c-green); }
.tierschutz-teaser h2 { color: #fff; max-width: 550px; margin: 0 auto 1rem; }
.btn-gold {
    background: #fff; color: var(--c-green-dark);
    padding: 0.75rem 2rem; border-radius: 50px;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
    display: inline-flex; transition: all var(--transition);
}
.btn-gold:hover { background: var(--c-bg-warm); color: var(--c-green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

/* ─── Newsletter ─── */
.newsletter-section { background: var(--c-bg-white); }
.newsletter-row { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.newsletter-row .form-control { flex: 1; border-radius: 50px; padding-left: 1.25rem; }
.newsletter-row .btn { border-radius: 50px; }
.newsletter-consent {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.78rem; color: var(--c-text-muted); cursor: pointer;
    text-align: left; max-width: 440px; margin: 0.75rem auto 0;
}
.newsletter-consent input[type="checkbox"] { margin-top: 2px; accent-color: var(--c-green); }
.newsletter-msg { margin-top: 1rem; }

/* ─── Pfoten-Bewertung (Font Awesome) ─── */
.paw-rating { display: inline-flex; align-items: center; gap: 3px; }
.paw { font-size: 0.82rem; transition: color 0.2s, opacity 0.2s; }
.paw-filled { color: var(--c-green); opacity: 1; }
.paw-empty { color: var(--c-border); opacity: 0.5; }
.paw-number { font-size: 0.78rem; font-weight: 700; color: var(--c-text-muted); margin-left: 0.4rem; }
.paw-rating--sm .paw { font-size: 0.68rem; }
.paw-rating--lg .paw { font-size: 1.05rem; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .konto-layout { grid-template-columns: 1fr; gap: 1rem; }
    .konto-sidebar nav { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-col { text-align: center; }
    .footer-col a { display: inline-block; }
    .hero { padding: 3rem 0 3.5rem; }
    .trust-bar { gap: 1rem; font-size: 0.7rem; }
    .story-split { grid-template-columns: 1fr; gap: 2rem; }
    .pet-teaser { flex-direction: column; text-align: center; }
    .pet-teaser__photo { width: 160px; height: 160px; }
    .newsletter-row { flex-direction: column; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }

    /* ─── Team Mobile ─── */
    .team-member {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .team-member > div {
        order: 0 !important;
    }
    .team-member__photo {
        order: -1 !important;
    }
    .team-member img {
        max-width: 200px;
        margin: 0 auto;
    }
    .team-member blockquote {
        text-align: left;
    }

    /* ─── Burger Menu Mobile ─── */
    .burger-btn { display: flex; }
    .cart-link--header, .login-link--header { display: block; }
    .cart-link--nav { display: none; }

    .site-nav {
        position: fixed;
        top: 0; right: 0;
        width: 280px; height: 100vh;
        background: var(--c-bg-white);
        box-shadow: -4px 0 24px rgba(0,0,0,0.12);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        z-index: 200;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    }
    .nav-open .site-nav { transform: translateX(0); }
    .site-nav a {
        font-size: 0.95rem;
        padding: 0.85rem 0;
        border-bottom: 0.5px solid var(--c-border);
        letter-spacing: 0.04em;
    }
    .site-nav a::after { display: none; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-card__image img { height: 180px; }
}

/* ═══════════════════════════════════════════
   Carnello-Akzente: Handschrift, Pfotenspur, Signatur, Herz
   ═══════════════════════════════════════════ */

/* Handschriftlicher Inline-Akzent. Nutzung: <span class="handwritten">Fleisch</span> */
.handwritten {
    font-family: var(--font-hand);
    font-weight: 400; /* Saturday Alright hat nur einen Schnitt – kein faux-bold */
    color: var(--c-green);
    font-style: normal;
    letter-spacing: 0.01em;
    /* Größer weil Schreibschrift optisch kleiner wirkt */
    font-size: 1.3em;
    line-height: 0.9;
    display: inline-block;
    transform: rotate(-3deg) translateY(-0.05em);
}
.handwritten--ink { color: var(--c-dark); }
.handwritten--craft { color: var(--c-craft); }

/* ─── Pfotenspur-Divider zwischen Sektionen ─── */
.paw-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 0;
    opacity: 0.18;
    pointer-events: none;
}
.paw-divider svg {
    width: 22px;
    height: 22px;
    color: var(--c-green);
    flex-shrink: 0;
}
.paw-divider svg:nth-child(1) { transform: rotate(-18deg) translateY(6px); }
.paw-divider svg:nth-child(2) { transform: rotate(12deg) translateY(-4px); }
.paw-divider svg:nth-child(3) { transform: rotate(-8deg) translateY(8px); }
.paw-divider svg:nth-child(4) { transform: rotate(20deg) translateY(-2px); }
.paw-divider svg:nth-child(5) { transform: rotate(-14deg) translateY(4px); }

/* ─── "Pfote drauf!"-Signatur in Markengeschichte ─── */
.signature {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.signature__paw {
    width: 34px;
    height: 34px;
    color: var(--c-green);
    flex-shrink: 0;
    transform: rotate(-12deg);
}
.signature__text {
    font-family: var(--font-hand);
    font-size: 1.8rem;
    line-height: 1.1;
    color: var(--c-dark);
    font-weight: 400;
    display: block;
}
.signature small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    font-family: var(--font-body);
}
.signature__text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-top: 0.2rem;
}

/* ─── Fliegendes Herz bei "In den Warenkorb" ─── */
.fly-heart {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 1.4rem;
    color: var(--c-green);
    animation: fly-heart 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity;
}
@keyframes fly-heart {
    0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
    15%  { transform: translate(-50%, -60%) scale(1.2); opacity: 1; }
    100% { transform: translate(-50%, -180%) scale(0.8); opacity: 0; }
}

/* Warenkorb-Feedback: kleine Herzchen-&-Pfoten-Explosion aus dem Button */
.cart-burst {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    left: 0; top: 0;
    transform: translate(-50%, -50%) scale(0.2);
    text-shadow: 0 1px 4px rgba(42,38,32,0.20);
    will-change: transform, opacity;
    animation: cart-burst 1.8s cubic-bezier(0.18, 0.9, 0.32, 1) forwards;
}
@keyframes cart-burst {
    0%   { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0.2) rotate(0deg); opacity: 0; }
    18%  { opacity: 1; transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1.25) rotate(calc(var(--rot) * 0.15)); }
    100% { transform: translate(calc(-50% + var(--x) + var(--dx)), calc(-50% + var(--y) + var(--dy))) scale(0.45) rotate(var(--rot)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .cart-burst { animation-duration: 0.9s; }
}
