body{
    background:#fff;
    color:#111;
    font-family:Arial,sans-serif;
}

/* IMAGE */

.product-image{
    background:#f5f5f5;
    border-radius:20px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    display:block;
}

.product-detail{
    padding:140px 0 70px;
}

/* TITLE */

.product-title{
    font-size:38px;
    font-weight:700;
    

    margin-bottom:20px;
}

/* PRICE */

.product-price{
    font-size:34px;
    font-weight:700;

    margin-bottom:24px;
}

/* BUTTON */

.wa-button{
    width:100%;
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#25D366;
    color:white;

    text-decoration:none;

    border-radius:14px;

    font-weight:600;

    margin-bottom:30px;
}

.wa-button:hover{
    color:white;
}

/* DESCRIPTION */

.product-description{
    color:#555;
    line-height:1.9;
}

/* CONTAINER */

.product-detail .container{
    max-width:1200px;
}

/* IMAGE */

/* IMAGE */

.product-image{
    background:#f7f7f7;
    border-radius:24px;

    overflow:hidden;

    cursor:zoom-in;
}

/* IMAGE */

.product-image img{
    width:100%;
    display:block;

    transition:transform .5s ease;
}

/* HOVER ZOOM */

.product-image:hover img{
    transform:scale(1.08);
}
/* IMAGE */

.product-image img{
    width:100%;
    display:block;
    border-radius:18px;
}

/* CONTENT */

.product-content{
    padding-left:30px;
}

/* TITLE */

.product-title{
    font-size:42px;
    line-height:1.3;
    font-weight:700;

    margin-bottom:20px;
}

/* PRICE */

/* PRICE */

.product-price{
    margin-bottom:24px;
}

.price-before{
    font-size:22px;
    font-weight:500;

    color:#ff0000;

    text-decoration:line-through;

    margin-bottom:6px;
}

.price-now{
    font-size:42px;
    font-weight:700;

    color:#111;
}

/* BUTTON */

.wa-button{
    width:100%;
    height:58px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#25D366;
    color:#fff;

    text-decoration:none;

    font-size:16px;
    font-weight:600;

    margin-bottom:30px;

    transition:.3s;
}

.wa-button:hover{
    background:#1ebe5d;
    color:#fff;
}

/* DESCRIPTION */

.product-description{
    font-size:16px;
    line-height:2;
    color:#555;
}

/* MOBILE */

@media(max-width:768px){

    .product-detail{
        padding:110px 0 50px;
    }

    .product-content{
        padding-left:0;
        padding-top:30px;
    }

    .product-title{
        font-size:30px;
    }

    .product-price{
        font-size:30px;
    }

}



/* BREADCRUMB */

.breadcrumb-section{
    padding-top:30px;
}

.breadcrumb-custom{
    display:flex;
    align-items:center;
    gap:10px;

    flex-wrap:wrap;

    font-size:14px;
}

.breadcrumb-custom a{
    color:#777;
    text-decoration:none;
}

.breadcrumb-custom strong{
    color:#111;
}
/* =========================
   RELATED PRODUCT
========================= */

.related-section{
    padding:80px 0;
    background:#fff;
}

/* TOP */

.related-top{
    margin-bottom:28px;
}

.related-top h2{
    font-size:34px;
    font-weight:700;
    color:#111;
}

/* GRID */

.related-grid{
    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:22px;
}

/* CARD */

.related-card{
    text-decoration:none;
    color:inherit;
}

/* IMAGE */

.related-image{
    overflow:hidden;

    border-radius:18px;

    background:#f5f5f5;
}

.related-image img{
    width:100%;
    height:370px;

    object-fit:cover;
    display:block;

    transition:.4s ease;
}

.related-card:hover img{
    transform:scale(1.03);
}

/* CONTENT */

.related-content{
    padding-top:12px;
}

/* CATEGORY */

.related-category{
    display:inline-block;

    font-size:11px;
    font-weight:600;

    color:#944fd4;

    text-transform:uppercase;
    letter-spacing:1px;

    margin-bottom:8px;
}

/* TITLE */

.related-content h3{
    font-size:14px;
    line-height:1.6;
    font-weight:600;

    color:#111;

    margin:0;
}

/* TABLET */

@media(max-width:991px){

    .related-grid{

        grid-template-columns:
        repeat(3,1fr);

    }

}

/* MOBILE */

@media(max-width:768px){

    .related-section{
        padding:60px 0;
    }

    .related-top h2{
        font-size:26px;
    }

    .related-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:14px;

    }

    .related-image{
        border-radius:14px;
    }

    .related-image img{
        height:250px;
    }

    .related-content{
        padding-top:10px;
    }

    .related-category{
        font-size:10px;
    }

    .related-content h3{
        font-size:13px;
        line-height:1.5;
    }

}
/* =========================
   PRODUCT ZOOM
========================= */

/* HOVER */

.product-image{
    cursor:zoom-in;
    overflow:hidden;
}

.product-image img{
    transition:.4s;
}

.product-image:hover img{
    transform:scale(1.06);
}

/* MODAL */

#zoomModal{
    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.92);

    display:none;

    align-items:center;
    justify-content:center;

    z-index:999999;
}

/* ACTIVE */

#zoomModal.active{
    display:flex;
}

/* IMAGE */

#zoomModal img{
    max-width:90%;
    max-height:90%;

    border-radius:20px;
}