body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #87AB81;
    font-family: "Times New Roman", Times, serif;
    color: white;
}

.product-logo {
    width: 200px;
}

.product-logo img {
    width: 200px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.title {
    text-align: center;
    font-size: 48px;
    margin: 0 auto;
}

.options {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.nav {
    background-color: #D9D7C5;
    color: #4d4e4f;
    width: 160px;
    padding: 25px;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #4d4e4f;
    font-weight: bold;
}

.cart-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-table {
    width: 70%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th {
    background-color: #1f6f2b;
    padding: 10px;
}

.cart-table td {
    background-color: #d9d7c5;
    color: black;
    text-align: center;
    padding: 10px;
}

.cart-table tr:nth-child(even) td {
    background-color: #c4c7c4;
}

.totals {
    display: flex;
    gap: 50px;
    font-size: 18px;
    margin-bottom: 20px;
}

.checkout button {
    padding: 12px 30px;
    border-radius: 8px;
    border: 2px solid black;
    background-color: #d9d7c5;
    cursor: pointer;
    font-size: 16px;
}