/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://via.placeholder.com/1600x900'); /* Replace with your own scenic background */
    background-size: cover;
    background-position: center;
    color: white;
}

header {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Slight black overlay */
}

header h1 {
    font-size: 3em;
    margin: 0;
}

.cart-info {
    margin-top: 10px;
    font-size: 1.2em;
}

.product-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.product-card {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 1.5em;
}

.product-card p {
    font-size: 1.2em;
}

button {
    padding: 10px;
    background-color: #ff6347;
    border: none;
    color: white;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ff4500;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 0;
    width: 100%;
}
