/* GENERAL */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

h1 {
    background-color: #0a7f5a;
    color: white;
    padding: 20px;
    margin: 0;
}

h2 {
    color: #333;
}

/* PRODUCTS */
.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

.product {
    background: white;
    padding: 15px;
    width: 220px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.product h3 {
    margin: 10px 0 5px;
}

.product p {
    font-weight: bold;
    color: #0a7f5a;
}

.product button {
    background-color: #0a7f5a;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.product button:hover {
    background-color: #066a4a;
}

/* CART */
.cart {
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cart table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.cart th, .cart td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.cart th {
    background-color: #0a7f5a;
    color: white;
}

.cart input {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* SUMMARY TABLE */
.cart table:nth-of-type(2) {
    width: 50%;
    margin-top: 10px;
}

.cart table:nth-of-type(2) td {
    padding: 8px;
}

/* SELECT */
select {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* CHECKOUT */
.checkout {
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.checkout input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.checkout button {
    background-color: #0a7f5a;
    color: white;
    border: none;
    padding: 12px;
    width: 95%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.checkout button:hover {
    background-color: #066a4a;
}

/* MESSAGE */
#order-message {
    margin-top: 15px;
    color: green;
    font-weight: bold;
}