*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #eee;
    width: 100%;
    height: auto;
    font-family: sans-serif;
}

/* Title */
.shop{
    text-align: center;
    color: #313131;
    font-size: 30px;
    margin-top: 2.5rem;
    letter-spacing: 2px;
}

/* GRID */
.imgs{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem;
}

/* CARD */
.imgss{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* IMAGE */
.imgss img{
    width: 100%;
    max-width: 270px;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.imgss img:hover{
    transform: scale(1.03);
}

/* TEXT */
.imgss p{
    text-align: center;
    margin-top: 10px;
    font-size: 1.5rem;
}

.imgss p a{
    color: rgb(120,55,95);
    text-decoration: none;
}

.imgss p a:hover{
    color: rgb(108,19,74);
}
@media (max-width: 768px){
    .shop{
        font-size: 22px;
    }

    .imgs{
        grid-template-columns: repeat(2, 1fr) !important;
        margin: 1.5rem;
        gap: 1rem;
    }

    .imgss img{
        height: 200px;
    }

    .imgss p{
        font-size: 1rem;
    }
}
@media (max-width: 1024px){
    .imgs{
        grid-template-columns: repeat(3, 1fr);
        margin: 3rem;
    }

    .imgss img{
        height: 240px;
    }
}
