/* 相对定位容器 */
        .relative-position {
            position: relative;
            overflow: hidden;
        }

        /* 视频播放按钮样式 */
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10;
            cursor: pointer;
        }

        .project-one__single:hover .video-play-btn {
            opacity: 1;
            visibility: visible;
        }

        .play-icon-circle {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #e74c3c;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 2px 10px;
            border-radius: 5px;
            font-size: 11px;
        }

        /* Premium Sidebar Enhancements */
        .shop-sidebar__single {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            border: 1px solid #f1f1f1;
        }

        .shop-sidebar__title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
            position: relative;
            color: #111;
        }

        .shop-sidebar__title:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--thm-primary);
        }

        .shop-sidebar__category-list li {
            border-bottom: 1px solid #f7f7f7;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .shop-sidebar__category-list li:last-child {
            border-bottom: none;
        }

        .shop-sidebar__category-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            font-weight: 500;
            color: #444;
            transition: all 0.3s ease;
        }

        .shop-sidebar__category-list li:hover a {
            color: var(--thm-primary);
            padding-left: 8px;
        }

        .shop-sidebar__category-list li.active a {
            color: var(--thm-primary);
            font-weight: 700;
        }

        .shop-sidebar__category-list li a span {
            font-size: 14px;
            opacity: 0.6;
            transition: all 0.3s;
        }

        .shop-sidebar__category-list li:hover a span {
            transform: translateX(4px);
            opacity: 1;
        }

        /* Improved Featured Product Widget */
        .featured-pro-item {
            transition: all 0.3s ease;
        }

        .featured-pro-item .img {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .featured-pro-item:hover .img {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        }

        .featured-pro-item .info h5 a {
            color: #333;
            transition: all 0.3s ease;
        }

        .featured-pro-item:hover .info h5 a {
            color: var(--thm-primary);
        }