
  .customize_modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999999999;
        }

        .customize_modal-overlay * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .customize_modal {
            background: rgba(255,255,255,0.85);
            border-radius: 24px;
            width: 90%;
            max-width: 1280px;
            max-height: 80vh;
            overflow: hidden;
            position: relative;
            display: flex;
            z-index: 99999999;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
      
        }


        .customize_modal_wrap{
          
        }
        .customize_close_wrap{
            width: 100%;
            height: 52px;
            position: absolute;
            top: 0px;
            padding-top: 10px;
            left: 0;
            z-index: 10;
            
        }
        .customize_close-btn {
            float: right;
            margin-right: 15px;
            width: 32px;
            height: 32px;
            border: none;
            background: none;
            font-size: 24px;
            cursor: pointer;
         

          
            color: #666;
        }

        .customize_close-btn:hover {
            color: #000;
        }

        .customize_modal-left {

            flex: 1;
            padding: 15px;
            overflow-y: auto;
            max-height: 90vh;

            position: relative;
              background: #fff;
            border-radius: 10px;
            margin: 15px;
            padding: 15px;

        }

        .customize_modal-right {
            width: 40%;
        
            padding: 20px;

            border-left: 1px solid #e0e0e0;
            
        }

        .customize_section {
            margin-bottom: 40px;
        }

        .customize_section h2{
            font-weight: bold;
            font-size: 24px;
            font-family: 'Poppins-Regular';

        }
        .customize_section p{
            font-size: 14px;
            margin-bottom: 8px;
            line-height: 1.3em;
        }

        .customize_section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: px;
            color: #000;
        }



        .customize_section-subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }

        /* 滑动容器 */
        .customize_slider-container {
            position: relative;
            overflow: hidden;
        }

        .customize_slider-wrapper {
            display: flex;
            flex-wrap: wrap;
           
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 4px;
        }

        .customize_slider-wrapper::-webkit-scrollbar {
            display: none;
        }

        .customize_slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.2s;
            font-size: 18px;
            line-height: 1;
            color: #666;
        }

        .customize_slider-nav:hover {
            background: #f5f5f5;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            color: #000;
        }

        .customize_slider-nav.customize_prev {
            left: -8px;
        }

        .customize_slider-nav.customize_next {
            right: -8px;
        }

        .customize_slider-nav.customize_hidden {
            opacity: 0;
            pointer-events: none;
        }


        .customize_slider-wrapper{
            padding: 4px 0;
            justify-content: space-between;
        }

        .customize_option-card {

            width: 48%;
            background: #EFF1F8;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px 20px 10px 20px;
            box-sizing: border-box;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            flex-shrink: 0;
            margin: 5px 0;
            position: relative;
            min-height: 80px;
           
        }

        .customize_option-card:hover {
            border-color: #7c6db8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .customize_option-card.customize_selected {
            border-color: #7c6db8;
            background: #7c6db8;
            color: #fff;
        }


        .customize_option-card-img {
            width: 100%;
            object-fit: contain;
        
        }

        .customize_option-card-title {
            position: absolute;
            top: 20px;
            width: 90%;
            left: 0;
            text-align: center;
            padding: 0 5%;
            margin-bottom: 4px;
            color: #000;
            text-align: center;
            line-height: 1.2em;
            height: 36px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            box-orient: vertical;
            line-clamp: 2;
            box-sizing: content-box;
        }
         .customize_option-card .customize_option-btn-desc{
          
            width: 100%;
            text-align: center;
            padding-bottom: 5px;
            margin-top: -10px;

            
         }

         .customize_option-card.customize_selected  .customize_option-card-title {
            color: #fff;
        }
          .customize_option-card.customize_selected  .customize_option-btn-desc {
            color: #fff;
        }




        .customize_option-card-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }

           .customize_option-card.customize_selected  .customize_option-card-desc {
            color: #fff;
        }



        .customize_options-grid {
            display: flex;
              justify-content: space-between;
        
        }


        .plate_col_wrap  .customize_option-btn {
             width: 24%;
        }
        .customize_option-btn {
            width: 48%;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px 15px;
            cursor: pointer;
            margin: 5px 0;
            line-height: 1.1em;
            transition: all 0.2s;
            text-align: center;
        }

        .customize_option-btn:hover {
            border-color: #7c6db8;
            transform: translateY(-2px);
        }

        .customize_option-btn.customize_selected {
            border-color: #7c6db8;
            background: #7c6db8;
            color: white;
        }

        .customize_option-btn-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 0px;
        }

        .customize_option-btn.customize_selected .customize_option-btn-title,
        .customize_option-btn.customize_selected .customize_option-btn-desc {
            color: white;
        }

        .customize_option-btn-desc {
            padding-top: 5px;
            font-size: 13px;
            color: #666;
            pointer-events: none;
        }

        .customize_color-options {
            display: flex;
            gap: 16px;
        }

        .customize_color-option {
            flex: 1;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .customize_color-option:hover {
            border-color: #7c6db8;
        }

        .customize_color-option.customize_selected {
            border-color: #7c6db8;
            background: #7c6db8;
            color: white;
        }

        .customize_color-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .customize_price {
            font-size: 48px;
            font-weight: 700;
            color: #000;
            margin: 20px 0;
        }

        .customize_checkbox-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #666;
            margin: 20px 0;
            cursor: pointer;
            position: relative;
        }
        .customize_checkbox-label span{
            line-height: 1.2em;
            padding-left: 30px;
        }

       .preorder_unconfirm span{
            color: red!important;
        }

        .customize_checkbox-input {
            width: 18px;
            height: 18px;
            cursor: pointer;
            position: absolute;
            top: 0;
        }

        .customize_buttons {
            display: flex;
            gap: 16px;
            margin-top: auto;
        }

        .customize_btn {
            flex: 1;
            padding:0;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            
        }

        .customize_btn-outline {
            background: white;
            color: #7c6db8;
        }

        .customize_btn-outline:hover {
            background: #f3f1f9;
        }

        .customize_btn-primary {
            background: #7c6db8;
            color: white;
        }

        .customize_btn-primary:hover {
            background: #6b5da7;
        }

         .customize_keyboard-preview_wrap{
            width: 80%;
              margin: 0 auto 15px;
        }
        .customize_keyboard-preview {
            width: 100%;
            position: relative;
        
            height: 0;
            padding-bottom: 60%;
        
        }

        .customize_keyboard-preview-img {
            width: 100%;
            height: auto;
        }

        .customize_config-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #333;
        }

        .customize_config-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
            padding:  5px;
        }

         .product_header_right .customize_config-grid{
             margin: 10px ;
            margin-left: 0;

         }
          .product_header_right .customize_config-grid{
            gap: 12px;
         }

          .product_header_right .customize_config-value{
            font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 1.1em;
         }


         #configurator_btn{
            width: auto;
            background:#6F5CAE ;
            border-radius: 8px;
            color: #fff;

            line-height: 42px;
            text-align: center;
            font-weight: bold;
            margin-right: 15px;
            text-transform: uppercase;
            cursor: pointer;

         }
          

        .customize_config-item {
          
            border: 1px solid #6F5CAE;
            border-radius: 8px;
            padding: 10px;
        }

         .product_header_right   .customize_config-item{
            border: none;
            padding: 0 10px;
         }


        .customize_config-label {
            font-size: 14px;
            color: #7c6db8;
            margin-bottom: 2px;
            font-weight: bold;       
             }
         .product_header_right   .customize_config-label{
            font-size: 14px;
            font-weight: bold;
        }

        .customize_config-value {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            line-height: 1.2em;
        }
        .customize_submit{
        
            padding: 15px 0;
            background: #fff;
            width: 100%;
        }
        .customize_submit .outofstock_dot{
            margin-right: 15px;
        }

        .customize_submit .unavalable{
            background: gray!important;
        }
        .customize_submit .price{
            font-size: 28px;
            font-weight: bold;
            color: #333;

        }

     
            .customize_gallery {
            position: relative;
            width: 100%;
            height: 400px;
            background: #fff;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .image-layer {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .image-layer img {
            width: 100%;
            height: auto;
            object-fit: contain;
           /* max-height: 400px;*/
        }

            .dashed-underline {
            background-image: linear-gradient(to right, #ccc 70%, transparent 30%);
            background-position: 0 100%;
            background-repeat: repeat-x;
            background-size: 12px 2px;
            padding-bottom: 1px;
            width: 100%;
            height: 0px;
            margin: 25px 0 15px;
            }

         
            .empty-message{
                text-align: center;
                line-height: 100px;
            }
            .submit_disabled{
                background: #666!important;
                color: #fff;
            }

            .fix_btn_bar{
         
                width: calc(100% - 15px);
            }

            .hidden-option {
                 display: none !important;
            }

            .btn-text{
                color: #6F5CAE;
                cursor: pointer;
                position: relative;
                font-weight: bold;
            }
            .customize_more_icon{
             
                transform: rotate(90deg ) scale(0.8, 1) ;
                display: block;
                font-size: 20px;
                margin: 0 auto;
                font-weight: bold;
                line-height: 20px;
               
            }
            .product_header_left_fix{
                display: none;
                padding: 15px;
            }
            .preview_wrap_mobile{
                display: none;
            }
            .mobile_add_card_btn{
                text-transform: uppercase;
            }
            .mobile_add_card_btn:before{
                content: '';
                display: none;
             
            }

            .customize_expand-btn{
                overflow: hidden;
                position: relative;
                width: 100%;
                height: 100px;
                margin-top: -100px;
                padding: 12px;
                color: #666;
                line-height: 30px;
                font-size: 14px;
                cursor: pointer;
                transition: all 0.2s ease;
                text-align: center;
                gap: 8px;
                z-index: 99;
                background: linear-gradient(
                to bottom,
                transparent 0%,
                rgba(255, 255, 255, 0.6) 20%,
                white 100%
                );


            }
            .customize_expand-btn .btn-text{
                padding-top: 30px;
                display: block;
                margin: 0 auto;
            }
            .customize_expanded{
                margin-top: 0px;
                height: 60px;
            }

            .customize_expanded .btn-text{
                 padding-top: 0px;
            }
            .customize_preview_price{
                font-size: 18px;
                font-weight: bold;
                text-align: right;
                float: right;
                line-height: 1.4em;
                margin-right: 5px;
            }


        @media (max-width: 768px) {

            .customize_config-grid2{
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    margin-bottom: 24px;
                    padding:  0 15px;
                    gap: 0;
                    width: 80%;
                    margin: 0 auto;
            }

        .customize_config-item-table2{
            padding: 5px;
            margin-top: -1px;
            border: 1px solid #eee;
           
        }
        .customize_config-label2{
            padding: 0 10px;
              font-size: 14px;
               font-weight: 600;
        }
          .customize_config-value2{
            font-size: 14px;
           
               color: #7c6db8;
            line-height: 1.1em;
            padding: 0 10px;

        }

            .preview_wrap_mobile{
                display: block;
            }

            .product_header_left{
                display: none;
            }
            .product_header_left_fix{
                display: block;
            }

            .plate_col_wrap{
                  flex-wrap: wrap;
            }

             .plate_col_wrap  .customize_option-btn {
              
             width: 48%;
        }


            .customize_modal-left{
                overflow: hidden;
                height: auto;
                width: auto;
                max-height: none;
                background: none;
                padding: 0;

            }
            .customize_submit{
                background: none;
            }
            .customize_modal{
                overflow-y: scroll;
                background: #fff;
            }
            .customize_close_wrap{
                   background: #fff;
                position: sticky;
               
            }

            .product_header{
                display: flex;
                flex-direction: column-reverse;
            }
            .product_header_right{
                height: auto;
                display: block;
                width: auto;
                margin: 15px 0;
                float: none;
                padding: 0 15px;
            }
            #new_vue_attr{
                height: auto;
                width: auto;
                padding-left: 0;
                margin-left: 0;
            }
            #configurator_btn{
                margin-right: 0;
            }
            .fix_btn_bar{
                position: relative;
                width: calc(100% - 30px);


            }
            #ga_addcart_pc{
                width: 120px;
            }
            .fix_btn_bar_checkout{
                width: calc(100% - 160px);
            }

            .customize_section {
            margin-top: 0px;
            margin-bottom: 30px;
          }


            .customize_modal {
                flex-direction: column;
                display: block;
            }

            .customize_modal-right {
                display: none;
                width: 100%;
                margin: 0 auto;
                opacity: 0;
                background:#f3f4f5;
                border-radius: 8px;
                border-left: none;
                /*border-top: 1px solid #e0e0e0;*/
                margin-bottom: 30px;
            }
                .customize_keyboard-preview_wrap{
                 width: 100%;
          
             }

            .customize_keyboard-preview{

              
            }
            .customize_config-title{
                text-align: center;
            }





        }




