/*
 * Anwendungs-Seite — Brand-Look (warm, modern, gärtnerlich)
 * Icons: Tabler Icons (MIT License, https://tabler.io/icons) — inline SVG, stroke = currentColor
 *
 * Eigenständige anw-* Klassen, kollidieren nicht mit style.css/home.css.
 * Container-Alignment identisch zur Startseite: padding 0 calc(10vw + 7px).
 */

:root {
    --anw-bg:          #f7f4ec;
    --anw-card:        #ffffff;
    --anw-ink:         #2b2723;
    --anw-ink-soft:    #6c655c;
    --anw-line:        #d8d2c0;
    --anw-accent:      #5a7a4d;
    --anw-accent-dark: #425a39;
    --anw-accent-soft: #e1ead8;
    --anw-earth:       #6b4f3a;
    --anw-gold:        #c8a45a;
    --anw-shadow:      0 1px 3px rgba(60, 45, 25, 0.04), 0 2px 8px rgba(60, 45, 25, 0.06);
    --anw-shadow-lg:   0 10px 30px rgba(60, 45, 25, 0.10), 0 4px 14px rgba(60, 45, 25, 0.06);
    --anw-radius:      14px;
    --anw-serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
    --anw-sans:        'Inter', system-ui, sans-serif;
}

.anw-container {
    width: 100%;
    max-width: none;
    margin: 50px 0 60px;
    padding: 0 calc(10vw + 7px);
    box-sizing: border-box;
    font-family: var(--anw-sans);
    color: var(--anw-ink);
}
@media (max-width: 700px) {
    .anw-container { padding: 0 5vw; margin: 100px 0 40px; }
}

/* ============ Intro ============ */
.anw-intro { margin-bottom: 36px; }
.anw-title {
    font-family: var(--anw-serif);
    font-weight: 600;
    color: var(--anw-earth);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.anw-subline {
    font-family: var(--anw-serif);
    font-style: italic;
    color: var(--anw-ink-soft);
    font-size: clamp(17px, 1.8vw, 21px);
    margin: 0;
    line-height: 1.4;
}

/* ============ Schritte-Leiste ============ */
.anw-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 44px;
}
.anw-step {
    background: var(--anw-card);
    border-radius: var(--anw-radius);
    box-shadow: var(--anw-shadow);
    padding: 22px 20px 20px;
    position: relative;
}
.anw-step-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--anw-serif);
    font-size: 30px;
    font-weight: 600;
    color: var(--anw-accent-soft);
    line-height: 1;
}
.anw-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--anw-accent-soft);
    color: var(--anw-accent-dark);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}
.anw-step-icon svg { width: 26px; height: 26px; }
.anw-step h3 {
    font-family: var(--anw-sans);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--anw-ink);
}
.anw-step p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--anw-ink-soft);
    margin: 0;
}
@media (max-width: 999px) {
    .anw-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 599px) {
    .anw-steps { grid-template-columns: 1fr; }
}

/* ============ Produkt-Karten ============ */
.anw-section-title {
    font-family: var(--anw-serif);
    font-weight: 600;
    color: var(--anw-earth);
    font-size: clamp(21px, 2.2vw, 27px);
    margin: 0 0 20px;
}
.anw-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 44px;
}
.anw-product {
    background: var(--anw-card);
    border-radius: var(--anw-radius);
    box-shadow: var(--anw-shadow);
    padding: 26px 26px 24px;
    display: flex;
    flex-direction: column;
}
.anw-product-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}
.anw-product-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--anw-accent-soft);
    color: var(--anw-accent-dark);
    display: grid;
    place-items: center;
}
.anw-product-icon svg { width: 30px; height: 30px; }
.anw-product-head h3 {
    font-family: var(--anw-serif);
    font-weight: 600;
    font-size: 20px;
    color: var(--anw-earth);
    margin: 0;
    line-height: 1.25;
    min-width: 0;                     /* lange Namen dürfen umbrechen statt overflowen */
    overflow-wrap: break-word;
}
.anw-product-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--anw-accent-dark);
    background: var(--anw-accent-soft);
    border-radius: 999px;
    padding: 4px 12px;
    margin: 2px 0 14px 64px;
}
.anw-mix {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.anw-mix li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 2px;
    border-top: 1px dashed var(--anw-line);
    font-size: 14.5px;
    line-height: 1.45;
}
.anw-mix li:first-child { border-top: 0; }
.anw-mix svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--anw-accent);
}
.anw-mix .anw-mix-label { flex: 1 1 auto; color: var(--anw-ink); }
.anw-mix .anw-mix-ratio {
    flex: 0 0 auto;
    font-family: var(--anw-serif);
    font-weight: 700;
    font-size: 17px;
    color: var(--anw-accent-dark);
    white-space: nowrap;
}
.anw-yield {
    margin: 14px 0 0;
    padding: 10px 14px;
    background: var(--anw-bg);
    border-radius: 9px;
    font-size: 12.5px;
    color: var(--anw-ink-soft);
    display: flex;
    align-items: center;
    gap: 9px;
}
.anw-yield svg { flex: 0 0 auto; width: 17px; height: 17px; color: var(--anw-gold); }
@media (max-width: 899px) {
    .anw-products { grid-template-columns: 1fr; }
}
@media (max-width: 599px) {
    .anw-product { padding: 20px 18px 18px; }
    .anw-product-head h3 { font-size: 18px; }
    .anw-product-badge { margin-left: 0; }    /* Badge auf Mobile linksbündig unter dem Kopf */
    .anw-mix li { font-size: 13.5px; gap: 10px; }
    .anw-mix .anw-mix-ratio { font-size: 15px; }
}

/* ============ Sicherheits-Banner ============ */
.anw-safety {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fdf6e8;
    border: 1px solid #ecd9ad;
    border-radius: var(--anw-radius);
    padding: 20px 24px;
    margin-bottom: 44px;
}
@media (max-width: 599px) {
    .anw-safety { align-items: flex-start; padding: 16px 18px; gap: 14px; }
}
.anw-safety svg {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    color: #b3872e;
}
.anw-safety p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: #6e5410;
}
.anw-safety strong { font-weight: 700; }

/* ============ CTA ============ */
.anw-cta-wrap { text-align: center; }
.anw-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--anw-accent);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--anw-sans);
    transition: background 0.15s, transform 0.05s;
}
.anw-cta:hover { background: var(--anw-accent-dark); transform: translateY(-1px); }
.anw-cta svg { width: 18px; height: 18px; }

/* ============ Standorte / Locations ============ */
.anw-intro-flex {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 36px;
}
.anw-intro-logo {
    flex: 0 0 auto;
    width: 130px;
    height: auto;
    display: block;
}
.anw-intro-flex .anw-intro { margin-bottom: 0; }
@media (max-width: 720px) {
    .anw-intro-flex { flex-direction: column; text-align: center; gap: 14px; }
    .anw-intro-logo { width: 100px; }
}

/* Karte im Brand-Karten-Look — iframe bleibt unangetastet */
.anw-map-card {
    background: var(--anw-card);
    border-radius: var(--anw-radius);
    box-shadow: var(--anw-shadow);
    overflow: hidden;
    margin-bottom: 44px;
}
.anw-map-card iframe { display: block; width: 100%; border: 0; }
/* Consent-Placeholder innerhalb der Karte zentriert */
.anw-map-card .consent-map-placeholder {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--anw-bg);
}
@media (max-width: 599px) {
    .anw-map-card .consent-map-placeholder { min-height: 300px; padding: 28px 16px; }
}

/* ============ Bestellbestätigung ============ */
.anw-confirm {
    max-width: 720px;
    margin: 0 auto 44px;
    background: var(--anw-card);
    border-radius: var(--anw-radius);
    box-shadow: var(--anw-shadow);
    padding: 40px 38px 36px;
    text-align: center;
}
.anw-confirm-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--anw-accent-soft);
    color: var(--anw-accent-dark);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
}
.anw-confirm-check svg { width: 36px; height: 36px; }
.anw-confirm h1 {
    font-family: var(--anw-serif);
    font-weight: 600;
    color: var(--anw-earth);
    font-size: clamp(24px, 2.6vw, 32px);
    margin: 0 0 10px;
    line-height: 1.2;
}
.anw-confirm-sub {
    font-size: 15.5px;
    color: var(--anw-ink-soft);
    line-height: 1.6;
    margin: 0 0 6px;
}
.anw-confirm-meta {
    display: inline-block;
    margin: 14px 0 26px;
    padding: 8px 18px;
    background: var(--anw-bg);
    border-radius: 999px;
    font-size: 13px;
    color: var(--anw-ink-soft);
}
.anw-confirm-meta code {
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 12px;
    color: var(--anw-ink);
}
.anw-confirm-items {
    list-style: none;
    margin: 0 0 4px;
    padding: 0;
    text-align: left;
}
.anw-confirm-items li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 2px;
    border-top: 1px dashed var(--anw-line);
    font-size: 14.5px;
}
.anw-confirm-items li:first-child { border-top: 0; }
.anw-confirm-items .ci-name { flex: 1 1 auto; color: var(--anw-ink); }
.anw-confirm-items .ci-qty {
    flex: 0 0 auto;
    color: var(--anw-ink-soft);
    font-size: 13px;
    white-space: nowrap;
}
.anw-confirm-items .ci-price {
    flex: 0 0 auto;
    font-family: var(--anw-serif);
    font-weight: 700;
    font-size: 16px;
    color: var(--anw-ink);
    white-space: nowrap;
}
.anw-confirm-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 2px 0;
    border-top: 2px solid var(--anw-line);
    margin-bottom: 8px;
}
.anw-confirm-total span:first-child {
    font-weight: 700;
    font-size: 15px;
    color: var(--anw-ink);
}
.anw-confirm-total span:last-child {
    font-family: var(--anw-serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--anw-accent-dark);
}
.anw-confirm-shipping-note {
    font-size: 12.5px;
    color: var(--anw-ink-soft);
    text-align: right;
    margin: 0 0 22px;
}
.anw-confirm .anw-cta { margin-top: 10px; }
@media (max-width: 599px) {
    .anw-confirm { padding: 28px 18px 26px; }
    .anw-confirm-items li { font-size: 13.5px; gap: 8px; }
}

/* Alte Hero-/Seiten-Elemente sicher ausblenden, falls noch im DOM */
.homebg, .homebgklein, .title, .handytitel { display: none !important; }
