/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fb;
    color:#333;
}

/* ===========================
   PRODUCT DETAILS
=========================== */

.product-details{
    padding:90px 8%;
}

.container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* ===========================
   PRODUCT IMAGE
=========================== */

.product-image{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
}

.product-image img{
    width:100%;
    max-width:450px;
    transition:.4s;
}

.product-image:hover img{
    transform:scale(1.08);
}

/* ===========================
   PRODUCT INFO
=========================== */

.product-info h1{
    font-size:42px;
    color:#0b1c63;
    margin-bottom:20px;
    font-weight:700;
}

.product-info p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/* ===========================
   HEADINGS
=========================== */

.product-info h2{
    font-size:24px;
    color:#0b1c63;
    margin-bottom:15px;
    margin-top:25px;
    position:relative;
}

.product-info h2::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:60px;
    height:3px;
    background:#4f46e5;
}

/* ===========================
   LIST
=========================== */

.product-info ul{
    list-style:none;
    margin-top:15px;
}

.product-info ul li{
    margin-bottom:15px;
    font-size:16px;
    color:#555;
    padding-left:28px;
    position:relative;
}

.product-info ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#4f46e5;
    font-weight:bold;
}

/* ===========================
   BUTTONS
=========================== */

.back-btn{
    display:inline-block;
    margin-top:35px;
    padding:14px 34px;
    background:#4f46e5;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.back-btn:hover{
    background:#0b1c63;
    transform:translateY(-3px);
}

/* ===========================
   EXTRA BUTTONS
=========================== */

.button-group{
    margin-top:35px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.contact-btn{

    background:#4f46e5;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    transition:.3s;
}

.contact-btn:hover{

    background:#0b1c63;
}

.download-btn{

    background:#fff;
    border:2px solid #4f46e5;
    color:#4f46e5;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    transition:.3s;
}

.download-btn:hover{

    background:#4f46e5;
    color:#fff;
}

/* ===========================
   PRODUCT CARD
=========================== */

.product-image,
.product-info{

    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);
    }

    to{

        opacity:1;
        transform:translateY(0);
    }

}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

.container{

    grid-template-columns:1fr;
    gap:40px;
}

.product-info h1{

    font-size:34px;
}

.product-image img{

    max-width:350px;
}

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.product-details{

    padding:70px 20px;
}

.product-info h1{

    font-size:28px;
}

.product-info p{

    font-size:15px;
}

.product-info h2{

    font-size:22px;
}

.product-image{

    padding:25px;
}

.product-image img{

    max-width:280px;
}

.button-group{

    flex-direction:column;
}

.contact-btn,
.download-btn,
.back-btn{

    width:100%;
    text-align:center;
}

}

/* ===========================
   SMALL MOBILE
=========================== */

@media(max-width:480px){

.product-info h1{

    font-size:24px;
}

.product-info h2{

    font-size:20px;
}

.product-image img{

    max-width:220px;
}

}