/* Standardized Footer Styles - Applied to all product pages */
footer {
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center;    /* Vertically center the content */
    text-align: center;     /* Center text within child elements */
    background-color: #f8f9fa; /* Light background color for contrast */
    padding: 30px 0;        /* Add padding for breathing room */
}

.footer-container {
    display: flex;
    flex-direction: row; /* Keep items in a row */
    gap: 50px;           /* Spacing between sections */
}

.footer-container div {
    flex: 1;
    max-width: 300px;    /* Limit width of each section */
}

.footer-container img {
    margin: 10px auto;   /* Center-align the logo */
    display: block;
}

ul.menu, ul.address {
    list-style-type: none; /* Remove bullets */
    padding: 0;
}

ul.menu li, ul.address li {
    margin: 5px 0;
}

ul.menu span, ul.address span {
    font-weight: bold;   /* Highlight section titles */
    display: block;
    margin-bottom: 10px;
}
