/* =========================================
   Custom Floating Dock Styles
   ========================================= */
.custom-dock {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: #27418b !important;
    /* 强制品牌蓝 */
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(39, 65, 139, 0.3) !important;
    overflow: visible;
    width: 68px;
}

/* Force Hide Native Zoho Widget */
#zsiq_float,
.zsiq_float,
.zsiq-float,
#zsiq_btn,
.zsiq_theme1,
.zsiq_theme2,
.zsiq_flt_txt {
    display: none !important;
}

/* Dock Item */
.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 82px;
    color: #fff !important;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 0;
}

/* Horizontal Separator */
.dock-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.dock-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.08) !important;
    z-index: 10;
}

.dock-item:hover .dock-icon {
    color: #ffa425 !important;
    /* 悬停橙色 */
}

/* Icons */
.dock-icon {
    font-size: 26px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

/* Text */
.dock-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

/* =========================================
   Hover Content (Slide-out Bubble)
   ========================================= */
.dock-hover-content {
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translate(20px, -50%);
    width: auto;
    min-width: 200px;
    background: #fff;
    color: #333;
    padding: 15px;
    border-radius: 12px;
    box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee;
    pointer-events: none;
}

.dock-item:hover .dock-hover-content {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
}

.dh-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.dh-number {
    font-size: 18px;
    font-weight: 700;
    color: #27418b;
    margin-bottom: 5px;
    white-space: nowrap;
    display: block;
}

.dock-hover-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 10px;
}

.dock-hover-wechat {
    width: 180px;
}

.dh-qr-single {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dh-qr-single img {
    width: 140px;
    height: 140px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    padding: 5px;
}

.dh-qr-single span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .custom-dock {
        display: none !important;
    }
}