.shop-header{
    background: gold;
    padding: 3rem 2rem;
    text-align: center;
}
.shop-header h1{
    font-size: 2.4rem;
    margin-bottom: 1rem;
}
.shop-header p{
    font-size: 1.1rem;
}

.filter{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    flex-wrap: wrap;
}
.filter input, .filter select{
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border: 1px solid gold;
    border-radius: 3px;
}
.shop-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}
.shop-item{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}
.shop-item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.shop-item h3{
    margin: 1rem 0 0.5rem;
    color: gold;
}
.shop-item p{
    margin-bottom: 1rem;
    font-weight: bold;

}
.shop-item:hover{
    transform: scale(1.05);
}

@media (max-width:768px) {
    .shop-header h1{
        font-size: 2rem;
    }
    .shop-header p {
        font-size: 1rem;
    }
    .filter{
        flex-direction: column;
    }
    .filter input,
    .filter select {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width:480px) {
.shop-item img{
    height: 200px;
}
}