.page_body_wrapper {
    position: relative;
    margin-top: 120px;
    text-align: center;
    padding-top: 2px;
    margin-bottom: 20px;
    padding-bottom: 40px;
}

.store_header {

}

.store_header h1{
    font-size: 48px;
}

.store_header h2 {
    font-size: 40px;
}

.category_item {
    width: 90%;
    height: 250px;
    border: solid;
    border-color: darkgray;
    display: flex;
    align-items: center;
    border-radius: 40px;
    margin: auto;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.category_item:hover {
    background-color: lightgray;
}

.category_item img {
    border-radius: 30px;
    height: 90%;
    width: auto;
    transform: translateX(12px);
    border: 1px solid gray;

}

.category_item .category_item_text {
    padding-left: 10%;
    padding-right: 10%;
    align-items: center;
    text-decoration: none;
    color: black;
}

    .category_item .category_item_text h1, p {
        text-decoration: none;
    }


.order_item {
    width: 90%;
    height: 250px;
    border: solid;
    border-color: darkgray;
    display: flex;
    align-items: center;
    border-radius: 40px;
    margin: auto;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.order_item:hover {
    background-color: lightgray;
}

.order_item img {
    height: 90%;
    width: auto;
    transform: translateX(12px);

}

.order_item .order_item_text {
    padding-left: 10%;
    padding-right: 10%;
    align-items: center;
    text-decoration: none;
    color: black;
}

    .order_item .order_item_text h1, p {
        text-decoration: none;
    }


@media screen and (max-width: 768px) {
    .category_item {
        flex-direction: column; /* Stack image and text */
        height: auto; /* Let it grow */
        padding: 10px;
    }

        .category_item img {
            width: 90%;
            height: auto;
            transform: none; /* Cancel horizontal offset */
            margin-bottom: 10px;
        }

        .category_item .category_item_text {
            padding: 0 5%;
            text-align: center;
        }
      .order_item {
        flex-direction: column; /* Stack image and text */
        height: auto; /* Let it grow */
        padding: 10px;
    }

        .order_item img {
            width: 90%;
            height: auto;
            transform: none; /* Cancel horizontal offset */
            margin-bottom: 10px;
        }

        .order_item .order_item_text {
            padding: 0 5%;
            text-align: center;
        }
}
