.product__container{
    /* width: 900px; */
    margin: 0 auto 3rem;
    /* max-width: 90vw; */
    text-align: center;
    padding-top: 10px;
    width: var(--width-page);
}
.listProduct {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.listProduct .product_item {
    background-image: linear-gradient(0deg, #000, #464646);
    padding: 20px;
    border: #FFF 2px solid;
    border-radius: 1.5rem;
}
.listProduct .product_item img {
    width: 90%;
    margin: 0 auto;
}
.listProduct .product_item h2 {
    font-family: var(--font-default);
    text-transform: lowercase;
    font-size: large;
    line-height: 1.5;
    margin: 2rem 0;
}
.listProduct .product_item p {
    letter-spacing: 7px;
    font-size: small;
}
/* detail page */
.detail__container{
    margin: 0 auto 3rem;
    text-align: center;
    padding-top: 10px;
    width: var(--width-page);
}
.detail{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    text-align: left;
}
.detail .image img{
    width: 100%;
}
.detail .name{
    font-size: xxx-large;
    padding: 40px 0 0 0;
    margin: 0 0 10px 0;
}
.detail__cta {
    display: block;
    background-image: linear-gradient(90deg, #bd5210, #873a0a);
    font-size: large;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 1.5rem;
}
.detail .description{
    font-weight: 300;
}
/* // ipad */
@media only screen and (max-width: 992px) {
    .listProduct{
        grid-template-columns: repeat(3, 1fr);
    }
    .detail{
        grid-template-columns:  40% 1fr;
    }
}
/* mobile */
@media only screen and (max-width: 880px) {
    .detail{
        text-align: center;
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 768px) {
    .page__title h2 {
        font-size: clamp(3rem, 4vw, 5rem);
    }
    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }
    .detail .image img{
        width: unset;
        height: 40vh;
    } 
    .detail .name{
        font-size: x-large;
        margin: 0;
    }
}
/* mobile small*/
@media only screen and (max-width: 440px) {
    .listProduct{
        grid-template-columns: auto;
    }
    .detail{
        text-align: center;
        grid-template-columns: 1fr;
    }
    .detail .image img{
        width: 80%;
        margin: auto;
        aspect-ratio: 1;
    } 
    .detail .name{
        font-size: x-large;
        margin: 0;
    }
}