.cart-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: sans-serif;
}

.cart-container h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #2d2d2d;
    font-size: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    margin-right: 20px;
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-info span {
    font-size: 16px;
    color: #333;
}

.cart-item a {
    color: #e53935;
    font-size: 14px;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.cart-item a:hover {
    text-decoration: underline;
}

.cart-total {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    color: #2a9d8f;
}
.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 36px;
}

.quantity-control button {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity-control button:hover {
    background-color: #e0e0e0;
}

.quantity-control .quantity {
    min-width: 28px;
    text-align: center;
    font-weight: bold;
    line-height: 36px;
}
.cart-item input.select-item {
    transform: scale(1.3);
    margin-right: 12px;
    cursor: pointer;
}

.action-button {
    padding: 10px 16px;
    background-color: #2a9d8f;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
}

.action-button:hover {
    background-color: #21867a;
}