/* 放大镜容器样式 */
.kadence-zoom-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: #fff;
    border-top: 3px solid #333;
    z-index: 9;
    display: none;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

/* 放大显示区域 */
.zoom-view {
    width: 100%;
    height: 100%;
    background-size: 200% auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    transition: background-position 0.1s;
    
    z-index: 999;
    overflow: hidden;
    margin-left: 0px;
    margin-top: 0px;
    float: left;
    cursor: crosshair;
    position: absolute;
    top: 0px;
    left: 0px;
}

/* 加载指示器 */
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #333;
    display: none;
}

/* 控制按钮 */
.zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: none;
}

.zoom-controls button {
    background: #333;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 3px;
}