/* Kontener Całości */
#aj-pack-wrapper {
    position: fixed;
    bottom: 80px; /* ZMIANA: Obniżamy (było 160px) */
    right: 25px;
    z-index: 999990;
}

/* Ikona (Trigger) */
#aj-pack-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #000;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid #fff; /* Biała ramka - kontrast */
}
#aj-pack-icon:hover { transform: scale(1.1); }

/* Okno Informacyjne (Popup) */
#aj-pack-window {
    position: absolute;
    bottom: -20px;
    right: 65px; /* Wysuwa się w lewo od ikony */
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #eee;
    overflow: hidden;
}

/* Stan Aktywny (Widoczny) */
#aj-pack-wrapper.active #aj-pack-window {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Nagłówek Okna */
.aj-pw-header {
    background: #2c3e50;
    color: #fff;
    padding: 10px 15px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-weight: bold;
}
#aj-pw-close { cursor: pointer; font-size: 18px; line-height: 1; }

/* Treść Okna */
.aj-pw-body { padding: 15px; font-family: sans-serif; font-size: 13px; color: #333; }
.aj-pw-row { margin-bottom: 12px; line-height: 1.4; }

/* Tabela Godzin */
.aj-pw-hours {
    background: #f8fbff;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #eef2f7;
    margin-bottom: 15px;
}
.aj-h-row { display: flex; justify-content: space-between; margin-bottom: 4px; font-size: 12px; }
.aj-h-row.sunday { color: #d63384; border-top: 1px dashed #ccc; padding-top: 4px; margin-top: 4px; }

/* Przyciski */
.aj-pw-actions { display: flex; gap: 8px; }
.aj-pw-actions a {
    flex: 1; text-align: center; text-decoration: none;
    padding: 8px 5px; border-radius: 4px; font-size: 11px; font-weight: bold;
    transition: 0.2s;
}
.aj-btn-shop { background: #d63384; color: #fff; } /* MagicNap Pink */
.aj-btn-shop:hover { background: #b02a6b; }

.aj-btn-pack { background: #f1c40f; color: #000; } /* Pakersi Yellow */
.aj-btn-pack:hover { background: #d4ac0d; }

/* Responsywność */
@media(max-width: 600px) {
    /* POPRAWKA MOBILNA: Równe odstępy */
    #aj-pack-wrapper { right: 15px; bottom: 155px; } 
    #aj-pack-window { right: 55px; width: 250px; }
}