﻿.product-page {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
}

.product-page .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.product-page h1,
.product-page h2,
.product-page h3,
.product-page h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #0095da;
}





.product-page .btn {
    display: inline-block;
    padding: 12px 22px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.product-page .btn.primary {
    background: #0095da;
    color: #fff;
}

.product-page .btn.primary:hover {
    background: #007bb5;
}

.product-page .btn.secondary {
    border: 1px solid #0095da;
    color: #0095da;
}

.product-page .btn.secondary:hover {
    background: #0095da;
    color: #fff;
}





.product-hero {
    padding: 60px 0;
    background: #f5f7fa;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    font-size: 18px;
    color: #0095da;
    margin-bottom: 15px;
}

.description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    height: 420px;
    object-fit: contain;
    transition: transform .4s ease;
}

.hero-image img:hover {
    transform: scale(1.04);
}





.product-specs {
    padding: 40px 0;
    background: #fff;
}

.spec-grid {
    display: grid;
    grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.spec-box {
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    background: #f9f9f9;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
}

.spec-box:hover {
    transform: translateY(-5px);
    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

}

.spec-box h3 {
    font-size: 16px;
    color: #0095da;
    margin-bottom: 12px;
    line-height: 1.4;
}

.spec-box p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;

}





.product-section {
    padding: 70px 0;
    background: #fff;
}

.section-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    border-radius: 10px;
}

.section-content {
    flex: 1;
}

.section-content h2 {
    margin-bottom: 18px;
    font-size: 32px;
    color: #111;
}

.section-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}





.key-features {
    margin-top: 30px;
    padding: 25px;
    background: #f5f7fa;
    border-left: 4px solid #0095da;
    border-radius: 8px;
}

.key-features h3 {
    margin-bottom: 18px;
    color: #0095da;
    font-size: 22px;
}

.key-features ul {
    padding-left: 20px;
    margin: 0;
}

.key-features ul li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}





@media (max-width:768px){

    

    html,
    body{
        width:100%;
        overflow-x:hidden;
    }

    *{
        box-sizing:border-box;
        max-width:100%;
    }

    .product-page{
        width:100%;
        overflow:hidden;
    }

    .product-page .container{
        width:100%;
        padding:0 15px;
    }

    

    .product-hero{
        padding:40px 0;
    }

    .hero-grid{
        display:flex;
        flex-direction:column;
        gap:25px;
        width:100%;
    }

    .hero-content,
    .hero-image{
        width:100%;
        flex:none;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:30px;
    }

    .subtitle{
        font-size:18px;
    }

    .description{
        font-size:15px;
        line-height:1.8;
    }

    .hero-image img{
        width:100%;
        height:auto;
        max-width:100%;
        display:block;
    }

    

    .hero-buttons{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .hero-buttons .btn{
        width:100%;
        text-align:center;
    }

    

    .product-specs{
        padding:40px 0;
    }

    .spec-grid{

        

        grid-template-columns:
        repeat(2,minmax(0,1fr));

        gap:15px;

    }

    .spec-box{
        min-height:auto;
        padding:20px 15px;
    }

    

    .spec-box:last-child:nth-child(odd){
        grid-column:1 / span 2;
        max-width:220px;
        margin:auto;
    }

    

    .product-section{
        padding:45px 0;
    }

    .section-grid{
        display:flex;
        flex-direction:column;
        gap:30px;
    }

    .section-image,
    .section-content{
        width:100%;
        flex:none;
    }

    .section-image img{
        width:100%;
        height:auto;
        display:block;
    }

    .section-content{
        text-align:center;
    }

    .section-content h2{
        font-size:28px;
    }

    .key-features{
        text-align:left;
    }

}




@media(max-width:480px){

    .hero-buttons{

        grid-template-columns:1fr;

    }

    .spec-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}