/* body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    padding: 1rem;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.header .logo img {
    height: 40px;
} */

.cart-section {
    flex-grow: 1;
    padding: 2rem;
    background-color: #f4f4f4;
}

.cart-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(216, 76%, 23%);
    text-align: center;
    margin-bottom: 2rem;
}

.cart-items {
    max-width: 800px;
    margin: 0 auto;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 4px;
}

.cart-item-details {
    flex-grow: 1;
    padding-left: 1rem;
}

.cart-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.cart-item-description {
    font-size: 0.9rem;
    color: #777;
    margin: 0.5rem 0;
}

.cart-item-price {
    font-size: 1rem;
    color: #4a90e2;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.cart-item-quantity label {
    font-size: 0.9rem;
    color: #333;
    margin-right: 0.5rem;
}

.cart-item-quantity input {
    width: 60px;
    padding: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.remove-btn {
    padding: 0.5rem 1rem;
    background-color: #ff4d4f;
    border: none;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.remove-btn:hover {
    background-color: #e04547;
}

.cart-summary {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.subtotal {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.checkout-btn {
    padding: 0.75rem 2rem;
    background-color: #1f426b;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #415e7b;
}

/* .footer {
    padding: 1rem;
    background-color: #333;
    color: #fff;
    text-align: center;
} */
