section#Product_Categories {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    gap: 10px;
    background-color: slategray;
    margin-bottom: 20px;

}

a.Product_Categories {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    width: auto;
    height: auto;
    border: 2px solid black;
    margin: 5px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 5px;
    background-color: white;
}

div.Product_Categories_Image_Slider {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    position: relative;
}

div.Product_Categories_Image_Slider img {
    flex: 0 0 100%;
    width: 100%;
}

a.Product_Categories H1 {
    font-family: Arial;
    text-align: center;
    color: black;
    margin: 0;
}

section#Latest_Products {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
    width: auto;
  background-color: orange;
}

section#Latest_Products H1 {
    margin: 0;
    text-align: center;
    color: black;
    font-family: Arial;
}

div#Latest_Products_Container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 5px;
    margin-bottom: 20px;
    gap: 10px;
    overflow: auto;
    scroll-snap-type: x mandatory;
}

a.Product_PreviewCard {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    text-decoration: none;
    min-width: 300px;
    width: 500px;
    background-color: white;
    scroll-snap-align: center;
    border: 2px solid black;
    border-radius: 5px;
}

/* a.Product_PreviewCard> :nth-child(1) {
    flex-grow: 1;
}

a.Product_PreviewCard> :nth-child(2) {
    flex-grow: 0;
}

a.Product_PreviewCard> :nth-child(3) {
    flex-grow: 0;
} */

a.Product_PreviewCard .Product_Title {
    font-size: 15px;
    font-family: Arial;
    text-align: start;
    color: black;
    margin: 5px;
    padding: 0;
    flex: 1;
}

a.Product_PreviewCard .Price_Tag {
    margin: 5px;
    color: orangered;
}

a.Product_PreviewCard img {
    width: auto;
    height: auto;
}

section#Services {
    display: block;
    width: auto;
    margin: 0px 0px 30px 0px;
   background-color: steelblue;
}

section#Services H1 {
    font-family: Arial;
    margin: 0;
    text-align: center;
    color: black;
}

div#Services_Container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
    gap: 10px;
}

a.Service_PreviewCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background-color: white;
    color: black;
    border-radius: 5px;
    font-family: Arial;
    border: 2px solid black;
    width: 100%;
    margin: 5px;
    margin-bottom: 20px;
}

section#Services H3 {
    font-family: Arial;
    margin: 0;
    text-align: center;
    color: black;
}

a.Service_PreviewCard img {
    width: 100%;
}

@media (max-width: 600px) {

    section#Product_Categories {
        flex-direction: column;
        align-items: center;
    }

    section#Latest_Products #Swipe_Icon {
        animation: swipe 2s infinite;
    }
}