* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .container {
            width: 100vw;
            /*height: 100vh;   */
            display: flex;
            flex-direction: column;
        }

        .main-image-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        .main-image {
            width: 100%;
            height: auto;
            cursor: grab;
            transition: transform 0.3s;
        }

        .magnifier {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid #fff;
            border-radius: 50%;
            overflow: hidden;
            pointer-events: none;
            display: none;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }

        .thumbnail-container {
            height: 100px;
            display: flex;
            gap: 10px;
            padding: 10px;
            overflow-x: auto;
            background: #333;
        }

        .thumbnail {
            height: 80px;
            width: auto;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .thumbnail.active {
            border-color: #ff4757;
        }

        .caption {
            padding: 5px;
            background: #222;
            color: white;
            text-align: center;
            font-size: 0.16rem;
        }

        .controls {
            /*position: fixed;*/
            top: 5px;
            right: 20px;
            background: rgba(0,0,0,0.7);
            padding: 3px;
            border-radius: 0px;
            color: white;
        }