/* ============================================================
   Osterloh's Brocki & Antikpalast
   style.css — Klassisch & Elegant | Rot / Schwarz / Weiss
   ============================================================ */

:root {
    --rot:        #CC0000;
    --rot-dunkel: #990000;
    --schwarz:    #1a1a1a;
    --dunkel:     #2a2a2a;
    --weiss:      #ffffff;
    --off-white:  #f5f4f2;
    --hell:       #f0efed;
    --border:     #d8d8d8;
    --grau:       #999999;
    --text:       #333333;
    --text-hell:  #666666;
}

/* ---- Ferien-Banner ---- */
.ferien-banner {
    background: var(--rot);
    color: var(--weiss);
    text-align: center;
    padding: 1.1rem 2rem;
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    border-bottom: 4px solid #800000;
    position: relative;
    z-index: 101;
}
.ferien-banner::before {
    content: "⚠ ";
    font-style: normal;
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--off-white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
    background: var(--schwarz);
    border-bottom: 3px solid var(--rot);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 54px;
    width: auto;
    filter: brightness(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    color: #cccccc;
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.aktiv {
    color: var(--weiss);
    border-bottom-color: var(--rot);
}

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--weiss);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--schwarz);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    transition: opacity 0.3s;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--rot);
    color: var(--weiss);
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--weiss);
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #dddddd;
    font-family: 'Arial', sans-serif;
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: var(--rot);
    color: var(--weiss);
    padding: 0.9rem 2.4rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border: 2px solid var(--rot);
    transition: all 0.3s;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.hero-cta:hover {
    background: transparent;
    color: var(--weiss);
}

.hero-cta-secondary {
    display: inline-block;
    color: var(--weiss);
    padding: 0.9rem 2.4rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    margin-bottom: 0.5rem;
}

.hero-cta-secondary:hover {
    border-color: var(--weiss);
    background: rgba(255,255,255,0.1);
}

/* ============================================================
   ALLGEMEINE SEKTIONEN
   ============================================================ */
.section {
    padding: 5rem 2rem;
}

.section--weiss { background: var(--weiss); }
.section--hell  { background: var(--off-white); }
.section--dunkel {
    background: var(--schwarz);
    color: var(--weiss);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rot);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--dunkel);
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.section--dunkel .section-title { color: var(--weiss); }

.section-lead {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    color: var(--text-hell);
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.section-center { text-align: center; }
.section-center .section-lead { margin-left: auto; margin-right: auto; }

hr.divider {
    border: none;
    border-top: 3px solid var(--rot);
    width: 50px;
    margin: 1.2rem 0 2rem;
}

.section-center hr.divider {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   FEATURES / KARTEN
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-card {
    background: var(--weiss);
    border: 1px solid var(--border);
    border-top: 3px solid var(--rot);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.feature-icon {
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--rot);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dunkel);
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--text-hell);
    line-height: 1.7;
}

/* ============================================================
   SORTIMENT / KATEGORIEN
   ============================================================ */
.sortiment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.sortiment-card {
    background: var(--weiss);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.sortiment-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.sortiment-card-body {
    padding: 1.8rem;
    border-left: 3px solid var(--rot);
}

.sortiment-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dunkel);
    margin-bottom: 0.7rem;
}

.sortiment-card p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--text-hell);
    line-height: 1.7;
}

/* ============================================================
   ÜBER UNS / ABOUT
   ============================================================ */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border: 6px solid var(--weiss);
    box-shadow: 0 6px 30px rgba(0,0,0,0.18);
}

.about-text-block p {
    font-size: 1.05rem;
    color: var(--text-hell);
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-style: italic;
    color: var(--rot);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat span {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--text-hell);
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item.gross {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay span {
    color: var(--weiss);
    font-size: 2rem;
    font-weight: 300;
}

.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   ANKAUF / PROZESS
   ============================================================ */
.prozess-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: prozess;
}

.prozess-schritt {
    background: var(--weiss);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    position: relative;
    counter-increment: prozess;
    transition: box-shadow 0.3s;
}

.prozess-schritt:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.prozess-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--rot);
    color: var(--weiss);
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.prozess-schritt h3 {
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dunkel);
    margin-bottom: 0.7rem;
}

.prozess-schritt p {
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    color: var(--text-hell);
    line-height: 1.7;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.kontakt-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.kontakt-icon {
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem;
    margin-top: 2px;
    color: var(--rot);
}

.kontakt-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.kontakt-info-item h4 {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rot);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.kontakt-info-item p,
.kontakt-info-item a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-hell);
    line-height: 1.6;
}

.kontakt-info-item a:hover { color: var(--rot); }

/* Formular */
.kontakt-form {
    background: var(--weiss);
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-top: 3px solid var(--rot);
}

.kontakt-form h3 {
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dunkel);
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--off-white);
    transition: border-color 0.2s;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rot);
    background: var(--weiss);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--rot);
    color: var(--weiss);
    border: 2px solid var(--rot);
    font-family: 'Georgia', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: transparent;
    color: var(--rot);
}

/* Whatsapp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #25D366;
    color: var(--weiss);
    padding: 0.85rem 1.8rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s;
    margin-top: 1.5rem;
}

.btn-whatsapp:hover { background: #1da851; }

/* ============================================================
   CTA-BOX
   ============================================================ */
.cta-box {
    background: var(--rot);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--weiss);
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
}

.cta-box p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-cta-weiss {
    display: inline-block;
    background: var(--weiss);
    color: var(--rot);
    padding: 0.9rem 2.4rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 400;
    border: 2px solid var(--weiss);
    transition: all 0.3s;
    margin: 0.3rem;
}

.btn-cta-weiss:hover {
    background: transparent;
    color: var(--weiss);
}

.btn-cta-outline {
    display: inline-block;
    color: var(--weiss);
    padding: 0.9rem 2.4rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s;
    margin: 0.3rem;
}

.btn-cta-outline:hover { border-color: var(--weiss); }

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
    background: var(--schwarz);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--rot);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 80px
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--weiss);
    margin-bottom: 0.8rem;
}

.breadcrumb {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--grau);
}

.breadcrumb a { color: var(--grau); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rot); }
.breadcrumb span { color: var(--rot); margin: 0 0.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--schwarz);
    color: #cccccc;
    padding: 4rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 1.2rem;
}

.footer-about p {
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.footer-col h4 {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rot);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    color: #888;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--rot); }

.footer-col p {
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    color: #888;
    line-height: 1.8;
}

.footer-col strong {
    color: #cccccc;
    display: block;
    margin-bottom: 0.2rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #333;
    color: #999;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 2px;
}

.social-link:hover {
    background: var(--rot);
    color: var(--weiss);
}

.footer-partner {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    flex-wrap: wrap;
}

.footer-partner-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rot);
    font-weight: 700;
    white-space: nowrap;
}

.footer-partner-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-partner-item {
    display: flex;
    align-items: center;
    padding: 0;
    border: 1px solid #333;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.85;
}

.footer-partner-item img {
    height: 44px;
    width: auto;
    display: block;
}

.footer-partner-item:hover {
    border-color: var(--rot);
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    color: #555;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom a {
    color: #555;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--rot); }

/* ============================================================
   ANKAUF — Akzeptierte Artikel
   ============================================================ */
.artikel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.artikel-item {
    background: var(--off-white);
    border-left: 3px solid var(--rot);
    padding: 1rem 1.2rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.artikel-item::before {
    content: '✓';
    color: var(--rot);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   NACHRICHTEN (Erfolg / Fehler)
   ============================================================ */
.msg-success {
    background: #e8f5e9;
    border-left: 4px solid #2e7d32;
    color: #1b5e20;
    padding: 1rem 1.2rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.msg-error {
    background: #ffebee;
    border-left: 4px solid var(--rot);
    color: var(--rot-dunkel);
    padding: 1rem 1.2rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid    { grid-template-columns: repeat(2, 1fr); }
    .prozess-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-grid      { grid-template-columns: 1fr 1fr; }
    .sortiment-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--schwarz);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        transition: left 0.3s ease;
        z-index: 99;
        border-top: 2px solid var(--rot);
    }

    .nav-links.active { left: 0; }

    .hero-content { padding: 3.5rem 2rem; }

    .about-container   { grid-template-columns: 1fr; gap: 2rem; }
    .kontakt-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.gross { grid-row: span 1; aspect-ratio: 4/3; }
    .artikel-grid      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
    .form-row          { grid-template-columns: 1fr; }
    .stats-row         { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .section { padding: 3.5rem 1.2rem; }
    .features-grid  { grid-template-columns: 1fr; }
    .prozess-grid   { grid-template-columns: 1fr; }
    .sortiment-grid { grid-template-columns: 1fr; }
    .gallery-grid   { grid-template-columns: 1fr; }
    .artikel-grid   { grid-template-columns: 1fr; }
    .hero-cta, .hero-cta-secondary { display: block; width: 100%; text-align: center; margin-right: 0; }
    .footer-partner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-backdrop {
    position: absolute; inset: 0;
    background: rgba(10,0,0,0.92); cursor: pointer;
}
.lightbox-stage {
    position: relative; z-index: 1001;
    max-width: 90vw; max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
    display: block; max-width: 90vw; max-height: 90vh;
    object-fit: contain; box-shadow: 0 8px 60px rgba(0,0,0,.8);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; z-index: 1002;
    background: none; border: none; color: var(--weiss);
    cursor: pointer; line-height: 1; transition: color .2s, transform .2s;
}
.lightbox-close { top: 1.2rem; right: 1.5rem; font-size: 2.4rem; font-weight: 300; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); font-size: 3.5rem; padding: 0 1rem; }
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-close:hover { color: var(--rot); }
.lightbox-prev:hover { color: var(--rot); transform: translateY(-50%) scale(1.15); }
.lightbox-next:hover { color: var(--rot); transform: translateY(-50%) scale(1.15); }
.lightbox-counter {
    position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
    z-index: 1002; font-family: Arial,sans-serif; font-size: .88rem;
    color: rgba(255,255,255,.65); letter-spacing: 1px;
}
@media (max-width: 480px) {
    .lightbox-prev, .lightbox-next { font-size: 2.5rem; padding: 0 .5rem; }
    .lightbox-close { font-size: 2rem; top: .8rem; right: 1rem; }
}
