@import '_content/Murikual.Platform.UI/Murikual.Platform.UI.lr9b1b6u0k.bundle.scp.css';

/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* ── Admin wrapper: sidebar + body two-column grid ───────────────────────── */
.admin-wrapper[b-uq5h24pnjc] {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
    background-color: #f0f2f5;
}

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.admin-sidebar[b-uq5h24pnjc] {
    display: flex;
    flex-direction: column;
    background-color: #1a1f2e;
    color: #c8cdd8;
    padding: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-brand[b-uq5h24pnjc] {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.125rem;
}

.sidebar-brand-link[b-uq5h24pnjc] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.sidebar-brand-link:hover[b-uq5h24pnjc] {
    color: #a8d5e2;
    text-decoration: none;
}

.sidebar-brand-sub[b-uq5h24pnjc] {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Sidebar navigation ──────────────────────────────────────────────────── */
.sidebar-nav[b-uq5h24pnjc] {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.75rem;
    gap: 2px;
    flex: 1;
}

.sidebar-nav-link[b-uq5h24pnjc] {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sidebar-nav-link:hover[b-uq5h24pnjc] {
    background-color: rgba(255, 255, 255, 0.07);
    color: #e5e7eb;
    text-decoration: none;
}

.sidebar-nav-link.active[b-uq5h24pnjc] {
    background-color: rgba(168, 213, 226, 0.15);
    color: #a8d5e2;
}

/* ── Right-side body column ───────────────────────────────────────────────── */
.admin-body[b-uq5h24pnjc] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

/* ── Top header bar ───────────────────────────────────────────────────────── */
.admin-header[b-uq5h24pnjc] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    height: 52px;
    padding: 0 1.5rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.admin-header-user[b-uq5h24pnjc] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.admin-logout-form[b-uq5h24pnjc] {
    margin: 0;
}

.admin-logout-btn[b-uq5h24pnjc] {
    padding: 0.3125rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.admin-logout-btn:hover[b-uq5h24pnjc] {
    background-color: #f9fafb;
    color: #111827;
    border-color: #9ca3af;
}

/* ── Main content area ───────────────────────────────────────────────────── */
.admin-main[b-uq5h24pnjc] {
    flex: 1;
    padding: 1.75rem 2rem;
    overflow-y: auto;
}

/* ── Responsive: collapse sidebar on narrow screens ─────────────────────── */
@media (max-width: 768px) {
    .admin-wrapper[b-uq5h24pnjc] {
        grid-template-columns: 1fr;
    }

    .admin-sidebar[b-uq5h24pnjc] {
        position: static;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .sidebar-brand[b-uq5h24pnjc] {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        border-bottom: none;
        padding: 0;
    }

    .sidebar-brand-sub[b-uq5h24pnjc] {
        display: none;
    }

    .sidebar-nav[b-uq5h24pnjc] {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
        gap: 4px;
    }

    .sidebar-nav-link[b-uq5h24pnjc] {
        padding: 0.375rem 0.625rem;
        font-size: 0.8125rem;
    }

    .admin-main[b-uq5h24pnjc] {
        padding: 1rem;
    }
}
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
/* ── Site wrapper ────────────────────────────────────────────────────────── */
.site-wrapper[b-2p4lzffj3j] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header[b-2p4lzffj3j] {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--brand);
    border-bottom: 1px solid var(--brand-dark);
    box-shadow: var(--shadow);
    height: var(--header-height);
}

.header-inner[b-2p4lzffj3j] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    gap: var(--space-lg);
}

/* ── Brand / logo ────────────────────────────────────────────────────────── */
.brand-link[b-2p4lzffj3j] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.brand-link:hover[b-2p4lzffj3j] {
    text-decoration: none;
}

.brand-logo[b-2p4lzffj3j] {
    height: 35px;
    width: auto;
}

.brand-tagline[b-2p4lzffj3j] {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--brand-deep);
    letter-spacing: 0.01em;
    white-space: nowrap;
    opacity: 0.75;
}

/* ── Primary navigation ──────────────────────────────────────────────────── */
.site-nav[b-2p4lzffj3j] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: nowrap;
}

.site-nav a[b-2p4lzffj3j] {
    padding: 0.375rem var(--space-sm);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-deep);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.site-nav a:hover[b-2p4lzffj3j] {
    background-color: rgba(44, 74, 82, 0.10);
    color: var(--brand-deep);
    text-decoration: none;
}

.site-nav a.active[b-2p4lzffj3j] {
    background-color: var(--brand-deep);
    color: #ffffff;
}

/* ── Hamburger toggle (hidden on desktop) ────────────────────────────────── */
.nav-toggle[b-2p4lzffj3j] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: transparent;
    border: 1px solid var(--brand-dark);
    border-radius: var(--radius);
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger-bar[b-2p4lzffj3j] {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--brand-deep);
    border-radius: 2px;
    transition: opacity 0.15s ease;
}

/* ── Main content area ───────────────────────────────────────────────────── */
.site-main[b-2p4lzffj3j] {
    flex: 1;
    background-color: var(--bg);
}

.content-container[b-2p4lzffj3j] {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer[b-2p4lzffj3j] {
    background-color: var(--brand);
    border-top: 1px solid var(--brand-dark);
    margin-top: auto;
}

.footer-inner[b-2p4lzffj3j] {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: var(--space-lg);
    text-align: center;
}

.footer-inner p[b-2p4lzffj3j] {
    margin: 0;
    font-size: 0.875rem;
    color: var(--brand-deep);
    opacity: 0.8;
}

/* ── Responsive: mobile (≤ 768px) ───────────────────────────────────────── */
@media (max-width: 768px) {
    .site-header[b-2p4lzffj3j] {
        height: auto;
        min-height: var(--header-height);
    }

    .header-inner[b-2p4lzffj3j] {
        flex-wrap: wrap;
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
        align-items: center;
    }

    .nav-toggle[b-2p4lzffj3j] {
        display: flex;
    }

    .site-nav[b-2p4lzffj3j] {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
        padding-bottom: var(--space-sm);
        order: 3;
    }

    .site-nav.site-nav--open[b-2p4lzffj3j] {
        display: flex;
    }

    .site-nav a[b-2p4lzffj3j] {
        padding: 0.625rem var(--space-md);
        font-size: 0.9375rem;
    }

    .brand-tagline[b-2p4lzffj3j] {
        display: none;
    }

    .content-container[b-2p4lzffj3j] {
        padding: var(--space-lg) var(--space-md);
    }
}
/* /Components/Pages/UeberMich.razor.rz.scp.css */
.contact-form[b-w1yftkvlga] {
    max-width: 560px;
}

.form-group[b-w1yftkvlga] {
    margin-bottom: 1.2rem;
}

.form-group label[b-w1yftkvlga] {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.form-control[b-w1yftkvlga] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-control:focus[b-w1yftkvlga] {
    outline: none;
    border-color: #555;
}

.contact-success[b-w1yftkvlga] {
    padding: 1rem 1.25rem;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 4px;
    color: #2e7d32;
    font-size: 1rem;
}
/* /Components/Shared/GalleryView.razor.rz.scp.css */
/* ── Gallery thumbnail button reset ──────────────────────────────────────── */
.gallery-thumb[b-8gq3j6mztb] {
    all: unset;
    display: block;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(44, 74, 82, 0.10);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    aspect-ratio: 1;
    background-color: #e8eef0;
}

.gallery-thumb:hover[b-8gq3j6mztb] {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 74, 82, 0.18);
}

.gallery-thumb:focus-visible[b-8gq3j6mztb] {
    outline: 2px solid #8ab4bc;
    outline-offset: 2px;
}

/* ── Thumbnail image ─────────────────────────────────────────────────────── */
.gallery-thumb-img[b-8gq3j6mztb] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.gallery-empty[b-8gq3j6mztb] {
    color: #6b8a91;
    font-size: 0.95rem;
    font-style: italic;
}
/* /Components/Shared/Lightbox.razor.rz.scp.css */
/* ── Lightbox overlay ──────────────────────────────────────────────────────── */
.lightbox-overlay[b-qi5ljn3v1u] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.88);
    outline: none;
}

/* ── Centred content wrapper ─────────────────────────────────────────────── */
.lightbox-content[b-qi5ljn3v1u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 90vw;
    max-height: 90vh;
}

/* ── Main image ──────────────────────────────────────────────────────────── */
.lightbox-image[b-qi5ljn3v1u] {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* ── Controls row (prev / counter / next) ────────────────────────────────── */
.lightbox-controls[b-qi5ljn3v1u] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lightbox-counter[b-qi5ljn3v1u] {
    color: #e0e0e0;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
}

/* ── Shared button styles ────────────────────────────────────────────────── */
.lightbox-btn[b-qi5ljn3v1u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.lightbox-btn:hover:not(:disabled)[b-qi5ljn3v1u] {
    background-color: rgba(255, 255, 255, 0.30);
}

.lightbox-btn:disabled[b-qi5ljn3v1u] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ── Close button (top-right) ────────────────────────────────────────────── */
.lightbox-close[b-qi5ljn3v1u] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.lightbox-close:hover[b-qi5ljn3v1u] {
    background-color: rgba(255, 255, 255, 0.30);
}
/* /Components/Shared/ProductCard.razor.rz.scp.css */
/* ProductCard scoped styles */

.product-card[b-gcss17rjng] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s ease;
}

.product-card:hover[b-gcss17rjng] {
    box-shadow: var(--shadow-md);
}

.product-card-img[b-gcss17rjng] {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.product-card-no-img[b-gcss17rjng] {
    background-color: var(--brand);
    aspect-ratio: 1 / 1;
}

.product-card-body[b-gcss17rjng] {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}

.product-card-name[b-gcss17rjng] {
    font-size: 1.1rem;
    margin: 0;
}

.product-card-price[b-gcss17rjng] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-deep);
    margin: 0;
}

.product-card-add[b-gcss17rjng] {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}
