.header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #fff;
}

.hero {
    height: 250px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pinterest-grid {
    column-count: 2;
    column-gap: 10px;
    padding: 10px;
}

.product-card {
    display: inline-block;
    width: 100%;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
}

.price {
    font-weight: bold;
}