body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5; /* Add a background color for better contrast */
}

.header-title {
    color: #DD9747;
}

.container {
    width: 375px;
    background-color: #213b52;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1, h2 {
    text-align: center;
    color: #333;
}

.product {
    position: relative;
    text-align: center;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
}

.product img {
      width: 100px; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
        border-radius: 5px;
}
.product h3 {
    margin-top: 30px; /* Add margin to create space for the tag */
}
.tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 1px 3px;
    border-radius: 5px;
    font-size: 0.9em;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.tag.new {
    background-color: #f0ad4e !important;
    color: white !important;
}

.tag.seasonal {
    background-color: #5cb85c !important;
    color: white !important;
}

.tag.limited {
    background-color: #d9534f !important;
    color: white !important;
}

.tag.offer {
    background-color: #ffbb07 !important;
    color: white !important;
}

button {
    background: #28a745;
    color: white;
    border: none;
    padding: 5px;
    width: 80%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
}

#cart {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cart-items {
    list-style-type: none;
    padding: 0;
    width: 100%;
}

#cart-items li {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clear-cart-button {
    background: #E68405;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.remove-from-cart {
    background: #E68405;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: 5px;
    vertical-align: middle;
    width: 25px;
    height: 25px;
}

.quantity {
    width: 50px;
    text-align: center;
}

#subtotal, #delivery, #total {
    font-weight: bold;
}

.price-details {
    position: fixed;
    bottom: 0;
     left: 50%;
        transform: translateX(-50%);
    width: 375px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: auto auto;
    gap: 0px;
    z-index: 1000;
}

.price-item {
    font-weight: bold;
    text-align: right;
}

.price-value {
    text-align: right;
        margin-right: 15px;
}

.total {
    background-color: #f0ad4e;
}

.free-delivery-message {
    color: red;
    font-size: 10px;
    font-style: italic;
}

.clear-cart-button, #checkout-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;

    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    display: block;
    text-align: center;
}

.clear-cart-button {
    background: #E68405;

    width: 60%;
}

#checkout-button {
    background: #007bff;
    width: 100%;
}