/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;600;700&display=swap');

:root {
    /* Basis & Hintergründe (NEU: Hell & Creme) */
    --bg-main: #f9f8f4;         /* Warmes Creme für den grossen Hintergrund */
    --bg-surface: #ffffff;      /* Reines Weiss für die schwebenden Karten */
    --bg-muted: #edeae1;        /* Leicht abgedunkeltes Creme für Formulare & Boxen */

    /* Deine Originalfarben (Jetzt als Akzente) */
    --moosgruen: #2d4236;
    --eukalyptus: #7a9283;
    --accent-primary: #601a24;  /* Bordeaux */
    --accent-hover: #a05333;    /* Rostbraun */

    /* Text (Invertiert für hellen Hintergrund) */
    --text-main: #181c19;       /* Wald-Anthrazit für perfekten Lesekontrast */
    --text-muted: #5a635d;      /* Abgeschwächtes Graugrün für Untertitel */
    --text-color: #2b2b2b;
    --text-creme: #f9f8f4;      /* Creme für Text auf hellen Hintergrund */
}

/* --- BASIS-RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* --- APP SHELL BASIS --- */
body.app-body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--moosgruen);
}

h1, .page-title {
    padding: 0 20px;
}

.content-container .page-title {
    padding: 0;
}

a {
    color: var(--moosgruen);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- APP TOPBAR (Logo) --- */
.app-topbar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
    background: var(--eukalyptus);
    margin-bottom: 15px;
}

.logo {
    max-height: 80px;
    width: auto;
}

a.logo-link {
    max-height: 80px;
}

/* --- APP NAVIGATION (Floating Bottom Bar) --- */
.app-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    background-color: var(--moosgruen);
    border-radius: 20px 20px 0 0;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom, 0px));
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.app-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

.app-nav a:hover {
    color: #ffffff;
}

.app-nav a.active {
    background-color: var(--moosgruen);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(45, 66, 54, 0.3);
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.2rem;
    stroke: currentColor;
}

.nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.nav-icon-wrapper .nav-icon {
    width: 100%;
    height: 100%;
    margin: 0;
}

.app-nav a svg {
    width: 24px;
    height: 24px;
}

/* --- DUMMY MENU ICON (Oben Rechts) --- */
.menu-hint-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--moosgruen);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.menu-hint-btn svg {
    width: 28px;
    height: 28px;
}

/* --- DER "SCHAU NACH UNTEN" EFFEKT --- */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.app-nav.highlight-nav {
    transform: translateY(-8px) !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 -10px 25px rgba(122, 146, 131, 0.8) !important;
    z-index: 1001;
}

/* --- WARENKORB BADGE (Tab Navigation) --- */
.cart-badge {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(4px);
    background-color: var(--accent-primary);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 1px 5px;
    line-height: 1.2;
    border-radius: 50px;
    border: 2px solid var(--moosgruen);
    z-index: 10;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pulse-animation {
    transform: translateX(4px) scale(1.3);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(96, 26, 36, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 16px rgba(160, 83, 51, 0.3);
}

.btn-secondary {
    background-color: var(--bg-muted);
    color: var(--moosgruen);
}

.btn-secondary:hover {
    background-color: var(--eukalyptus);
    color: #ffffff;
}

/* --- HERO SECTION --- */
.hero {
    background-color: var(--moosgruen);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin: 0 1rem;
    border-radius: 24px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

/* --- LAYOUT CONTAINER --- */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TRUST BAR --- */
.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 20px 3rem;
}

.trust-tag {
    background-color: var(--bg-muted);
    color: var(--moosgruen);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(45, 66, 54, 0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* --- BENTO BOX STEPS --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    padding: 0 20px;
}

.step-bento {
    background-color: var(--bg-surface);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 66, 54, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

.step-bento:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(96, 26, 36, 0.08);
}

.step-watermark {
    position: absolute;
    top: -15px;
    right: 5px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(122, 146, 131, 0.15);
    line-height: 1;
    z-index: 1;
    user-select: none;
}

.step-bento h3 {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-bento p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* --- PRICING / ANGEBOTE --- */
.services-section {
    padding-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    padding: 0 20px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-surface);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(45, 66, 54, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.premium {
    background-color: var(--moosgruen);
    color: #ffffff;
    border: none;
    box-shadow: 0 15px 40px rgba(45, 66, 54, 0.2);
}

.premium-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--accent-primary);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(96, 26, 36, 0.3);
}

.pricing-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.pricing-card.premium .pricing-header h2 {
    color: #ffffff;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.pricing-card.premium .price-tag {
    color: var(--eukalyptus);
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pricing-card.premium .pricing-body p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-body ul {
    list-style: none;
    padding: 0;
}

.pricing-body li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.pricing-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--accent-primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.pricing-card.premium .pricing-body li::before {
    color: var(--eukalyptus);
}

.w-100 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-light {
    background-color: #ffffff;
    color: var(--moosgruen);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-light:hover {
    background-color: var(--bg-muted);
    color: var(--moosgruen);
    transform: scale(0.98);
}

/* --- WIZARD TAB LOGIK --- */
.wizard-tab {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-tab.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- FORMULAR FELDER (Mobile First) --- */
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.form-row {
    display: flex;
    flex-direction: column; /* Mobile Standard */
    gap: 0;                 /* Mobile Standard */
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 1rem;    /* Mobile Standard */
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(45, 66, 54, 0.15);
    background-color: var(--bg-main);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-main);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(96, 26, 36, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

::placeholder {
    color: #999;
}

.search-input, .sort-select {
    width: 100%;
    padding: 1.1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--bg-muted);
    border: 1px solid rgba(45, 66, 54, 0.08);
    color: var(--text-main);
    border-radius: 16px;
    outline: none;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.search-input:focus, .sort-select:focus {
    border-color: var(--eukalyptus);
    background-color: var(--bg-surface);
    box-shadow: 0 4px 12px rgba(122, 146, 131, 0.1);
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232d4236' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.shop-controls {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    max-width: 100%;
    padding: 0 20px;
}

/* --- SONG LISTENANSICHT --- */
#songList, .song-catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 20px;
}

.song-card {
    background-color: var(--bg-surface);
    border-radius: 24px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(45, 66, 54, 0.15);
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.song-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    border-color: rgba(45, 66, 54, 0.3);
}

.song-info h3 {
    margin-bottom: 0.2rem;
    font-size: 1.15rem;
}

.interpret {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.8rem;
}

.song-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.instrument-fieldset {
    border: 1px solid rgba(45, 66, 54, 0.15);
    border-radius: 12px;
    padding: 0.5rem 1rem 1rem 1rem;
    margin-top: 1.5rem;
}

.instrument-fieldset legend {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--moosgruen);
    padding: 0 0.6rem;
    margin-left: 0.5rem;
}

.instrument-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meta-badge {
    background-color: var(--bg-muted);
    color: var(--moosgruen);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.instrument-badge {
    background-color: transparent;
    border: 1px solid rgba(45, 66, 54, 0.2);
}

.magic-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(45, 66, 54, 0.05);
    border: 1px dashed var(--moosgruen);
    color: var(--moosgruen);
    font-weight: 600;
}

.magic-btn:hover {
    background-color: rgba(45, 66, 54, 0.1);
    border-style: solid;
}

.magic-btn.success-state {
    background-color: var(--eukalyptus);
    color: #ffffff;
    border-style: solid;
    border-color: var(--eukalyptus);
}

.magic-subtitle {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
}

.register-group {
    background-color: var(--bg-main);
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
}

.register-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.song-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.2rem;
    margin-top: 0.5rem;
    gap: 1rem;
}

.action-left, .action-right {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Mobile Standard */
}

.action-right .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-icon-sm {
    width: 18px;
    height: 18px;
}

.add-to-cart-btn {
    padding: 0.6rem 0.8rem; /* Mobile Standard */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* --- CUSTOM AUDIO PLAYER --- */
.song-player-custom {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0 1rem 0;
    background-color: var(--bg-muted);
    padding: 0.8rem 1rem;
    border-radius: 16px;
}

.hidden-audio {
    display: none;
}

.custom-play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(96, 26, 36, 0.3);
}

.custom-play-btn:hover {
    transform: scale(1.05);
    background-color: var(--accent-hover);
    box-shadow: 0 6px 14px rgba(160, 83, 51, 0.4);
}

.custom-play-btn svg {
    width: 22px;
    height: 22px;
}

.player-controls-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.player-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.custom-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(45, 66, 54, 0.15);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background-color: var(--moosgruen);
    border-radius: 50px;
    transition: width 0.1s linear;
}

/* --- UPSELL BANNER --- */
.catalog-upsell-banner {
    background-color: var(--moosgruen);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.catalog-upsell-banner h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.catalog-upsell-banner p {
    color: var(--eukalyptus);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.upsell-btn {
    background-color: var(--accent-primary);
    color: #ffffff;
    border: none;
    width: 100%;
    text-align: center;
}

.upsell-btn:hover {
    background-color: #7a1f2d;
    color: #ffffff;
}

/* --- WIZARD / ORDER FORM (Mobile First) --- */
.wizard-wrapper {
    padding: 0 20px;
    margin-bottom: 4rem;
}

.wizard-container {
    background-color: var(--bg-surface);
    padding: 1.5rem; /* Mobile Standard */
    border-radius: 24px;
    border: 1px solid rgba(45, 66, 54, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    max-width: 800px;
    margin: 0 auto;
}

.wizard-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.intro-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.intro-checklist li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
    background-color: var(--bg-muted);
    padding: 1rem 1.2rem;
    border-radius: 16px;
}

.intro-checklist svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--bg-muted);
    z-index: 1;
    transform: translateY(-50%);
}

.progress-step {
    background-color: var(--bg-surface);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem; /* Mobile Standard */
    padding: 0.3rem 0.6rem; /* Mobile Standard */
    border-radius: 50px;
    position: relative;
    z-index: 2;
    border: 2px solid var(--bg-muted);
    transition: all 0.3s ease;
}

.progress-step.active {
    border-color: var(--moosgruen);
    color: var(--moosgruen);
    background-color: var(--bg-main);
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.instrument-chip {
    cursor: pointer;
}

.instrument-chip input[type="checkbox"] {
    display: none;
}

.instrument-chip span {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-muted);
    color: var(--text-main);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.instrument-chip input[type="checkbox"]:checked + span {
    background-color: var(--moosgruen);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(45, 66, 54, 0.2);
}

.range-group {
    background-color: var(--bg-main);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(45, 66, 54, 0.05);
}

.range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.range-badge {
    background-color: var(--moosgruen);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.custom-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--bg-muted);
    border-radius: 50px;
    outline: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(96, 26, 36, 0.4);
    transition: transform 0.1s;
}

.custom-range::-webkit-slider-thumb:active {
    transform: scale(1.15);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 600;
}

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

/* Helfer */
.hide-mobile { display: none; } /* Mobile Standard */
.d-none { display: none !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.5rem; }
.text-center { text-align: center; }
.success-icon { font-size: 4rem; }

/* --- DYNAMISCHE CMS SEITEN & ABSTÄNDE --- */
.page-title {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.page-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.page-text ul, .page-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-text li {
    margin-bottom: 0.5rem;
}

.page-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.page-image-wrapper {
    margin: 2rem 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(45, 66, 54, 0.08);
}

.page-image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- WARENKORB SEITE --- */
.cart-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(45, 66, 54, 0.05);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding-right: 1.5rem;
}

.cart-item-info h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--text-color);
}

.cart-item-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.cart-item-badge {
    background: rgba(45, 66, 54, 0.1);
    color: var(--moosgruen);
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 0.2rem;
}

.cart-item-price {
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    color: var(--text-color);
}

.btn-remove-item {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.4rem;
    transition: color 0.2s, transform 0.2s;
    border-radius: 50%;
}

.btn-remove-item:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.btn-remove-item svg {
    width: 20px;
    height: 20px;
}

.cart-summary {
    background: var(--moosgruen);
    color: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cart-summary h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.cart-summary hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

/* --- CHECKOUT MULTI-STEP WIZARD --- */
.checkout-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}

.checkout-progress-bar .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-progress-bar .step.active {
    color: var(--moosgruen);
}

.checkout-progress-bar .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(45, 66, 54, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s;
}

.checkout-progress-bar .step.active .step-number {
    background: var(--moosgruen);
    color: #ffffff;
    border-color: var(--moosgruen);
}

.checkout-progress-bar .step-line {
    flex: 1;
    height: 2px;
    background: rgba(45, 66, 54, 0.1);
    margin: 0 1rem;
    transform: translateY(-10px);
}

.checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-form-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(45, 66, 54, 0.05);
}

.checkout-form-box h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.auth-toggle {
    display: flex;
    background: rgba(45, 66, 54, 0.05);
    border-radius: 12px;
    padding: 4px;
}

.auth-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.auth-btn.active {
    background: #ffffff;
    color: var(--moosgruen);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.password-hints {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    display: grid;
    grid-template-columns: 1fr; /* Mobile Standard */
    gap: 0.4rem;
}

.password-hints li {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
}

.password-hints li::before {
    content: '○';
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: color 0.2s;
}

.password-hints li.valid {
    color: var(--eukalyptus);
}

.password-hints li.valid::before {
    content: '✓';
    color: var(--eukalyptus);
    text-shadow: 0 0 8px rgba(45, 66, 54, 0.5);
}

.guest-checkout-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(45, 66, 54, 0.04);
    border: 1px solid rgba(45, 66, 54, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s;
}

.guest-checkout-hint:hover {
    background: rgba(45, 66, 54, 0.08);
    border-color: rgba(45, 66, 54, 0.2);
}

.hint-icon {
    width: 22px;
    height: 22px;
    color: var(--moosgruen);
    flex-shrink: 0;
    margin-top: 2px;
}

.hint-text {
    font-size: 0.85rem;
    line-height: 1.4;
}

.hint-link {
    display: inline-block;
    color: var(--moosgruen);
    font-weight: 700;
    margin-top: 0.2rem;
}

.order-amount-display {
    background: #f9f8f4;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.order-amount-display strong {
    font-size: 1.3rem;
    color: var(--moosgruen);
}

.payment-method-card {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.2rem;
    background: #ffffff;
    border: 2px solid rgba(45, 66, 54, 0.1);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.payment-method-card input[type="radio"] {
    margin-top: 0.2rem;
    accent-color: var(--moosgruen);
}

.payment-method-card.active {
    border-color: var(--moosgruen);
    background: rgba(45, 66, 54, 0.02);
}

.payment-title {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.payment-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.benefits-box {
    background: var(--moosgruen);
    color: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    scroll-margin-top: 2rem;
}

.benefits-box h3 {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.benefit-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.benefits-list strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.2rem;
}

.benefits-list p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--eukalyptus);
    line-height: 1.4;
}

/* --- BESTELLBESTÄTIGUNG --- */
.success-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(45, 66, 54, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: var(--moosgruen);
    margin-bottom: 1rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-card h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.success-info-box {
    background: var(--eukalyptus);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
    width: 100%;
}

.success-info-box h3 {
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-creme);
}

.success-info-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-creme);
    margin-bottom: 0.5rem;
}

.success-info-box p:last-child {
    margin-bottom: 0;
}

.success-actions {
    width: 100%;
}

/* --- MY ACCOUNT --- */
.account-container {
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.account-header {
    margin-bottom: 2rem;
}

/* --- TABS NAVIGATION --- */
.account-tabs-nav {
    display: flex;
    flex-direction: column; /* Mobile: Buttons untereinander, falls extrem schmal */
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(45, 66, 54, 0.1);
    padding-bottom: 1rem;
}

@media (min-width: 480px) {
    .account-tabs-nav {
        flex-direction: row; /* Ab Tablet: Buttons nebeneinander */
        flex-wrap: wrap;
    }
}

.account-tab-btn {
    background: var(--bg-muted);
    color: var(--text-muted);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
}

.account-tab-btn:hover {
    background: rgba(45, 66, 54, 0.1);
    color: var(--moosgruen);
}

.account-tab-btn.active {
    background: var(--moosgruen);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(45, 66, 54, 0.2);
}

/* --- TAB INHALTE --- */
.account-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.account-tab-pane.active {
    display: block;
}

/* --- NOTEN DOWNLOADS --- */
.download-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(45, 66, 54, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.download-title {
    font-size: 1.1rem;
    color: var(--text-color);
}

@media (min-width: 600px) {
    .download-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.btn-download {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-pdf {
    background-color: rgba(45, 66, 54, 0.05);
    color: var(--moosgruen);
    border: 1px solid rgba(45, 66, 54, 0.2);
}

.btn-pdf:hover {
    background-color: var(--moosgruen);
    color: #ffffff;
}

/* --- RECHNUNGEN (KACHELN STATT TABELLE) --- */
.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.invoice-card {
    background: var(--bg-surface);
    border: 1px solid rgba(45, 66, 54, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.invoice-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.invoice-info strong {
    font-size: 1.1rem;
    color: var(--text-color);
}

.invoice-amount strong {
    font-size: 1.2rem;
    color: var(--moosgruen);
}

@media (min-width: 600px) {
    .invoice-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .invoice-action {
        text-align: right;
    }
}

/* --- PROFIL & DATEN GRID --- */
.account-profile-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.account-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.account-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(45, 66, 54, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.account-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(45, 66, 54, 0.1);
    padding-bottom: 0.5rem;
}

.btn-account-logout {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background-color: #ff4a4a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-account-logout:hover {
    background-color: #cc0000;
}

.m-0 {
    margin: 0 !important;
}

@media (min-width: 900px) {
    .account-profile-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: start; /* Verhindert, dass die rechte Spalte in die Länge gezogen wird */
    }
}

/* --- FOOTER --- */
.app-footer {
    background-color: var(--moosgruen);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 20px 8rem 20px;
    margin-top: 5rem;
    border-radius: 32px 32px 0 0;
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer-brand strong {
    display: block;
    color: #ffffff;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.2rem;
}

.footer-brand span {
    font-size: 0.9rem;
    color: var(--eukalyptus);
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    background-color: var(--eukalyptus);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    width: 100%;
    max-width: 300px;
}

/* --- LOGIN & REGISTRIERUNG --- */
.login-page-spacing {
    margin-top: 4rem;
    margin-bottom: 6rem;
    max-width: 1000px;
}

.login-header {
    margin-bottom: 3rem;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(45, 66, 54, 0.1);
}

.split-card {
    flex: 1;
}

.split-card h2 {
    margin-top: 0;
    border-bottom: 2px solid var(--moosgruen);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.split-divider {
    display: none;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.text-sm {
    font-size: 0.85rem;
}

/* --- ALERTS --- */
.alert {
    padding: 1rem 1.2rem;
    border-radius: 16px; /* Passt zu den Eingabefeldern */
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    line-height: 1.4;
}

.alert-success {
    background-color: rgba(122, 146, 131, 0.15); /* Zartes Eukalyptus */
    color: var(--moosgruen);
    border-color: rgba(122, 146, 131, 0.3);
}

.alert-error {
    background-color: rgba(96, 26, 36, 0.08); /* Zartes Bordeaux */
    color: var(--accent-primary);
    border-color: rgba(96, 26, 36, 0.15);
}

/* --- 404 FEHLERSEITE --- */
.error-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(45, 66, 54, 0.05); /* Sehr transparentes Moosgrün */
    margin-bottom: -1.5rem; /* Zieht die Überschrift näher heran */
    user-select: none;
}

/* ==========================================================
   COOKIE BANNER (CH-Standard)
========================================================== */
.cookie-banner {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px)); /* Platz für Mobile Bar lassen */
    left: 20px;
    right: 20px;
    background-color: var(--bg-surface);
    border: 1px solid rgba(45, 66, 54, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 1.2rem;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cookie-content a {
    color: var(--moosgruen);
    font-weight: 700;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .cookie-banner {
        bottom: 30px;
        left: auto;
        right: 30px;
        max-width: 450px;
    }
    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

/* ==========================================================
   DESKTOP ANPASSUNGEN
========================================================== */
@media (min-width: 768px) {
    body.app-body { padding-bottom: 0; }
    .hero { margin: 2rem; border-radius: 32px; }

    .app-topbar { justify-content: center; padding: 2rem 40px; }
    .menu-hint-btn { display: none; }

    .app-nav {
        bottom: auto;
        top: 1.5rem;
        left: auto;
        right: 2rem;
        transform: none;
        width: auto;
        max-width: none;
        border-radius: 50px;
        padding: 0.5rem 1.5rem;
        gap: 1rem;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .app-nav a {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.6rem 0;
        color: var(--eukalyptus);
    }

    .app-nav a:hover {
        color: var(--moosgruen);
        background-color: transparent;
    }

    .app-nav a.active {
        background-color: var(--moosgruen);
        color: #ffffff;
        padding: 0.6rem 1.2rem;
        border-radius: 50px;
    }

    .nav-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 0;
    }

    .cart-badge {
        border-color: #ffffff;
        top: 0;
        left: 0;
        transform: translateX(12px);
    }
    .pulse-animation {
        transform: translateX(12px) scale(1.3);
    }

    /* --- Formular Desktop-Verhalten --- */
    .form-row {
        flex-direction: row;
        gap: 1.5rem;
    }

    .form-row .form-group {
        margin-bottom: 1.5rem;
    }

    /* --- Wizard Desktop-Verhalten --- */
    .wizard-container {
        padding: 2.5rem;
    }

    .progress-step {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    /* --- Buttons & Aktionen Desktop-Verhalten --- */
    .hide-mobile {
        display: inline;
    }

    .add-to-cart-btn {
        padding: 0.6rem 1.2rem;
    }

    .action-right {
        gap: 1rem;
    }

    .services .container, .steps-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .search-input { flex: 2; margin-bottom: 0; }
    .sort-select { flex: 1; margin-bottom: 0; }

    .shop-controls {
        flex-direction: row;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto 2.5rem auto;
    }

    #songList, .song-catalog-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
        max-width: 1000px;
        margin: 0 auto;
    }

    .song-card { margin-bottom: 0; }

    .page-title {
        font-size: 3rem;
        margin-top: 3rem;
    }

    .catalog-upsell-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 2.5rem 3rem;
    }
    .catalog-upsell-banner .upsell-text {
        flex: 1;
        padding-right: 2rem;
    }
    .upsell-btn {
        width: auto;
        white-space: nowrap;
    }

    /* -- Checkout -- */
    .cart-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    .cart-items-list {
        flex: 1;
    }

    .cart-item {
        grid-template-columns: 1fr auto auto;
        align-items: center;
        padding-right: 1.5rem;
    }
    .cart-item-info {
        padding-right: 0;
    }
    .btn-remove-item {
        position: static;
        padding: 0.5rem;
        margin-left: 1rem;
    }

    .cart-summary {
        width: 350px;
        position: sticky;
        top: 100px;
    }

    .checkout-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    .checkout-form-box {
        flex: 1;
    }
    .checkout-sidebar {
        width: 380px;
    }

    .password-hints {
        grid-template-columns: 1fr 1fr;
    }

    .guest-checkout-hint {
        display: none;
    }

    .app-footer {
        margin: 5rem 20px 2rem 20px;
        border-radius: 32px;
        padding: 3rem 40px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-brand strong {
        display: inline-block;
        margin-right: 0.8rem;
    }

    .footer-bottom {
        margin-top: 0;
        border-top: none;
        padding-top: 0;
        width: auto;
        text-align: right;
    }

    .split-layout {
        flex-direction: row;
        padding: 3.5rem;
        gap: 0;
    }

    .split-divider {
        display: block;
        width: 1px;
        background-color: rgba(45, 66, 54, 0.1);
        margin: 0 3.5rem;
    }
}

@media (min-width: 900px) {
    .account-grid {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}