/*=========================
      PAGE BANNER
=========================*/

.page-banner {
    position: relative;
    background: #0096cf;
    padding: 12px;
    overflow: hidden;
    border-radius: 6px;
}

/* Optional Pattern */

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/pattern.png") repeat;
    opacity: .12;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.banner-content h1 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 18px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
    cursor: pointer;
}

.breadcrumb a:hover {
    color: #f5f5f5;
}

.breadcrumb span {
    color: #fff;
}

.product-detail {

    padding: 140px 0 20px 0;

}

.detail-grid {
    padding-top: 20px;
}

.product-detail-content {

    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 60px;

    align-items: center;
}

.detail-image img {

    width: 100%;
    height: 300px;
    border-radius: 12px;

    border: 1px solid #ddd;

    padding: 20px;

}

.detail-text h1 {

    font-size: 42px;

    color: #0d4c92;

    margin-bottom: 20px;

}

.detail-text span {

    display: inline-block;

    padding: 8px 20px;

    background: transparent;

    color: #353535;
    border: 1px solid #353535;
    border-radius: 50px;

    margin-bottom: 15px;

}

.detail-text p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 30px;

}

.detail-text ul {

    margin: 20px 0;

    padding-left: 20px;

}

.detail-text li {

    margin-bottom: 12px;

}

.specifications {

    padding: 20px 0 60px 0;

}

.specifications table {

    width: 100%;

    border-collapse: collapse;

}

.specifications th {

    background: #0096cf;

    color: #fff;
    border: 1px solid #ddd;
    padding: 15px;

    width: 250px;

    text-align: left;

}

.specifications td {

    padding: 15px;

    border: 1px solid #ddd;

}

.specifications tr:nth-child(even) {

    background: #f5f7fb;

}

/*=========================
      RESPONSIVE
=========================*/


@media(max-width:1199px) {}

@media(max-width:991px) {
    .product-detail-content {
        grid-template-columns: 1fr 200px;
        gap: 30px;
    }

    .detail-image img {
        height: 200px;
    }
}

@media(max-width:767px) {

    .banner-content h1 {
        font-size: 20px;
    }

    .breadcrumb {
        font-size: 15px;
    }
}

@media(max-width:575px) {
    .product-detail {
        padding: 100px 0 20px 0;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-image {
        margin-bottom: 30px;
    }

    .detail-image img {
        width: 100%;
        height: 300px;
    }

    .specifications th {
        width: 120px;
    }
}