/* =========================================
   PRODUCT PAGE
========================================= */

.product-page{

    padding:110px 0;

    background:
    linear-gradient(
        to bottom,
        #f8fbff 0%,
        #eef4fb 100%
    );
}


/* =========================================
   SECTION HEADER
========================================= */

.section-heading{

    max-width:760px;

    margin:auto auto 70px;
}


.section-subtitle{

    display:inline-block;

    color:#e53935;

    font-size:14px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;
}


.section-title{

    font-size:52px;

    font-weight:900;

    color:#111111;

    margin-bottom:18px;

    line-height:1.1;
}


.section-description{

    font-size:18px;

    line-height:1.9;

    color:#666666;
}


/* =========================================
   PRODUCT CARD
========================================= */

.product-card{

    background:#ffffff;

    border-radius:24px;

    border:1px solid #dce4ee;

    padding:32px 28px;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 8px 24px rgba(0,0,0,.04);
}


/* TOP RED BORDER */

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#e53935;
}


/* HOVER */

.product-card:hover{

    transform:translateY(-8px);

    border-color:#e53935;

    box-shadow:
    0 18px 40px rgba(0,0,0,.08);
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.product-content{

    padding:0;
}


/* MODEL NUMBER */

.model-number{

    font-size:14px;

    font-weight:800;

    color:#e53935;

    letter-spacing:1.5px;

    text-transform:uppercase;

    margin-bottom:22px;
}


/* PRODUCT TITLE */

.product-content h4{

    font-size:22px;

    line-height:1.0;

    font-weight:600;

    color:#111111;

    text-transform:uppercase;

    /* margin-bottom:30px; */
}


/* =========================================
   IMAGE BOX
========================================= */

.product-image{

    height:190px;

    /* background:#f4f6fa; */

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:15px;

    overflow:hidden;
}


.product-image img{

    width:70%;

    height:auto;

    object-fit:contain;

    transition:.35s ease;
}


.product-card:hover .product-image img{

    transform:scale(1.05);
}


/* =========================================
   SPECIFICATION LIST
========================================= */

.specification-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:28px;
}


.spec-item{

    display:flex;

    align-items:flex-start;

    gap:18px;
}


.spec-item span{

    min-width:95px;

    font-size:15px;

    font-weight:500;

    color:#7f8ea3;

    letter-spacing:1px;

    text-transform:uppercase;
}


.spec-item strong{

    flex:1;

    font-size:15px;

    line-height:1.7;

    font-weight:700;

    color:#111111;
}


/* =========================================
   FEATURE TAGS
========================================= */

.product-tags{

    display:flex;

    flex-direction:column;

    gap:10px;
}


.product-tags span{

    display:inline-flex;

    align-items:center;

    width:fit-content;

    padding:10px 16px;

    border-radius:8px;

    background:#f1f3f6;

    color:#173b67;

    font-size:14px;

    font-weight:800;

    letter-spacing:.3px;

    transition:.3s ease;
}


.product-tags span:hover{

    background:#e53935;

    color:#ffffff;
}


/* =========================================
   RESPONSIVE
========================================= */

/* LARGE DESKTOP */

@media (min-width:1600px){

    .product-page{

        padding:140px 0;
    }

    .section-heading{

        max-width:900px;
    }

    .section-title{

        font-size:68px;
    }

    .section-description{

        font-size:20px;
    }

    .product-card{

        padding:38px 34px;
    }

    .product-content h4{

        font-size:26px;
    }

    .product-image{

        height:220px;
    }

}


/* DESKTOP */

@media (max-width:1400px){

    .section-title{

        font-size:50px;
    }

}


/* LAPTOP */

@media(max-width:1199px){

    .product-page{

        padding:100px 0;
    }

    .section-title{

        font-size:46px;
    }

    .product-content h4{

        font-size:20px;
    }

    .product-card{

        padding:28px 24px;
    }

    .product-image{

        height:180px;
    }

}


/* TABLET */

@media(max-width:991px){

    .product-page{

        padding:90px 0;
    }

    .section-heading{

        margin:auto auto 50px;
    }

    .section-subtitle{

        font-size:13px;
    }

    .section-title{

        font-size:40px;

        line-height:1.2;
    }

    .section-description{

        font-size:16px;
    }

    .product-card{

        padding:26px 22px;
    }

    .product-content h4{

        font-size:20px;
    }

    .product-image{

        height:170px;
    }

    .spec-item{

        gap:12px;
    }

}


/* MOBILE */

@media(max-width:767px){

    .product-page{

        padding:70px 0;
    }

    .section-heading{

        margin:auto auto 40px;
    }

    .section-subtitle{

        font-size:12px;

        letter-spacing:1px;
    }

    .section-title{

        font-size:30px;

        line-height:1.25;
    }

    .section-description{

        font-size:15px;

        line-height:1.8;
    }

    .product-card{

        padding:22px 18px;

        border-radius:18px;
    }

    .model-number{

        font-size:12px;
    }

    .product-content h4{

        font-size:18px;

        line-height:1.3;
    }

    .product-image{

        height:160px;
    }

    .specification-list{

        gap:14px;
    }

    .spec-item{

        flex-direction:column;

        gap:5px;
    }

    .spec-item span{

        min-width:100%;

        font-size:13px;
    }

    .spec-item strong{

        font-size:14px;
    }

    .product-tags span{

        width:100%;

        justify-content:center;

        text-align:center;

        font-size:13px;
    }

}


/* SMALL MOBILE */

@media(max-width:575px){

    .product-page{

        padding:60px 0;
    }

    .section-title{

        font-size:26px;
    }

    .section-description{

        font-size:14px;
    }

    .product-card{

        padding:18px 15px;
    }

    .model-number{

        font-size:11px;
    }

    .product-content h4{

        font-size:17px;
    }

    .product-image{

        height:140px;
    }

    .product-image img{

        width:40%;
    }

    .spec-item span{

        font-size:12px;
    }

    .spec-item strong{

        font-size:13px;
    }

    .product-tags span{

        font-size:12px;

        padding:8px 12px;
    }

}


/* EXTRA SMALL DEVICES */

@media(max-width:380px){

    .section-title{

        font-size:22px;
    }

    .section-subtitle{

        font-size:11px;
    }

    .product-content h4{

        font-size:16px;
    }

    .product-image{

        height:120px;
    }

    .product-card{

        padding:16px 12px;
    }

}