/* 우측 고정 퀵 메뉴 위치 하단으로 조정 */
.quick-menu {
    position: fixed;
    right: 40px;      /* 우측 여백 */
    bottom: 50px;     /* [수정] 중앙이 아니라 바닥에서 50px 띄움 */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* 아래는 기존 스타일 유지 */
.quick-item {
    width: 80px;      /* 크기도 조금 더 키워 가독성 확보 */
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.quick-item span { font-size: 26px; margin-bottom: 2px; }
.quick-item p { margin: 0; font-size: 12px; font-weight: 800; color: #333; }

/* 제품문의(이메일) - 주황색 포인트 */
.quick-item.email-box:hover {
    background-color: #ff8c00;
    border-color: #ff8c00;
    transform: scale(1.1);
}

/* 고객상담(카톡) - 노란색 포인트 */
.quick-item.kakao-box:hover {
    background-color: #fee500;
    border-color: #fee500;
    transform: scale(1.1);
}

.quick-item span {
    font-size: 24px;
    margin-bottom: 3px;
}

.quick-item p {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: #333;
}

.quick-item:hover p {
    color: #fff;
}

/* 모바일에서는 조금 작게 조절 */
@media (max-width: 768px) {
    .quick-menu { right: 10px; }
    .quick-item { width: 60px; height: 60px; }
    .quick-item span { font-size: 20px; }
    .quick-item p { font-size: 9px; }
}