.product-inner{
    padding:18px 0 0;
    background:#f7f7f7;
}

.product-inner .container{
    max-width:900px;
}

/* TOP */

.product-inner__top{
    display:grid;
    grid-template-columns:350px 430px;
    justify-content:center;
    gap:20px;
    align-items:start;
}

/* LEFT */

.product-inner__content{
    width:100%;
    max-width:350px;
}

.product-breadcrumbs{
    font-size:10px;
    color:#888;
    margin-bottom:10px;
}

.product-inner__title{
    font-size:50px;
    line-height:.9;
    font-weight:800;
    letter-spacing:-2px;
    color:#111;
    margin-bottom:10px;
}

.product-inner__subtitle{
    font-size:17px;
    line-height:1.2;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
    max-width:320px;
}

.product-inner__text{
    font-size:12px;
    line-height:1.65;
    color:#555;
    margin-bottom:16px;
    max-width:320px;
}

.product-inner__text p{
    margin:0;
}

/* TABLE */

.product-specs__table{
    width:100%;
    max-width:350px;
    margin-top:10px;
}

.product-specs__table h2{
    font-size:24px;
    line-height:1.1;
    margin-bottom:12px;
    color:#111;
    font-weight:800;
}

.product-specs__table table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
}

.product-specs__table td{
    padding:8px 12px;
    border-bottom:1px solid #ececec;
    font-size:12px;
    color:#333;
}

.product-specs__table tr:last-child td{
    border-bottom:none;
}

/* RIGHT */

.product-inner__right{
    display:flex;
    flex-direction:column;
    gap:18px;
    padding-top:18px;
}

.product-inner__image{
    display:flex;
    justify-content:center;
}

.product-inner__image img{
    width:100%;
    max-width:430px;
    height:auto;
    display:block;
    border-radius:16px;
}

/* USAGE */

.product-usage{
    padding:0 0 25px;
    background:#f7f7f7;
}

.product-usage__title{
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.product-usage__grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:8px;
}

.product-usage__item{
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    min-height:78px;
    padding:8px 5px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.product-usage__item img{
    width:24px;
    height:24px;
    object-fit:contain;
    margin-bottom:4px;
}

.product-usage__item span{
    font-size:9px;
    line-height:1.2;
    font-weight:600;
    color:#222;
}

/* MOBILE */

@media(max-width:900px){

    .product-inner__top{
        grid-template-columns:1fr;
        gap:25px;
    }

    .product-inner__content{
        max-width:100%;
    }

    .product-inner__right{
        padding-top:0;
        gap:18px;
    }

    .product-specs__table{
        max-width:100%;
        margin-top:25px;
    }

    .product-usage__grid{
        grid-template-columns:repeat(2,1fr);
    }

    .product-inner__title{
        font-size:42px;
    }

    .product-inner__subtitle{
        font-size:20px;
    }

    .product-inner__text{
        font-size:15px;
        line-height:1.7;
        margin-bottom:20px;
    }

    .product-specs__table h2{
        font-size:24px;
    }

    .product-specs__table td{
        font-size:15px;
        padding:14px;
    }

    .product-inner__image img{
        max-width:100%;
    }
}