/* =========================
SHOP PAGE
========================= */

.shop-hero{
    height:550px;
    background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('./images/story.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:20px;
}

.shop-content{
    max-width:800px;
}

.shop-tag{
    color:#d8b16c;
    letter-spacing:4px;
    font-size:14px;
    margin-bottom:20px;
}

.shop-content h1{
    font-size:80px;
    color:white;
    margin-bottom:20px;
}

.shop-desc{
    color:#f5f5f5;
    font-size:20px;
    line-height:1.8;
}

/* PRODUCTS */

.shop-products{
    padding:100px 70px;
    background:#f7f2ea;
}

.shop-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */

.shop-card{
    background:white;
    border-radius:24px;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.shop-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

/* IMAGE */

.shop-image{
    height:380px;
    background:linear-gradient(180deg,#f6efe3,#eadbc5);

    display:flex;
    justify-content:center;
    align-items:center;

    padding:30px;
}

.shop-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* CONTENT */

.shop-card-content{
    padding:30px;
}

.product-label{
    color:#b8914d;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:12px;
}

.shop-card-content h2{
    font-size:36px;
    margin-bottom:15px;
    color:#111;
}

.shop-card-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.features-list{
    list-style:none;
    margin-bottom:25px;
}

.features-list li{
    margin-bottom:10px;
    color:#222;
    font-size:15px;
}

.price{
    display:block;
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
}

/* BUTTON */

.shop-btn{
    width:100%;
    border:none;
    background:#d8b16c;
    color:#111;
    padding:16px;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
    transition:.4s;
}

.shop-btn:hover{
    background:#c79d50;
    transform:translateY(-3px);
}

/* BOTTOM STRIP */

.shop-strip{
    background:#111;
    color:#d8b16c;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    padding:30px;
    text-align:center;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .shop-hero{
        height:450px;
    }

    .shop-content h1{
        font-size:52px;
    }

    .shop-desc{
        font-size:16px;
    }

    .shop-products{
        padding:70px 20px;
    }

    .shop-grid{
        grid-template-columns:1fr;
    }

    .shop-image{
        height:300px;
    }

    .shop-card-content h2{
        font-size:30px;
    }

    .shop-strip{
        grid-template-columns:1fr;
        gap:20px;
    }

}

/* =========================
LAPTOP FIX
========================= */

.shop-products{
    max-width:1400px;
    margin:auto;
}

.shop-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    align-items:stretch;
}

.shop-card{
    width:100%;
    display:flex;
    flex-direction:column;
}

.shop-image{
    height:340px;
    overflow:hidden;
}

.shop-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.shop-card-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.shop-card-content p{
    min-height:90px;
}

.features-list{
    margin-top:10px;
    margin-bottom:20px;
}

.shop-btn{
    margin-top:auto;
}

/* LARGE SCREEN */

@media(min-width:1400px){

    .shop-grid{
        grid-template-columns:
        repeat(3, minmax(350px, 1fr));
    }

}

/* TABLET */

@media(max-width:1100px){

    .shop-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:768px){

    .shop-grid{
        grid-template-columns:1fr;
    }

    .shop-content h1{
        font-size:52px;
    }

    .shop-image{
        height:280px;
    }

}