:root { --gold: #DAA520; --primary: #8B6914; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: sans-serif; background: #0a0a0a; color: #fff; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.header { background: #000; border-bottom: 2px solid var(--primary); position: fixed; width: 100%; top: 0; z-index: 99999; height: 80px; display: flex; align-items: center; }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-menu { display: flex; list-style: none; gap: 20px; }
.nav-link { color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; text-transform: uppercase; }

/* GRID & CARD */
.ladies-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 25px; margin-top: 30px; }
.lady-card { background: #fff !important; border-radius: 15px; overflow: hidden; position: relative; border: 1px solid #ddd; transition: 0.3s; color: #111 !important; }
.lady-card:hover { border-color: var(--gold) !important; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
.lady-image-area { height: 320px; position: relative; overflow: hidden; }
.lady-main-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lady-status-dot { position: absolute; top: 15px; left: 15px; width: 18px; height: 18px; border-radius: 50%; border: 3px solid #fff; z-index: 10; }
.lady-name-black { color: #000 !important; font-weight: 800 !important; font-size: 1.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lady-price-gold { background: linear-gradient(135deg, #8B6914 0%, #DAA520 100%); color: #fff !important; padding: 8px 15px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; text-align: center; }

 /* Überschreibt das alte CSS für engere Abstände */
    .ladies-grid { 
        display: grid !important; 
        /* Ermöglicht 5 bis 6 Karten pro Zeile auf großen Bildschirmen */
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important; 
        /* Der enge Abstand zwischen den Karten */
        gap: 12px !important; 
        margin-top: 30px; 
    }

    @media (max-width: 600px) {
        .ladies-grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 8px !important;
        }
    }

/* OVERLAY */
.lady-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: 0.3s; z-index: 20; }
.lady-card:hover .lady-overlay { opacity: 1; }
.btn-ov-profile { background: #fff !important; color: #000 !important; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; margin-bottom: 10px; width: 80%; text-align: center; }
.btn-ov-call { background: var(--primary) !important; color: #fff !important; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; width: 80%; text-align: center; }

/* FOOTER */
.footer { background: #000; padding: 60px 0 30px; border-top: 2px solid var(--primary); margin-top: 60px; }
.footer-content { display: grid !important; grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 40px; }
.footer-heading { color: var(--gold); margin-bottom: 20px; text-transform: uppercase; font-weight: 800; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ffffff !important; text-decoration: none; }
/* ... Dein restliches CSS ... */

/* BACK TO TOP (REPARATUR: RECHTS & GOLD) */
.back-to-top {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important; /* HIER DER FIX FÜR RECHTS */
    width: 55px !important;
    height: 55px !important;
    background: linear-gradient(135deg, #8B6914 0%, #DAA520 100%) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    visibility: hidden;
    opacity: 0;
}
.back-to-top.visible { visibility: visible; opacity: 1; }
.back-to-top:hover { transform: scale(1.1); }

@media (max-width: 768px) { .ladies-grid { grid-template-columns: 1fr !important; } .footer-content { grid-template-columns: 1fr !important; text-align: center; } }