.our-product {
    margin-top: 5em;
    gap: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2em;
    margin-left: 2em;
    margin-bottom: 2em;
}
.our-product-text {
    font-size: 40px;
    font-weight: 700;
}
.our-product-text a {
    text-decoration: none;
    color: #1B1A17;
}

.our-product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1em;
}

.grid-column-span-2 {
    grid-column: span 2;
}
.grid-row-span-2 {
    grid-row: span 2;
}

.product-grid-img-container {
    display: flex;
    position: relative;
    border-radius: 0.9375rem;
    font-size: 32px;
}

.product-grid-img-container img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 0.9375rem;

}

.grid-row-span-2 img {
    max-height: 705px;
}

.product-grid-img-container::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0.9375rem;
    background-color: rgba(0, 0, 0, 0.4);
}

.coffee-beans::before {
        content: "COFFEE BEANS";
        position: absolute;
        color: white;
        z-index: 100;
        bottom: 5%;
        left: 16%;
        font-family: "Ysabeau Infant";
        font-size: inherit;
        font-weight: 700;
        max-width: 100%;
}

.instant-coffee::before {
    content: "INSTANT COFFEE";
    position: absolute;
    color: white;
    z-index: 100;
    bottom: 5%;
    left: 15%;
    font-family: "Ysabeau Infant";
    font-size: inherit;
    font-weight: 700;
    max-width: 100%;
}

.equipment::before {
    content: "EQUIPMENT";
    position: absolute;
    color: white;
    z-index: 100;
    bottom: 5%;
    left: 16%;
    font-family: "Ysabeau Infant";
    font-size: inherit;
    font-weight: 700;
    max-width: 100%;
}

.ground-coffee::before {
    content: "GROUND COFFEE";
    position: absolute;
    color: white;
    z-index: 100;
    bottom: 5%;
    left: 16%;
    font-family: "Ysabeau Infant";
    font-size: inherit;
    font-weight: 700;
    max-width: 100%;
}

.merch::before {
    content: "MERCH";
    position: absolute;
    color: white;
    z-index: 100;
    bottom: 5%;
    left: 16%;
    font-family: "Ysabeau Infant";
    font-size: inherit;
    font-weight: 700;
    max-width: 100%;
}

.books::before {
    content: "BOOKS";
    position: absolute;
    color: white;
    z-index: 100;
    bottom: 5%;
    left: 16%;
    font-family: "Ysabeau Infant";
    font-size: inherit;
    font-weight: 700;
    max-width: 100%;
}



@media screen and (max-width: 1260px) {
    .product-grid-img-container {
        font-size: 20px;
    }
}