/* =========================
   퀵바
========================= */
.quickbar {
    position: fixed;
    right: 100px;
    bottom: 28%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quickbar a {
    display: block;
    width: 85px;
    height: 85px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quickbar a:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

.quickbar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {
    .quickbar {
        right: 25px;
        bottom: 25px;
    }

    .quickbar a {
        width: 65px;
        height: 65px;
    }
}
