.elementor-1948 .elementor-element.elementor-element-d01140e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-1948 .elementor-element.elementor-element-f57145d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.woocommerce .elementor-1948 .elementor-element.elementor-element-0310e4b .flex-viewport:not(:last-child){margin-bottom:0px;}.woocommerce .elementor-1948 .elementor-element.elementor-element-0310e4b .flex-control-thumbs li{padding-right:calc(0px / 2);padding-left:calc(0px / 2);padding-bottom:0px;}.woocommerce .elementor-1948 .elementor-element.elementor-element-0310e4b .flex-control-thumbs{margin-right:calc(-0px / 2);margin-left:calc(-0px / 2);}.elementor-1948 .elementor-element.elementor-element-f3d8c28{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:space-around;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-1948 .elementor-element.elementor-element-72cf536{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-around;}.elementor-1948 .elementor-element.elementor-element-cf03d18 .elementor-button{border-style:none;}.elementor-1948 .elementor-element.elementor-element-e3428d6 .elementor-button{border-style:none;}@media(min-width:768px){.elementor-1948 .elementor-element.elementor-element-d01140e{--content-width:1208px;}.elementor-1948 .elementor-element.elementor-element-f57145d{--width:50%;}.elementor-1948 .elementor-element.elementor-element-f3d8c28{--width:50%;}}/* Start custom CSS for container, class: .elementor-element-d01140e *//* ========================================
   SUNRICH PRODUCT DETAIL PAGE
======================================== */

/* 整体布局 */

.single-product div.product{
    max-width: 1320px;
    margin: 60px auto;
    padding: 0 30px;

    display: flex;
    align-items: flex-start;
    gap: 70px;
}

/* 左侧图片区 */

.single-product div.product .woocommerce-product-gallery{
    width: 52%;
}

/* 主图 */

.single-product .woocommerce-product-gallery__wrapper{
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

/* 产品图 */

.single-product div.product div.images img{
    width: 100%;
    display: block;
}

/* 缩略图 */

.flex-control-thumbs{
    display: grid !important;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;

    margin-top: 18px !important;
}

.flex-control-thumbs li{
    width: 100% !important;
}

.flex-control-thumbs img{
    border: 1px solid #ececec;
    border-radius: 6px;

    opacity: 1 !important;

    transition: .3s;
}

.flex-control-thumbs img:hover{
    border-color: #ff6b00;
    transform: translateY(-2px);
}

/* 右侧信息 */

.single-product div.product .summary{
    width: 48%;
    padding-top: 20px;
}

/* 标题 */

.single-product .product_title{
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
    color: #071b55;

    margin-bottom: 25px;
}

/* 价格隐藏（如果没有价格） */

.single-product .price{
    display: none;
}

/* 简介 */

.single-product .woocommerce-product-details__short-description{
    margin-bottom: 35px;

    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/* 按钮区域 */

.single-product form.cart{
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 35px;
}

/* Quote按钮 */

.single-product .single_add_to_cart_button{
    height: 54px !important;
    padding: 0 34px !important;

    border-radius: 6px !important;

    background: #ff6b00 !important;

    color: #fff !important;

    font-size: 15px !important;
    font-weight: 700 !important;

    transition: .3s;
}

.single-product .single_add_to_cart_button:hover{
    background: #e45d00 !important;
}

/* GO BACK按钮 */

.go-back-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 54px;
    padding: 0 34px;

    border-radius: 6px;

    background: #66bb4d;

    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition: .3s;
}

.go-back-btn:hover{
    background: #57a83f;
}

/* RELATED PRODUCTS */

.related.products{
    max-width: 1320px;
    margin: 90px auto;
    padding: 0 30px;
}

/* 标题 */

.related.products > h2{
    font-size: 34px;
    font-weight: 800;
    color: #071b55;

    margin-bottom: 40px;
}

/* 产品网格 */

.related.products ul.products{
    display: grid !important;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* 产品卡片 */

.related.products ul.products li.product{
    width: 100% !important;

    border: 1px solid #eee;
    border-radius: 10px;

    overflow: hidden;

    background: #fff;

    transition: .3s;
}

/* hover */

.related.products ul.products li.product:hover{
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);
}

/* 图片 */

.related.products ul.products li.product img{
    margin-bottom: 0 !important;
}

/* 标题 */

.related.products ul.products li.product h2{
    font-size: 16px !important;
    line-height: 1.5 !important;

    color: #071b55 !important;

    padding: 20px !important;

    min-height: 85px;
}

/* 按钮 */

.related.products .button{
    margin: 0 20px 20px !important;

    height: 44px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 0 24px !important;

    background: #ff6b00 !important;

    color: #fff !important;

    border-radius: 5px;

    font-size: 14px !important;
    font-weight: 700 !important;

    text-decoration: none;
}

/* ========================================
   TABLET
======================================== */

@media (max-width:1024px){

    .single-product div.product{
        flex-direction: column;
        gap: 50px;
    }

    .single-product div.product .woocommerce-product-gallery,
    .single-product div.product .summary{
        width: 100%;
    }

    .single-product .product_title{
        font-size: 34px;
    }

    .related.products ul.products{
        grid-template-columns: repeat(2,1fr);
    }

}

/* ========================================
   MOBILE
======================================== */

@media (max-width:768px){

    .single-product div.product{
        margin: 35px auto;
        padding: 0 18px;
    }

    .single-product .product_title{
        font-size: 28px;
    }

    .single-product .woocommerce-product-details__short-description{
        font-size: 15px;
    }

    .single-product form.cart{
        flex-direction: column;
        align-items: stretch;
    }

    .single-product .single_add_to_cart_button,
    .go-back-btn{
        width: 100%;
    }

    .flex-control-thumbs{
        gap: 10px;
    }

    .related.products{
        padding: 0 18px;
    }

    .related.products > h2{
        font-size: 28px;
    }

    .related.products ul.products{
        grid-template-columns: 1fr;
    }

}/* End custom CSS */