#aj-card {
    position: fixed;
    bottom: 20px;  /* ZMIANA: Zjazd do parteru (było 90px) */
    right: 25px;
    z-index: 999990;
}

.aj-icon-card {
    width: 50px; height: 50px;
    background: #34495e; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    border: 2px solid #fff; /* Biała ramka - kontrast */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s;
}
.aj-icon-card:hover { transform: scale(1.1); }

/* Dymek Główny */
.aj-card-pop {
    position: absolute;
    bottom: 0; right: 65px;
    width: 300px; 
    background: #fff;
    display: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    overflow: hidden;
    font-family: sans-serif;
    border: 1px solid #ccc;
}
#aj-card:hover .aj-card-pop { display: block; }

/* Sekcja A&J */
.aj-head { background: #2c3e50; color: #fff; padding: 10px; font-weight: bold; font-size: 13px; text-transform: uppercase; }
.aj-body { padding: 12px; font-size: 12px; color: #333; line-height: 1.4; }

/* Sekcja Sklepu */
.aj-sec-shop { background: #fff0f6; border-top: 2px dashed #fcc2d7; }
.aj-head-shop { color: #d63384; padding: 8px 12px 0; font-weight: bold; font-size: 14px; font-family: 'Georgia', serif; letter-spacing: 0.5px; }

/* Przycisk NAWIGUJ */
.aj-addr-box {
    background: #f1f2f6;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 8px;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.aj-nav-btn {
    display: block;
    background: #27ae60;
    color: #fff;
    text-align: center;
    padding: 4px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    font-size: 10px;
    transition: 0.2s;
}
.aj-nav-btn:hover { background: #219150; }
.btn-pink { background: #d63384; }
.btn-pink:hover { background: #b02a6b; }

/* Detale */
.aj-details { font-size: 10px; color: #666; margin-bottom: 8px; }
.aj-konto { font-family: monospace; font-weight: bold; color: #000; display: block; margin-top: 2px; }

/* Wiersze telefonów */
.aj-row { display: flex; justify-content: space-between; border-bottom: 1px solid #eee; padding: 3px 0; }
.aj-row:last-child { border: none; }
.aj-row span { color: #7f8c8d; }
.aj-row a { color: #2c3e50; font-weight: bold; text-decoration: none; }

.aj-shop-link {
    display: block; text-align: center;
    background: #d63384; color: #fff;
    padding: 8px; margin-top: 10px;
    border-radius: 5px;
    text-decoration: none; font-weight: bold;
}
.aj-shop-link:hover { background: #a02260; }

/* POPRAWKA MOBILNA - Zrównane do 15px */
@media(max-width:600px) { 
    #aj-card { right: 15px; bottom: 90px; } 
}