.fx-product-section{
    padding:80px 0 90px 0;
    background:#fcfcfc;
    border-top:10px solid #ffffff;
}

.fx-title-area{
    text-align:center;
    margin-bottom:60px;
}

.fx-title-area h2{
    font-size:40px;
    font-weight:700;
    color:#18364a;
    margin-bottom:18px;
    line-height:1.3;
}

.fx-title-line{
    width:90px;
    height:4px;
    background:#f58220;
    margin:0 auto 25px auto;
}

.fx-title-area p{
    max-width:950px;
    margin:auto;
    font-size:17px;
    line-height:1.9;
    color:#555;
}

.product-detail-block{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

.product-d-l{
    width:52%;
}

.product-d-r{
    width:48%;
}

.fx-spec-block{
    margin-bottom:32px;
}

.fx-spec-block h5{
    background:#f5f7fa;
    color:#18364a;
    padding:15px 20px;
    margin:0;
    font-size:20px;
    font-weight:700;
    border-left:5px solid #f58220;
    border-bottom:1px solid #e6e6e6;
    letter-spacing:0.2px;
}

.fx-spec-block ul{
    padding:24px 28px 24px 48px;
    margin:0;
    background:#ffffff;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
}

.fx-spec-block li{
    margin-bottom:10px;
    color:#4b4b4b;
    line-height:1.75;
    font-size:14px;
    list-style:none;
    position:relative;
}

.fx-spec-block li::before{
    content:"";
    width:7px;
    height:7px;
    background:#f58220;
    border-radius:50%;
    position:absolute;
    left:-18px;
    top:9px;
}

.fx-image-title{
    background:#18364a;
    color:#fff;
    padding:14px 20px;
    font-size:19px;
    font-weight:600;
    border-left:5px solid #f58220;
    margin-bottom:25px;
}

.fx-shot-caption{
    font-size:14px;
    color:#666;
    margin-top:8px;
    margin-bottom:28px;
    text-align:center;
}

.product-d-r a{
    display:block;
    margin-bottom:28px;
}

.product-d-r img{
	background:#fff;
    padding:8px;
    width:100%;
    border:1px solid #d9d9d9;
    box-shadow:0 5px 18px rgba(0,0,0,0.10);
    transition:0.3s;
}

.product-d-r img:hover{
    transform:scale(1.015);
}

@media(max-width:991px){

    .product-detail-block{
        flex-direction:column;
    }

    .product-d-l,
    .product-d-r{
        width:100%;
    }

    .fx-title-area h2{
        font-size:32px;
    }

}

@media(max-width:768px){

    .fx-product-section{
        padding:50px 0 70px 0;
    }

    .fx-title-area h2{
        font-size:28px;
    }

    .fx-title-area p{
        font-size:15px;
    }

    .fx-spec-block h5,
    .fx-image-title{
        font-size:17px;
    }

}